diff --git a/dev/404.html b/dev/404.html index bd175214..63bcf1e8 100644 --- a/dev/404.html +++ b/dev/404.html @@ -8,7 +8,7 @@ - + @@ -16,7 +16,7 @@
- + \ No newline at end of file diff --git a/dev/api.html b/dev/api.html index 56b8891e..2f32655a 100644 --- a/dev/api.html +++ b/dev/api.html @@ -8,33 +8,33 @@ - + - + - + -
Skip to content

Index

Reference - Exported functions

# Rasters.RastersModule.

source


# Rasters.AbstractRasterType.
julia
AbstractRaster <: DimensionalData.AbstractDimArray

Abstract supertype for objects that wrap an array (or location of an array) and metadata about its contents. It may be memory or hold a FileArray, which holds the filename, and is only opened when required.

AbstractRasters inherit from AbstractDimArray from DimensionalData.jl. They can be indexed as regular Julia arrays or with DimensionalData.jl Dimensions. They will plot as a heatmap in Plots.jl with correct coordinates and labels, even after slicing with getindex or view. getindex on a AbstractRaster will always return a memory-backed Raster.

source


# Rasters.AbstractRasterSeriesType.
julia
AbstractRasterSeries <: DimensionalData.AbstractDimensionalArray

Abstract supertype for high-level DimensionalArray that hold RasterStacks, Rasters, or the paths they can be loaded from. RasterSeries are indexed with dimensions as with a AbstractRaster. This is useful when you have multiple files containing rasters or stacks of rasters spread over dimensions like time and elevation.

As much as possible, implementations should facilitate loading entire directories and detecting the dimensions from metadata.

This allows syntax like below for a series of stacks of arrays:

julia
RasterSeries[Time(Near(DateTime(2001, 1))][:temp][Y(Between(70, 150)), X(Between(-20,20))] |> plot`

RasterSeries is the concrete implementation.

source


# Rasters.AbstractRasterStackType.
julia
AbstractRasterStack

Abstract supertype for objects that hold multiple AbstractRasters that share spatial dimensions.

They are NamedTuple-like structures that may either contain NamedTuple of AbstractRasters, string paths that will load AbstractRasters, or a single path that points to a file containing multiple layers, like NetCDF or HDF5. Use and syntax is similar or identical for all cases.

AbstractRasterStack can hold layers that share some or all of their dimensions. They cannot have the same dimension with different length or spatial extent as another layer.

getindex on an AbstractRasterStack generally returns a memory backed standard Raster. raster[:somelayer] |> plot plots the layers array, while raster[:somelayer, X(1:100), Band(2)] |> plot will plot the subset without loading the whole array.

getindex on an AbstractRasterStack with a key returns another stack with getindex applied to all the arrays in the stack.

source


# Rasters.BandType.
julia
Band <: Dimension
+    
Skip to content

Index

Reference - Exported functions

# Rasters.RastersModule.

source


# Rasters.AbstractRasterType.
julia
AbstractRaster <: DimensionalData.AbstractDimArray

Abstract supertype for objects that wrap an array (or location of an array) and metadata about its contents. It may be memory or hold a FileArray, which holds the filename, and is only opened when required.

AbstractRasters inherit from AbstractDimArray from DimensionalData.jl. They can be indexed as regular Julia arrays or with DimensionalData.jl Dimensions. They will plot as a heatmap in Plots.jl with correct coordinates and labels, even after slicing with getindex or view. getindex on a AbstractRaster will always return a memory-backed Raster.

source


# Rasters.AbstractRasterSeriesType.
julia
AbstractRasterSeries <: DimensionalData.AbstractDimensionalArray

Abstract supertype for high-level DimensionalArray that hold RasterStacks, Rasters, or the paths they can be loaded from. RasterSeries are indexed with dimensions as with a AbstractRaster. This is useful when you have multiple files containing rasters or stacks of rasters spread over dimensions like time and elevation.

As much as possible, implementations should facilitate loading entire directories and detecting the dimensions from metadata.

This allows syntax like below for a series of stacks of arrays:

julia
RasterSeries[Time(Near(DateTime(2001, 1))][:temp][Y(Between(70, 150)), X(Between(-20,20))] |> plot`

RasterSeries is the concrete implementation.

source


# Rasters.AbstractRasterStackType.
julia
AbstractRasterStack

Abstract supertype for objects that hold multiple AbstractRasters that share spatial dimensions.

They are NamedTuple-like structures that may either contain NamedTuple of AbstractRasters, string paths that will load AbstractRasters, or a single path that points to a file containing multiple layers, like NetCDF or HDF5. Use and syntax is similar or identical for all cases.

AbstractRasterStack can hold layers that share some or all of their dimensions. They cannot have the same dimension with different length or spatial extent as another layer.

getindex on an AbstractRasterStack generally returns a memory backed standard Raster. raster[:somelayer] |> plot plots the layers array, while raster[:somelayer, X(1:100), Band(2)] |> plot will plot the subset without loading the whole array.

getindex on an AbstractRasterStack with a key returns another stack with getindex applied to all the arrays in the stack.

source


# Rasters.BandType.
julia
Band <: Dimension
 
 Band(val=:)

Band Dimension for multi-band rasters.

Example:

julia
banddim = Band(10:10:100)
 # Or
 val = A[Band(1)]
 # Or
-mean(A; dims=Band)

source


# Rasters.MappedType.
julia
Mapped <: AbstractProjected
+mean(A; dims=Band)

source


# Rasters.MappedType.
julia
Mapped <: AbstractProjected
 
 Mapped(order, span, sampling, crs, mappedcrs)
-Mapped(; order=AutoOrder(), span=AutoSpan(), sampling=AutoSampling(), crs=nothing, mappedcrs)

An AbstractSampled Lookup, where the dimension index has been mapped to another projection, usually lat/lon or EPSG(4326). Mapped matches the dimension format commonly used in netcdf files.

Fields and behaviours are identical to Sampled with the addition of crs and mappedcrs fields.

The mapped dimension index will be used as for Sampled, but to save in another format the underlying crs may be used to convert it.

source


# Rasters.ProjectedType.
julia
Projected <: AbstractProjected
+Mapped(; order=AutoOrder(), span=AutoSpan(), sampling=AutoSampling(), crs=nothing, mappedcrs)

An AbstractSampled Lookup, where the dimension index has been mapped to another projection, usually lat/lon or EPSG(4326). Mapped matches the dimension format commonly used in netcdf files.

Fields and behaviours are identical to Sampled with the addition of crs and mappedcrs fields.

The mapped dimension index will be used as for Sampled, but to save in another format the underlying crs may be used to convert it.

source


# Rasters.ProjectedType.
julia
Projected <: AbstractProjected
 
 Projected(order, span, sampling, crs, mappedcrs)
-Projected(; order=AutoOrder(), span=AutoSpan(), sampling=AutoSampling(), crs, mappedcrs=nothing)

An AbstractSampled Lookup with projections attached.

Fields and behaviours are identical to Sampled with the addition of crs and mappedcrs fields.

If both crs and mappedcrs fields contain CRS data (in a GeoFormat wrapper from GeoFormatTypes.jl) the selector inputs and plot axes will be converted from and to the specified mappedcrs projection automatically. A common use case would be to pass mappedcrs=EPSG(4326) to the constructor when loading eg. a GDALarray:

julia
GDALarray(filename; mappedcrs=EPSG(4326))

The underlying crs will be detected by GDAL.

If mappedcrs is not supplied (ie. mappedcrs=nothing), the base index will be shown on plots, and selectors will need to use whatever format it is in.

source


# Rasters.RasterType.
julia
Raster <: AbstractRaster
+Projected(; order=AutoOrder(), span=AutoSpan(), sampling=AutoSampling(), crs, mappedcrs=nothing)

An AbstractSampled Lookup with projections attached.

Fields and behaviours are identical to Sampled with the addition of crs and mappedcrs fields.

If both crs and mappedcrs fields contain CRS data (in a GeoFormat wrapper from GeoFormatTypes.jl) the selector inputs and plot axes will be converted from and to the specified mappedcrs projection automatically. A common use case would be to pass mappedcrs=EPSG(4326) to the constructor when loading eg. a GDALarray:

julia
GDALarray(filename; mappedcrs=EPSG(4326))

The underlying crs will be detected by GDAL.

If mappedcrs is not supplied (ie. mappedcrs=nothing), the base index will be shown on plots, and selectors will need to use whatever format it is in.

source


# Rasters.RasterType.
julia
Raster <: AbstractRaster
 
 Raster(filepath::String; kw...)
 Raster(A::AbstractDimArray; kw...)
-Raster(A::AbstractArray, dims; kw...)

A generic AbstractRaster for spatial/raster array data. It can hold either memory-backed arrays or, if lazy=true, a FileArray, which stores the String path to an unopened file.

If lazy=true, the file will only be opened lazily when it is indexed with getindex or when read(A) is called. Broadcasting, taking a view, reversing, and most other methods will not load data from disk; they will be applied later, lazily.

Arguments

  • dims: Tuple of Dimensions needed when an AbstractArray is used.

Keywords

  • name: a Symbol name for the array, which will also retrieve the, alphabetically first, named layer if Raster is used on a multi-layered file like a NetCDF. If instead RasterStack is used to read the multi-layered file, by default, all variables will be added to the stack.

  • group: the group in the dataset where name can be found. Only needed for nested datasets. A String or Symbol will select a single group. Pairs can also used to access groups at any nested depth, i.e group=:group1 => :group2 => :group3.

  • missingval: value reprsenting missing data, normally detected from the file. Set manually when you know the value is not specified or is incorrect. This will not change any values in the raster, it simply assigns which value is treated as missing. To replace all of the missing values in the raster, use replace_missing.

  • metadata: Dict or Metadata object for the array, or NoMetadata().

  • crs: the coordinate reference system of the objects XDim/YDim dimensions. Only set this if you know the detected crs is incorrect, or it is not present in the file. The crs is expected to be a GeoFormatTypes.jl CRS or Mixed mode GeoFormat object, like EPSG(4326).

  • mappedcrs: the mapped coordinate reference system of the objects XDim/YDim dimensions. for Mapped lookups these are the actual values of the index. For Projected lookups this can be used to index in eg. EPSG(4326) lat/lon values, having it converted automatically. Only set this if the detected mappedcrs in incorrect, or the file does not have a mappedcrs, e.g. a tiff. The mappedcrs is expected to be a GeoFormatTypes.jl CRS or Mixed mode GeoFormat type.

  • refdims: Tuple of position Dimensions the array was sliced from, defaulting to (). Usually not needed.

When a filepath String is used:

  • dropband: drop single band dimensions when creating stacks from filenames. true by default.

  • lazy: A Bool specifying if to load data lazily from disk. false by default.

  • replace_missing: replace missingval with missing. This is done lazily if lazy=true. Note that currently for NetCDF and GRIB files replace_missing is always true. In future replace_missing=false will also work for these data sources.

  • source: Usually automatically detected from filepath extension. To manually force, a Symbol can be passed :gdal, :netcdf, :grd, :grib. The internal Rasters.Source objects, such as Rasters.GDALsource(), Rasters.GRIBsource() or Rasters.NCDsource() can also be used.

  • write: defines the default write keyword value when calling open on the Raster. false by default. Only makes sense to use when lazy=true.

When A is an AbstractDimArray:

  • data: can replace the data in an existing AbstractRaster

source


# Rasters.RasterSeriesType.
julia
RasterSeries <: AbstractRasterSeries
+Raster(A::AbstractArray, dims; kw...)

A generic AbstractRaster for spatial/raster array data. It can hold either memory-backed arrays or, if lazy=true, a FileArray, which stores the String path to an unopened file.

If lazy=true, the file will only be opened lazily when it is indexed with getindex or when read(A) is called. Broadcasting, taking a view, reversing, and most other methods will not load data from disk; they will be applied later, lazily.

Arguments

  • dims: Tuple of Dimensions needed when an AbstractArray is used.

Keywords

  • name: a Symbol name for the array, which will also retrieve the, alphabetically first, named layer if Raster is used on a multi-layered file like a NetCDF. If instead RasterStack is used to read the multi-layered file, by default, all variables will be added to the stack.

  • group: the group in the dataset where name can be found. Only needed for nested datasets. A String or Symbol will select a single group. Pairs can also used to access groups at any nested depth, i.e group=:group1 => :group2 => :group3.

  • missingval: value reprsenting missing data, normally detected from the file. Set manually when you know the value is not specified or is incorrect. This will not change any values in the raster, it simply assigns which value is treated as missing. To replace all of the missing values in the raster, use replace_missing.

  • metadata: Dict or Metadata object for the array, or NoMetadata().

  • crs: the coordinate reference system of the objects XDim/YDim dimensions. Only set this if you know the detected crs is incorrect, or it is not present in the file. The crs is expected to be a GeoFormatTypes.jl CRS or Mixed mode GeoFormat object, like EPSG(4326).

  • mappedcrs: the mapped coordinate reference system of the objects XDim/YDim dimensions. for Mapped lookups these are the actual values of the index. For Projected lookups this can be used to index in eg. EPSG(4326) lat/lon values, having it converted automatically. Only set this if the detected mappedcrs in incorrect, or the file does not have a mappedcrs, e.g. a tiff. The mappedcrs is expected to be a GeoFormatTypes.jl CRS or Mixed mode GeoFormat type.

  • refdims: Tuple of position Dimensions the array was sliced from, defaulting to (). Usually not needed.

When a filepath String is used:

  • dropband: drop single band dimensions when creating stacks from filenames. true by default.

  • lazy: A Bool specifying if to load data lazily from disk. false by default.

  • replace_missing: replace missingval with missing. This is done lazily if lazy=true. Note that currently for NetCDF and GRIB files replace_missing is always true. In future replace_missing=false will also work for these data sources.

  • source: Usually automatically detected from filepath extension. To manually force, a Symbol can be passed :gdal, :netcdf, :grd, :grib. The internal Rasters.Source objects, such as Rasters.GDALsource(), Rasters.GRIBsource() or Rasters.NCDsource() can also be used.

  • write: defines the default write keyword value when calling open on the Raster. false by default. Only makes sense to use when lazy=true.

When A is an AbstractDimArray:

  • data: can replace the data in an existing AbstractRaster

source


# Rasters.RasterSeriesType.
julia
RasterSeries <: AbstractRasterSeries
 
 RasterSeries(rasters::AbstractArray{<:AbstractRaster}, dims; [refdims])
 RasterSeries(stacks::AbstractArray{<:AbstractRasterStack}, dims; [refdims]) 
@@ -45,7 +45,7 @@
 2-element RasterSeries{Raster,1} with dimensions: 
   Ti Sampled{DateTime} DateTime[DateTime("2001-01-01T00:00:00"), DateTime("2002-01-01T00:00:00")] ForwardOrdered Irregular Points

The DateTime suffix is parsed from the filenames. Using Ti(Int) would try to parse integers instead.

Just using the directory will also work, unless there are other files mixed in it:

julia
julia> ser = RasterSeries("series_dir", Ti(DateTime))
 2-element RasterSeries{Raster,1} with dimensions: 
-  Ti Sampled{DateTime} DateTime[DateTime("2001-01-01T00:00:00"), DateTime("2002-01-01T00:00:00")] ForwardOrdered Irregular Points

Arguments

  • dims: series dimension/s.

Keywords

When loading a series from a Vector of String paths or a single String path:

  • child: constructor of child objects for use when filenames are passed in, can be Raster or RasterStack. Defaults to Raster.

  • duplicate_first::Bool: wether to duplicate the dimensions and metadata of the first file with all other files. This can save load time with a large series where dimensions are identical. false by default.

  • lazy: A Bool specifying if to load data lazily from disk. false by default.

  • kw: keywords passed to the child constructor Raster or RasterStack.

When loading a series from a single String path:

  • separator: separator used to split lookup elements from the rest of a filename. '_' by default.

Others:

  • refdims: existing reference dimension/s, normally not required.

source


# Rasters.RasterStackType.
julia
RasterStack <: AbstrackRasterStack
+  Ti Sampled{DateTime} DateTime[DateTime("2001-01-01T00:00:00"), DateTime("2002-01-01T00:00:00")] ForwardOrdered Irregular Points

Arguments

  • dims: series dimension/s.

Keywords

When loading a series from a Vector of String paths or a single String path:

  • child: constructor of child objects for use when filenames are passed in, can be Raster or RasterStack. Defaults to Raster.

  • duplicate_first::Bool: wether to duplicate the dimensions and metadata of the first file with all other files. This can save load time with a large series where dimensions are identical. false by default.

  • lazy: A Bool specifying if to load data lazily from disk. false by default.

  • kw: keywords passed to the child constructor Raster or RasterStack.

When loading a series from a single String path:

  • separator: separator used to split lookup elements from the rest of a filename. '_' by default.

Others:

  • refdims: existing reference dimension/s, normally not required.

source


# Rasters.RasterStackType.
julia
RasterStack <: AbstrackRasterStack
 
 RasterStack(data...; name, kw...)
 RasterStack(data::Union{Vector,Tuple}; name, kw...)
@@ -54,13 +54,13 @@
 RasterStack(data::Raster; layersfrom=Band, kw...)
 RasterStack(filepath::AbstractString; kw...)

Load a file path or a NamedTuple of paths as a RasterStack, or convert arguments, a Vector or NamedTuple of Rasters to RasterStack.

Arguments

  • data: A NamedTuple of Rasters or String, or a Vector, Tuple or splatted arguments of Raster. The latter options must pass a name keyword argument.

  • filepath: A file (such as netcdf or tif) to be loaded as a stack, or a directory path containing multiple files.

Keywords

  • name: Used as stack layer names when a Tuple, Vector or splat of Raster is passed in. Has no effect when NameTuple is used - the NamedTuple keys are the layer names.

  • group: the group in the dataset where name can be found. Only needed for nested datasets. A String or Symbol will select a single group. Pairs can also used to access groups at any nested depth, i.e group=:group1 => :group2 => :group3.

  • metadata: A Dict or DimensionalData.Metadata object.

  • missingval: a single value for all layers or a NamedTuple of missingval for each layer. nothing specifies no missing value.

  • crs: the coordinate reference system of the objects XDim/YDim dimensions. Only set this if you know the detected crs is incorrect, or it is not present in the file. The crs is expected to be a GeoFormatTypes.jl CRS or Mixed mode GeoFormat object, like EPSG(4326).

  • mappedcrs: the mapped coordinate reference system of the objects XDim/YDim dimensions. for Mapped lookups these are the actual values of the index. For Projected lookups this can be used to index in eg. EPSG(4326) lat/lon values, having it converted automatically. Only set this if the detected mappedcrs in incorrect, or the file does not have a mappedcrs, e.g. a tiff. The mappedcrs is expected to be a GeoFormatTypes.jl CRS or Mixed mode GeoFormat type.

  • refdims: Tuple of Dimension that the stack was sliced from.

For when one or multiple filepaths are used:

  • dropband: drop single band dimensions when creating stacks from filenames. true by default.

  • lazy: A Bool specifying if to load data lazily from disk. false by default.

  • replace_missing: replace missingval with missing. This is done lazily if lazy=true. Note that currently for NetCDF and GRIB files replace_missing is always true. In future replace_missing=false will also work for these data sources.

  • source: Usually automatically detected from filepath extension. To manually force, a Symbol can be passed :gdal, :netcdf, :grd, :grib. The internal Rasters.Source objects, such as Rasters.GDALsource(), Rasters.GRIBsource() or Rasters.NCDsource() can also be used.

For when a single Raster is used:

  • layersfrom: Dimension to source stack layers from if the file is not already multi-layered. nothing is default, so that a single RasterStack(raster) is a single layered stack. RasterStack(raster; layersfrom=Band) will use the bands as layers.
julia
files = (temp="temp.tif", pressure="pressure.tif", relhum="relhum.tif")
 stack = RasterStack(files; mappedcrs=EPSG(4326))
-stack[:relhum][Lat(Contains(-37), Lon(Contains(144))

source


# DimensionalData.modifyMethod.
julia
modify(f, series::AbstractRasterSeries)

Apply function f to the data of the child object. If the child is an AbstractRasterStack the function will be passed on to its child AbstractRasters.

f must return an identically sized array.

This method triggers a complete rebuild of all objects, and disk based objects will be transferred to memory.

An example of the usefulnesss of this is for swapping out array backend for an entire series to CuArray from CUDA.jl to copy data to a GPU.

source


# GeoInterface.crsMethod.
julia
crs(x::Raster)

Get the projected coordinate reference system of a Y or X Dimension, or of the Y/X dims of an AbstractRaster.

For Mapped lookup this may be nothing as there may be no projected coordinate reference system at all. See setcrs to set it manually.

source


# Rasters.aggregateFunction.
julia
aggregate(method, object, scale; filename, progress, skipmissing)

Aggregate a Raster, or all arrays in a RasterStack or RasterSeries, by scale using method.

Arguments

  • method: a function such as mean or sum that can combine the value of multiple cells to generate the aggregated cell, or a Locus like Start() or Center() that specifies where to sample from in the interval.

  • object: Object to aggregate, like AbstractRasterSeries, AbstractStack, AbstractRaster or Dimension.

  • scale: the aggregation factor, which can be an integer, a tuple of integers for each dimension, or any Dimension, Selector or Int combination you can usually use in getindex. Using a Selector will determine the scale by the distance from the start of the index.

When the aggregation scale of is larger than the array axis, the length of the axis is used.

Keywords

  • skipmissingval: if true, any missingval will be skipped during aggregation, so that only areas of all missing values will be aggregated to missingval. If false, any aggregated area containing a missingval will be assigned missingval.

  • filename: a filename to write to directly, useful for large files.

  • suffix: a string or value to append to the filename. A tuple of suffix will be applied to stack layers. keys(stack) are the default.

  • progress: show a progress bar, true by default, false to hide.

Example

julia
using Rasters, RasterDataSources, Statistics, Plots
+stack[:relhum][Lat(Contains(-37), Lon(Contains(144))

source


# DimensionalData.modifyMethod.
julia
modify(f, series::AbstractRasterSeries)

Apply function f to the data of the child object. If the child is an AbstractRasterStack the function will be passed on to its child AbstractRasters.

f must return an identically sized array.

This method triggers a complete rebuild of all objects, and disk based objects will be transferred to memory.

An example of the usefulnesss of this is for swapping out array backend for an entire series to CuArray from CUDA.jl to copy data to a GPU.

source


# GeoInterface.crsMethod.
julia
crs(x::Raster)

Get the projected coordinate reference system of a Y or X Dimension, or of the Y/X dims of an AbstractRaster.

For Mapped lookup this may be nothing as there may be no projected coordinate reference system at all. See setcrs to set it manually.

source


# Rasters.aggregateFunction.
julia
aggregate(method, object, scale; filename, progress, skipmissing)

Aggregate a Raster, or all arrays in a RasterStack or RasterSeries, by scale using method.

Arguments

  • method: a function such as mean or sum that can combine the value of multiple cells to generate the aggregated cell, or a Locus like Start() or Center() that specifies where to sample from in the interval.

  • object: Object to aggregate, like AbstractRasterSeries, AbstractStack, AbstractRaster or Dimension.

  • scale: the aggregation factor, which can be an integer, a tuple of integers for each dimension, or any Dimension, Selector or Int combination you can usually use in getindex. Using a Selector will determine the scale by the distance from the start of the index.

When the aggregation scale of is larger than the array axis, the length of the axis is used.

Keywords

  • skipmissingval: if true, any missingval will be skipped during aggregation, so that only areas of all missing values will be aggregated to missingval. If false, any aggregated area containing a missingval will be assigned missingval.

  • filename: a filename to write to directly, useful for large files.

  • suffix: a string or value to append to the filename. A tuple of suffix will be applied to stack layers. keys(stack) are the default.

  • progress: show a progress bar, true by default, false to hide.

Example

julia
using Rasters, RasterDataSources, Statistics, Plots
 using Rasters: Center
 st = read(RasterStack(WorldClim{Climate}; month=1))
 ag = aggregate(Center(), st, (Y(20), X(20)); skipmissingval=true, progress=false)
 plot(ag)
 savefig("build/aggregate_example.png"); nothing
-# output

Note: currently it is faster to aggregate over memory-backed arrays. Use read on src before use where required.

source


# Rasters.aggregate!Method.
julia
aggregate!(method, dst::AbstractRaster, src::AbstractRaster, scale; skipmissingval=false)

Aggregate array src to array dst by scale, using method.

Arguments

  • method: a function such as mean or sum that can combine the value of multiple cells to generate the aggregated cell, or a Locus like Start() or Center() that species where to sample from in the interval.

  • scale: the aggregation factor, which can be an integer, a tuple of integers for each dimension, or any Dimension, Selector or Int combination you can usually use in getindex. Using a Selector will determine the scale by the distance from the start of the index in the src array.

When the aggregation scale of is larger than the array axis, the length of the axis is used.

Keywords

  • progress: show a progress bar.

  • skipmissingval: if true, any missingval will be skipped during aggregation, so that only areas of all missing values will be aggregated to missingval. If false, any aggregated area containing a missingval will be assigned missingval.

Note: currently it is much faster to aggregate over memory-backed arrays. Use read on src before use where required.

source


# Rasters.boolmaskFunction.
julia
boolmask(obj::Raster; [missingval])
+# output

Note: currently it is faster to aggregate over memory-backed arrays. Use read on src before use where required.

source


# Rasters.aggregate!Method.
julia
aggregate!(method, dst::AbstractRaster, src::AbstractRaster, scale; skipmissingval=false)

Aggregate array src to array dst by scale, using method.

Arguments

  • method: a function such as mean or sum that can combine the value of multiple cells to generate the aggregated cell, or a Locus like Start() or Center() that species where to sample from in the interval.

  • scale: the aggregation factor, which can be an integer, a tuple of integers for each dimension, or any Dimension, Selector or Int combination you can usually use in getindex. Using a Selector will determine the scale by the distance from the start of the index in the src array.

When the aggregation scale of is larger than the array axis, the length of the axis is used.

Keywords

  • progress: show a progress bar.

  • skipmissingval: if true, any missingval will be skipped during aggregation, so that only areas of all missing values will be aggregated to missingval. If false, any aggregated area containing a missingval will be assigned missingval.

Note: currently it is much faster to aggregate over memory-backed arrays. Use read on src before use where required.

source


# Rasters.boolmaskFunction.
julia
boolmask(obj::Raster; [missingval])
 boolmask(obj; [to, res, size])
 boolmask(obj::RasterStack; alllayers=true, kw...)

Create a mask array of Bool values, from another Raster. AbstractRasterStack or AbstractRasterSeries are also accepted.

The array returned from calling boolmask on a AbstractRaster is a Raster with the same dimensions as the original array and a missingval of false.

Arguments

  • a Raster or one or multiple geometries. Geometries can be a GeoInterface.jl AbstractGeometry, a nested Vector of AbstractGeometry, or a Tables.jl compatible object containing a :geometry column or points and values columns, in which case geometrycolumn must be specified.

Raster / RasterStack Keywords

  • invert: invert the mask, so that areas no missing in with are masked, and areas missing in with are masked.

  • missingval: The missing value of the source array, with default missingval(raster).

Keywords

  • alllayers: if true a mask is taken for all layers, otherwise only the first layer is used. Defaults to true

  • to: a Raster, RasterStack, Tuple of Dimension or Extents.Extent. If no to object is provided the extent will be calculated from the geometries, Additionally, when no to object or an Extent is passed for to, the size or res keyword must also be used.

  • res: the resolution of the dimensions (often in meters or degrees), a Real or Tuple{<:Real,<:Real}. Only required when to is not used or is an Extents.Extent, and size is not used.

  • size: the size of the output array, as a Tuple{Int,Int} or single Int for a square. Only required when to is not used or is an Extents.Extent, and res is not used.

  • crs: a crs which will be attached to the resulting raster when to not passed or is an Extent. Otherwise the crs from to is used.

  • shape: Force data to be treated as :polygon, :line or :point geometries. using points or lines as polygons may have unexpected results.

  • boundary: for polygons, include pixels where the :center is inside the polygon, where the polygon :touches the pixel, or that are completely :inside the polygon. The default is :center.

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

  • threaded: run operations in parallel, false by default. In some circumstances threaded can give large speedups over single-threaded operation. This can be true for complicated geometries written into low-resolution rasters, but may not be for simple geometries with high-resolution rasters. With very large rasters threading may be counter productive due to excessive memory use. Caution should also be used: threaded should not be used in in-place functions writing to BitArray or other arrays where race conditions can occur.

  • progress: show a progress bar, true by default, false to hide.

And specifically for shape=:polygon:

  • boundary: include pixels where the :center is inside the polygon, where the line :touches the pixel, or that are completely :inside inside the polygon. The default is :center.

For tabular data, feature collections and other iterables

  • collapse: if true, collapse all geometry masks into a single mask. Otherwise return a Raster with an additional geometry dimension, so that each slice along this axis is the mask of the geometry opbject of each row of the table, feature in the feature collection, or just each geometry in the iterable.

Example

julia
using Rasters, RasterDataSources, ArchGDAL, Plots, Dates
 wc = Raster(WorldClim{Climate}, :prec; month=1)
@@ -68,7 +68,7 @@
 
 savefig("build/boolmask_example.png"); nothing
 
-# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.cellsizeMethod.
julia
cellsize(x)

Gives the approximate size of each cell in square km. This function works for any projection, using an algorithm for polygons on a sphere. It approximates the true size to about 0.1%, depending on latitude.

Run using ArchGDAL to make this method available.

Arguments

  • x: A Raster or a Tuple of X and Y dimensions.

Example

julia
using Rasters, ArchGDAL, Rasters.Lookups
+# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.cellsizeMethod.
julia
cellsize(x)

Gives the approximate size of each cell in square km. This function works for any projection, using an algorithm for polygons on a sphere. It approximates the true size to about 0.1%, depending on latitude.

Run using ArchGDAL to make this method available.

Arguments

  • x: A Raster or a Tuple of X and Y dimensions.

Example

julia
using Rasters, ArchGDAL, Rasters.Lookups
 dimz = X(Projected(90.0:10.0:120; sampling=Intervals(Start()), order=ForwardOrdered(), span=Regular(10.0), crs=EPSG(4326))),
        Y(Projected(0.0:10.0:50; sampling=Intervals(Start()), order=ForwardOrdered(), span=Regular(10.0), crs=EPSG(4326)))
 
@@ -86,7 +86,7 @@
   90.0  1.2332e6   1.1952e6   1.12048e6   1.01158e6   8.72085e5  706488.0
  100.0  1.2332e6   1.1952e6   1.12048e6   1.01158e6   8.72085e5  706488.0
  110.0  1.2332e6   1.1952e6   1.12048e6   1.01158e6   8.72085e5  706488.0
- 120.0  1.2332e6   1.1952e6   1.12048e6   1.01158e6   8.72085e5  706488.0

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.classifyFunction.
julia
classify(x, pairs; lower=(>=), upper=(<), others=nothing)
+ 120.0  1.2332e6   1.1952e6   1.12048e6   1.01158e6   8.72085e5  706488.0

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.classifyFunction.
julia
classify(x, pairs; lower=(>=), upper=(<), others=nothing)
 classify(x, pairs...; lower, upper, others)

Create a new array with values in x classified by the values in pairs.

pairs can hold tuples fo values (2, 3), a Fix2 function e.g. <=(1), a Tuple of Fix2 e.g. (>=(4), <(7)), or an IntervalSets.jl interval, e.g. 3..9 or OpenInterval(10, 12). pairs can also be a n * 3 matrix where each row is lower bounds, upper bounds, replacement.

If tuples or a Matrix are used, the lower and upper keywords define how the lower and upper boundaries are chosen.

If others is set other values not covered in pairs will be set to that values.

Arguments

  • x: a Raster or RasterStack

  • pairs: each pair contains a value and a replacement, a tuple of lower and upper range and a replacement, or a Tuple of Fix2 like (>(x), <(y).

Keywords

  • lower: Which comparison (< or <=) to use for lower values, if Fix2 are not used.

  • upper: Which comparison (> or >=) to use for upper values, if Fix2 are not used.

  • others: A value to assign to all values not included in pairs. Passing nothing (the default) will leave them unchanged.

Example

julia
using Rasters, RasterDataSources, ArchGDAL, Plots
 A = Raster(WorldClim{Climate}, :tavg; month=1)
 classes = <=(15) => 10,
@@ -98,7 +98,7 @@
 
 savefig("build/classify_example.png"); nothing
 
-# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.classify!Method.
julia
classify!(x, pairs...; lower, upper, others)
+# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.classify!Method.
julia
classify!(x, pairs...; lower, upper, others)
 classify!(x, pairs; lower, upper, others)

Classify the values of x in-place, by the values in pairs.

If Fix2 is not used, the lower and upper keywords

If others is set other values not covered in pairs will be set to that values.

Arguments

  • x: a Raster or RasterStack

  • pairs: each pair contains a value and a replacement, a tuple of lower and upper range and a replacement, or a Tuple of Fix2 like (>(x), <(y).

Keywords

  • lower: Which comparison (< or <=) to use for lower values, if Fix2 are not used.

  • upper: Which comparison (> or >=) to use for upper values, if Fix2 are not used.

  • others: A value to assign to all values not included in pairs. Passing nothing (the default) will leave them unchanged.

Example

classify! to disk, with key steps:

  • copying a tempory file so we don't write over the RasterDataSources.jl version.

  • use open with write=true to open the file with disk-write permissions.

  • use Float32 like 10.0f0 for all our replacement values and other, because the file is stored as Float32. Attempting to write some other type will fail.

julia
using Rasters, RasterDataSources, ArchGDAL, Plots
 # Download and copy the file
 filename = getraster(WorldClim{Climate}, :tavg; month=6)
@@ -118,8 +118,38 @@
 
 savefig("build/classify_bang_example.png"); nothing
 
-# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.combineMethod.
julia
combine(A::Union{AbstractRaster,AbstractRasterStack,AbstracRasterSeries}, [dims]) => Raster

Combine a RasterSeries along some dimension/s, creating a new Raster or RasterStack, depending on the contents of the series.

If dims are passed, only the specified dimensions will be combined with a RasterSeries returned, unless dims is all the dims in the series.

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.convertlookupMethod.
julia
convertlookup(dstlookup::Type{<:Lookup}, x)

Convert the dimension lookup between Projected and Mapped. Other dimension lookups pass through unchanged.

This is used to e.g. save a netcdf file to GeoTiff.

source


# Rasters.coverage!Method.
julia
coverage!(A, geom; [mode, scale])

Calculate the area of a raster covered by GeoInterface.jl compatible geometry geom, as a fraction.

Each pixel is assigned a grid of points (by default 10 x 10) that are each checked to be inside the geometry. The sum divided by the number of points to give coverage.

In practice, most pixel coverage is not calculated this way - shortcuts that produce the same result are taken wherever possible.

If geom is an AbstractVector or table, the mode keyword will determine how coverage is combined.

Keywords

  • mode: method for combining multiple geometries - union or sum.

    • union (the default) gives the areas covered by all geometries. Usefull in spatial coverage where overlapping regions should not be counted twice. The returned raster will contain Float64 values between 0.0 and 1.0.

    • sum gives the summed total of the areas covered by all geometries, as in taking the sum of running coverage separately on all geometries. The returned values are positive Float64.

    For a single geometry, the mode keyword has no effect - the result is the same.

  • scale: Integer scale of pixel subdivision. The default of 10 means each pixel has 10 x 10 or 100 points that contribute to coverage. Using 100 means 10,000 points contribute. Performance will decline as scale increases. Memory use will grow by scale^2 when mode=:union.

  • threaded: run operations in parallel, false by default. In some circumstances threaded can give large speedups over single-threaded operation. This can be true for complicated geometries written into low-resolution rasters, but may not be for simple geometries with high-resolution rasters. With very large rasters threading may be counter productive due to excessive memory use. Caution should also be used: threaded should not be used in in-place functions writing to BitArray or other arrays where race conditions can occur.

  • progress: show a progress bar, true by default, false to hide.

  • vebose: whether to print messages about potential problems. true by default.

source


# Rasters.coverageMethod.
julia
coverage(mode, geom; [to, res, size, scale, verbose, progress])
-coverage(geom; [to, mode, res, size, scale, verbose, progress])

Calculate the area of a raster covered by GeoInterface.jl compatible geometry geom, as a fraction.

Each pixel is assigned a grid of points (by default 10 x 10) that are each checked to be inside the geometry. The sum divided by the number of points to give coverage.

In practice, most pixel coverage is not calculated this way - shortcuts that produce the same result are taken wherever possible.

If geom is an AbstractVector or table, the mode keyword will determine how coverage is combined.

Keywords

  • mode: method for combining multiple geometries - union or sum.

    • union (the default) gives the areas covered by all geometries. Usefull in spatial coverage where overlapping regions should not be counted twice. The returned raster will contain Float64 values between 0.0 and 1.0.

    • sum gives the summed total of the areas covered by all geometries, as in taking the sum of running coverage separately on all geometries. The returned values are positive Float64.

    For a single geometry, the mode keyword has no effect - the result is the same.

  • scale: Integer scale of pixel subdivision. The default of 10 means each pixel has 10 x 10 or 100 points that contribute to coverage. Using 100 means 10,000 points contribute. Performance will decline as scale increases. Memory use will grow by scale^2 when mode=:union.

  • threaded: run operations in parallel, false by default. In some circumstances threaded can give large speedups over single-threaded operation. This can be true for complicated geometries written into low-resolution rasters, but may not be for simple geometries with high-resolution rasters. With very large rasters threading may be counter productive due to excessive memory use. Caution should also be used: threaded should not be used in in-place functions writing to BitArray or other arrays where race conditions can occur.

  • progress: show a progress bar, true by default, false to hide.

  • vebose: whether to print messages about potential problems. true by default.

  • to: a Raster, RasterStack, Tuple of Dimension or Extents.Extent. If no to object is provided the extent will be calculated from the geometries, Additionally, when no to object or an Extent is passed for to, the size or res keyword must also be used.

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

  • size: the size of the output array, as a Tuple{Int,Int} or single Int for a square. Only required when to is not used or is an Extents.Extent, and res is not used.

  • res: the resolution of the dimensions (often in meters or degrees), a Real or Tuple{<:Real,<:Real}. Only required when to is not used or is an Extents.Extent, and size is not used.

source


# Rasters.disaggregateFunction.
julia
disaggregate(method, object, scale; filename, progress, keys)

Disaggregate array, or all arrays in a stack or series, by some scale.

Arguments

  • method: a function such as mean or sum that can combine the value of multiple cells to generate the aggregated cell, or a Locus like Start() or Center() that species where to sample from in the interval.

  • object: Object to aggregate, like AbstractRasterSeries, AbstractStack, AbstractRaster or a Dimension.

  • scale: the aggregation factor, which can be an integer, a tuple of integers for each dimension, or any Dimension, Selector or Int combination you can usually use in getindex. Using a Selector will determine the scale by the distance from the start of the index.

Keywords

  • progress: show a progress bar.

Note: currently it is faster to aggregate over memory-backed arrays. Use read on src before use where required.

source


# Rasters.disaggregate!Method.
julia
disaggregate!(method, dst::AbstractRaster, src::AbstractRaster, filename, scale)

Disaggregate array src to array dst by some scale, using method.

  • method: a function such as mean or sum that can combine the value of multiple cells to generate the aggregated cell, or a Locus like Start() or Center() that species where to sample from in the interval.

  • scale: the aggregation factor, which can be an integer, a tuple of integers for each dimension, or any Dimension, Selector or Int combination you can usually use in getindex. Using a Selector will determine the scale by the distance from the start of the index in the src array.

Note: currently it is faster to aggregate over memory-backed arrays. Use read on src before use where required.

source


# Rasters.extendFunction.
julia
extend(xs...; [to])
+# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.combineMethod.
julia
combine(A::AbstracRasterSeries; [dims], [lazy]) => Raster

Combine a RasterSeries along some dimension/s, creating a new Raster or RasterStack, depending on the contents of the series.

If dims are passed, only the specified dimensions will be combined with a RasterSeries returned, unless dims is all the dims in the series.

If lazy, concatenate lazily. The default is to concatenate lazily for lazy Rasters and eagerly otherwise.

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.convertlookupMethod.
julia
convertlookup(dstlookup::Type{<:Lookup}, x)

Convert the dimension lookup between Projected and Mapped. Other dimension lookups pass through unchanged.

This is used to e.g. save a netcdf file to GeoTiff.

source


# Rasters.coverage!Method.
julia
coverage!(A, geom; [mode, scale])

Calculate the area of a raster covered by GeoInterface.jl compatible geometry geom, as a fraction.

Each pixel is assigned a grid of points (by default 10 x 10) that are each checked to be inside the geometry. The sum divided by the number of points to give coverage.

In practice, most pixel coverage is not calculated this way - shortcuts that produce the same result are taken wherever possible.

If geom is an AbstractVector or table, the mode keyword will determine how coverage is combined.

Keywords

  • mode: method for combining multiple geometries - union or sum.

    • union (the default) gives the areas covered by all geometries. Usefull in spatial coverage where overlapping regions should not be counted twice. The returned raster will contain Float64 values between 0.0 and 1.0.

    • sum gives the summed total of the areas covered by all geometries, as in taking the sum of running coverage separately on all geometries. The returned values are positive Float64.

    For a single geometry, the mode keyword has no effect - the result is the same.

  • scale: Integer scale of pixel subdivision. The default of 10 means each pixel has 10 x 10 or 100 points that contribute to coverage. Using 100 means 10,000 points contribute. Performance will decline as scale increases. Memory use will grow by scale^2 when mode=:union.

  • threaded: run operations in parallel, false by default. In some circumstances threaded can give large speedups over single-threaded operation. This can be true for complicated geometries written into low-resolution rasters, but may not be for simple geometries with high-resolution rasters. With very large rasters threading may be counter productive due to excessive memory use. Caution should also be used: threaded should not be used in in-place functions writing to BitArray or other arrays where race conditions can occur.

  • progress: show a progress bar, true by default, false to hide.

  • vebose: whether to print messages about potential problems. true by default.

source


# Rasters.coverageMethod.
julia
coverage(mode, geom; [to, res, size, scale, verbose, progress])
+coverage(geom; [to, mode, res, size, scale, verbose, progress])

Calculate the area of a raster covered by GeoInterface.jl compatible geometry geom, as a fraction.

Each pixel is assigned a grid of points (by default 10 x 10) that are each checked to be inside the geometry. The sum divided by the number of points to give coverage.

In practice, most pixel coverage is not calculated this way - shortcuts that produce the same result are taken wherever possible.

If geom is an AbstractVector or table, the mode keyword will determine how coverage is combined.

Keywords

  • mode: method for combining multiple geometries - union or sum.

    • union (the default) gives the areas covered by all geometries. Usefull in spatial coverage where overlapping regions should not be counted twice. The returned raster will contain Float64 values between 0.0 and 1.0.

    • sum gives the summed total of the areas covered by all geometries, as in taking the sum of running coverage separately on all geometries. The returned values are positive Float64.

    For a single geometry, the mode keyword has no effect - the result is the same.

  • scale: Integer scale of pixel subdivision. The default of 10 means each pixel has 10 x 10 or 100 points that contribute to coverage. Using 100 means 10,000 points contribute. Performance will decline as scale increases. Memory use will grow by scale^2 when mode=:union.

  • threaded: run operations in parallel, false by default. In some circumstances threaded can give large speedups over single-threaded operation. This can be true for complicated geometries written into low-resolution rasters, but may not be for simple geometries with high-resolution rasters. With very large rasters threading may be counter productive due to excessive memory use. Caution should also be used: threaded should not be used in in-place functions writing to BitArray or other arrays where race conditions can occur.

  • progress: show a progress bar, true by default, false to hide.

  • vebose: whether to print messages about potential problems. true by default.

  • to: a Raster, RasterStack, Tuple of Dimension or Extents.Extent. If no to object is provided the extent will be calculated from the geometries, Additionally, when no to object or an Extent is passed for to, the size or res keyword must also be used.

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

  • size: the size of the output array, as a Tuple{Int,Int} or single Int for a square. Only required when to is not used or is an Extents.Extent, and res is not used.

  • res: the resolution of the dimensions (often in meters or degrees), a Real or Tuple{<:Real,<:Real}. Only required when to is not used or is an Extents.Extent, and size is not used.

source


# Rasters.cropFunction.
julia
crop(x; to, touches=false, [geometrycolumn])
+crop(xs...; to)

Crop one or multiple AbstractRaster or AbstractRasterStack x to match the size of the object to, or smallest of any dimensions that are shared.

crop is lazy, using a view into the object rather than allocating new memory.

Keywords

  • to: the object to crop to. This can be a Raster or one or multiple geometries. Geometries can be a GeoInterface.jl AbstractGeometry, a nested Vector of AbstractGeometry, or a Tables.jl compatible object containing a :geometry column or points and values columns, in which case geometrycolumn must be specified. If no to keyword is passed, the smallest shared area of all xs is used.

  • touches: true or false. Whether to use Touches wraper on the object extent. When lines need to be included in e.g. zonal statistics, true should be used.

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

As crop is lazy, filename and suffix keywords are not used.

Example

Crop to another raster:

julia
using Rasters, RasterDataSources, Plots
+evenness = Raster(EarthEnv{HabitatHeterogeneity}, :evenness)
+rnge = Raster(EarthEnv{HabitatHeterogeneity}, :range)
+
+# Roughly cut out New Zealand from the evenness raster
+nz_bounds = X(165 .. 180), Y(-50 .. -32)
+nz_evenness = evenness[nz_bounds...]
+
+# Crop range to match evenness
+nz_range = crop(rnge; to=nz_evenness)
+plot(nz_range)
+
+savefig("build/nz_crop_example.png")
+nothing
+
+# output

Crop to a polygon:

julia
using Rasters, RasterDataSources, Plots, Dates, Shapefile, Downloads
+
+# Download a borders shapefile
+shapefile_url = "https://github.com/nvkelso/natural-earth-vector/raw/master/10m_cultural/ne_10m_admin_0_countries.shp"
+shapefile_name = "boundary.shp"
+isfile(shapefile_name) || Downloads.download(shapefile_url, shapefile_name)
+shp = Shapefile.Handle(shapefile_name).shapes[6]
+
+evenness = Raster(EarthEnv{HabitatHeterogeneity}, :evenness)
+argentina_evenness = crop(evenness; to=shp)
+plot(argentina_evenness)
+
+savefig("build/argentina_crop_example.png"); nothing
+
+# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.disaggregateFunction.
julia
disaggregate(method, object, scale; filename, progress, keys)

Disaggregate array, or all arrays in a stack or series, by some scale.

Arguments

  • method: a function such as mean or sum that can combine the value of multiple cells to generate the aggregated cell, or a Locus like Start() or Center() that species where to sample from in the interval.

  • object: Object to aggregate, like AbstractRasterSeries, AbstractStack, AbstractRaster or a Dimension.

  • scale: the aggregation factor, which can be an integer, a tuple of integers for each dimension, or any Dimension, Selector or Int combination you can usually use in getindex. Using a Selector will determine the scale by the distance from the start of the index.

Keywords

  • progress: show a progress bar.

Note: currently it is faster to aggregate over memory-backed arrays. Use read on src before use where required.

source


# Rasters.disaggregate!Method.
julia
disaggregate!(method, dst::AbstractRaster, src::AbstractRaster, filename, scale)

Disaggregate array src to array dst by some scale, using method.

  • method: a function such as mean or sum that can combine the value of multiple cells to generate the aggregated cell, or a Locus like Start() or Center() that species where to sample from in the interval.

  • scale: the aggregation factor, which can be an integer, a tuple of integers for each dimension, or any Dimension, Selector or Int combination you can usually use in getindex. Using a Selector will determine the scale by the distance from the start of the index in the src array.

Note: currently it is faster to aggregate over memory-backed arrays. Use read on src before use where required.

source


# Rasters.extendFunction.
julia
extend(xs...; [to])
 extend(xs; [to])
 extend(x::Union{AbstractRaster,AbstractRasterStack}; to, kw...)

Extend one or multiple AbstractRaster to match the area covered by all xs, or by the keyword argument to.

Keywords

  • to: the Raster or dims to extend to. If no to keyword is passed, the largest shared area of all xs is used.

  • touches: true or false. Whether to use Touches wrapper on the object extent. When lines need to be included in e.g. zonal statistics, true shoudle be used.

  • filename: a filename to write to directly, useful for large files.

  • suffix: a string or value to append to the filename. A tuple of suffix will be applied to stack layers. keys(stack) are the default.

julia
using Rasters, RasterDataSources, Plots
 evenness = Raster(EarthEnv{HabitatHeterogeneity}, :evenness)
@@ -135,7 +165,7 @@
 
 savefig("build/extend_example.png")
 nothing
-# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.extractFunction.
julia
extract(x, data; atol)

Extracts the value of Raster or RasterStack at given points, returning an iterable of NamedTuple with properties for :geometry and raster or stack layer values.

Note that if objects have more dimensions than the length of the point tuples, sliced arrays or stacks will be returned instead of single values.

Arguments

  • x: a Raster or RasterStack to extract values from.

  • data: a GeoInterface.jl AbstractGeometry, a nested Vector of AbstractGeometry, or a Tables.jl compatible object containing a :geometry column or points and values columns, in which case geometrycolumn must be specified.

Keywords

  • geometry: include :geometry in returned NamedTuple, true by default.

  • index: include :index of the CartesianIndex in returned NamedTuple, false by default.

  • name: a Symbol or Tuple of Symbol corresponding to layer/s of a RasterStack to extract. All layers by default.

  • skipmissing: skip missing points automatically.

  • atol: a tolerance for floating point lookup values for when the Lookup contains Points. atol is ignored for Intervals.

geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

Example

Here we extract points matching the occurrence of the Mountain Pygmy Possum, Burramis parvus. This could be used to fit a species distribution model.

julia
using Rasters, RasterDataSources, ArchGDAL, GBIF2, CSV
+# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.extractFunction.
julia
extract(x, data; atol)

Extracts the value of Raster or RasterStack at given points, returning an iterable of NamedTuple with properties for :geometry and raster or stack layer values.

Note that if objects have more dimensions than the length of the point tuples, sliced arrays or stacks will be returned instead of single values.

Arguments

  • x: a Raster or RasterStack to extract values from.

  • data: a GeoInterface.jl AbstractGeometry, a nested Vector of AbstractGeometry, or a Tables.jl compatible object containing a :geometry column or points and values columns, in which case geometrycolumn must be specified.

Keywords

  • geometry: include :geometry in returned NamedTuple, true by default.

  • index: include :index of the CartesianIndex in returned NamedTuple, false by default.

  • name: a Symbol or Tuple of Symbol corresponding to layer/s of a RasterStack to extract. All layers by default.

  • skipmissing: skip missing points automatically.

  • atol: a tolerance for floating point lookup values for when the Lookup contains Points. atol is ignored for Intervals.

geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

Example

Here we extract points matching the occurrence of the Mountain Pygmy Possum, Burramis parvus. This could be used to fit a species distribution model.

julia
using Rasters, RasterDataSources, ArchGDAL, GBIF2, CSV
 
 # Get a stack of BioClim layers, and replace missing values with `missing`
 st = RasterStack(WorldClim{BioClim}, (1, 3, 5, 7, 12)) |> replace_missing
@@ -153,7 +183,7 @@
  (geometry = (0.03, 39.97), bio1 = 17.076923f0, bio3 = 39.7983f0, bio5 = 29.638462f0, bio7 = 24.153847f0, bio12 = 441.0f0)
  (geometry = (0.03, 39.97), bio1 = 17.076923f0, bio3 = 39.7983f0, bio5 = 29.638462f0, bio7 = 24.153847f0, bio12 = 441.0f0)
  (geometry = (0.52, 40.37), bio1 = missing, bio3 = missing, bio5 = missing, bio7 = missing, bio12 = missing)
- (geometry = (0.32, 40.24), bio1 = 16.321388f0, bio3 = 41.659454f0, bio5 = 30.029825f0, bio7 = 25.544561f0, bio12 = 480.0f0)

Note: passing in arrays, geometry collections or feature collections containing a mix of points and other geometries has undefined results.

source


# Rasters.mappedboundsFunction.
julia
mappedbounds(x)

Get the bounds converted to the mappedcrs value.

Without ArchGDAL loaded, this is just the regular bounds.

source


# Rasters.mappedcrsFunction.
julia
mappedcrs(x)

Get the mapped coordinate reference system for the Y/X dims of an array.

In Projected lookup this is used to convert Selector values form the mappedcrs defined projection to the underlying projection, and to show plot axes in the mapped projection.

In Mapped lookup this is the coordinate reference system of the index values. See setmappedcrs to set it manually.

source


# Rasters.mappedindexFunction.
julia
mappedindex(x)

Get the index value of a dimension converted to the mappedcrs value.

Without ArchGDAL loaded, this is just the regular dim value.

source


# Rasters.mask!Function.
julia
mask!(x; with, missingval=missingval(A))

Mask A by the missing values of with, or by all values outside with if it is a polygon.

If with is a polygon, creates a new array where points falling outside the polygon have been replaced by missingval(A).

Return a new array with values of A masked by the missing values of with, or by a polygon.

Arguments

  • x: a Raster or RasterStack.

Keywords

  • with: another AbstractRaster, a AbstractVector of Tuple points, or any GeoInterface.jl AbstractGeometry. The coordinate reference system of the point must match crs(A).

  • invert: invert the mask, so that areas no missing in with are masked, and areas missing in with are masked.

  • missingval: the missing value to write to A in masked areas, by default missingval(A).

Example

Mask an unmasked AWAP layer with a masked WorldClim layer, by first resampling the mask to match the size and projection.

julia
using Rasters, RasterDataSources, ArchGDAL, Plots, Dates
+ (geometry = (0.32, 40.24), bio1 = 16.321388f0, bio3 = 41.659454f0, bio5 = 30.029825f0, bio7 = 25.544561f0, bio12 = 480.0f0)

Note: passing in arrays, geometry collections or feature collections containing a mix of points and other geometries has undefined results.

source


# Rasters.mappedboundsFunction.
julia
mappedbounds(x)

Get the bounds converted to the mappedcrs value.

Without ArchGDAL loaded, this is just the regular bounds.

source


# Rasters.mappedcrsFunction.
julia
mappedcrs(x)

Get the mapped coordinate reference system for the Y/X dims of an array.

In Projected lookup this is used to convert Selector values form the mappedcrs defined projection to the underlying projection, and to show plot axes in the mapped projection.

In Mapped lookup this is the coordinate reference system of the index values. See setmappedcrs to set it manually.

source


# Rasters.mappedindexFunction.
julia
mappedindex(x)

Get the index value of a dimension converted to the mappedcrs value.

Without ArchGDAL loaded, this is just the regular dim value.

source


# Rasters.mask!Function.
julia
mask!(x; with, missingval=missingval(A))

Mask A by the missing values of with, or by all values outside with if it is a polygon.

If with is a polygon, creates a new array where points falling outside the polygon have been replaced by missingval(A).

Return a new array with values of A masked by the missing values of with, or by a polygon.

Arguments

  • x: a Raster or RasterStack.

Keywords

  • with: another AbstractRaster, a AbstractVector of Tuple points, or any GeoInterface.jl AbstractGeometry. The coordinate reference system of the point must match crs(A).

  • invert: invert the mask, so that areas no missing in with are masked, and areas missing in with are masked.

  • missingval: the missing value to write to A in masked areas, by default missingval(A).

Example

Mask an unmasked AWAP layer with a masked WorldClim layer, by first resampling the mask to match the size and projection.

julia
using Rasters, RasterDataSources, ArchGDAL, Plots, Dates
 
 # Load and plot the file
 awap = read(RasterStack(AWAP, (:tmin, :tmax); date=DateTime(2001, 1, 1)))
@@ -170,7 +200,7 @@
 savefig(a, "build/mask_bang_example_before.png");
 savefig(b, "build/mask_bang_example_after.png"); nothing
 
-# output

Before mask!:

After mask!:

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.maskMethod.
julia
mask(A:AbstractRaster; with, missingval=missingval(A))
+# output

Before mask!:

After mask!:

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.maskMethod.
julia
mask(A:AbstractRaster; with, missingval=missingval(A))
 mask(x; with)

Return a new array with values of A masked by the missing values of with, or by the shape of with, if with is a geometric object.

Arguments

  • x: a Raster or RasterStack

Keywords

  • with: an AbstractRaster, or any GeoInterface.jl compatible objects or table. The coordinate reference system of the point must match crs(A).

  • invert: invert the mask, so that areas no missing in with are masked, and areas missing in with are masked.

  • missingval: the missing value to use in the returned file.

  • filename: a filename to write to directly, useful for large files.

  • suffix: a string or value to append to the filename. A tuple of suffix will be applied to stack layers. keys(stack) are the default.

Geometry keywords

These can be used when with is a GeoInterface.jl compatible object:

  • shape: Force data to be treated as :polygon, :line or :point geometries. using points or lines as polygons may have unexpected results.

  • boundary: for polygons, include pixels where the :center is inside the polygon, where the polygon :touches the pixel, or that are completely :inside the polygon. The default is :center.

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

Example

Mask an unmasked AWAP layer with a masked WorldClim layer, by first resampling the mask.

julia
using Rasters, RasterDataSources, ArchGDAL, Plots, Dates
 
 # Load and plot the file
@@ -187,7 +217,7 @@
 
 savefig(a, "build/mask_example_before.png");
 savefig(b, "build/mask_example_after.png"); nothing
-# output

Before mask:

After mask:

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.missingmaskMethod.
julia
missingmask(obj::Raster; kw...)
+# output

Before mask:

After mask:

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.missingmaskMethod.
julia
missingmask(obj::Raster; kw...)
 missingmask(obj; [to, res, size, collapse])
 missingmask(obj::RasterStack; alllayers = true, kw...)

Create a mask array of missing and true values, from another Raster. AbstractRasterStack or AbstractRasterSeries are also accepted-

For AbstractRaster the default missingval is missingval(A), but others can be chosen manually.

The array returned from calling missingmask on a AbstractRaster is a Raster with the same size and fields as the original array.

Arguments

  • obj: a Raster or one or multiple geometries. Geometries can be a GeoInterface.jl AbstractGeometry, a nested Vector of AbstractGeometry, or a Tables.jl compatible object containing a :geometry column or points and values columns, in which case geometrycolumn must be specified.

Keywords

  • alllayers: if true a mask is taken for all layers, otherwise only the first layer is used. Defaults to true

  • invert: invert the mask, so that areas no missing in with are masked, and areas missing in with are masked.

  • to: a Raster, RasterStack, Tuple of Dimension or Extents.Extent. If no to object is provided the extent will be calculated from the geometries, Additionally, when no to object or an Extent is passed for to, the size or res keyword must also be used.

  • res: the resolution of the dimensions (often in meters or degrees), a Real or Tuple{<:Real,<:Real}. Only required when to is not used or is an Extents.Extent, and size is not used.

  • size: the size of the output array, as a Tuple{Int,Int} or single Int for a square. Only required when to is not used or is an Extents.Extent, and res is not used.

  • crs: a crs which will be attached to the resulting raster when to not passed or is an Extent. Otherwise the crs from to is used.

  • shape: Force data to be treated as :polygon, :line or :point geometries. using points or lines as polygons may have unexpected results.

  • boundary: for polygons, include pixels where the :center is inside the polygon, where the polygon :touches the pixel, or that are completely :inside the polygon. The default is :center.

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

Example

julia
using Rasters, RasterDataSources, ArchGDAL, Plots, Dates
 wc = Raster(WorldClim{Climate}, :prec; month=1)
@@ -195,7 +225,7 @@
 
 savefig("build/missingmask_example.png"); nothing
 
-# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.missingvalFunction.
julia
missingval(x)

Returns the value representing missing data in the dataset

source


# Rasters.mosaic!Method.
julia
mosaic!(f, x, regions...; missingval, atol)
+# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.missingvalFunction.
julia
missingval(x)

Returns the value representing missing data in the dataset

source


# Rasters.mosaic!Method.
julia
mosaic!(f, x, regions...; missingval, atol)
 mosaic!(f, x, regions::Tuple; missingval, atol)

Combine regions in x using the function f.

Arguments

  • f a function (e.g. mean, sum, first or last) that is applied to values where regions overlap.

  • x: A Raster or RasterStack. May be a an opened disk-based Raster, the result will be written to disk. With the current algorithm, the read speed is slow.

  • regions: source objects to be joined. These should be memory-backed (use read first), or may experience poor performance. If all objects have the same extent, mosaic is simply a merge.

Keywords

  • missingval: Fills empty areas, and defualts to the `missingval/ of the first layer.

  • atol: Absolute tolerance for comparison between index values. This is often required due to minor differences in range values due to floating point error. It is not applied to non-float dimensions. A tuple of tolerances may be passed, matching the dimension order.

Example

Cut out Australia and Africa stacks, then combined them into a single stack.

julia
using Rasters, RasterDataSources, ArchGDAL, Statistics, Plots
 st = read(RasterStack(WorldClim{Climate}; month=1))
 aus = st[X=100.0 .. 160.0, Y=-50.0 .. -10.0]
@@ -204,7 +234,7 @@
 plot(st)
 savefig("build/mosaic_bang_example.png")
 nothing
-# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.mosaicMethod.
julia
mosaic(f, regions...; missingval, atol)
+# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.mosaicMethod.
julia
mosaic(f, regions...; missingval, atol)
 mosaic(f, regions; missingval, atol)

Combine regions into a single raster.

Arguments

  • f: A reducing function (mean, sum, first, last etc.) for values where regions overlap.

  • regions: Iterable or splatted Raster or RasterStack.

Keywords

  • missingval: Fills empty areas, and defualts to the missingval of the first region.

  • atol: Absolute tolerance for comparison between index values. This is often required due to minor differences in range values due to floating point error. It is not applied to non-float dimensions. A tuple of tolerances may be passed, matching the dimension order.

  • filename: a filename to write to directly, useful for large files.

  • suffix: a string or value to append to the filename. A tuple of suffix will be applied to stack layers. keys(stack) are the default.

If your mosaic has has apparent line errors, increase the atol value.

Example

Here we cut out Australia and Africa from a stack, and join them with mosaic.

julia
using Rasters, RasterDataSources, ArchGDAL, Plots
 st = RasterStack(WorldClim{Climate}; month=1);
 
@@ -222,7 +252,7 @@
 savefig(b, "build/mosaic_example_aus.png")
 savefig(c, "build/mosaic_example_combined.png")
 nothing
-# output

Individual continents

Mosaic of continents

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.pointsMethod.
julia
points(A::AbstractRaster; dims=(YDim, XDim), ignore_missing) => Array{Tuple}

Returns a generator of the points in A for dimensions in dims, where points are a tuple of the values in each specified dimension index.

Keywords

  • dims the dimensions to return points from. The first slice of other layers will be used.

  • ignore_missing: wether to ignore missing values in the array when considering points. If true, all points in the dimensions will be returned, if false only the points that are not === missingval(A) will be returned.

The order of dims determines the order of the points.

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.rasterizeFunction.
julia
rasterize([reducer], data; geometrycolumn, kw...)

Rasterize a GeoInterface.jl compatable geometry or feature, or a Tables.jl table with a :geometry column of GeoInterface.jl objects, or points columns specified by geometrycolumn

Arguments

  • reducer: a reducing function to reduce the fill value for all geometries that cover or touch a pixel down to a single value. The default is last. Any that takes an iterable and returns a single value will work, including custom functions. However, there are optimisations for built-in methods including sum, first, last, minimum, maximum, extrema and Statistics.mean. These may be an order of magnitude or more faster than count is a special-cased as it does not need a fill value.

  • data: a GeoInterface.jl AbstractGeometry, a nested Vector of AbstractGeometry, or a Tables.jl compatible object containing a :geometry column or points and values columns, in which case geometrycolumn must be specified.

Keywords

These are detected automatically from data where possible.

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

  • to: a Raster, RasterStack, Tuple of Dimension or Extents.Extent. If no to object is provided the extent will be calculated from the geometries, Additionally, when no to object or an Extent is passed for to, the size or res keyword must also be used.

  • res: the resolution of the dimensions (often in meters or degrees), a Real or Tuple{<:Real,<:Real}. Only required when to is not used or is an Extents.Extent, and size is not used.

  • size: the size of the output array, as a Tuple{Int,Int} or single Int for a square. Only required when to is not used or is an Extents.Extent, and res is not used.

  • crs: a crs which will be attached to the resulting raster when to not passed or is an Extent. Otherwise the crs from to is used.

  • shape: Force data to be treated as :polygon, :line or :point geometries. using points or lines as polygons may have unexpected results.

  • boundary: for polygons, include pixels where the :center is inside the polygon, where the polygon :touches the pixel, or that are completely :inside the polygon. The default is :center.

  • fill: the value or values to fill a polygon with. A Symbol or tuple of Symbol will be used to retrieve properties from features or column values from table rows. An array or other iterable will be used for each geometry, in order. fill can also be a function of the current value, e.g. x -> x + 1.

  • op: A reducing function that accepts two values and returns one, like min to minimum. For common methods this will be assigned for you, or is not required. But you can use it instead of a reducer as it will usually be faster.

  • shape: force data to be treated as :polygon, :line or :point, where possible Points can't be treated as lines or polygons, and lines may not work as polygons, but an attempt will be made.

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

  • progress: show a progress bar, true by default, false to hide..

  • verbose: print information and warnings when there are problems with the rasterisation. true by default.

  • threaded: run operations in parallel, false by default. In some circumstances threaded can give large speedups over single-threaded operation. This can be true for complicated geometries written into low-resolution rasters, but may not be for simple geometries with high-resolution rasters. With very large rasters threading may be counter productive due to excessive memory use. Caution should also be used: threaded should not be used in in-place functions writing to BitArray or other arrays where race conditions can occur.

  • threadsafe: specify that custom reducer and/or op functions are thread-safe, in that the order of operation or blocking does not matter. For example, sum and maximum are thread-safe, because the answer is approximately (besides floating point error) the same after running on nested blocks, or on all the data. In contrast, median or last are not, because the blocking (median) or order (last) matters.

  • filename: a filename to write to directly, useful for large files.

  • suffix: a string or value to append to the filename. A tuple of suffix will be applied to stack layers. keys(stack) are the default.

Note on threading. Performance may be much better with threaded=false if reducer/op are not threadsafe. sum, prod, maximum, minimum count and mean (by combining sum and count) are threadsafe. If you know your algorithm is threadsafe, use threadsafe=true to allow all optimisations. Functions passed to fill are always threadsafe, and ignore the threadsafe argument.

Example

Rasterize a shapefile for China and plot, with a border.

julia
using Rasters, RasterDataSources, ArchGDAL, Plots, Dates, Shapefile, Downloads
+# output

Individual continents

Mosaic of continents

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.pointsMethod.
julia
points(A::AbstractRaster; dims=(YDim, XDim), ignore_missing) => Array{Tuple}

Returns a generator of the points in A for dimensions in dims, where points are a tuple of the values in each specified dimension index.

Keywords

  • dims the dimensions to return points from. The first slice of other layers will be used.

  • ignore_missing: wether to ignore missing values in the array when considering points. If true, all points in the dimensions will be returned, if false only the points that are not === missingval(A) will be returned.

The order of dims determines the order of the points.

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.rasterizeFunction.
julia
rasterize([reducer], data; geometrycolumn, kw...)

Rasterize a GeoInterface.jl compatable geometry or feature, or a Tables.jl table with a :geometry column of GeoInterface.jl objects, or points columns specified by geometrycolumn

Arguments

  • reducer: a reducing function to reduce the fill value for all geometries that cover or touch a pixel down to a single value. The default is last. Any that takes an iterable and returns a single value will work, including custom functions. However, there are optimisations for built-in methods including sum, first, last, minimum, maximum, extrema and Statistics.mean. These may be an order of magnitude or more faster than count is a special-cased as it does not need a fill value.

  • data: a GeoInterface.jl AbstractGeometry, a nested Vector of AbstractGeometry, or a Tables.jl compatible object containing a :geometry column or points and values columns, in which case geometrycolumn must be specified.

Keywords

These are detected automatically from data where possible.

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

  • to: a Raster, RasterStack, Tuple of Dimension or Extents.Extent. If no to object is provided the extent will be calculated from the geometries, Additionally, when no to object or an Extent is passed for to, the size or res keyword must also be used.

  • res: the resolution of the dimensions (often in meters or degrees), a Real or Tuple{<:Real,<:Real}. Only required when to is not used or is an Extents.Extent, and size is not used.

  • size: the size of the output array, as a Tuple{Int,Int} or single Int for a square. Only required when to is not used or is an Extents.Extent, and res is not used.

  • crs: a crs which will be attached to the resulting raster when to not passed or is an Extent. Otherwise the crs from to is used.

  • shape: Force data to be treated as :polygon, :line or :point geometries. using points or lines as polygons may have unexpected results.

  • boundary: for polygons, include pixels where the :center is inside the polygon, where the polygon :touches the pixel, or that are completely :inside the polygon. The default is :center.

  • fill: the value or values to fill a polygon with. A Symbol or tuple of Symbol will be used to retrieve properties from features or column values from table rows. An array or other iterable will be used for each geometry, in order. fill can also be a function of the current value, e.g. x -> x + 1.

  • op: A reducing function that accepts two values and returns one, like min to minimum. For common methods this will be assigned for you, or is not required. But you can use it instead of a reducer as it will usually be faster.

  • shape: force data to be treated as :polygon, :line or :point, where possible Points can't be treated as lines or polygons, and lines may not work as polygons, but an attempt will be made.

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

  • progress: show a progress bar, true by default, false to hide..

  • verbose: print information and warnings when there are problems with the rasterisation. true by default.

  • threaded: run operations in parallel, false by default. In some circumstances threaded can give large speedups over single-threaded operation. This can be true for complicated geometries written into low-resolution rasters, but may not be for simple geometries with high-resolution rasters. With very large rasters threading may be counter productive due to excessive memory use. Caution should also be used: threaded should not be used in in-place functions writing to BitArray or other arrays where race conditions can occur.

  • threadsafe: specify that custom reducer and/or op functions are thread-safe, in that the order of operation or blocking does not matter. For example, sum and maximum are thread-safe, because the answer is approximately (besides floating point error) the same after running on nested blocks, or on all the data. In contrast, median or last are not, because the blocking (median) or order (last) matters.

  • filename: a filename to write to directly, useful for large files.

  • suffix: a string or value to append to the filename. A tuple of suffix will be applied to stack layers. keys(stack) are the default.

Note on threading. Performance may be much better with threaded=false if reducer/op are not threadsafe. sum, prod, maximum, minimum count and mean (by combining sum and count) are threadsafe. If you know your algorithm is threadsafe, use threadsafe=true to allow all optimisations. Functions passed to fill are always threadsafe, and ignore the threadsafe argument.

Example

Rasterize a shapefile for China and plot, with a border.

julia
using Rasters, RasterDataSources, ArchGDAL, Plots, Dates, Shapefile, Downloads
 using Rasters.Lookups
 
 # Download a borders shapefile
@@ -242,7 +272,7 @@
 
 savefig("build/china_rasterized.png"); nothing
 
-# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.rasterize!Function.
julia
rasterize!([reducer], dest, data; kw...)

Rasterize the geometries in data into the Raster or RasterStack dest, using the values specified by fill.

Arguments

  • dest: a Raster or RasterStack to rasterize into.

  • reducer: a reducing function to reduce the fill value for all geometries that cover or touch a pixel down to a single value. The default is last. Any that takes an iterable and returns a single value will work, including custom functions. However, there are optimisations for built-in methods including sum, first, last, minimum, maximum, extrema and Statistics.mean. These may be an order of magnitude or more faster than count is a special-cased as it does not need a fill value.

  • data: a GeoInterface.jl AbstractGeometry, a nested Vector of AbstractGeometry, or a Tables.jl compatible object containing a :geometry column or points and values columns, in which case geometrycolumn must be specified.

Keywords

These are detected automatically from A and data where possible.

  • fill: the value or values to fill a polygon with. A Symbol or tuple of Symbol will be used to retrieve properties from features or column values from table rows. An array or other iterable will be used for each geometry, in order. fill can also be a function of the current value, e.g. x -> x + 1.

  • op: A reducing function that accepts two values and returns one, like min to minimum. For common methods this will be assigned for you, or is not required. But you can use it instead of a reducer as it will usually be faster.

  • shape: force data to be treated as :polygon, :line or :point, where possible Points can't be treated as lines or polygons, and lines may not work as polygons, but an attempt will be made.

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

  • progress: show a progress bar, true by default, false to hide..

  • verbose: print information and warnings when there are problems with the rasterisation. true by default.

  • threaded: run operations in parallel, false by default. In some circumstances threaded can give large speedups over single-threaded operation. This can be true for complicated geometries written into low-resolution rasters, but may not be for simple geometries with high-resolution rasters. With very large rasters threading may be counter productive due to excessive memory use. Caution should also be used: threaded should not be used in in-place functions writing to BitArray or other arrays where race conditions can occur.

  • threadsafe: specify that custom reducer and/or op functions are thread-safe, in that the order of operation or blocking does not matter. For example, sum and maximum are thread-safe, because the answer is approximately (besides floating point error) the same after running on nested blocks, or on all the data. In contrast, median or last are not, because the blocking (median) or order (last) matters.

  • to: a Raster, RasterStack, Tuple of Dimension or Extents.Extent. If no to object is provided the extent will be calculated from the geometries, Additionally, when no to object or an Extent is passed for to, the size or res keyword must also be used.

  • res: the resolution of the dimensions (often in meters or degrees), a Real or Tuple{<:Real,<:Real}. Only required when to is not used or is an Extents.Extent, and size is not used.

  • size: the size of the output array, as a Tuple{Int,Int} or single Int for a square. Only required when to is not used or is an Extents.Extent, and res is not used.

  • crs: a crs which will be attached to the resulting raster when to not passed or is an Extent. Otherwise the crs from to is used.

  • shape: Force data to be treated as :polygon, :line or :point geometries. using points or lines as polygons may have unexpected results.

  • boundary: for polygons, include pixels where the :center is inside the polygon, where the polygon :touches the pixel, or that are completely :inside the polygon. The default is :center.

Example

julia
using Rasters, RasterDataSources, ArchGDAL, Plots, Dates, Shapefile, GeoInterface, Downloads
+# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.rasterize!Function.
julia
rasterize!([reducer], dest, data; kw...)

Rasterize the geometries in data into the Raster or RasterStack dest, using the values specified by fill.

Arguments

  • dest: a Raster or RasterStack to rasterize into.

  • reducer: a reducing function to reduce the fill value for all geometries that cover or touch a pixel down to a single value. The default is last. Any that takes an iterable and returns a single value will work, including custom functions. However, there are optimisations for built-in methods including sum, first, last, minimum, maximum, extrema and Statistics.mean. These may be an order of magnitude or more faster than count is a special-cased as it does not need a fill value.

  • data: a GeoInterface.jl AbstractGeometry, a nested Vector of AbstractGeometry, or a Tables.jl compatible object containing a :geometry column or points and values columns, in which case geometrycolumn must be specified.

Keywords

These are detected automatically from A and data where possible.

  • fill: the value or values to fill a polygon with. A Symbol or tuple of Symbol will be used to retrieve properties from features or column values from table rows. An array or other iterable will be used for each geometry, in order. fill can also be a function of the current value, e.g. x -> x + 1.

  • op: A reducing function that accepts two values and returns one, like min to minimum. For common methods this will be assigned for you, or is not required. But you can use it instead of a reducer as it will usually be faster.

  • shape: force data to be treated as :polygon, :line or :point, where possible Points can't be treated as lines or polygons, and lines may not work as polygons, but an attempt will be made.

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

  • progress: show a progress bar, true by default, false to hide..

  • verbose: print information and warnings when there are problems with the rasterisation. true by default.

  • threaded: run operations in parallel, false by default. In some circumstances threaded can give large speedups over single-threaded operation. This can be true for complicated geometries written into low-resolution rasters, but may not be for simple geometries with high-resolution rasters. With very large rasters threading may be counter productive due to excessive memory use. Caution should also be used: threaded should not be used in in-place functions writing to BitArray or other arrays where race conditions can occur.

  • threadsafe: specify that custom reducer and/or op functions are thread-safe, in that the order of operation or blocking does not matter. For example, sum and maximum are thread-safe, because the answer is approximately (besides floating point error) the same after running on nested blocks, or on all the data. In contrast, median or last are not, because the blocking (median) or order (last) matters.

  • to: a Raster, RasterStack, Tuple of Dimension or Extents.Extent. If no to object is provided the extent will be calculated from the geometries, Additionally, when no to object or an Extent is passed for to, the size or res keyword must also be used.

  • res: the resolution of the dimensions (often in meters or degrees), a Real or Tuple{<:Real,<:Real}. Only required when to is not used or is an Extents.Extent, and size is not used.

  • size: the size of the output array, as a Tuple{Int,Int} or single Int for a square. Only required when to is not used or is an Extents.Extent, and res is not used.

  • crs: a crs which will be attached to the resulting raster when to not passed or is an Extent. Otherwise the crs from to is used.

  • shape: Force data to be treated as :polygon, :line or :point geometries. using points or lines as polygons may have unexpected results.

  • boundary: for polygons, include pixels where the :center is inside the polygon, where the polygon :touches the pixel, or that are completely :inside the polygon. The default is :center.

Example

julia
using Rasters, RasterDataSources, ArchGDAL, Plots, Dates, Shapefile, GeoInterface, Downloads
 using Rasters.Lookups
 
 # Download a borders shapefile
@@ -270,12 +300,12 @@
 
 savefig("build/indonesia_rasterized.png"); nothing
 
-# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.replace_missingMethod.
julia
replace_missing(a::AbstractRaster, newmissingval)
+# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.replace_missingMethod.
julia
replace_missing(a::AbstractRaster, newmissingval)
 replace_missing(a::AbstractRasterStack, newmissingval)

Replace missing values in the array or stack with a new missing value, also updating the missingval field/s.

Keywords

  • filename: a filename to write to directly, useful for large files.

  • suffix: a string or value to append to the filename. A tuple of suffix will be applied to stack layers. keys(stack) are the default.

Example

julia
using Rasters, RasterDataSources, ArchGDAL
 A = Raster(WorldClim{Climate}, :prec; month=1) |> replace_missing
 missingval(A)
 # output
-missing

source


# Rasters.reprojectMethod.
julia
reproject(source::GeoFormat, target::GeoFormat, dim::Dimension, val)

reproject uses ArchGDAL.reproject, but implemented for a reprojecting a value array of values, a single dimension at a time.

source


# Rasters.reprojectMethod.
julia
reproject(obj; crs)

Reproject the lookups of obj to a different crs.

This is a lossless operation for the raster data, as only the lookup values change. This is only possible when the axes of source and destination projections are aligned: the change is usually from a Regular and an Irregular lookup spans.

For converting between projections that are rotated, skewed or warped in any way, use resample.

Dimensions without an AbstractProjected lookup (such as a Ti dimension) are silently returned without modification.

Arguments

  • obj: a Lookup, Dimension, Tuple of Dimension, Raster or RasterStack.

  • crs: a crs which will be attached to the resulting raster when to not passed or is an Extent. Otherwise the crs from to is used.

source


# Rasters.resampleMethod.
julia
resample(x; kw...)
+missing

source


# Rasters.reprojectMethod.
julia
reproject(source::GeoFormat, target::GeoFormat, dim::Dimension, val)

reproject uses ArchGDAL.reproject, but implemented for a reprojecting a value array of values, a single dimension at a time.

source


# Rasters.reprojectMethod.
julia
reproject(obj; crs)

Reproject the lookups of obj to a different crs.

This is a lossless operation for the raster data, as only the lookup values change. This is only possible when the axes of source and destination projections are aligned: the change is usually from a Regular and an Irregular lookup spans.

For converting between projections that are rotated, skewed or warped in any way, use resample.

Dimensions without an AbstractProjected lookup (such as a Ti dimension) are silently returned without modification.

Arguments

  • obj: a Lookup, Dimension, Tuple of Dimension, Raster or RasterStack.

  • crs: a crs which will be attached to the resulting raster when to not passed or is an Extent. Otherwise the crs from to is used.

source


# Rasters.resampleMethod.
julia
resample(x; kw...)
 resample(xs...; to=first(xs), kw...)

resample uses warp (which uses GDALs gdalwarp) to resample a Raster or RasterStack to a new resolution and optionally new crs, or to snap to the bounds, resolution and crs of the object to.

Dimensions without an AbstractProjected lookup (such as a Ti dimension) are iteratively resampled with GDAL and joined back into a single array.

If projections can be converted for each axis independently, it may be faster and more accurate to use reproject.

Run using ArchGDAL to make this method available.

Arguments

  • x: the object/s to resample.

Keywords

  • to: a Raster, RasterStack, Tuple of Dimension or Extents.Extent. If no to object is provided the extent will be calculated from x,

  • res: the resolution of the dimensions (often in meters or degrees), a Real or Tuple{<:Real,<:Real}. Only required when to is not used or is an Extents.Extent, and size is not used.

  • size: the size of the output array, as a Tuple{Int,Int} or single Int for a square. Only required when to is not used or is an Extents.Extent, and res is not used.

  • crs: a crs which will be attached to the resulting raster when to not passed or is an Extent. Otherwise the crs from to is used.

  • method: A Symbol or String specifying the method to use for resampling. From the docs for gdalwarp:

    • :near: nearest neighbour resampling (default, fastest algorithm, worst interpolation quality).

    • :bilinear: bilinear resampling.

    • :cubic: cubic resampling.

    • :cubicspline: cubic spline resampling.

    • :lanczos: Lanczos windowed sinc resampling.

    • :average: average resampling, computes the weighted average of all non-NODATA contributing pixels. rms root mean square / quadratic mean of all non-NODATA contributing pixels (GDAL >= 3.3)

    • :mode: mode resampling, selects the value which appears most often of all the sampled points.

    • :max: maximum resampling, selects the maximum value from all non-NODATA contributing pixels.

    • :min: minimum resampling, selects the minimum value from all non-NODATA contributing pixels.

    • :med: median resampling, selects the median value of all non-NODATA contributing pixels.

    • :q1: first quartile resampling, selects the first quartile value of all non-NODATA contributing pixels.

    • :q3: third quartile resampling, selects the third quartile value of all non-NODATA contributing pixels.

    • :sum: compute the weighted sum of all non-NODATA contributing pixels (since GDAL 3.1)

    Where NODATA values are set to missingval.

  • filename: a filename to write to directly, useful for large files.

  • suffix: a string or value to append to the filename. A tuple of suffix will be applied to stack layers. keys(stack) are the default.

Note:

  • GDAL may cause some unexpected changes in the raster, such as changing the crs type from EPSG to WellKnownText (it will represent the same CRS).

Example

Resample a WorldClim layer to match an EarthEnv layer:

julia
using Rasters, RasterDataSources, ArchGDAL, Plots
 A = Raster(WorldClim{Climate}, :prec; month=1)
 B = Raster(EarthEnv{HabitatHeterogeneity}, :evenness)
@@ -286,7 +316,7 @@
 savefig(a, "build/resample_example_before.png");
 savefig(b, "build/resample_example_after.png"); nothing
 
-# output

Before resample:

After resample:

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.setcrsMethod.
julia
setcrs(x, crs)

Set the crs of a Raster, RasterStack, Tuple of Dimension, or a Dimension. The crs is expected to be a GeoFormatTypes.jl CRS or Mixed GeoFormat type

source


# Rasters.setmappedcrsMethod.
julia
setmappedcrs(x, crs)

Set the mapped crs of a Raster, a RasterStack, a Tuple of Dimension, or a Dimension. The crs is expected to be a GeoFormatTypes.jl CRS or Mixed GeoFormat type

source


# Rasters.sliceMethod.
julia
slice(A::Union{AbstractRaster,AbstractRasterStack,AbstracRasterSeries}, dims) => RasterSeries

Slice views along some dimension/s to obtain a RasterSeries of the slices.

For a Raster or RasterStack this will return a RasterSeries of Raster or RasterStack that are slices along the specified dimensions.

For a RasterSeries, the output is another series where the child objects are sliced and the series dimensions index is now of the child dimensions combined. slice on a RasterSeries with no dimensions will slice along the dimensions shared by both the series and child object.

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.trimMethod.
julia
trim(x; dims::Tuple, pad::Int)

Trim missingval(x) from x for axes in dims, returning a view of x.

Arguments

  • x: A Raster or RasterStack. For stacks, all layers must having missing values for a pixel for it to be trimmed.

Keywords

  • dims: By default dims=(XDim, YDim), so that trimming keeps the area of X and Y that contains non-missing values along all other dimensions.

  • pad: The trimmed size will be padded by pad on all sides, although padding will not be added beyond the original extent of the array.

As trim is lazy, filename and suffix keywords are not used.

Example

Create trimmed layers of Australian habitat heterogeneity.

julia
using Rasters, RasterDataSources, Plots
+# output

Before resample:

After resample:

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.setcrsMethod.
julia
setcrs(x, crs)

Set the crs of a Raster, RasterStack, Tuple of Dimension, or a Dimension. The crs is expected to be a GeoFormatTypes.jl CRS or Mixed GeoFormat type

source


# Rasters.setmappedcrsMethod.
julia
setmappedcrs(x, crs)

Set the mapped crs of a Raster, a RasterStack, a Tuple of Dimension, or a Dimension. The crs is expected to be a GeoFormatTypes.jl CRS or Mixed GeoFormat type

source


# Rasters.sliceMethod.
julia
slice(A::Union{AbstractRaster,AbstractRasterStack,AbstracRasterSeries}, dims) => RasterSeries

Slice views along some dimension/s to obtain a RasterSeries of the slices.

For a Raster or RasterStack this will return a RasterSeries of Raster or RasterStack that are slices along the specified dimensions.

For a RasterSeries, the output is another series where the child objects are sliced and the series dimensions index is now of the child dimensions combined. slice on a RasterSeries with no dimensions will slice along the dimensions shared by both the series and child object.

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.trimMethod.
julia
trim(x; dims::Tuple, pad::Int)

Trim missingval(x) from x for axes in dims, returning a view of x.

Arguments

  • x: A Raster or RasterStack. For stacks, all layers must having missing values for a pixel for it to be trimmed.

Keywords

  • dims: By default dims=(XDim, YDim), so that trimming keeps the area of X and Y that contains non-missing values along all other dimensions.

  • pad: The trimmed size will be padded by pad on all sides, although padding will not be added beyond the original extent of the array.

As trim is lazy, filename and suffix keywords are not used.

Example

Create trimmed layers of Australian habitat heterogeneity.

julia
using Rasters, RasterDataSources, Plots
 layers = (:evenness, :range, :contrast, :correlation)
 st = RasterStack(EarthEnv{HabitatHeterogeneity}, layers)
 
@@ -301,7 +331,7 @@
 savefig(a, "build/trim_example_before.png");
 savefig(b, "build/trim_example_after.png"); nothing
 
-# output

Before trim:

After trim:

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.warpMethod.
julia
warp(A::AbstractRaster, flags::Dict; kw...)

Gives access to the GDALs gdalwarp method given a Dict of flag => value arguments that can be converted to strings, or vectors where multiple space-separated arguments are required.

Arrays with additional dimensions not handled by GDAL (other than X, Y, Band) are sliced, warped, and then combined to match the original array dimensions. These slices will not be written to disk and loaded lazily at this stage - you will need to do that manually if required.

See the gdalwarp docs for a list of arguments.

Run using ArchGDAL to make this method available.

Keywords

  • filename: a filename to write to directly, useful for large files.

  • suffix: a string or value to append to the filename. A tuple of suffix will be applied to stack layers. keys(stack) are the default.

Any additional keywords are passed to ArchGDAL.Dataset.

Example

This simply resamples the array with the :tr (output file resolution) and :r flags, giving us a pixelated version:

julia
using Rasters, RasterDataSources, Plots
+# output

Before trim:

After trim:

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.warpMethod.
julia
warp(A::AbstractRaster, flags::Dict; kw...)

Gives access to the GDALs gdalwarp method given a Dict of flag => value arguments that can be converted to strings, or vectors where multiple space-separated arguments are required.

Arrays with additional dimensions not handled by GDAL (other than X, Y, Band) are sliced, warped, and then combined to match the original array dimensions. These slices will not be written to disk and loaded lazily at this stage - you will need to do that manually if required.

See the gdalwarp docs for a list of arguments.

Run using ArchGDAL to make this method available.

Keywords

  • filename: a filename to write to directly, useful for large files.

  • suffix: a string or value to append to the filename. A tuple of suffix will be applied to stack layers. keys(stack) are the default.

Any additional keywords are passed to ArchGDAL.Dataset.

Example

This simply resamples the array with the :tr (output file resolution) and :r flags, giving us a pixelated version:

julia
using Rasters, RasterDataSources, Plots
 A = Raster(WorldClim{Climate}, :prec; month=1)
 a = plot(A)
 
@@ -314,7 +344,7 @@
 savefig(a, "build/warp_example_before.png");
 savefig(b, "build/warp_example_after.png"); nothing
 
-# output

Before warp:

After warp:

In practise, prefer resample for this. But warp may be more flexible.

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.zonalMethod.
julia
zonal(f, x::Union{Raster,RasterStack}; of, kw...)

Calculate zonal statistics for the the zone of a Raster or RasterStack covered by the of object/s.

Arguments

  • f: any function that reduces an iterable to a single value, such as sum or Statistics.mean

  • x: A Raster or RasterStack

  • of: A DimTuple, Extent, a Raster or one or multiple geometries. Geometries can be a GeoInterface.jl AbstractGeometry, a nested Vector of AbstractGeometry, or a Tables.jl compatible object containing a :geometry column or points and values columns, in which case geometrycolumn must be specified.

Keywords

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

These can be used when of is or contains (a) GeoInterface.jl compatible object(s):

  • shape: Force data to be treated as :polygon, :line or :point, where possible.

  • boundary: for polygons, include pixels where the :center is inside the polygon, where the line :touches the pixel, or that are completely :inside inside the polygon. The default is :center.

  • progress: show a progress bar, true by default, false to hide..

Example

julia
using Rasters, RasterDataSources, ArchGDAL, Shapefile, DataFrames, Downloads, Statistics, Dates
+# output

Before warp:

After warp:

In practise, prefer resample for this. But warp may be more flexible.

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.zonalMethod.
julia
zonal(f, x::Union{Raster,RasterStack}; of, kw...)

Calculate zonal statistics for the the zone of a Raster or RasterStack covered by the of object/s.

Arguments

  • f: any function that reduces an iterable to a single value, such as sum or Statistics.mean

  • x: A Raster or RasterStack

  • of: A DimTuple, Extent, a Raster or one or multiple geometries. Geometries can be a GeoInterface.jl AbstractGeometry, a nested Vector of AbstractGeometry, or a Tables.jl compatible object containing a :geometry column or points and values columns, in which case geometrycolumn must be specified.

Keywords

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

These can be used when of is or contains (a) GeoInterface.jl compatible object(s):

  • shape: Force data to be treated as :polygon, :line or :point, where possible.

  • boundary: for polygons, include pixels where the :center is inside the polygon, where the line :touches the pixel, or that are completely :inside inside the polygon. The default is :center.

  • progress: show a progress bar, true by default, false to hide..

Example

julia
using Rasters, RasterDataSources, ArchGDAL, Shapefile, DataFrames, Downloads, Statistics, Dates
 
 # Download a borders shapefile
 ne_url = "https://github.com/nvkelso/natural-earth-vector/raw/master/10m_cultural/ne_10m_admin_0_countries"
@@ -356,21 +386,21 @@
  256 │ Bajo Nuevo Bank               NaN        NaN        NaN        NaN
  257 │ Serranilla Bank               NaN        NaN        NaN        NaN
  258 │ Scarborough Reef              NaN        NaN        NaN        NaN
-                                                  3 columns and 243 rows omitted

source


Reference - Internal functions

# Rasters.AbstractProjectedType.
julia
AbstractProjected <: AbstractSampled

Abstract supertype for projected index lookups.

source


# Rasters.FileArrayType.
julia
FileArray{S} <: DiskArrays.AbstractDiskArray

Filearray is a DiskArrays.jl AbstractDiskArray. Instead of holding an open object, it just holds a filename string that is opened lazily when it needs to be read.

source


# Rasters.FileStackType.
julia
FileStack{S,Na}
+                                                  3 columns and 243 rows omitted

source


Reference - Internal functions

# Rasters.AbstractProjectedType.
julia
AbstractProjected <: AbstractSampled

Abstract supertype for projected index lookups.

source


# Rasters.FileArrayType.
julia
FileArray{S} <: DiskArrays.AbstractDiskArray

Filearray is a DiskArrays.jl AbstractDiskArray. Instead of holding an open object, it just holds a filename string that is opened lazily when it needs to be read.

source


# Rasters.FileStackType.
julia
FileStack{S,Na}
 
-FileStack{S,Na}(filename, types, sizes, eachchunk, haschunks, write)

A wrapper object that holds file pointer and size/chunking metadata for a multi-layered stack stored in a single file, typically netcdf or hdf5.

S is a backend type like NCDsource, and Na is a tuple of Symbol keys.

source


# Rasters.OpenStackType.
julia
OpenStack{X,K}
+FileStack{S,Na}(filename, types, sizes, eachchunk, haschunks, write)

A wrapper object that holds file pointer and size/chunking metadata for a multi-layered stack stored in a single file, typically netcdf or hdf5.

S is a backend type like NCDsource, and Na is a tuple of Symbol keys.

source


# Rasters.OpenStackType.
julia
OpenStack{X,K}
 
-OpenStack{X,K}(dataset)

A wrapper for any stack-like opened dataset that can be indexed with Symbol keys to retrieve AbstractArray layers.

OpenStack is usually hidden from users, wrapped in a regular RasterStack passed as the function argument in open(stack) when the stack is contained in a single file.

X is a backend type like NCDsource, and K is a tuple of Symbol keys.

source


# Rasters.RasterDiskArrayType.
julia
RasterDiskArray <: DiskArrays.AbstractDiskArray

A basic DiskArrays.jl wrapper for objects that don't have one defined yet. When we open a FileArray it is replaced with a RasterDiskArray.

source


# Base.openMethod.
julia
open(f, A::AbstractRaster; write=false)

open is used to open any lazy=true AbstractRaster and do multiple operations on it in a safe way. The write keyword opens the file in write lookup so that it can be altered on disk using e.g. a broadcast.

f is a method that accepts a single argument - an Raster object which is just an AbstractRaster that holds an open disk-based object. Often it will be a do block:

lazy=false (in-memory) rasters will ignore open and pass themselves to f.

julia
# A is an `Raster` wrapping the opened disk-based object.
+OpenStack{X,K}(dataset)

A wrapper for any stack-like opened dataset that can be indexed with Symbol keys to retrieve AbstractArray layers.

OpenStack is usually hidden from users, wrapped in a regular RasterStack passed as the function argument in open(stack) when the stack is contained in a single file.

X is a backend type like NCDsource, and K is a tuple of Symbol keys.

source


# Rasters.RasterDiskArrayType.
julia
RasterDiskArray <: DiskArrays.AbstractDiskArray

A basic DiskArrays.jl wrapper for objects that don't have one defined yet. When we open a FileArray it is replaced with a RasterDiskArray.

source


# Base.openMethod.
julia
open(f, A::AbstractRaster; write=false)

open is used to open any lazy=true AbstractRaster and do multiple operations on it in a safe way. The write keyword opens the file in write lookup so that it can be altered on disk using e.g. a broadcast.

f is a method that accepts a single argument - an Raster object which is just an AbstractRaster that holds an open disk-based object. Often it will be a do block:

lazy=false (in-memory) rasters will ignore open and pass themselves to f.

julia
# A is an `Raster` wrapping the opened disk-based object.
 open(Raster(filepath); write=true) do A
     mask!(A; with=maskfile)
     A[I...] .*= 2
     # ...  other things you need to do with the open file
-end

By using a do block to open files we ensure they are always closed again after we finish working with them.

source


# Base.read!Method.
julia
read!(src::Union{AbstractString,AbstractRaster}, dst::AbstractRaster)
+end

By using a do block to open files we ensure they are always closed again after we finish working with them.

source


# Base.read!Method.
julia
read!(src::Union{AbstractString,AbstractRaster}, dst::AbstractRaster)
 read!(src::Union{AbstractString,AbstractRasterStack}, dst::AbstractRasterStack)
-read!(scr::AbstractRasterSeries, dst::AbstractRasterSeries)

read! will copy the data from src to the object dst.

src can be an object or a file-path String.

source


# Base.readMethod.
julia
read(A::AbstractRaster)
+read!(scr::AbstractRasterSeries, dst::AbstractRasterSeries)

read! will copy the data from src to the object dst.

src can be an object or a file-path String.

source


# Base.readMethod.
julia
read(A::AbstractRaster)
 read(A::AbstractRasterStack)
-read(A::AbstractRasterSeries)

read will move a Rasters.jl object completely to memory.

Keywords

  • checkmemory: If true (the default), check if there is enough memory for the operation. false will ignore memory needs.

source


# Base.skipmissingMethod.
julia
skipmissing(itr::Raster)

Returns an iterable over the elements in a Raster object, skipping any values equal to either the missingval or missing.

source


# Base.writeMethod.
julia
Base.write(filepath::AbstractString, s::AbstractRasterSeries; kw...)

Write any AbstractRasterSeries to multiple files, guessing the backend from the file extension.

The lookup values of the series will be appended to the filepath (before the extension), separated by underscores.

All keywords are passed through to these Raster and RasterStack methods.

Keywords

  • chunks: a NTuple{N,Int} specifying the chunk size for each dimension. To specify only specific dimensions, a Tuple of Dimension wrapping Int or a NamedTuple of Int can be used. Other dimensions will have a chunk size of 1. true can be used to mean: use the original chunk size of the lazy Raster being written or X and Y of 256 by 256. false means don't use chunks at all.

  • ext: filename extension such as ".tiff" or ".nc". Used to specify specific files if only a directory path is used.

  • force: false by default. If true it force writing to a file destructively, even if it already exists.

  • missingval: set the missing value (i.e. FillValue / nodataval) of the written raster, as Julias missing cannot be stored. If not passed in, missingval will be detected from metadata or a default will be chosen. For series with RasterStack child objects, this may be a NamedTuple, one for each layer.

  • source: Usually automatically detected from filepath extension. To manually force, a Symbol can be passed :gdal, :netcdf, :grd, :grib. The internal Rasters.Source objects, such as Rasters.GDALsource(), Rasters.GRIBsource() or Rasters.NCDsource() can also be used.

  • vebose: whether to print messages about potential problems. true by default.

source


# Base.writeMethod.
julia
Base.write(filename::AbstractString, s::AbstractRasterStack; kw...)

Write any AbstractRasterStack to one or multiple files, depending on the backend. Backend is guessed from the filename extension or forced with the source keyword.

If the source can't be saved as a stack-like object, individual array layers will be saved.

Keywords

  • chunks: a NTuple{N,Int} specifying the chunk size for each dimension. To specify only specific dimensions, a Tuple of Dimension wrapping Int or a NamedTuple of Int can be used. Other dimensions will have a chunk size of 1. true can be used to mean: use the original chunk size of the lazy Raster being written or X and Y of 256 by 256. false means don't use chunks at all.

  • ext: filename extension such as ".tiff" or ".nc". Used to specify specific files if only a directory path is used.

  • force: false by default. If true it force writing to a file destructively, even if it already exists.

  • missingval: set the missing value (i.e. FillValue / nodataval) of the written raster, as Julias missing cannot be stored. If not passed in, missingval will be detected from metadata or a default will be chosen. For RasterStack this may be a NamedTuple, one for each layer.

  • source: Usually automatically detected from filepath extension. To manually force, a Symbol can be passed :gdal, :netcdf, :grd, :grib. The internal Rasters.Source objects, such as Rasters.GDALsource(), Rasters.GRIBsource() or Rasters.NCDsource() can also be used.

  • suffix: a string or value to append to the filename. A tuple of suffix will be applied to stack layers. keys(stack) are the default.

  • vebose: whether to print messages about potential problems. true by default.

Other keyword arguments are passed to the write method for the backend.

NetCDF keywords

GDAL Keywords

  • force: false by default. If true it force writing to a file destructively, even if it already exists.

  • driver: A GDAL driver name String or a GDAL driver retrieved via ArchGDAL.getdriver(drivername). By default driver is guessed from the filename extension.

  • options::Dict{String,String}: A dictionary containing the dataset creation options passed to the driver. For example: Dict("COMPRESS" => "DEFLATE").

Valid options for each specific driver can be found at: https://gdal.org/drivers/raster/index.html

Source comments

R grd/grid files

Write a Raster to a .grd file with a .gri header file. Returns the base of filename with a .grd extension.

GDAL (tiff, and everything else)

Used if you write a Raster with a filename extension that no other backend can write. GDAL is the fallback, and writes a lot of file types, but is not guaranteed to work.

source


# Base.writeMethod.
julia
Base.write(filename::AbstractString, A::AbstractRaster; [source], kw...)

Write an AbstractRaster to file, guessing the backend from the file extension or using the source keyword.

Keywords

  • chunks: a NTuple{N,Int} specifying the chunk size for each dimension. To specify only specific dimensions, a Tuple of Dimension wrapping Int or a NamedTuple of Int can be used. Other dimensions will have a chunk size of 1. true can be used to mean: use the original chunk size of the lazy Raster being written or X and Y of 256 by 256. false means don't use chunks at all.

  • force: false by default. If true it force writing to a file destructively, even if it already exists.

  • missingval: set the missing value (i.e. FillValue / nodataval) of the written raster, as Julias missing cannot be stored. If not passed in, missingval will be detected from metadata or a default will be chosen.

  • source: Usually automatically detected from filepath extension. To manually force, a Symbol can be passed :gdal, :netcdf, :grd, :grib. The internal Rasters.Source objects, such as Rasters.GDALsource(), Rasters.GRIBsource() or Rasters.NCDsource() can also be used.

Other keyword arguments are passed to the write method for the backend.

NetCDF keywords

GDAL Keywords

  • force: false by default. If true it force writing to a file destructively, even if it already exists.

  • driver: A GDAL driver name String or a GDAL driver retrieved via ArchGDAL.getdriver(drivername). By default driver is guessed from the filename extension.

  • options::Dict{String,String}: A dictionary containing the dataset creation options passed to the driver. For example: Dict("COMPRESS" => "DEFLATE").

Valid options for each specific driver can be found at: https://gdal.org/drivers/raster/index.html

Source comments

R grd/grid files

Write a Raster to a .grd file with a .gri header file. Returns the base of filename with a .grd extension.

GDAL (tiff, and everything else)

Used if you write a Raster with a filename extension that no other backend can write. GDAL is the fallback, and writes a lot of file types, but is not guaranteed to work.

Returns filename.

source


# Base.writeMethod.
julia
Base.write(filename::AbstractString, ::Type{GRDsource}, s::AbstractRaster; kw...)

Write a Raster to a .grd file with a .gri header file.

This method is called automatically if you write a Raster with a .grd or .gri extension.

Keywords

  • force: false by default. If true it force writing to a file destructively, even if it already exists.

If this method is called directly the extension of filename will be ignored.

Returns the base of filename with a .grd extension.

source


# Rasters.checkmem!Method.
julia
checkmem!(x::Bool)

Set checkmem to true or false.

In some architectures memory reporting may be wrong and you may wish to disable memory checks.

This setting can be overridden with the checkmem keyword, where applicable.

source


# Rasters.rplotMethod.
julia
Rasters.rplot([position::GridPosition], raster; kw...)

raster may be a Raster (of 2 or 3 dimensions) or a RasterStack whose underlying rasters are 2 dimensional, or 3-dimensional with a singleton (length-1) third dimension.

Keywords

  • plottype = Makie.Heatmap: The type of plot. Can be any Makie plot type which accepts a Raster; in practice, Heatmap, Contour, Contourf and Surface are the best bets.

  • axistype = Makie.Axis: The type of axis. This can be an Axis, Axis3, LScene, or even a GeoAxis from GeoMakie.jl.

  • X = XDim: The X dimension of the raster.

  • Y = YDim: The Y dimension of the raster.

  • Z = YDim: The Y dimension of the raster.

  • draw_colorbar = true: Whether to draw a colorbar for the axis or not.

  • colorbar_position = Makie.Right(): Indicates which side of the axis the colorbar should be placed on. Can be Makie.Top(), Makie.Bottom(), Makie.Left(), or Makie.Right().

  • colorbar_padding = Makie.automatic: The amount of padding between the colorbar and its axis. If automatic, then this is set to the width of the colorbar.

  • title = Makie.automatic: The titles of each plot. If automatic, these are set to the name of the band.

  • xlabel = Makie.automatic: The x-label for the axis. If automatic, set to the dimension name of the X-dimension of the raster.

  • ylabel = Makie.automatic: The y-label for the axis. If automatic, set to the dimension name of the Y-dimension of the raster.

  • colorbarlabel = "": Usually nothing, but here if you need it. Sets the label on the colorbar.

  • colormap = nothing: The colormap for the heatmap. This can be set to a vector of colormaps (symbols, strings, cgrads) if plotting a 3D raster or RasterStack.

  • colorrange = Makie.automatic: The colormap for the heatmap. This can be set to a vector of (low, high) if plotting a 3D raster or RasterStack.

  • nan_color = :transparent: The color which NaN values should take. Default to transparent.

source


- +read(A::AbstractRasterSeries)

read will move a Rasters.jl object completely to memory.

Keywords

  • checkmemory: If true (the default), check if there is enough memory for the operation. false will ignore memory needs.

source


# Base.skipmissingMethod.
julia
skipmissing(itr::Raster)

Returns an iterable over the elements in a Raster object, skipping any values equal to either the missingval or missing.

source


# Base.writeMethod.
julia
Base.write(filepath::AbstractString, s::AbstractRasterSeries; kw...)

Write any AbstractRasterSeries to multiple files, guessing the backend from the file extension.

The lookup values of the series will be appended to the filepath (before the extension), separated by underscores.

All keywords are passed through to these Raster and RasterStack methods.

Keywords

  • chunks: a NTuple{N,Int} specifying the chunk size for each dimension. To specify only specific dimensions, a Tuple of Dimension wrapping Int or a NamedTuple of Int can be used. Other dimensions will have a chunk size of 1. true can be used to mean: use the original chunk size of the lazy Raster being written or X and Y of 256 by 256. false means don't use chunks at all.

  • ext: filename extension such as ".tiff" or ".nc". Used to specify specific files if only a directory path is used.

  • force: false by default. If true it force writing to a file destructively, even if it already exists.

  • missingval: set the missing value (i.e. FillValue / nodataval) of the written raster, as Julias missing cannot be stored. If not passed in, missingval will be detected from metadata or a default will be chosen. For series with RasterStack child objects, this may be a NamedTuple, one for each layer.

  • source: Usually automatically detected from filepath extension. To manually force, a Symbol can be passed :gdal, :netcdf, :grd, :grib. The internal Rasters.Source objects, such as Rasters.GDALsource(), Rasters.GRIBsource() or Rasters.NCDsource() can also be used.

  • vebose: whether to print messages about potential problems. true by default.

source


# Base.writeMethod.
julia
Base.write(filename::AbstractString, s::AbstractRasterStack; kw...)

Write any AbstractRasterStack to one or multiple files, depending on the backend. Backend is guessed from the filename extension or forced with the source keyword.

If the source can't be saved as a stack-like object, individual array layers will be saved.

Keywords

  • chunks: a NTuple{N,Int} specifying the chunk size for each dimension. To specify only specific dimensions, a Tuple of Dimension wrapping Int or a NamedTuple of Int can be used. Other dimensions will have a chunk size of 1. true can be used to mean: use the original chunk size of the lazy Raster being written or X and Y of 256 by 256. false means don't use chunks at all.

  • ext: filename extension such as ".tiff" or ".nc". Used to specify specific files if only a directory path is used.

  • force: false by default. If true it force writing to a file destructively, even if it already exists.

  • missingval: set the missing value (i.e. FillValue / nodataval) of the written raster, as Julias missing cannot be stored. If not passed in, missingval will be detected from metadata or a default will be chosen. For RasterStack this may be a NamedTuple, one for each layer.

  • source: Usually automatically detected from filepath extension. To manually force, a Symbol can be passed :gdal, :netcdf, :grd, :grib. The internal Rasters.Source objects, such as Rasters.GDALsource(), Rasters.GRIBsource() or Rasters.NCDsource() can also be used.

  • suffix: a string or value to append to the filename. A tuple of suffix will be applied to stack layers. keys(stack) are the default.

  • vebose: whether to print messages about potential problems. true by default.

Other keyword arguments are passed to the write method for the backend.

NetCDF keywords

GDAL Keywords

  • force: false by default. If true it force writing to a file destructively, even if it already exists.

  • driver: A GDAL driver name String or a GDAL driver retrieved via ArchGDAL.getdriver(drivername). By default driver is guessed from the filename extension.

  • options::Dict{String,String}: A dictionary containing the dataset creation options passed to the driver. For example: Dict("COMPRESS" => "DEFLATE").

Valid options for each specific driver can be found at: https://gdal.org/drivers/raster/index.html

Source comments

R grd/grid files

Write a Raster to a .grd file with a .gri header file. Returns the base of filename with a .grd extension.

GDAL (tiff, and everything else)

Used if you write a Raster with a filename extension that no other backend can write. GDAL is the fallback, and writes a lot of file types, but is not guaranteed to work.

source


# Base.writeMethod.
julia
Base.write(filename::AbstractString, A::AbstractRaster; [source], kw...)

Write an AbstractRaster to file, guessing the backend from the file extension or using the source keyword.

Keywords

  • chunks: a NTuple{N,Int} specifying the chunk size for each dimension. To specify only specific dimensions, a Tuple of Dimension wrapping Int or a NamedTuple of Int can be used. Other dimensions will have a chunk size of 1. true can be used to mean: use the original chunk size of the lazy Raster being written or X and Y of 256 by 256. false means don't use chunks at all.

  • force: false by default. If true it force writing to a file destructively, even if it already exists.

  • missingval: set the missing value (i.e. FillValue / nodataval) of the written raster, as Julias missing cannot be stored. If not passed in, missingval will be detected from metadata or a default will be chosen.

  • source: Usually automatically detected from filepath extension. To manually force, a Symbol can be passed :gdal, :netcdf, :grd, :grib. The internal Rasters.Source objects, such as Rasters.GDALsource(), Rasters.GRIBsource() or Rasters.NCDsource() can also be used.

Other keyword arguments are passed to the write method for the backend.

NetCDF keywords

GDAL Keywords

  • force: false by default. If true it force writing to a file destructively, even if it already exists.

  • driver: A GDAL driver name String or a GDAL driver retrieved via ArchGDAL.getdriver(drivername). By default driver is guessed from the filename extension.

  • options::Dict{String,String}: A dictionary containing the dataset creation options passed to the driver. For example: Dict("COMPRESS" => "DEFLATE").

Valid options for each specific driver can be found at: https://gdal.org/drivers/raster/index.html

Source comments

R grd/grid files

Write a Raster to a .grd file with a .gri header file. Returns the base of filename with a .grd extension.

GDAL (tiff, and everything else)

Used if you write a Raster with a filename extension that no other backend can write. GDAL is the fallback, and writes a lot of file types, but is not guaranteed to work.

Returns filename.

source


# Base.writeMethod.
julia
Base.write(filename::AbstractString, ::Type{GRDsource}, s::AbstractRaster; kw...)

Write a Raster to a .grd file with a .gri header file.

This method is called automatically if you write a Raster with a .grd or .gri extension.

Keywords

  • force: false by default. If true it force writing to a file destructively, even if it already exists.

If this method is called directly the extension of filename will be ignored.

Returns the base of filename with a .grd extension.

source


# Rasters.checkmem!Method.
julia
checkmem!(x::Bool)

Set checkmem to true or false.

In some architectures memory reporting may be wrong and you may wish to disable memory checks.

This setting can be overridden with the checkmem keyword, where applicable.

source


# Rasters.rplotMethod.
julia
Rasters.rplot([position::GridPosition], raster; kw...)

raster may be a Raster (of 2 or 3 dimensions) or a RasterStack whose underlying rasters are 2 dimensional, or 3-dimensional with a singleton (length-1) third dimension.

Keywords

  • plottype = Makie.Heatmap: The type of plot. Can be any Makie plot type which accepts a Raster; in practice, Heatmap, Contour, Contourf and Surface are the best bets.

  • axistype = Makie.Axis: The type of axis. This can be an Axis, Axis3, LScene, or even a GeoAxis from GeoMakie.jl.

  • X = XDim: The X dimension of the raster.

  • Y = YDim: The Y dimension of the raster.

  • Z = YDim: The Y dimension of the raster.

  • draw_colorbar = true: Whether to draw a colorbar for the axis or not.

  • colorbar_position = Makie.Right(): Indicates which side of the axis the colorbar should be placed on. Can be Makie.Top(), Makie.Bottom(), Makie.Left(), or Makie.Right().

  • colorbar_padding = Makie.automatic: The amount of padding between the colorbar and its axis. If automatic, then this is set to the width of the colorbar.

  • title = Makie.automatic: The titles of each plot. If automatic, these are set to the name of the band.

  • xlabel = Makie.automatic: The x-label for the axis. If automatic, set to the dimension name of the X-dimension of the raster.

  • ylabel = Makie.automatic: The y-label for the axis. If automatic, set to the dimension name of the Y-dimension of the raster.

  • colorbarlabel = "": Usually nothing, but here if you need it. Sets the label on the colorbar.

  • colormap = nothing: The colormap for the heatmap. This can be set to a vector of colormaps (symbols, strings, cgrads) if plotting a 3D raster or RasterStack.

  • colorrange = Makie.automatic: The colormap for the heatmap. This can be set to a vector of (low, high) if plotting a 3D raster or RasterStack.

  • nan_color = :transparent: The color which NaN values should take. Default to transparent.

source


+ \ No newline at end of file diff --git a/dev/array_operations.html b/dev/array_operations.html index e995b5bd..ca216798 100644 --- a/dev/array_operations.html +++ b/dev/array_operations.html @@ -8,9 +8,9 @@ - + - + @@ -159,7 +159,7 @@ -180.0 -3.4f38 -3.4f38 -3.4f38 -3.4f38 -15.399 -13.805 -14.046 ⋮ ⋱ ⋮ 179.833 -3.4f38 -3.4f38 -3.4f38 -3.4f38 -17.1478 -15.4243 -15.701

setcrs(A, crs) and setmappedcrs(A, crs) will set the crs value/s of an object to any GeoFormat from GeoFormatTypes.jl.

- + \ No newline at end of file diff --git a/dev/assets/api.md.CTP_N2dr.lean.js b/dev/assets/api.md.CTP_N2dr.lean.js deleted file mode 100644 index d69fa1b5..00000000 --- a/dev/assets/api.md.CTP_N2dr.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as e,a7 as a}from"./chunks/framework.Dv3PRBLL.js";const t="/Rasters.jl/dev/assets/aggregate_example.vPDkaGne.png",l="/Rasters.jl/dev/assets/boolmask_example.B6nOyO_A.png",n="/Rasters.jl/dev/assets/classify_example.CA_6ItEA.png",r="/Rasters.jl/dev/assets/classify_bang_example.Ch0DZvbI.png",o="/Rasters.jl/dev/assets/extend_example.DNJ4wwKN.png",h="/Rasters.jl/dev/assets/boolmask_example.B6nOyO_A.png",p="/Rasters.jl/dev/assets/mosaic_bang_example.CvGODN-X.png",d="/Rasters.jl/dev/assets/mosaic_example_africa.Dpr9JnNl.png",k="/Rasters.jl/dev/assets/mosaic_example_aus.BUYX_3VG.png",c="/Rasters.jl/dev/assets/mosaic_example_combined.BOwV7n5f.png",g="/Rasters.jl/dev/assets/china_rasterized.DaqQ_Yxj.png",E="/Rasters.jl/dev/assets/indonesia_rasterized.CAASrLmh.png",y="/Rasters.jl/dev/assets/warp_example_before.DrW8As6m.png",u="/Rasters.jl/dev/assets/resample_example_after.C_gavhhT.png",b="/Rasters.jl/dev/assets/trim_example_before.B583SoP8.png",m="/Rasters.jl/dev/assets/trim_example_after.CsDpPakV.png",f="/Rasters.jl/dev/assets/warp_example_before.DrW8As6m.png",F="/Rasters.jl/dev/assets/warp_example_after.09R-gfOV.png",_=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"api.md","filePath":"api.md","lastUpdated":null}'),C={name:"api.md"},A=a("",130),v=[A];function R(D,B,w,x,j,S){return e(),i("div",null,v)}const q=s(C,[["render",R]]);export{_ as __pageData,q as default}; diff --git a/dev/assets/api.md.CTP_N2dr.js b/dev/assets/api.md.CXk68RKm.js similarity index 86% rename from dev/assets/api.md.CTP_N2dr.js rename to dev/assets/api.md.CXk68RKm.js index c6f74c2e..3b3c5331 100644 --- a/dev/assets/api.md.CTP_N2dr.js +++ b/dev/assets/api.md.CXk68RKm.js @@ -1,20 +1,20 @@ -import{_ as s,c as i,o as e,a7 as a}from"./chunks/framework.Dv3PRBLL.js";const t="/Rasters.jl/dev/assets/aggregate_example.vPDkaGne.png",l="/Rasters.jl/dev/assets/boolmask_example.B6nOyO_A.png",n="/Rasters.jl/dev/assets/classify_example.CA_6ItEA.png",r="/Rasters.jl/dev/assets/classify_bang_example.Ch0DZvbI.png",o="/Rasters.jl/dev/assets/extend_example.DNJ4wwKN.png",h="/Rasters.jl/dev/assets/boolmask_example.B6nOyO_A.png",p="/Rasters.jl/dev/assets/mosaic_bang_example.CvGODN-X.png",d="/Rasters.jl/dev/assets/mosaic_example_africa.Dpr9JnNl.png",k="/Rasters.jl/dev/assets/mosaic_example_aus.BUYX_3VG.png",c="/Rasters.jl/dev/assets/mosaic_example_combined.BOwV7n5f.png",g="/Rasters.jl/dev/assets/china_rasterized.DaqQ_Yxj.png",E="/Rasters.jl/dev/assets/indonesia_rasterized.CAASrLmh.png",y="/Rasters.jl/dev/assets/warp_example_before.DrW8As6m.png",u="/Rasters.jl/dev/assets/resample_example_after.C_gavhhT.png",b="/Rasters.jl/dev/assets/trim_example_before.B583SoP8.png",m="/Rasters.jl/dev/assets/trim_example_after.CsDpPakV.png",f="/Rasters.jl/dev/assets/warp_example_before.DrW8As6m.png",F="/Rasters.jl/dev/assets/warp_example_after.09R-gfOV.png",_=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"api.md","filePath":"api.md","lastUpdated":null}'),C={name:"api.md"},A=a(`

Index

Reference - Exported functions

# Rasters.RastersModule.

source


# Rasters.AbstractRasterType.
julia
AbstractRaster <: DimensionalData.AbstractDimArray

Abstract supertype for objects that wrap an array (or location of an array) and metadata about its contents. It may be memory or hold a FileArray, which holds the filename, and is only opened when required.

AbstractRasters inherit from AbstractDimArray from DimensionalData.jl. They can be indexed as regular Julia arrays or with DimensionalData.jl Dimensions. They will plot as a heatmap in Plots.jl with correct coordinates and labels, even after slicing with getindex or view. getindex on a AbstractRaster will always return a memory-backed Raster.

source


# Rasters.AbstractRasterSeriesType.
julia
AbstractRasterSeries <: DimensionalData.AbstractDimensionalArray

Abstract supertype for high-level DimensionalArray that hold RasterStacks, Rasters, or the paths they can be loaded from. RasterSeries are indexed with dimensions as with a AbstractRaster. This is useful when you have multiple files containing rasters or stacks of rasters spread over dimensions like time and elevation.

As much as possible, implementations should facilitate loading entire directories and detecting the dimensions from metadata.

This allows syntax like below for a series of stacks of arrays:

julia
RasterSeries[Time(Near(DateTime(2001, 1))][:temp][Y(Between(70, 150)), X(Between(-20,20))] |> plot\`

RasterSeries is the concrete implementation.

source


# Rasters.AbstractRasterStackType.
julia
AbstractRasterStack

Abstract supertype for objects that hold multiple AbstractRasters that share spatial dimensions.

They are NamedTuple-like structures that may either contain NamedTuple of AbstractRasters, string paths that will load AbstractRasters, or a single path that points to a file containing multiple layers, like NetCDF or HDF5. Use and syntax is similar or identical for all cases.

AbstractRasterStack can hold layers that share some or all of their dimensions. They cannot have the same dimension with different length or spatial extent as another layer.

getindex on an AbstractRasterStack generally returns a memory backed standard Raster. raster[:somelayer] |> plot plots the layers array, while raster[:somelayer, X(1:100), Band(2)] |> plot will plot the subset without loading the whole array.

getindex on an AbstractRasterStack with a key returns another stack with getindex applied to all the arrays in the stack.

source


# Rasters.BandType.
julia
Band <: Dimension
+import{_ as s,c as i,o as e,a7 as a}from"./chunks/framework.Dv3PRBLL.js";const t="/Rasters.jl/dev/assets/aggregate_example.vPDkaGne.png",n="/Rasters.jl/dev/assets/boolmask_example.B6nOyO_A.png",l="/Rasters.jl/dev/assets/classify_example.CA_6ItEA.png",r="/Rasters.jl/dev/assets/classify_bang_example.Ch0DZvbI.png",h="/Rasters.jl/dev/assets/nz_crop_example.CeBIxUDy.png",p="/Rasters.jl/dev/assets/argentina_crop_example.DloKGsrn.png",o="/Rasters.jl/dev/assets/extend_example.DNJ4wwKN.png",d="/Rasters.jl/dev/assets/boolmask_example.B6nOyO_A.png",k="/Rasters.jl/dev/assets/mosaic_bang_example.CvGODN-X.png",c="/Rasters.jl/dev/assets/mosaic_example_africa.Dpr9JnNl.png",g="/Rasters.jl/dev/assets/mosaic_example_aus.BUYX_3VG.png",E="/Rasters.jl/dev/assets/mosaic_example_combined.BOwV7n5f.png",y="/Rasters.jl/dev/assets/china_rasterized.DaqQ_Yxj.png",u="/Rasters.jl/dev/assets/indonesia_rasterized.CAASrLmh.png",b="/Rasters.jl/dev/assets/warp_example_before.DrW8As6m.png",m="/Rasters.jl/dev/assets/resample_example_after.C_gavhhT.png",F="/Rasters.jl/dev/assets/trim_example_before.B583SoP8.png",f="/Rasters.jl/dev/assets/trim_example_after.CsDpPakV.png",C="/Rasters.jl/dev/assets/warp_example_before.DrW8As6m.png",A="/Rasters.jl/dev/assets/warp_example_after.09R-gfOV.png",z=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"api.md","filePath":"api.md","lastUpdated":null}'),v={name:"api.md"},R=a(`

Index

Reference - Exported functions

# Rasters.RastersModule.

source


# Rasters.AbstractRasterType.
julia
AbstractRaster <: DimensionalData.AbstractDimArray

Abstract supertype for objects that wrap an array (or location of an array) and metadata about its contents. It may be memory or hold a FileArray, which holds the filename, and is only opened when required.

AbstractRasters inherit from AbstractDimArray from DimensionalData.jl. They can be indexed as regular Julia arrays or with DimensionalData.jl Dimensions. They will plot as a heatmap in Plots.jl with correct coordinates and labels, even after slicing with getindex or view. getindex on a AbstractRaster will always return a memory-backed Raster.

source


# Rasters.AbstractRasterSeriesType.
julia
AbstractRasterSeries <: DimensionalData.AbstractDimensionalArray

Abstract supertype for high-level DimensionalArray that hold RasterStacks, Rasters, or the paths they can be loaded from. RasterSeries are indexed with dimensions as with a AbstractRaster. This is useful when you have multiple files containing rasters or stacks of rasters spread over dimensions like time and elevation.

As much as possible, implementations should facilitate loading entire directories and detecting the dimensions from metadata.

This allows syntax like below for a series of stacks of arrays:

julia
RasterSeries[Time(Near(DateTime(2001, 1))][:temp][Y(Between(70, 150)), X(Between(-20,20))] |> plot\`

RasterSeries is the concrete implementation.

source


# Rasters.AbstractRasterStackType.
julia
AbstractRasterStack

Abstract supertype for objects that hold multiple AbstractRasters that share spatial dimensions.

They are NamedTuple-like structures that may either contain NamedTuple of AbstractRasters, string paths that will load AbstractRasters, or a single path that points to a file containing multiple layers, like NetCDF or HDF5. Use and syntax is similar or identical for all cases.

AbstractRasterStack can hold layers that share some or all of their dimensions. They cannot have the same dimension with different length or spatial extent as another layer.

getindex on an AbstractRasterStack generally returns a memory backed standard Raster. raster[:somelayer] |> plot plots the layers array, while raster[:somelayer, X(1:100), Band(2)] |> plot will plot the subset without loading the whole array.

getindex on an AbstractRasterStack with a key returns another stack with getindex applied to all the arrays in the stack.

source


# Rasters.BandType.
julia
Band <: Dimension
 
 Band(val=:)

Band Dimension for multi-band rasters.

Example:

julia
banddim = Band(10:10:100)
 # Or
 val = A[Band(1)]
 # Or
-mean(A; dims=Band)

source


# Rasters.MappedType.
julia
Mapped <: AbstractProjected
+mean(A; dims=Band)

source


# Rasters.MappedType.
julia
Mapped <: AbstractProjected
 
 Mapped(order, span, sampling, crs, mappedcrs)
-Mapped(; order=AutoOrder(), span=AutoSpan(), sampling=AutoSampling(), crs=nothing, mappedcrs)

An AbstractSampled Lookup, where the dimension index has been mapped to another projection, usually lat/lon or EPSG(4326). Mapped matches the dimension format commonly used in netcdf files.

Fields and behaviours are identical to Sampled with the addition of crs and mappedcrs fields.

The mapped dimension index will be used as for Sampled, but to save in another format the underlying crs may be used to convert it.

source


# Rasters.ProjectedType.
julia
Projected <: AbstractProjected
+Mapped(; order=AutoOrder(), span=AutoSpan(), sampling=AutoSampling(), crs=nothing, mappedcrs)

An AbstractSampled Lookup, where the dimension index has been mapped to another projection, usually lat/lon or EPSG(4326). Mapped matches the dimension format commonly used in netcdf files.

Fields and behaviours are identical to Sampled with the addition of crs and mappedcrs fields.

The mapped dimension index will be used as for Sampled, but to save in another format the underlying crs may be used to convert it.

source


# Rasters.ProjectedType.
julia
Projected <: AbstractProjected
 
 Projected(order, span, sampling, crs, mappedcrs)
-Projected(; order=AutoOrder(), span=AutoSpan(), sampling=AutoSampling(), crs, mappedcrs=nothing)

An AbstractSampled Lookup with projections attached.

Fields and behaviours are identical to Sampled with the addition of crs and mappedcrs fields.

If both crs and mappedcrs fields contain CRS data (in a GeoFormat wrapper from GeoFormatTypes.jl) the selector inputs and plot axes will be converted from and to the specified mappedcrs projection automatically. A common use case would be to pass mappedcrs=EPSG(4326) to the constructor when loading eg. a GDALarray:

julia
GDALarray(filename; mappedcrs=EPSG(4326))

The underlying crs will be detected by GDAL.

If mappedcrs is not supplied (ie. mappedcrs=nothing), the base index will be shown on plots, and selectors will need to use whatever format it is in.

source


# Rasters.RasterType.
julia
Raster <: AbstractRaster
+Projected(; order=AutoOrder(), span=AutoSpan(), sampling=AutoSampling(), crs, mappedcrs=nothing)

An AbstractSampled Lookup with projections attached.

Fields and behaviours are identical to Sampled with the addition of crs and mappedcrs fields.

If both crs and mappedcrs fields contain CRS data (in a GeoFormat wrapper from GeoFormatTypes.jl) the selector inputs and plot axes will be converted from and to the specified mappedcrs projection automatically. A common use case would be to pass mappedcrs=EPSG(4326) to the constructor when loading eg. a GDALarray:

julia
GDALarray(filename; mappedcrs=EPSG(4326))

The underlying crs will be detected by GDAL.

If mappedcrs is not supplied (ie. mappedcrs=nothing), the base index will be shown on plots, and selectors will need to use whatever format it is in.

source


# Rasters.RasterType.
julia
Raster <: AbstractRaster
 
 Raster(filepath::String; kw...)
 Raster(A::AbstractDimArray; kw...)
-Raster(A::AbstractArray, dims; kw...)

A generic AbstractRaster for spatial/raster array data. It can hold either memory-backed arrays or, if lazy=true, a FileArray, which stores the String path to an unopened file.

If lazy=true, the file will only be opened lazily when it is indexed with getindex or when read(A) is called. Broadcasting, taking a view, reversing, and most other methods will not load data from disk; they will be applied later, lazily.

Arguments

  • dims: Tuple of Dimensions needed when an AbstractArray is used.

Keywords

  • name: a Symbol name for the array, which will also retrieve the, alphabetically first, named layer if Raster is used on a multi-layered file like a NetCDF. If instead RasterStack is used to read the multi-layered file, by default, all variables will be added to the stack.

  • group: the group in the dataset where name can be found. Only needed for nested datasets. A String or Symbol will select a single group. Pairs can also used to access groups at any nested depth, i.e group=:group1 => :group2 => :group3.

  • missingval: value reprsenting missing data, normally detected from the file. Set manually when you know the value is not specified or is incorrect. This will not change any values in the raster, it simply assigns which value is treated as missing. To replace all of the missing values in the raster, use replace_missing.

  • metadata: Dict or Metadata object for the array, or NoMetadata().

  • crs: the coordinate reference system of the objects XDim/YDim dimensions. Only set this if you know the detected crs is incorrect, or it is not present in the file. The crs is expected to be a GeoFormatTypes.jl CRS or Mixed mode GeoFormat object, like EPSG(4326).

  • mappedcrs: the mapped coordinate reference system of the objects XDim/YDim dimensions. for Mapped lookups these are the actual values of the index. For Projected lookups this can be used to index in eg. EPSG(4326) lat/lon values, having it converted automatically. Only set this if the detected mappedcrs in incorrect, or the file does not have a mappedcrs, e.g. a tiff. The mappedcrs is expected to be a GeoFormatTypes.jl CRS or Mixed mode GeoFormat type.

  • refdims: Tuple of position Dimensions the array was sliced from, defaulting to (). Usually not needed.

When a filepath String is used:

  • dropband: drop single band dimensions when creating stacks from filenames. true by default.

  • lazy: A Bool specifying if to load data lazily from disk. false by default.

  • replace_missing: replace missingval with missing. This is done lazily if lazy=true. Note that currently for NetCDF and GRIB files replace_missing is always true. In future replace_missing=false will also work for these data sources.

  • source: Usually automatically detected from filepath extension. To manually force, a Symbol can be passed :gdal, :netcdf, :grd, :grib. The internal Rasters.Source objects, such as Rasters.GDALsource(), Rasters.GRIBsource() or Rasters.NCDsource() can also be used.

  • write: defines the default write keyword value when calling open on the Raster. false by default. Only makes sense to use when lazy=true.

When A is an AbstractDimArray:

  • data: can replace the data in an existing AbstractRaster

source


# Rasters.RasterSeriesType.
julia
RasterSeries <: AbstractRasterSeries
+Raster(A::AbstractArray, dims; kw...)

A generic AbstractRaster for spatial/raster array data. It can hold either memory-backed arrays or, if lazy=true, a FileArray, which stores the String path to an unopened file.

If lazy=true, the file will only be opened lazily when it is indexed with getindex or when read(A) is called. Broadcasting, taking a view, reversing, and most other methods will not load data from disk; they will be applied later, lazily.

Arguments

  • dims: Tuple of Dimensions needed when an AbstractArray is used.

Keywords

  • name: a Symbol name for the array, which will also retrieve the, alphabetically first, named layer if Raster is used on a multi-layered file like a NetCDF. If instead RasterStack is used to read the multi-layered file, by default, all variables will be added to the stack.

  • group: the group in the dataset where name can be found. Only needed for nested datasets. A String or Symbol will select a single group. Pairs can also used to access groups at any nested depth, i.e group=:group1 => :group2 => :group3.

  • missingval: value reprsenting missing data, normally detected from the file. Set manually when you know the value is not specified or is incorrect. This will not change any values in the raster, it simply assigns which value is treated as missing. To replace all of the missing values in the raster, use replace_missing.

  • metadata: Dict or Metadata object for the array, or NoMetadata().

  • crs: the coordinate reference system of the objects XDim/YDim dimensions. Only set this if you know the detected crs is incorrect, or it is not present in the file. The crs is expected to be a GeoFormatTypes.jl CRS or Mixed mode GeoFormat object, like EPSG(4326).

  • mappedcrs: the mapped coordinate reference system of the objects XDim/YDim dimensions. for Mapped lookups these are the actual values of the index. For Projected lookups this can be used to index in eg. EPSG(4326) lat/lon values, having it converted automatically. Only set this if the detected mappedcrs in incorrect, or the file does not have a mappedcrs, e.g. a tiff. The mappedcrs is expected to be a GeoFormatTypes.jl CRS or Mixed mode GeoFormat type.

  • refdims: Tuple of position Dimensions the array was sliced from, defaulting to (). Usually not needed.

When a filepath String is used:

  • dropband: drop single band dimensions when creating stacks from filenames. true by default.

  • lazy: A Bool specifying if to load data lazily from disk. false by default.

  • replace_missing: replace missingval with missing. This is done lazily if lazy=true. Note that currently for NetCDF and GRIB files replace_missing is always true. In future replace_missing=false will also work for these data sources.

  • source: Usually automatically detected from filepath extension. To manually force, a Symbol can be passed :gdal, :netcdf, :grd, :grib. The internal Rasters.Source objects, such as Rasters.GDALsource(), Rasters.GRIBsource() or Rasters.NCDsource() can also be used.

  • write: defines the default write keyword value when calling open on the Raster. false by default. Only makes sense to use when lazy=true.

When A is an AbstractDimArray:

  • data: can replace the data in an existing AbstractRaster

source


# Rasters.RasterSeriesType.
julia
RasterSeries <: AbstractRasterSeries
 
 RasterSeries(rasters::AbstractArray{<:AbstractRaster}, dims; [refdims])
 RasterSeries(stacks::AbstractArray{<:AbstractRasterStack}, dims; [refdims]) 
@@ -25,7 +25,7 @@ import{_ as s,c as i,o as e,a7 as a}from"./chunks/framework.Dv3PRBLL.js";const t
 2-element RasterSeries{Raster,1} with dimensions: 
   Ti Sampled{DateTime} DateTime[DateTime("2001-01-01T00:00:00"), DateTime("2002-01-01T00:00:00")] ForwardOrdered Irregular Points

The DateTime suffix is parsed from the filenames. Using Ti(Int) would try to parse integers instead.

Just using the directory will also work, unless there are other files mixed in it:

julia
julia> ser = RasterSeries("series_dir", Ti(DateTime))
 2-element RasterSeries{Raster,1} with dimensions: 
-  Ti Sampled{DateTime} DateTime[DateTime("2001-01-01T00:00:00"), DateTime("2002-01-01T00:00:00")] ForwardOrdered Irregular Points

Arguments

  • dims: series dimension/s.

Keywords

When loading a series from a Vector of String paths or a single String path:

  • child: constructor of child objects for use when filenames are passed in, can be Raster or RasterStack. Defaults to Raster.

  • duplicate_first::Bool: wether to duplicate the dimensions and metadata of the first file with all other files. This can save load time with a large series where dimensions are identical. false by default.

  • lazy: A Bool specifying if to load data lazily from disk. false by default.

  • kw: keywords passed to the child constructor Raster or RasterStack.

When loading a series from a single String path:

  • separator: separator used to split lookup elements from the rest of a filename. '_' by default.

Others:

  • refdims: existing reference dimension/s, normally not required.

source


# Rasters.RasterStackType.
julia
RasterStack <: AbstrackRasterStack
+  Ti Sampled{DateTime} DateTime[DateTime("2001-01-01T00:00:00"), DateTime("2002-01-01T00:00:00")] ForwardOrdered Irregular Points

Arguments

  • dims: series dimension/s.

Keywords

When loading a series from a Vector of String paths or a single String path:

  • child: constructor of child objects for use when filenames are passed in, can be Raster or RasterStack. Defaults to Raster.

  • duplicate_first::Bool: wether to duplicate the dimensions and metadata of the first file with all other files. This can save load time with a large series where dimensions are identical. false by default.

  • lazy: A Bool specifying if to load data lazily from disk. false by default.

  • kw: keywords passed to the child constructor Raster or RasterStack.

When loading a series from a single String path:

  • separator: separator used to split lookup elements from the rest of a filename. '_' by default.

Others:

  • refdims: existing reference dimension/s, normally not required.

source


# Rasters.RasterStackType.
julia
RasterStack <: AbstrackRasterStack
 
 RasterStack(data...; name, kw...)
 RasterStack(data::Union{Vector,Tuple}; name, kw...)
@@ -34,13 +34,13 @@ import{_ as s,c as i,o as e,a7 as a}from"./chunks/framework.Dv3PRBLL.js";const t
 RasterStack(data::Raster; layersfrom=Band, kw...)
 RasterStack(filepath::AbstractString; kw...)

Load a file path or a NamedTuple of paths as a RasterStack, or convert arguments, a Vector or NamedTuple of Rasters to RasterStack.

Arguments

  • data: A NamedTuple of Rasters or String, or a Vector, Tuple or splatted arguments of Raster. The latter options must pass a name keyword argument.

  • filepath: A file (such as netcdf or tif) to be loaded as a stack, or a directory path containing multiple files.

Keywords

  • name: Used as stack layer names when a Tuple, Vector or splat of Raster is passed in. Has no effect when NameTuple is used - the NamedTuple keys are the layer names.

  • group: the group in the dataset where name can be found. Only needed for nested datasets. A String or Symbol will select a single group. Pairs can also used to access groups at any nested depth, i.e group=:group1 => :group2 => :group3.

  • metadata: A Dict or DimensionalData.Metadata object.

  • missingval: a single value for all layers or a NamedTuple of missingval for each layer. nothing specifies no missing value.

  • crs: the coordinate reference system of the objects XDim/YDim dimensions. Only set this if you know the detected crs is incorrect, or it is not present in the file. The crs is expected to be a GeoFormatTypes.jl CRS or Mixed mode GeoFormat object, like EPSG(4326).

  • mappedcrs: the mapped coordinate reference system of the objects XDim/YDim dimensions. for Mapped lookups these are the actual values of the index. For Projected lookups this can be used to index in eg. EPSG(4326) lat/lon values, having it converted automatically. Only set this if the detected mappedcrs in incorrect, or the file does not have a mappedcrs, e.g. a tiff. The mappedcrs is expected to be a GeoFormatTypes.jl CRS or Mixed mode GeoFormat type.

  • refdims: Tuple of Dimension that the stack was sliced from.

For when one or multiple filepaths are used:

  • dropband: drop single band dimensions when creating stacks from filenames. true by default.

  • lazy: A Bool specifying if to load data lazily from disk. false by default.

  • replace_missing: replace missingval with missing. This is done lazily if lazy=true. Note that currently for NetCDF and GRIB files replace_missing is always true. In future replace_missing=false will also work for these data sources.

  • source: Usually automatically detected from filepath extension. To manually force, a Symbol can be passed :gdal, :netcdf, :grd, :grib. The internal Rasters.Source objects, such as Rasters.GDALsource(), Rasters.GRIBsource() or Rasters.NCDsource() can also be used.

For when a single Raster is used:

  • layersfrom: Dimension to source stack layers from if the file is not already multi-layered. nothing is default, so that a single RasterStack(raster) is a single layered stack. RasterStack(raster; layersfrom=Band) will use the bands as layers.
julia
files = (temp="temp.tif", pressure="pressure.tif", relhum="relhum.tif")
 stack = RasterStack(files; mappedcrs=EPSG(4326))
-stack[:relhum][Lat(Contains(-37), Lon(Contains(144))

source


# DimensionalData.modifyMethod.
julia
modify(f, series::AbstractRasterSeries)

Apply function f to the data of the child object. If the child is an AbstractRasterStack the function will be passed on to its child AbstractRasters.

f must return an identically sized array.

This method triggers a complete rebuild of all objects, and disk based objects will be transferred to memory.

An example of the usefulnesss of this is for swapping out array backend for an entire series to CuArray from CUDA.jl to copy data to a GPU.

source


# GeoInterface.crsMethod.
julia
crs(x::Raster)

Get the projected coordinate reference system of a Y or X Dimension, or of the Y/X dims of an AbstractRaster.

For Mapped lookup this may be nothing as there may be no projected coordinate reference system at all. See setcrs to set it manually.

source


# Rasters.aggregateFunction.
julia
aggregate(method, object, scale; filename, progress, skipmissing)

Aggregate a Raster, or all arrays in a RasterStack or RasterSeries, by scale using method.

Arguments

  • method: a function such as mean or sum that can combine the value of multiple cells to generate the aggregated cell, or a Locus like Start() or Center() that specifies where to sample from in the interval.

  • object: Object to aggregate, like AbstractRasterSeries, AbstractStack, AbstractRaster or Dimension.

  • scale: the aggregation factor, which can be an integer, a tuple of integers for each dimension, or any Dimension, Selector or Int combination you can usually use in getindex. Using a Selector will determine the scale by the distance from the start of the index.

When the aggregation scale of is larger than the array axis, the length of the axis is used.

Keywords

  • skipmissingval: if true, any missingval will be skipped during aggregation, so that only areas of all missing values will be aggregated to missingval. If false, any aggregated area containing a missingval will be assigned missingval.

  • filename: a filename to write to directly, useful for large files.

  • suffix: a string or value to append to the filename. A tuple of suffix will be applied to stack layers. keys(stack) are the default.

  • progress: show a progress bar, true by default, false to hide.

Example

julia
using Rasters, RasterDataSources, Statistics, Plots
+stack[:relhum][Lat(Contains(-37), Lon(Contains(144))

source


# DimensionalData.modifyMethod.
julia
modify(f, series::AbstractRasterSeries)

Apply function f to the data of the child object. If the child is an AbstractRasterStack the function will be passed on to its child AbstractRasters.

f must return an identically sized array.

This method triggers a complete rebuild of all objects, and disk based objects will be transferred to memory.

An example of the usefulnesss of this is for swapping out array backend for an entire series to CuArray from CUDA.jl to copy data to a GPU.

source


# GeoInterface.crsMethod.
julia
crs(x::Raster)

Get the projected coordinate reference system of a Y or X Dimension, or of the Y/X dims of an AbstractRaster.

For Mapped lookup this may be nothing as there may be no projected coordinate reference system at all. See setcrs to set it manually.

source


# Rasters.aggregateFunction.
julia
aggregate(method, object, scale; filename, progress, skipmissing)

Aggregate a Raster, or all arrays in a RasterStack or RasterSeries, by scale using method.

Arguments

  • method: a function such as mean or sum that can combine the value of multiple cells to generate the aggregated cell, or a Locus like Start() or Center() that specifies where to sample from in the interval.

  • object: Object to aggregate, like AbstractRasterSeries, AbstractStack, AbstractRaster or Dimension.

  • scale: the aggregation factor, which can be an integer, a tuple of integers for each dimension, or any Dimension, Selector or Int combination you can usually use in getindex. Using a Selector will determine the scale by the distance from the start of the index.

When the aggregation scale of is larger than the array axis, the length of the axis is used.

Keywords

  • skipmissingval: if true, any missingval will be skipped during aggregation, so that only areas of all missing values will be aggregated to missingval. If false, any aggregated area containing a missingval will be assigned missingval.

  • filename: a filename to write to directly, useful for large files.

  • suffix: a string or value to append to the filename. A tuple of suffix will be applied to stack layers. keys(stack) are the default.

  • progress: show a progress bar, true by default, false to hide.

Example

julia
using Rasters, RasterDataSources, Statistics, Plots
 using Rasters: Center
 st = read(RasterStack(WorldClim{Climate}; month=1))
 ag = aggregate(Center(), st, (Y(20), X(20)); skipmissingval=true, progress=false)
 plot(ag)
 savefig("build/aggregate_example.png"); nothing
-# output

Note: currently it is faster to aggregate over memory-backed arrays. Use read on src before use where required.

source


# Rasters.aggregate!Method.
julia
aggregate!(method, dst::AbstractRaster, src::AbstractRaster, scale; skipmissingval=false)

Aggregate array src to array dst by scale, using method.

Arguments

  • method: a function such as mean or sum that can combine the value of multiple cells to generate the aggregated cell, or a Locus like Start() or Center() that species where to sample from in the interval.

  • scale: the aggregation factor, which can be an integer, a tuple of integers for each dimension, or any Dimension, Selector or Int combination you can usually use in getindex. Using a Selector will determine the scale by the distance from the start of the index in the src array.

When the aggregation scale of is larger than the array axis, the length of the axis is used.

Keywords

  • progress: show a progress bar.

  • skipmissingval: if true, any missingval will be skipped during aggregation, so that only areas of all missing values will be aggregated to missingval. If false, any aggregated area containing a missingval will be assigned missingval.

Note: currently it is much faster to aggregate over memory-backed arrays. Use read on src before use where required.

source


# Rasters.boolmaskFunction.
julia
boolmask(obj::Raster; [missingval])
+# output

Note: currently it is faster to aggregate over memory-backed arrays. Use read on src before use where required.

source


# Rasters.aggregate!Method.
julia
aggregate!(method, dst::AbstractRaster, src::AbstractRaster, scale; skipmissingval=false)

Aggregate array src to array dst by scale, using method.

Arguments

  • method: a function such as mean or sum that can combine the value of multiple cells to generate the aggregated cell, or a Locus like Start() or Center() that species where to sample from in the interval.

  • scale: the aggregation factor, which can be an integer, a tuple of integers for each dimension, or any Dimension, Selector or Int combination you can usually use in getindex. Using a Selector will determine the scale by the distance from the start of the index in the src array.

When the aggregation scale of is larger than the array axis, the length of the axis is used.

Keywords

  • progress: show a progress bar.

  • skipmissingval: if true, any missingval will be skipped during aggregation, so that only areas of all missing values will be aggregated to missingval. If false, any aggregated area containing a missingval will be assigned missingval.

Note: currently it is much faster to aggregate over memory-backed arrays. Use read on src before use where required.

source


# Rasters.boolmaskFunction.
julia
boolmask(obj::Raster; [missingval])
 boolmask(obj; [to, res, size])
 boolmask(obj::RasterStack; alllayers=true, kw...)

Create a mask array of Bool values, from another Raster. AbstractRasterStack or AbstractRasterSeries are also accepted.

The array returned from calling boolmask on a AbstractRaster is a Raster with the same dimensions as the original array and a missingval of false.

Arguments

  • a Raster or one or multiple geometries. Geometries can be a GeoInterface.jl AbstractGeometry, a nested Vector of AbstractGeometry, or a Tables.jl compatible object containing a :geometry column or points and values columns, in which case geometrycolumn must be specified.

Raster / RasterStack Keywords

  • invert: invert the mask, so that areas no missing in with are masked, and areas missing in with are masked.

  • missingval: The missing value of the source array, with default missingval(raster).

Keywords

  • alllayers: if true a mask is taken for all layers, otherwise only the first layer is used. Defaults to true

  • to: a Raster, RasterStack, Tuple of Dimension or Extents.Extent. If no to object is provided the extent will be calculated from the geometries, Additionally, when no to object or an Extent is passed for to, the size or res keyword must also be used.

  • res: the resolution of the dimensions (often in meters or degrees), a Real or Tuple{<:Real,<:Real}. Only required when to is not used or is an Extents.Extent, and size is not used.

  • size: the size of the output array, as a Tuple{Int,Int} or single Int for a square. Only required when to is not used or is an Extents.Extent, and res is not used.

  • crs: a crs which will be attached to the resulting raster when to not passed or is an Extent. Otherwise the crs from to is used.

  • shape: Force data to be treated as :polygon, :line or :point geometries. using points or lines as polygons may have unexpected results.

  • boundary: for polygons, include pixels where the :center is inside the polygon, where the polygon :touches the pixel, or that are completely :inside the polygon. The default is :center.

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

  • threaded: run operations in parallel, false by default. In some circumstances threaded can give large speedups over single-threaded operation. This can be true for complicated geometries written into low-resolution rasters, but may not be for simple geometries with high-resolution rasters. With very large rasters threading may be counter productive due to excessive memory use. Caution should also be used: threaded should not be used in in-place functions writing to BitArray or other arrays where race conditions can occur.

  • progress: show a progress bar, true by default, false to hide.

And specifically for shape=:polygon:

  • boundary: include pixels where the :center is inside the polygon, where the line :touches the pixel, or that are completely :inside inside the polygon. The default is :center.

For tabular data, feature collections and other iterables

  • collapse: if true, collapse all geometry masks into a single mask. Otherwise return a Raster with an additional geometry dimension, so that each slice along this axis is the mask of the geometry opbject of each row of the table, feature in the feature collection, or just each geometry in the iterable.

Example

julia
using Rasters, RasterDataSources, ArchGDAL, Plots, Dates
 wc = Raster(WorldClim{Climate}, :prec; month=1)
@@ -48,7 +48,7 @@ import{_ as s,c as i,o as e,a7 as a}from"./chunks/framework.Dv3PRBLL.js";const t
 
 savefig("build/boolmask_example.png"); nothing
 
-# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.cellsizeMethod.
julia
cellsize(x)

Gives the approximate size of each cell in square km. This function works for any projection, using an algorithm for polygons on a sphere. It approximates the true size to about 0.1%, depending on latitude.

Run using ArchGDAL to make this method available.

Arguments

  • x: A Raster or a Tuple of X and Y dimensions.

Example

julia
using Rasters, ArchGDAL, Rasters.Lookups
+# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.cellsizeMethod.
julia
cellsize(x)

Gives the approximate size of each cell in square km. This function works for any projection, using an algorithm for polygons on a sphere. It approximates the true size to about 0.1%, depending on latitude.

Run using ArchGDAL to make this method available.

Arguments

  • x: A Raster or a Tuple of X and Y dimensions.

Example

julia
using Rasters, ArchGDAL, Rasters.Lookups
 dimz = X(Projected(90.0:10.0:120; sampling=Intervals(Start()), order=ForwardOrdered(), span=Regular(10.0), crs=EPSG(4326))),
        Y(Projected(0.0:10.0:50; sampling=Intervals(Start()), order=ForwardOrdered(), span=Regular(10.0), crs=EPSG(4326)))
 
@@ -66,7 +66,7 @@ import{_ as s,c as i,o as e,a7 as a}from"./chunks/framework.Dv3PRBLL.js";const t
   90.0  1.2332e6   1.1952e6   1.12048e6   1.01158e6   8.72085e5  706488.0
  100.0  1.2332e6   1.1952e6   1.12048e6   1.01158e6   8.72085e5  706488.0
  110.0  1.2332e6   1.1952e6   1.12048e6   1.01158e6   8.72085e5  706488.0
- 120.0  1.2332e6   1.1952e6   1.12048e6   1.01158e6   8.72085e5  706488.0

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.classifyFunction.
julia
classify(x, pairs; lower=(>=), upper=(<), others=nothing)
+ 120.0  1.2332e6   1.1952e6   1.12048e6   1.01158e6   8.72085e5  706488.0

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.classifyFunction.
julia
classify(x, pairs; lower=(>=), upper=(<), others=nothing)
 classify(x, pairs...; lower, upper, others)

Create a new array with values in x classified by the values in pairs.

pairs can hold tuples fo values (2, 3), a Fix2 function e.g. <=(1), a Tuple of Fix2 e.g. (>=(4), <(7)), or an IntervalSets.jl interval, e.g. 3..9 or OpenInterval(10, 12). pairs can also be a n * 3 matrix where each row is lower bounds, upper bounds, replacement.

If tuples or a Matrix are used, the lower and upper keywords define how the lower and upper boundaries are chosen.

If others is set other values not covered in pairs will be set to that values.

Arguments

  • x: a Raster or RasterStack

  • pairs: each pair contains a value and a replacement, a tuple of lower and upper range and a replacement, or a Tuple of Fix2 like (>(x), <(y).

Keywords

  • lower: Which comparison (< or <=) to use for lower values, if Fix2 are not used.

  • upper: Which comparison (> or >=) to use for upper values, if Fix2 are not used.

  • others: A value to assign to all values not included in pairs. Passing nothing (the default) will leave them unchanged.

Example

julia
using Rasters, RasterDataSources, ArchGDAL, Plots
 A = Raster(WorldClim{Climate}, :tavg; month=1)
 classes = <=(15) => 10,
@@ -78,7 +78,7 @@ import{_ as s,c as i,o as e,a7 as a}from"./chunks/framework.Dv3PRBLL.js";const t
 
 savefig("build/classify_example.png"); nothing
 
-# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.classify!Method.
julia
classify!(x, pairs...; lower, upper, others)
+# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.classify!Method.
julia
classify!(x, pairs...; lower, upper, others)
 classify!(x, pairs; lower, upper, others)

Classify the values of x in-place, by the values in pairs.

If Fix2 is not used, the lower and upper keywords

If others is set other values not covered in pairs will be set to that values.

Arguments

  • x: a Raster or RasterStack

  • pairs: each pair contains a value and a replacement, a tuple of lower and upper range and a replacement, or a Tuple of Fix2 like (>(x), <(y).

Keywords

  • lower: Which comparison (< or <=) to use for lower values, if Fix2 are not used.

  • upper: Which comparison (> or >=) to use for upper values, if Fix2 are not used.

  • others: A value to assign to all values not included in pairs. Passing nothing (the default) will leave them unchanged.

Example

classify! to disk, with key steps:

  • copying a tempory file so we don't write over the RasterDataSources.jl version.

  • use open with write=true to open the file with disk-write permissions.

  • use Float32 like 10.0f0 for all our replacement values and other, because the file is stored as Float32. Attempting to write some other type will fail.

julia
using Rasters, RasterDataSources, ArchGDAL, Plots
 # Download and copy the file
 filename = getraster(WorldClim{Climate}, :tavg; month=6)
@@ -98,8 +98,38 @@ import{_ as s,c as i,o as e,a7 as a}from"./chunks/framework.Dv3PRBLL.js";const t
 
 savefig("build/classify_bang_example.png"); nothing
 
-# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.combineMethod.
julia
combine(A::Union{AbstractRaster,AbstractRasterStack,AbstracRasterSeries}, [dims]) => Raster

Combine a RasterSeries along some dimension/s, creating a new Raster or RasterStack, depending on the contents of the series.

If dims are passed, only the specified dimensions will be combined with a RasterSeries returned, unless dims is all the dims in the series.

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.convertlookupMethod.
julia
convertlookup(dstlookup::Type{<:Lookup}, x)

Convert the dimension lookup between Projected and Mapped. Other dimension lookups pass through unchanged.

This is used to e.g. save a netcdf file to GeoTiff.

source


# Rasters.coverage!Method.
julia
coverage!(A, geom; [mode, scale])

Calculate the area of a raster covered by GeoInterface.jl compatible geometry geom, as a fraction.

Each pixel is assigned a grid of points (by default 10 x 10) that are each checked to be inside the geometry. The sum divided by the number of points to give coverage.

In practice, most pixel coverage is not calculated this way - shortcuts that produce the same result are taken wherever possible.

If geom is an AbstractVector or table, the mode keyword will determine how coverage is combined.

Keywords

  • mode: method for combining multiple geometries - union or sum.

    • union (the default) gives the areas covered by all geometries. Usefull in spatial coverage where overlapping regions should not be counted twice. The returned raster will contain Float64 values between 0.0 and 1.0.

    • sum gives the summed total of the areas covered by all geometries, as in taking the sum of running coverage separately on all geometries. The returned values are positive Float64.

    For a single geometry, the mode keyword has no effect - the result is the same.

  • scale: Integer scale of pixel subdivision. The default of 10 means each pixel has 10 x 10 or 100 points that contribute to coverage. Using 100 means 10,000 points contribute. Performance will decline as scale increases. Memory use will grow by scale^2 when mode=:union.

  • threaded: run operations in parallel, false by default. In some circumstances threaded can give large speedups over single-threaded operation. This can be true for complicated geometries written into low-resolution rasters, but may not be for simple geometries with high-resolution rasters. With very large rasters threading may be counter productive due to excessive memory use. Caution should also be used: threaded should not be used in in-place functions writing to BitArray or other arrays where race conditions can occur.

  • progress: show a progress bar, true by default, false to hide.

  • vebose: whether to print messages about potential problems. true by default.

source


# Rasters.coverageMethod.
julia
coverage(mode, geom; [to, res, size, scale, verbose, progress])
-coverage(geom; [to, mode, res, size, scale, verbose, progress])

Calculate the area of a raster covered by GeoInterface.jl compatible geometry geom, as a fraction.

Each pixel is assigned a grid of points (by default 10 x 10) that are each checked to be inside the geometry. The sum divided by the number of points to give coverage.

In practice, most pixel coverage is not calculated this way - shortcuts that produce the same result are taken wherever possible.

If geom is an AbstractVector or table, the mode keyword will determine how coverage is combined.

Keywords

  • mode: method for combining multiple geometries - union or sum.

    • union (the default) gives the areas covered by all geometries. Usefull in spatial coverage where overlapping regions should not be counted twice. The returned raster will contain Float64 values between 0.0 and 1.0.

    • sum gives the summed total of the areas covered by all geometries, as in taking the sum of running coverage separately on all geometries. The returned values are positive Float64.

    For a single geometry, the mode keyword has no effect - the result is the same.

  • scale: Integer scale of pixel subdivision. The default of 10 means each pixel has 10 x 10 or 100 points that contribute to coverage. Using 100 means 10,000 points contribute. Performance will decline as scale increases. Memory use will grow by scale^2 when mode=:union.

  • threaded: run operations in parallel, false by default. In some circumstances threaded can give large speedups over single-threaded operation. This can be true for complicated geometries written into low-resolution rasters, but may not be for simple geometries with high-resolution rasters. With very large rasters threading may be counter productive due to excessive memory use. Caution should also be used: threaded should not be used in in-place functions writing to BitArray or other arrays where race conditions can occur.

  • progress: show a progress bar, true by default, false to hide.

  • vebose: whether to print messages about potential problems. true by default.

  • to: a Raster, RasterStack, Tuple of Dimension or Extents.Extent. If no to object is provided the extent will be calculated from the geometries, Additionally, when no to object or an Extent is passed for to, the size or res keyword must also be used.

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

  • size: the size of the output array, as a Tuple{Int,Int} or single Int for a square. Only required when to is not used or is an Extents.Extent, and res is not used.

  • res: the resolution of the dimensions (often in meters or degrees), a Real or Tuple{<:Real,<:Real}. Only required when to is not used or is an Extents.Extent, and size is not used.

source


# Rasters.disaggregateFunction.
julia
disaggregate(method, object, scale; filename, progress, keys)

Disaggregate array, or all arrays in a stack or series, by some scale.

Arguments

  • method: a function such as mean or sum that can combine the value of multiple cells to generate the aggregated cell, or a Locus like Start() or Center() that species where to sample from in the interval.

  • object: Object to aggregate, like AbstractRasterSeries, AbstractStack, AbstractRaster or a Dimension.

  • scale: the aggregation factor, which can be an integer, a tuple of integers for each dimension, or any Dimension, Selector or Int combination you can usually use in getindex. Using a Selector will determine the scale by the distance from the start of the index.

Keywords

  • progress: show a progress bar.

Note: currently it is faster to aggregate over memory-backed arrays. Use read on src before use where required.

source


# Rasters.disaggregate!Method.
julia
disaggregate!(method, dst::AbstractRaster, src::AbstractRaster, filename, scale)

Disaggregate array src to array dst by some scale, using method.

  • method: a function such as mean or sum that can combine the value of multiple cells to generate the aggregated cell, or a Locus like Start() or Center() that species where to sample from in the interval.

  • scale: the aggregation factor, which can be an integer, a tuple of integers for each dimension, or any Dimension, Selector or Int combination you can usually use in getindex. Using a Selector will determine the scale by the distance from the start of the index in the src array.

Note: currently it is faster to aggregate over memory-backed arrays. Use read on src before use where required.

source


# Rasters.extendFunction.
julia
extend(xs...; [to])
+# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.combineMethod.
julia
combine(A::AbstracRasterSeries; [dims], [lazy]) => Raster

Combine a RasterSeries along some dimension/s, creating a new Raster or RasterStack, depending on the contents of the series.

If dims are passed, only the specified dimensions will be combined with a RasterSeries returned, unless dims is all the dims in the series.

If lazy, concatenate lazily. The default is to concatenate lazily for lazy Rasters and eagerly otherwise.

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.convertlookupMethod.
julia
convertlookup(dstlookup::Type{<:Lookup}, x)

Convert the dimension lookup between Projected and Mapped. Other dimension lookups pass through unchanged.

This is used to e.g. save a netcdf file to GeoTiff.

source


# Rasters.coverage!Method.
julia
coverage!(A, geom; [mode, scale])

Calculate the area of a raster covered by GeoInterface.jl compatible geometry geom, as a fraction.

Each pixel is assigned a grid of points (by default 10 x 10) that are each checked to be inside the geometry. The sum divided by the number of points to give coverage.

In practice, most pixel coverage is not calculated this way - shortcuts that produce the same result are taken wherever possible.

If geom is an AbstractVector or table, the mode keyword will determine how coverage is combined.

Keywords

  • mode: method for combining multiple geometries - union or sum.

    • union (the default) gives the areas covered by all geometries. Usefull in spatial coverage where overlapping regions should not be counted twice. The returned raster will contain Float64 values between 0.0 and 1.0.

    • sum gives the summed total of the areas covered by all geometries, as in taking the sum of running coverage separately on all geometries. The returned values are positive Float64.

    For a single geometry, the mode keyword has no effect - the result is the same.

  • scale: Integer scale of pixel subdivision. The default of 10 means each pixel has 10 x 10 or 100 points that contribute to coverage. Using 100 means 10,000 points contribute. Performance will decline as scale increases. Memory use will grow by scale^2 when mode=:union.

  • threaded: run operations in parallel, false by default. In some circumstances threaded can give large speedups over single-threaded operation. This can be true for complicated geometries written into low-resolution rasters, but may not be for simple geometries with high-resolution rasters. With very large rasters threading may be counter productive due to excessive memory use. Caution should also be used: threaded should not be used in in-place functions writing to BitArray or other arrays where race conditions can occur.

  • progress: show a progress bar, true by default, false to hide.

  • vebose: whether to print messages about potential problems. true by default.

source


# Rasters.coverageMethod.
julia
coverage(mode, geom; [to, res, size, scale, verbose, progress])
+coverage(geom; [to, mode, res, size, scale, verbose, progress])

Calculate the area of a raster covered by GeoInterface.jl compatible geometry geom, as a fraction.

Each pixel is assigned a grid of points (by default 10 x 10) that are each checked to be inside the geometry. The sum divided by the number of points to give coverage.

In practice, most pixel coverage is not calculated this way - shortcuts that produce the same result are taken wherever possible.

If geom is an AbstractVector or table, the mode keyword will determine how coverage is combined.

Keywords

  • mode: method for combining multiple geometries - union or sum.

    • union (the default) gives the areas covered by all geometries. Usefull in spatial coverage where overlapping regions should not be counted twice. The returned raster will contain Float64 values between 0.0 and 1.0.

    • sum gives the summed total of the areas covered by all geometries, as in taking the sum of running coverage separately on all geometries. The returned values are positive Float64.

    For a single geometry, the mode keyword has no effect - the result is the same.

  • scale: Integer scale of pixel subdivision. The default of 10 means each pixel has 10 x 10 or 100 points that contribute to coverage. Using 100 means 10,000 points contribute. Performance will decline as scale increases. Memory use will grow by scale^2 when mode=:union.

  • threaded: run operations in parallel, false by default. In some circumstances threaded can give large speedups over single-threaded operation. This can be true for complicated geometries written into low-resolution rasters, but may not be for simple geometries with high-resolution rasters. With very large rasters threading may be counter productive due to excessive memory use. Caution should also be used: threaded should not be used in in-place functions writing to BitArray or other arrays where race conditions can occur.

  • progress: show a progress bar, true by default, false to hide.

  • vebose: whether to print messages about potential problems. true by default.

  • to: a Raster, RasterStack, Tuple of Dimension or Extents.Extent. If no to object is provided the extent will be calculated from the geometries, Additionally, when no to object or an Extent is passed for to, the size or res keyword must also be used.

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

  • size: the size of the output array, as a Tuple{Int,Int} or single Int for a square. Only required when to is not used or is an Extents.Extent, and res is not used.

  • res: the resolution of the dimensions (often in meters or degrees), a Real or Tuple{<:Real,<:Real}. Only required when to is not used or is an Extents.Extent, and size is not used.

source


# Rasters.cropFunction.
julia
crop(x; to, touches=false, [geometrycolumn])
+crop(xs...; to)

Crop one or multiple AbstractRaster or AbstractRasterStack x to match the size of the object to, or smallest of any dimensions that are shared.

crop is lazy, using a view into the object rather than allocating new memory.

Keywords

  • to: the object to crop to. This can be a Raster or one or multiple geometries. Geometries can be a GeoInterface.jl AbstractGeometry, a nested Vector of AbstractGeometry, or a Tables.jl compatible object containing a :geometry column or points and values columns, in which case geometrycolumn must be specified. If no to keyword is passed, the smallest shared area of all xs is used.

  • touches: true or false. Whether to use Touches wraper on the object extent. When lines need to be included in e.g. zonal statistics, true should be used.

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

As crop is lazy, filename and suffix keywords are not used.

Example

Crop to another raster:

julia
using Rasters, RasterDataSources, Plots
+evenness = Raster(EarthEnv{HabitatHeterogeneity}, :evenness)
+rnge = Raster(EarthEnv{HabitatHeterogeneity}, :range)
+
+# Roughly cut out New Zealand from the evenness raster
+nz_bounds = X(165 .. 180), Y(-50 .. -32)
+nz_evenness = evenness[nz_bounds...]
+
+# Crop range to match evenness
+nz_range = crop(rnge; to=nz_evenness)
+plot(nz_range)
+
+savefig("build/nz_crop_example.png")
+nothing
+
+# output

Crop to a polygon:

julia
using Rasters, RasterDataSources, Plots, Dates, Shapefile, Downloads
+
+# Download a borders shapefile
+shapefile_url = "https://github.com/nvkelso/natural-earth-vector/raw/master/10m_cultural/ne_10m_admin_0_countries.shp"
+shapefile_name = "boundary.shp"
+isfile(shapefile_name) || Downloads.download(shapefile_url, shapefile_name)
+shp = Shapefile.Handle(shapefile_name).shapes[6]
+
+evenness = Raster(EarthEnv{HabitatHeterogeneity}, :evenness)
+argentina_evenness = crop(evenness; to=shp)
+plot(argentina_evenness)
+
+savefig("build/argentina_crop_example.png"); nothing
+
+# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.disaggregateFunction.
julia
disaggregate(method, object, scale; filename, progress, keys)

Disaggregate array, or all arrays in a stack or series, by some scale.

Arguments

  • method: a function such as mean or sum that can combine the value of multiple cells to generate the aggregated cell, or a Locus like Start() or Center() that species where to sample from in the interval.

  • object: Object to aggregate, like AbstractRasterSeries, AbstractStack, AbstractRaster or a Dimension.

  • scale: the aggregation factor, which can be an integer, a tuple of integers for each dimension, or any Dimension, Selector or Int combination you can usually use in getindex. Using a Selector will determine the scale by the distance from the start of the index.

Keywords

  • progress: show a progress bar.

Note: currently it is faster to aggregate over memory-backed arrays. Use read on src before use where required.

source


# Rasters.disaggregate!Method.
julia
disaggregate!(method, dst::AbstractRaster, src::AbstractRaster, filename, scale)

Disaggregate array src to array dst by some scale, using method.

  • method: a function such as mean or sum that can combine the value of multiple cells to generate the aggregated cell, or a Locus like Start() or Center() that species where to sample from in the interval.

  • scale: the aggregation factor, which can be an integer, a tuple of integers for each dimension, or any Dimension, Selector or Int combination you can usually use in getindex. Using a Selector will determine the scale by the distance from the start of the index in the src array.

Note: currently it is faster to aggregate over memory-backed arrays. Use read on src before use where required.

source


# Rasters.extendFunction.
julia
extend(xs...; [to])
 extend(xs; [to])
 extend(x::Union{AbstractRaster,AbstractRasterStack}; to, kw...)

Extend one or multiple AbstractRaster to match the area covered by all xs, or by the keyword argument to.

Keywords

  • to: the Raster or dims to extend to. If no to keyword is passed, the largest shared area of all xs is used.

  • touches: true or false. Whether to use Touches wrapper on the object extent. When lines need to be included in e.g. zonal statistics, true shoudle be used.

  • filename: a filename to write to directly, useful for large files.

  • suffix: a string or value to append to the filename. A tuple of suffix will be applied to stack layers. keys(stack) are the default.

julia
using Rasters, RasterDataSources, Plots
 evenness = Raster(EarthEnv{HabitatHeterogeneity}, :evenness)
@@ -115,7 +145,7 @@ import{_ as s,c as i,o as e,a7 as a}from"./chunks/framework.Dv3PRBLL.js";const t
 
 savefig("build/extend_example.png")
 nothing
-# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.extractFunction.
julia
extract(x, data; atol)

Extracts the value of Raster or RasterStack at given points, returning an iterable of NamedTuple with properties for :geometry and raster or stack layer values.

Note that if objects have more dimensions than the length of the point tuples, sliced arrays or stacks will be returned instead of single values.

Arguments

  • x: a Raster or RasterStack to extract values from.

  • data: a GeoInterface.jl AbstractGeometry, a nested Vector of AbstractGeometry, or a Tables.jl compatible object containing a :geometry column or points and values columns, in which case geometrycolumn must be specified.

Keywords

  • geometry: include :geometry in returned NamedTuple, true by default.

  • index: include :index of the CartesianIndex in returned NamedTuple, false by default.

  • name: a Symbol or Tuple of Symbol corresponding to layer/s of a RasterStack to extract. All layers by default.

  • skipmissing: skip missing points automatically.

  • atol: a tolerance for floating point lookup values for when the Lookup contains Points. atol is ignored for Intervals.

geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

Example

Here we extract points matching the occurrence of the Mountain Pygmy Possum, Burramis parvus. This could be used to fit a species distribution model.

julia
using Rasters, RasterDataSources, ArchGDAL, GBIF2, CSV
+# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.extractFunction.
julia
extract(x, data; atol)

Extracts the value of Raster or RasterStack at given points, returning an iterable of NamedTuple with properties for :geometry and raster or stack layer values.

Note that if objects have more dimensions than the length of the point tuples, sliced arrays or stacks will be returned instead of single values.

Arguments

  • x: a Raster or RasterStack to extract values from.

  • data: a GeoInterface.jl AbstractGeometry, a nested Vector of AbstractGeometry, or a Tables.jl compatible object containing a :geometry column or points and values columns, in which case geometrycolumn must be specified.

Keywords

  • geometry: include :geometry in returned NamedTuple, true by default.

  • index: include :index of the CartesianIndex in returned NamedTuple, false by default.

  • name: a Symbol or Tuple of Symbol corresponding to layer/s of a RasterStack to extract. All layers by default.

  • skipmissing: skip missing points automatically.

  • atol: a tolerance for floating point lookup values for when the Lookup contains Points. atol is ignored for Intervals.

geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

Example

Here we extract points matching the occurrence of the Mountain Pygmy Possum, Burramis parvus. This could be used to fit a species distribution model.

julia
using Rasters, RasterDataSources, ArchGDAL, GBIF2, CSV
 
 # Get a stack of BioClim layers, and replace missing values with \`missing\`
 st = RasterStack(WorldClim{BioClim}, (1, 3, 5, 7, 12)) |> replace_missing
@@ -133,7 +163,7 @@ import{_ as s,c as i,o as e,a7 as a}from"./chunks/framework.Dv3PRBLL.js";const t
  (geometry = (0.03, 39.97), bio1 = 17.076923f0, bio3 = 39.7983f0, bio5 = 29.638462f0, bio7 = 24.153847f0, bio12 = 441.0f0)
  (geometry = (0.03, 39.97), bio1 = 17.076923f0, bio3 = 39.7983f0, bio5 = 29.638462f0, bio7 = 24.153847f0, bio12 = 441.0f0)
  (geometry = (0.52, 40.37), bio1 = missing, bio3 = missing, bio5 = missing, bio7 = missing, bio12 = missing)
- (geometry = (0.32, 40.24), bio1 = 16.321388f0, bio3 = 41.659454f0, bio5 = 30.029825f0, bio7 = 25.544561f0, bio12 = 480.0f0)

Note: passing in arrays, geometry collections or feature collections containing a mix of points and other geometries has undefined results.

source


# Rasters.mappedboundsFunction.
julia
mappedbounds(x)

Get the bounds converted to the mappedcrs value.

Without ArchGDAL loaded, this is just the regular bounds.

source


# Rasters.mappedcrsFunction.
julia
mappedcrs(x)

Get the mapped coordinate reference system for the Y/X dims of an array.

In Projected lookup this is used to convert Selector values form the mappedcrs defined projection to the underlying projection, and to show plot axes in the mapped projection.

In Mapped lookup this is the coordinate reference system of the index values. See setmappedcrs to set it manually.

source


# Rasters.mappedindexFunction.
julia
mappedindex(x)

Get the index value of a dimension converted to the mappedcrs value.

Without ArchGDAL loaded, this is just the regular dim value.

source


# Rasters.mask!Function.
julia
mask!(x; with, missingval=missingval(A))

Mask A by the missing values of with, or by all values outside with if it is a polygon.

If with is a polygon, creates a new array where points falling outside the polygon have been replaced by missingval(A).

Return a new array with values of A masked by the missing values of with, or by a polygon.

Arguments

  • x: a Raster or RasterStack.

Keywords

  • with: another AbstractRaster, a AbstractVector of Tuple points, or any GeoInterface.jl AbstractGeometry. The coordinate reference system of the point must match crs(A).

  • invert: invert the mask, so that areas no missing in with are masked, and areas missing in with are masked.

  • missingval: the missing value to write to A in masked areas, by default missingval(A).

Example

Mask an unmasked AWAP layer with a masked WorldClim layer, by first resampling the mask to match the size and projection.

julia
using Rasters, RasterDataSources, ArchGDAL, Plots, Dates
+ (geometry = (0.32, 40.24), bio1 = 16.321388f0, bio3 = 41.659454f0, bio5 = 30.029825f0, bio7 = 25.544561f0, bio12 = 480.0f0)

Note: passing in arrays, geometry collections or feature collections containing a mix of points and other geometries has undefined results.

source


# Rasters.mappedboundsFunction.
julia
mappedbounds(x)

Get the bounds converted to the mappedcrs value.

Without ArchGDAL loaded, this is just the regular bounds.

source


# Rasters.mappedcrsFunction.
julia
mappedcrs(x)

Get the mapped coordinate reference system for the Y/X dims of an array.

In Projected lookup this is used to convert Selector values form the mappedcrs defined projection to the underlying projection, and to show plot axes in the mapped projection.

In Mapped lookup this is the coordinate reference system of the index values. See setmappedcrs to set it manually.

source


# Rasters.mappedindexFunction.
julia
mappedindex(x)

Get the index value of a dimension converted to the mappedcrs value.

Without ArchGDAL loaded, this is just the regular dim value.

source


# Rasters.mask!Function.
julia
mask!(x; with, missingval=missingval(A))

Mask A by the missing values of with, or by all values outside with if it is a polygon.

If with is a polygon, creates a new array where points falling outside the polygon have been replaced by missingval(A).

Return a new array with values of A masked by the missing values of with, or by a polygon.

Arguments

  • x: a Raster or RasterStack.

Keywords

  • with: another AbstractRaster, a AbstractVector of Tuple points, or any GeoInterface.jl AbstractGeometry. The coordinate reference system of the point must match crs(A).

  • invert: invert the mask, so that areas no missing in with are masked, and areas missing in with are masked.

  • missingval: the missing value to write to A in masked areas, by default missingval(A).

Example

Mask an unmasked AWAP layer with a masked WorldClim layer, by first resampling the mask to match the size and projection.

julia
using Rasters, RasterDataSources, ArchGDAL, Plots, Dates
 
 # Load and plot the file
 awap = read(RasterStack(AWAP, (:tmin, :tmax); date=DateTime(2001, 1, 1)))
@@ -150,7 +180,7 @@ import{_ as s,c as i,o as e,a7 as a}from"./chunks/framework.Dv3PRBLL.js";const t
 savefig(a, "build/mask_bang_example_before.png");
 savefig(b, "build/mask_bang_example_after.png"); nothing
 
-# output

Before mask!:

After mask!:

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.maskMethod.
julia
mask(A:AbstractRaster; with, missingval=missingval(A))
+# output

Before mask!:

After mask!:

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.maskMethod.
julia
mask(A:AbstractRaster; with, missingval=missingval(A))
 mask(x; with)

Return a new array with values of A masked by the missing values of with, or by the shape of with, if with is a geometric object.

Arguments

  • x: a Raster or RasterStack

Keywords

  • with: an AbstractRaster, or any GeoInterface.jl compatible objects or table. The coordinate reference system of the point must match crs(A).

  • invert: invert the mask, so that areas no missing in with are masked, and areas missing in with are masked.

  • missingval: the missing value to use in the returned file.

  • filename: a filename to write to directly, useful for large files.

  • suffix: a string or value to append to the filename. A tuple of suffix will be applied to stack layers. keys(stack) are the default.

Geometry keywords

These can be used when with is a GeoInterface.jl compatible object:

  • shape: Force data to be treated as :polygon, :line or :point geometries. using points or lines as polygons may have unexpected results.

  • boundary: for polygons, include pixels where the :center is inside the polygon, where the polygon :touches the pixel, or that are completely :inside the polygon. The default is :center.

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

Example

Mask an unmasked AWAP layer with a masked WorldClim layer, by first resampling the mask.

julia
using Rasters, RasterDataSources, ArchGDAL, Plots, Dates
 
 # Load and plot the file
@@ -167,7 +197,7 @@ import{_ as s,c as i,o as e,a7 as a}from"./chunks/framework.Dv3PRBLL.js";const t
 
 savefig(a, "build/mask_example_before.png");
 savefig(b, "build/mask_example_after.png"); nothing
-# output

Before mask:

After mask:

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.missingmaskMethod.
julia
missingmask(obj::Raster; kw...)
+# output

Before mask:

After mask:

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.missingmaskMethod.
julia
missingmask(obj::Raster; kw...)
 missingmask(obj; [to, res, size, collapse])
 missingmask(obj::RasterStack; alllayers = true, kw...)

Create a mask array of missing and true values, from another Raster. AbstractRasterStack or AbstractRasterSeries are also accepted-

For AbstractRaster the default missingval is missingval(A), but others can be chosen manually.

The array returned from calling missingmask on a AbstractRaster is a Raster with the same size and fields as the original array.

Arguments

  • obj: a Raster or one or multiple geometries. Geometries can be a GeoInterface.jl AbstractGeometry, a nested Vector of AbstractGeometry, or a Tables.jl compatible object containing a :geometry column or points and values columns, in which case geometrycolumn must be specified.

Keywords

  • alllayers: if true a mask is taken for all layers, otherwise only the first layer is used. Defaults to true

  • invert: invert the mask, so that areas no missing in with are masked, and areas missing in with are masked.

  • to: a Raster, RasterStack, Tuple of Dimension or Extents.Extent. If no to object is provided the extent will be calculated from the geometries, Additionally, when no to object or an Extent is passed for to, the size or res keyword must also be used.

  • res: the resolution of the dimensions (often in meters or degrees), a Real or Tuple{<:Real,<:Real}. Only required when to is not used or is an Extents.Extent, and size is not used.

  • size: the size of the output array, as a Tuple{Int,Int} or single Int for a square. Only required when to is not used or is an Extents.Extent, and res is not used.

  • crs: a crs which will be attached to the resulting raster when to not passed or is an Extent. Otherwise the crs from to is used.

  • shape: Force data to be treated as :polygon, :line or :point geometries. using points or lines as polygons may have unexpected results.

  • boundary: for polygons, include pixels where the :center is inside the polygon, where the polygon :touches the pixel, or that are completely :inside the polygon. The default is :center.

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

Example

julia
using Rasters, RasterDataSources, ArchGDAL, Plots, Dates
 wc = Raster(WorldClim{Climate}, :prec; month=1)
@@ -175,7 +205,7 @@ import{_ as s,c as i,o as e,a7 as a}from"./chunks/framework.Dv3PRBLL.js";const t
 
 savefig("build/missingmask_example.png"); nothing
 
-# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.missingvalFunction.
julia
missingval(x)

Returns the value representing missing data in the dataset

source


# Rasters.mosaic!Method.
julia
mosaic!(f, x, regions...; missingval, atol)
+# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.missingvalFunction.
julia
missingval(x)

Returns the value representing missing data in the dataset

source


# Rasters.mosaic!Method.
julia
mosaic!(f, x, regions...; missingval, atol)
 mosaic!(f, x, regions::Tuple; missingval, atol)

Combine regions in x using the function f.

Arguments

  • f a function (e.g. mean, sum, first or last) that is applied to values where regions overlap.

  • x: A Raster or RasterStack. May be a an opened disk-based Raster, the result will be written to disk. With the current algorithm, the read speed is slow.

  • regions: source objects to be joined. These should be memory-backed (use read first), or may experience poor performance. If all objects have the same extent, mosaic is simply a merge.

Keywords

  • missingval: Fills empty areas, and defualts to the \`missingval/ of the first layer.

  • atol: Absolute tolerance for comparison between index values. This is often required due to minor differences in range values due to floating point error. It is not applied to non-float dimensions. A tuple of tolerances may be passed, matching the dimension order.

Example

Cut out Australia and Africa stacks, then combined them into a single stack.

julia
using Rasters, RasterDataSources, ArchGDAL, Statistics, Plots
 st = read(RasterStack(WorldClim{Climate}; month=1))
 aus = st[X=100.0 .. 160.0, Y=-50.0 .. -10.0]
@@ -184,7 +214,7 @@ import{_ as s,c as i,o as e,a7 as a}from"./chunks/framework.Dv3PRBLL.js";const t
 plot(st)
 savefig("build/mosaic_bang_example.png")
 nothing
-# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.mosaicMethod.
julia
mosaic(f, regions...; missingval, atol)
+# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.mosaicMethod.
julia
mosaic(f, regions...; missingval, atol)
 mosaic(f, regions; missingval, atol)

Combine regions into a single raster.

Arguments

  • f: A reducing function (mean, sum, first, last etc.) for values where regions overlap.

  • regions: Iterable or splatted Raster or RasterStack.

Keywords

  • missingval: Fills empty areas, and defualts to the missingval of the first region.

  • atol: Absolute tolerance for comparison between index values. This is often required due to minor differences in range values due to floating point error. It is not applied to non-float dimensions. A tuple of tolerances may be passed, matching the dimension order.

  • filename: a filename to write to directly, useful for large files.

  • suffix: a string or value to append to the filename. A tuple of suffix will be applied to stack layers. keys(stack) are the default.

If your mosaic has has apparent line errors, increase the atol value.

Example

Here we cut out Australia and Africa from a stack, and join them with mosaic.

julia
using Rasters, RasterDataSources, ArchGDAL, Plots
 st = RasterStack(WorldClim{Climate}; month=1);
 
@@ -202,7 +232,7 @@ import{_ as s,c as i,o as e,a7 as a}from"./chunks/framework.Dv3PRBLL.js";const t
 savefig(b, "build/mosaic_example_aus.png")
 savefig(c, "build/mosaic_example_combined.png")
 nothing
-# output

Individual continents

Mosaic of continents

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.pointsMethod.
julia
points(A::AbstractRaster; dims=(YDim, XDim), ignore_missing) => Array{Tuple}

Returns a generator of the points in A for dimensions in dims, where points are a tuple of the values in each specified dimension index.

Keywords

  • dims the dimensions to return points from. The first slice of other layers will be used.

  • ignore_missing: wether to ignore missing values in the array when considering points. If true, all points in the dimensions will be returned, if false only the points that are not === missingval(A) will be returned.

The order of dims determines the order of the points.

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.rasterizeFunction.
julia
rasterize([reducer], data; geometrycolumn, kw...)

Rasterize a GeoInterface.jl compatable geometry or feature, or a Tables.jl table with a :geometry column of GeoInterface.jl objects, or points columns specified by geometrycolumn

Arguments

  • reducer: a reducing function to reduce the fill value for all geometries that cover or touch a pixel down to a single value. The default is last. Any that takes an iterable and returns a single value will work, including custom functions. However, there are optimisations for built-in methods including sum, first, last, minimum, maximum, extrema and Statistics.mean. These may be an order of magnitude or more faster than count is a special-cased as it does not need a fill value.

  • data: a GeoInterface.jl AbstractGeometry, a nested Vector of AbstractGeometry, or a Tables.jl compatible object containing a :geometry column or points and values columns, in which case geometrycolumn must be specified.

Keywords

These are detected automatically from data where possible.

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

  • to: a Raster, RasterStack, Tuple of Dimension or Extents.Extent. If no to object is provided the extent will be calculated from the geometries, Additionally, when no to object or an Extent is passed for to, the size or res keyword must also be used.

  • res: the resolution of the dimensions (often in meters or degrees), a Real or Tuple{<:Real,<:Real}. Only required when to is not used or is an Extents.Extent, and size is not used.

  • size: the size of the output array, as a Tuple{Int,Int} or single Int for a square. Only required when to is not used or is an Extents.Extent, and res is not used.

  • crs: a crs which will be attached to the resulting raster when to not passed or is an Extent. Otherwise the crs from to is used.

  • shape: Force data to be treated as :polygon, :line or :point geometries. using points or lines as polygons may have unexpected results.

  • boundary: for polygons, include pixels where the :center is inside the polygon, where the polygon :touches the pixel, or that are completely :inside the polygon. The default is :center.

  • fill: the value or values to fill a polygon with. A Symbol or tuple of Symbol will be used to retrieve properties from features or column values from table rows. An array or other iterable will be used for each geometry, in order. fill can also be a function of the current value, e.g. x -> x + 1.

  • op: A reducing function that accepts two values and returns one, like min to minimum. For common methods this will be assigned for you, or is not required. But you can use it instead of a reducer as it will usually be faster.

  • shape: force data to be treated as :polygon, :line or :point, where possible Points can't be treated as lines or polygons, and lines may not work as polygons, but an attempt will be made.

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

  • progress: show a progress bar, true by default, false to hide..

  • verbose: print information and warnings when there are problems with the rasterisation. true by default.

  • threaded: run operations in parallel, false by default. In some circumstances threaded can give large speedups over single-threaded operation. This can be true for complicated geometries written into low-resolution rasters, but may not be for simple geometries with high-resolution rasters. With very large rasters threading may be counter productive due to excessive memory use. Caution should also be used: threaded should not be used in in-place functions writing to BitArray or other arrays where race conditions can occur.

  • threadsafe: specify that custom reducer and/or op functions are thread-safe, in that the order of operation or blocking does not matter. For example, sum and maximum are thread-safe, because the answer is approximately (besides floating point error) the same after running on nested blocks, or on all the data. In contrast, median or last are not, because the blocking (median) or order (last) matters.

  • filename: a filename to write to directly, useful for large files.

  • suffix: a string or value to append to the filename. A tuple of suffix will be applied to stack layers. keys(stack) are the default.

Note on threading. Performance may be much better with threaded=false if reducer/op are not threadsafe. sum, prod, maximum, minimum count and mean (by combining sum and count) are threadsafe. If you know your algorithm is threadsafe, use threadsafe=true to allow all optimisations. Functions passed to fill are always threadsafe, and ignore the threadsafe argument.

Example

Rasterize a shapefile for China and plot, with a border.

julia
using Rasters, RasterDataSources, ArchGDAL, Plots, Dates, Shapefile, Downloads
+# output

Individual continents

Mosaic of continents

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.pointsMethod.
julia
points(A::AbstractRaster; dims=(YDim, XDim), ignore_missing) => Array{Tuple}

Returns a generator of the points in A for dimensions in dims, where points are a tuple of the values in each specified dimension index.

Keywords

  • dims the dimensions to return points from. The first slice of other layers will be used.

  • ignore_missing: wether to ignore missing values in the array when considering points. If true, all points in the dimensions will be returned, if false only the points that are not === missingval(A) will be returned.

The order of dims determines the order of the points.

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.rasterizeFunction.
julia
rasterize([reducer], data; geometrycolumn, kw...)

Rasterize a GeoInterface.jl compatable geometry or feature, or a Tables.jl table with a :geometry column of GeoInterface.jl objects, or points columns specified by geometrycolumn

Arguments

  • reducer: a reducing function to reduce the fill value for all geometries that cover or touch a pixel down to a single value. The default is last. Any that takes an iterable and returns a single value will work, including custom functions. However, there are optimisations for built-in methods including sum, first, last, minimum, maximum, extrema and Statistics.mean. These may be an order of magnitude or more faster than count is a special-cased as it does not need a fill value.

  • data: a GeoInterface.jl AbstractGeometry, a nested Vector of AbstractGeometry, or a Tables.jl compatible object containing a :geometry column or points and values columns, in which case geometrycolumn must be specified.

Keywords

These are detected automatically from data where possible.

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

  • to: a Raster, RasterStack, Tuple of Dimension or Extents.Extent. If no to object is provided the extent will be calculated from the geometries, Additionally, when no to object or an Extent is passed for to, the size or res keyword must also be used.

  • res: the resolution of the dimensions (often in meters or degrees), a Real or Tuple{<:Real,<:Real}. Only required when to is not used or is an Extents.Extent, and size is not used.

  • size: the size of the output array, as a Tuple{Int,Int} or single Int for a square. Only required when to is not used or is an Extents.Extent, and res is not used.

  • crs: a crs which will be attached to the resulting raster when to not passed or is an Extent. Otherwise the crs from to is used.

  • shape: Force data to be treated as :polygon, :line or :point geometries. using points or lines as polygons may have unexpected results.

  • boundary: for polygons, include pixels where the :center is inside the polygon, where the polygon :touches the pixel, or that are completely :inside the polygon. The default is :center.

  • fill: the value or values to fill a polygon with. A Symbol or tuple of Symbol will be used to retrieve properties from features or column values from table rows. An array or other iterable will be used for each geometry, in order. fill can also be a function of the current value, e.g. x -> x + 1.

  • op: A reducing function that accepts two values and returns one, like min to minimum. For common methods this will be assigned for you, or is not required. But you can use it instead of a reducer as it will usually be faster.

  • shape: force data to be treated as :polygon, :line or :point, where possible Points can't be treated as lines or polygons, and lines may not work as polygons, but an attempt will be made.

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

  • progress: show a progress bar, true by default, false to hide..

  • verbose: print information and warnings when there are problems with the rasterisation. true by default.

  • threaded: run operations in parallel, false by default. In some circumstances threaded can give large speedups over single-threaded operation. This can be true for complicated geometries written into low-resolution rasters, but may not be for simple geometries with high-resolution rasters. With very large rasters threading may be counter productive due to excessive memory use. Caution should also be used: threaded should not be used in in-place functions writing to BitArray or other arrays where race conditions can occur.

  • threadsafe: specify that custom reducer and/or op functions are thread-safe, in that the order of operation or blocking does not matter. For example, sum and maximum are thread-safe, because the answer is approximately (besides floating point error) the same after running on nested blocks, or on all the data. In contrast, median or last are not, because the blocking (median) or order (last) matters.

  • filename: a filename to write to directly, useful for large files.

  • suffix: a string or value to append to the filename. A tuple of suffix will be applied to stack layers. keys(stack) are the default.

Note on threading. Performance may be much better with threaded=false if reducer/op are not threadsafe. sum, prod, maximum, minimum count and mean (by combining sum and count) are threadsafe. If you know your algorithm is threadsafe, use threadsafe=true to allow all optimisations. Functions passed to fill are always threadsafe, and ignore the threadsafe argument.

Example

Rasterize a shapefile for China and plot, with a border.

julia
using Rasters, RasterDataSources, ArchGDAL, Plots, Dates, Shapefile, Downloads
 using Rasters.Lookups
 
 # Download a borders shapefile
@@ -222,7 +252,7 @@ import{_ as s,c as i,o as e,a7 as a}from"./chunks/framework.Dv3PRBLL.js";const t
 
 savefig("build/china_rasterized.png"); nothing
 
-# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.rasterize!Function.
julia
rasterize!([reducer], dest, data; kw...)

Rasterize the geometries in data into the Raster or RasterStack dest, using the values specified by fill.

Arguments

  • dest: a Raster or RasterStack to rasterize into.

  • reducer: a reducing function to reduce the fill value for all geometries that cover or touch a pixel down to a single value. The default is last. Any that takes an iterable and returns a single value will work, including custom functions. However, there are optimisations for built-in methods including sum, first, last, minimum, maximum, extrema and Statistics.mean. These may be an order of magnitude or more faster than count is a special-cased as it does not need a fill value.

  • data: a GeoInterface.jl AbstractGeometry, a nested Vector of AbstractGeometry, or a Tables.jl compatible object containing a :geometry column or points and values columns, in which case geometrycolumn must be specified.

Keywords

These are detected automatically from A and data where possible.

  • fill: the value or values to fill a polygon with. A Symbol or tuple of Symbol will be used to retrieve properties from features or column values from table rows. An array or other iterable will be used for each geometry, in order. fill can also be a function of the current value, e.g. x -> x + 1.

  • op: A reducing function that accepts two values and returns one, like min to minimum. For common methods this will be assigned for you, or is not required. But you can use it instead of a reducer as it will usually be faster.

  • shape: force data to be treated as :polygon, :line or :point, where possible Points can't be treated as lines or polygons, and lines may not work as polygons, but an attempt will be made.

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

  • progress: show a progress bar, true by default, false to hide..

  • verbose: print information and warnings when there are problems with the rasterisation. true by default.

  • threaded: run operations in parallel, false by default. In some circumstances threaded can give large speedups over single-threaded operation. This can be true for complicated geometries written into low-resolution rasters, but may not be for simple geometries with high-resolution rasters. With very large rasters threading may be counter productive due to excessive memory use. Caution should also be used: threaded should not be used in in-place functions writing to BitArray or other arrays where race conditions can occur.

  • threadsafe: specify that custom reducer and/or op functions are thread-safe, in that the order of operation or blocking does not matter. For example, sum and maximum are thread-safe, because the answer is approximately (besides floating point error) the same after running on nested blocks, or on all the data. In contrast, median or last are not, because the blocking (median) or order (last) matters.

  • to: a Raster, RasterStack, Tuple of Dimension or Extents.Extent. If no to object is provided the extent will be calculated from the geometries, Additionally, when no to object or an Extent is passed for to, the size or res keyword must also be used.

  • res: the resolution of the dimensions (often in meters or degrees), a Real or Tuple{<:Real,<:Real}. Only required when to is not used or is an Extents.Extent, and size is not used.

  • size: the size of the output array, as a Tuple{Int,Int} or single Int for a square. Only required when to is not used or is an Extents.Extent, and res is not used.

  • crs: a crs which will be attached to the resulting raster when to not passed or is an Extent. Otherwise the crs from to is used.

  • shape: Force data to be treated as :polygon, :line or :point geometries. using points or lines as polygons may have unexpected results.

  • boundary: for polygons, include pixels where the :center is inside the polygon, where the polygon :touches the pixel, or that are completely :inside the polygon. The default is :center.

Example

julia
using Rasters, RasterDataSources, ArchGDAL, Plots, Dates, Shapefile, GeoInterface, Downloads
+# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.rasterize!Function.
julia
rasterize!([reducer], dest, data; kw...)

Rasterize the geometries in data into the Raster or RasterStack dest, using the values specified by fill.

Arguments

  • dest: a Raster or RasterStack to rasterize into.

  • reducer: a reducing function to reduce the fill value for all geometries that cover or touch a pixel down to a single value. The default is last. Any that takes an iterable and returns a single value will work, including custom functions. However, there are optimisations for built-in methods including sum, first, last, minimum, maximum, extrema and Statistics.mean. These may be an order of magnitude or more faster than count is a special-cased as it does not need a fill value.

  • data: a GeoInterface.jl AbstractGeometry, a nested Vector of AbstractGeometry, or a Tables.jl compatible object containing a :geometry column or points and values columns, in which case geometrycolumn must be specified.

Keywords

These are detected automatically from A and data where possible.

  • fill: the value or values to fill a polygon with. A Symbol or tuple of Symbol will be used to retrieve properties from features or column values from table rows. An array or other iterable will be used for each geometry, in order. fill can also be a function of the current value, e.g. x -> x + 1.

  • op: A reducing function that accepts two values and returns one, like min to minimum. For common methods this will be assigned for you, or is not required. But you can use it instead of a reducer as it will usually be faster.

  • shape: force data to be treated as :polygon, :line or :point, where possible Points can't be treated as lines or polygons, and lines may not work as polygons, but an attempt will be made.

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

  • progress: show a progress bar, true by default, false to hide..

  • verbose: print information and warnings when there are problems with the rasterisation. true by default.

  • threaded: run operations in parallel, false by default. In some circumstances threaded can give large speedups over single-threaded operation. This can be true for complicated geometries written into low-resolution rasters, but may not be for simple geometries with high-resolution rasters. With very large rasters threading may be counter productive due to excessive memory use. Caution should also be used: threaded should not be used in in-place functions writing to BitArray or other arrays where race conditions can occur.

  • threadsafe: specify that custom reducer and/or op functions are thread-safe, in that the order of operation or blocking does not matter. For example, sum and maximum are thread-safe, because the answer is approximately (besides floating point error) the same after running on nested blocks, or on all the data. In contrast, median or last are not, because the blocking (median) or order (last) matters.

  • to: a Raster, RasterStack, Tuple of Dimension or Extents.Extent. If no to object is provided the extent will be calculated from the geometries, Additionally, when no to object or an Extent is passed for to, the size or res keyword must also be used.

  • res: the resolution of the dimensions (often in meters or degrees), a Real or Tuple{<:Real,<:Real}. Only required when to is not used or is an Extents.Extent, and size is not used.

  • size: the size of the output array, as a Tuple{Int,Int} or single Int for a square. Only required when to is not used or is an Extents.Extent, and res is not used.

  • crs: a crs which will be attached to the resulting raster when to not passed or is an Extent. Otherwise the crs from to is used.

  • shape: Force data to be treated as :polygon, :line or :point geometries. using points or lines as polygons may have unexpected results.

  • boundary: for polygons, include pixels where the :center is inside the polygon, where the polygon :touches the pixel, or that are completely :inside the polygon. The default is :center.

Example

julia
using Rasters, RasterDataSources, ArchGDAL, Plots, Dates, Shapefile, GeoInterface, Downloads
 using Rasters.Lookups
 
 # Download a borders shapefile
@@ -250,12 +280,12 @@ import{_ as s,c as i,o as e,a7 as a}from"./chunks/framework.Dv3PRBLL.js";const t
 
 savefig("build/indonesia_rasterized.png"); nothing
 
-# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.replace_missingMethod.
julia
replace_missing(a::AbstractRaster, newmissingval)
+# output

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.replace_missingMethod.
julia
replace_missing(a::AbstractRaster, newmissingval)
 replace_missing(a::AbstractRasterStack, newmissingval)

Replace missing values in the array or stack with a new missing value, also updating the missingval field/s.

Keywords

  • filename: a filename to write to directly, useful for large files.

  • suffix: a string or value to append to the filename. A tuple of suffix will be applied to stack layers. keys(stack) are the default.

Example

julia
using Rasters, RasterDataSources, ArchGDAL
 A = Raster(WorldClim{Climate}, :prec; month=1) |> replace_missing
 missingval(A)
 # output
-missing

source


# Rasters.reprojectMethod.
julia
reproject(source::GeoFormat, target::GeoFormat, dim::Dimension, val)

reproject uses ArchGDAL.reproject, but implemented for a reprojecting a value array of values, a single dimension at a time.

source


# Rasters.reprojectMethod.
julia
reproject(obj; crs)

Reproject the lookups of obj to a different crs.

This is a lossless operation for the raster data, as only the lookup values change. This is only possible when the axes of source and destination projections are aligned: the change is usually from a Regular and an Irregular lookup spans.

For converting between projections that are rotated, skewed or warped in any way, use resample.

Dimensions without an AbstractProjected lookup (such as a Ti dimension) are silently returned without modification.

Arguments

  • obj: a Lookup, Dimension, Tuple of Dimension, Raster or RasterStack.

  • crs: a crs which will be attached to the resulting raster when to not passed or is an Extent. Otherwise the crs from to is used.

source


# Rasters.resampleMethod.
julia
resample(x; kw...)
+missing

source


# Rasters.reprojectMethod.
julia
reproject(source::GeoFormat, target::GeoFormat, dim::Dimension, val)

reproject uses ArchGDAL.reproject, but implemented for a reprojecting a value array of values, a single dimension at a time.

source


# Rasters.reprojectMethod.
julia
reproject(obj; crs)

Reproject the lookups of obj to a different crs.

This is a lossless operation for the raster data, as only the lookup values change. This is only possible when the axes of source and destination projections are aligned: the change is usually from a Regular and an Irregular lookup spans.

For converting between projections that are rotated, skewed or warped in any way, use resample.

Dimensions without an AbstractProjected lookup (such as a Ti dimension) are silently returned without modification.

Arguments

  • obj: a Lookup, Dimension, Tuple of Dimension, Raster or RasterStack.

  • crs: a crs which will be attached to the resulting raster when to not passed or is an Extent. Otherwise the crs from to is used.

source


# Rasters.resampleMethod.
julia
resample(x; kw...)
 resample(xs...; to=first(xs), kw...)

resample uses warp (which uses GDALs gdalwarp) to resample a Raster or RasterStack to a new resolution and optionally new crs, or to snap to the bounds, resolution and crs of the object to.

Dimensions without an AbstractProjected lookup (such as a Ti dimension) are iteratively resampled with GDAL and joined back into a single array.

If projections can be converted for each axis independently, it may be faster and more accurate to use reproject.

Run using ArchGDAL to make this method available.

Arguments

  • x: the object/s to resample.

Keywords

  • to: a Raster, RasterStack, Tuple of Dimension or Extents.Extent. If no to object is provided the extent will be calculated from x,

  • res: the resolution of the dimensions (often in meters or degrees), a Real or Tuple{<:Real,<:Real}. Only required when to is not used or is an Extents.Extent, and size is not used.

  • size: the size of the output array, as a Tuple{Int,Int} or single Int for a square. Only required when to is not used or is an Extents.Extent, and res is not used.

  • crs: a crs which will be attached to the resulting raster when to not passed or is an Extent. Otherwise the crs from to is used.

  • method: A Symbol or String specifying the method to use for resampling. From the docs for gdalwarp:

    • :near: nearest neighbour resampling (default, fastest algorithm, worst interpolation quality).

    • :bilinear: bilinear resampling.

    • :cubic: cubic resampling.

    • :cubicspline: cubic spline resampling.

    • :lanczos: Lanczos windowed sinc resampling.

    • :average: average resampling, computes the weighted average of all non-NODATA contributing pixels. rms root mean square / quadratic mean of all non-NODATA contributing pixels (GDAL >= 3.3)

    • :mode: mode resampling, selects the value which appears most often of all the sampled points.

    • :max: maximum resampling, selects the maximum value from all non-NODATA contributing pixels.

    • :min: minimum resampling, selects the minimum value from all non-NODATA contributing pixels.

    • :med: median resampling, selects the median value of all non-NODATA contributing pixels.

    • :q1: first quartile resampling, selects the first quartile value of all non-NODATA contributing pixels.

    • :q3: third quartile resampling, selects the third quartile value of all non-NODATA contributing pixels.

    • :sum: compute the weighted sum of all non-NODATA contributing pixels (since GDAL 3.1)

    Where NODATA values are set to missingval.

  • filename: a filename to write to directly, useful for large files.

  • suffix: a string or value to append to the filename. A tuple of suffix will be applied to stack layers. keys(stack) are the default.

Note:

  • GDAL may cause some unexpected changes in the raster, such as changing the crs type from EPSG to WellKnownText (it will represent the same CRS).

Example

Resample a WorldClim layer to match an EarthEnv layer:

julia
using Rasters, RasterDataSources, ArchGDAL, Plots
 A = Raster(WorldClim{Climate}, :prec; month=1)
 B = Raster(EarthEnv{HabitatHeterogeneity}, :evenness)
@@ -266,7 +296,7 @@ import{_ as s,c as i,o as e,a7 as a}from"./chunks/framework.Dv3PRBLL.js";const t
 savefig(a, "build/resample_example_before.png");
 savefig(b, "build/resample_example_after.png"); nothing
 
-# output

Before resample:

After resample:

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.setcrsMethod.
julia
setcrs(x, crs)

Set the crs of a Raster, RasterStack, Tuple of Dimension, or a Dimension. The crs is expected to be a GeoFormatTypes.jl CRS or Mixed GeoFormat type

source


# Rasters.setmappedcrsMethod.
julia
setmappedcrs(x, crs)

Set the mapped crs of a Raster, a RasterStack, a Tuple of Dimension, or a Dimension. The crs is expected to be a GeoFormatTypes.jl CRS or Mixed GeoFormat type

source


# Rasters.sliceMethod.
julia
slice(A::Union{AbstractRaster,AbstractRasterStack,AbstracRasterSeries}, dims) => RasterSeries

Slice views along some dimension/s to obtain a RasterSeries of the slices.

For a Raster or RasterStack this will return a RasterSeries of Raster or RasterStack that are slices along the specified dimensions.

For a RasterSeries, the output is another series where the child objects are sliced and the series dimensions index is now of the child dimensions combined. slice on a RasterSeries with no dimensions will slice along the dimensions shared by both the series and child object.

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.trimMethod.
julia
trim(x; dims::Tuple, pad::Int)

Trim missingval(x) from x for axes in dims, returning a view of x.

Arguments

  • x: A Raster or RasterStack. For stacks, all layers must having missing values for a pixel for it to be trimmed.

Keywords

  • dims: By default dims=(XDim, YDim), so that trimming keeps the area of X and Y that contains non-missing values along all other dimensions.

  • pad: The trimmed size will be padded by pad on all sides, although padding will not be added beyond the original extent of the array.

As trim is lazy, filename and suffix keywords are not used.

Example

Create trimmed layers of Australian habitat heterogeneity.

julia
using Rasters, RasterDataSources, Plots
+# output

Before resample:

After resample:

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.setcrsMethod.
julia
setcrs(x, crs)

Set the crs of a Raster, RasterStack, Tuple of Dimension, or a Dimension. The crs is expected to be a GeoFormatTypes.jl CRS or Mixed GeoFormat type

source


# Rasters.setmappedcrsMethod.
julia
setmappedcrs(x, crs)

Set the mapped crs of a Raster, a RasterStack, a Tuple of Dimension, or a Dimension. The crs is expected to be a GeoFormatTypes.jl CRS or Mixed GeoFormat type

source


# Rasters.sliceMethod.
julia
slice(A::Union{AbstractRaster,AbstractRasterStack,AbstracRasterSeries}, dims) => RasterSeries

Slice views along some dimension/s to obtain a RasterSeries of the slices.

For a Raster or RasterStack this will return a RasterSeries of Raster or RasterStack that are slices along the specified dimensions.

For a RasterSeries, the output is another series where the child objects are sliced and the series dimensions index is now of the child dimensions combined. slice on a RasterSeries with no dimensions will slice along the dimensions shared by both the series and child object.

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.trimMethod.
julia
trim(x; dims::Tuple, pad::Int)

Trim missingval(x) from x for axes in dims, returning a view of x.

Arguments

  • x: A Raster or RasterStack. For stacks, all layers must having missing values for a pixel for it to be trimmed.

Keywords

  • dims: By default dims=(XDim, YDim), so that trimming keeps the area of X and Y that contains non-missing values along all other dimensions.

  • pad: The trimmed size will be padded by pad on all sides, although padding will not be added beyond the original extent of the array.

As trim is lazy, filename and suffix keywords are not used.

Example

Create trimmed layers of Australian habitat heterogeneity.

julia
using Rasters, RasterDataSources, Plots
 layers = (:evenness, :range, :contrast, :correlation)
 st = RasterStack(EarthEnv{HabitatHeterogeneity}, layers)
 
@@ -281,7 +311,7 @@ import{_ as s,c as i,o as e,a7 as a}from"./chunks/framework.Dv3PRBLL.js";const t
 savefig(a, "build/trim_example_before.png");
 savefig(b, "build/trim_example_after.png"); nothing
 
-# output

Before trim:

After trim:

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.warpMethod.
julia
warp(A::AbstractRaster, flags::Dict; kw...)

Gives access to the GDALs gdalwarp method given a Dict of flag => value arguments that can be converted to strings, or vectors where multiple space-separated arguments are required.

Arrays with additional dimensions not handled by GDAL (other than X, Y, Band) are sliced, warped, and then combined to match the original array dimensions. These slices will not be written to disk and loaded lazily at this stage - you will need to do that manually if required.

See the gdalwarp docs for a list of arguments.

Run using ArchGDAL to make this method available.

Keywords

  • filename: a filename to write to directly, useful for large files.

  • suffix: a string or value to append to the filename. A tuple of suffix will be applied to stack layers. keys(stack) are the default.

Any additional keywords are passed to ArchGDAL.Dataset.

Example

This simply resamples the array with the :tr (output file resolution) and :r flags, giving us a pixelated version:

julia
using Rasters, RasterDataSources, Plots
+# output

Before trim:

After trim:

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.warpMethod.
julia
warp(A::AbstractRaster, flags::Dict; kw...)

Gives access to the GDALs gdalwarp method given a Dict of flag => value arguments that can be converted to strings, or vectors where multiple space-separated arguments are required.

Arrays with additional dimensions not handled by GDAL (other than X, Y, Band) are sliced, warped, and then combined to match the original array dimensions. These slices will not be written to disk and loaded lazily at this stage - you will need to do that manually if required.

See the gdalwarp docs for a list of arguments.

Run using ArchGDAL to make this method available.

Keywords

  • filename: a filename to write to directly, useful for large files.

  • suffix: a string or value to append to the filename. A tuple of suffix will be applied to stack layers. keys(stack) are the default.

Any additional keywords are passed to ArchGDAL.Dataset.

Example

This simply resamples the array with the :tr (output file resolution) and :r flags, giving us a pixelated version:

julia
using Rasters, RasterDataSources, Plots
 A = Raster(WorldClim{Climate}, :prec; month=1)
 a = plot(A)
 
@@ -294,7 +324,7 @@ import{_ as s,c as i,o as e,a7 as a}from"./chunks/framework.Dv3PRBLL.js";const t
 savefig(a, "build/warp_example_before.png");
 savefig(b, "build/warp_example_after.png"); nothing
 
-# output

Before warp:

After warp:

In practise, prefer resample for this. But warp may be more flexible.

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.zonalMethod.
julia
zonal(f, x::Union{Raster,RasterStack}; of, kw...)

Calculate zonal statistics for the the zone of a Raster or RasterStack covered by the of object/s.

Arguments

  • f: any function that reduces an iterable to a single value, such as sum or Statistics.mean

  • x: A Raster or RasterStack

  • of: A DimTuple, Extent, a Raster or one or multiple geometries. Geometries can be a GeoInterface.jl AbstractGeometry, a nested Vector of AbstractGeometry, or a Tables.jl compatible object containing a :geometry column or points and values columns, in which case geometrycolumn must be specified.

Keywords

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

These can be used when of is or contains (a) GeoInterface.jl compatible object(s):

  • shape: Force data to be treated as :polygon, :line or :point, where possible.

  • boundary: for polygons, include pixels where the :center is inside the polygon, where the line :touches the pixel, or that are completely :inside inside the polygon. The default is :center.

  • progress: show a progress bar, true by default, false to hide..

Example

julia
using Rasters, RasterDataSources, ArchGDAL, Shapefile, DataFrames, Downloads, Statistics, Dates
+# output

Before warp:

After warp:

In practise, prefer resample for this. But warp may be more flexible.

WARNING: This feature is experimental. It may change in future versions, and may not be 100% reliable in all cases. Please file github issues if problems occur.

source


# Rasters.zonalMethod.
julia
zonal(f, x::Union{Raster,RasterStack}; of, kw...)

Calculate zonal statistics for the the zone of a Raster or RasterStack covered by the of object/s.

Arguments

  • f: any function that reduces an iterable to a single value, such as sum or Statistics.mean

  • x: A Raster or RasterStack

  • of: A DimTuple, Extent, a Raster or one or multiple geometries. Geometries can be a GeoInterface.jl AbstractGeometry, a nested Vector of AbstractGeometry, or a Tables.jl compatible object containing a :geometry column or points and values columns, in which case geometrycolumn must be specified.

Keywords

  • geometrycolumn: Symbol to manually select the column the geometries are in when data is a Tables.jl compatible table, or a tuple of Symbol for columns of point coordinates.

These can be used when of is or contains (a) GeoInterface.jl compatible object(s):

  • shape: Force data to be treated as :polygon, :line or :point, where possible.

  • boundary: for polygons, include pixels where the :center is inside the polygon, where the line :touches the pixel, or that are completely :inside inside the polygon. The default is :center.

  • progress: show a progress bar, true by default, false to hide..

Example

julia
using Rasters, RasterDataSources, ArchGDAL, Shapefile, DataFrames, Downloads, Statistics, Dates
 
 # Download a borders shapefile
 ne_url = "https://github.com/nvkelso/natural-earth-vector/raw/master/10m_cultural/ne_10m_admin_0_countries"
@@ -336,17 +366,17 @@ import{_ as s,c as i,o as e,a7 as a}from"./chunks/framework.Dv3PRBLL.js";const t
  256 │ Bajo Nuevo Bank               NaN        NaN        NaN        NaN
  257 │ Serranilla Bank               NaN        NaN        NaN        NaN
  258 │ Scarborough Reef              NaN        NaN        NaN        NaN
-                                                  3 columns and 243 rows omitted

source


Reference - Internal functions

# Rasters.AbstractProjectedType.
julia
AbstractProjected <: AbstractSampled

Abstract supertype for projected index lookups.

source


# Rasters.FileArrayType.
julia
FileArray{S} <: DiskArrays.AbstractDiskArray

Filearray is a DiskArrays.jl AbstractDiskArray. Instead of holding an open object, it just holds a filename string that is opened lazily when it needs to be read.

source


# Rasters.FileStackType.
julia
FileStack{S,Na}
+                                                  3 columns and 243 rows omitted

source


Reference - Internal functions

# Rasters.AbstractProjectedType.
julia
AbstractProjected <: AbstractSampled

Abstract supertype for projected index lookups.

source


# Rasters.FileArrayType.
julia
FileArray{S} <: DiskArrays.AbstractDiskArray

Filearray is a DiskArrays.jl AbstractDiskArray. Instead of holding an open object, it just holds a filename string that is opened lazily when it needs to be read.

source


# Rasters.FileStackType.
julia
FileStack{S,Na}
 
-FileStack{S,Na}(filename, types, sizes, eachchunk, haschunks, write)

A wrapper object that holds file pointer and size/chunking metadata for a multi-layered stack stored in a single file, typically netcdf or hdf5.

S is a backend type like NCDsource, and Na is a tuple of Symbol keys.

source


# Rasters.OpenStackType.
julia
OpenStack{X,K}
+FileStack{S,Na}(filename, types, sizes, eachchunk, haschunks, write)

A wrapper object that holds file pointer and size/chunking metadata for a multi-layered stack stored in a single file, typically netcdf or hdf5.

S is a backend type like NCDsource, and Na is a tuple of Symbol keys.

source


# Rasters.OpenStackType.
julia
OpenStack{X,K}
 
-OpenStack{X,K}(dataset)

A wrapper for any stack-like opened dataset that can be indexed with Symbol keys to retrieve AbstractArray layers.

OpenStack is usually hidden from users, wrapped in a regular RasterStack passed as the function argument in open(stack) when the stack is contained in a single file.

X is a backend type like NCDsource, and K is a tuple of Symbol keys.

source


# Rasters.RasterDiskArrayType.
julia
RasterDiskArray <: DiskArrays.AbstractDiskArray

A basic DiskArrays.jl wrapper for objects that don't have one defined yet. When we open a FileArray it is replaced with a RasterDiskArray.

source


# Base.openMethod.
julia
open(f, A::AbstractRaster; write=false)

open is used to open any lazy=true AbstractRaster and do multiple operations on it in a safe way. The write keyword opens the file in write lookup so that it can be altered on disk using e.g. a broadcast.

f is a method that accepts a single argument - an Raster object which is just an AbstractRaster that holds an open disk-based object. Often it will be a do block:

lazy=false (in-memory) rasters will ignore open and pass themselves to f.

julia
# A is an \`Raster\` wrapping the opened disk-based object.
+OpenStack{X,K}(dataset)

A wrapper for any stack-like opened dataset that can be indexed with Symbol keys to retrieve AbstractArray layers.

OpenStack is usually hidden from users, wrapped in a regular RasterStack passed as the function argument in open(stack) when the stack is contained in a single file.

X is a backend type like NCDsource, and K is a tuple of Symbol keys.

source


# Rasters.RasterDiskArrayType.
julia
RasterDiskArray <: DiskArrays.AbstractDiskArray

A basic DiskArrays.jl wrapper for objects that don't have one defined yet. When we open a FileArray it is replaced with a RasterDiskArray.

source


# Base.openMethod.
julia
open(f, A::AbstractRaster; write=false)

open is used to open any lazy=true AbstractRaster and do multiple operations on it in a safe way. The write keyword opens the file in write lookup so that it can be altered on disk using e.g. a broadcast.

f is a method that accepts a single argument - an Raster object which is just an AbstractRaster that holds an open disk-based object. Often it will be a do block:

lazy=false (in-memory) rasters will ignore open and pass themselves to f.

julia
# A is an \`Raster\` wrapping the opened disk-based object.
 open(Raster(filepath); write=true) do A
     mask!(A; with=maskfile)
     A[I...] .*= 2
     # ...  other things you need to do with the open file
-end

By using a do block to open files we ensure they are always closed again after we finish working with them.

source


# Base.read!Method.
julia
read!(src::Union{AbstractString,AbstractRaster}, dst::AbstractRaster)
+end

By using a do block to open files we ensure they are always closed again after we finish working with them.

source


# Base.read!Method.
julia
read!(src::Union{AbstractString,AbstractRaster}, dst::AbstractRaster)
 read!(src::Union{AbstractString,AbstractRasterStack}, dst::AbstractRasterStack)
-read!(scr::AbstractRasterSeries, dst::AbstractRasterSeries)

read! will copy the data from src to the object dst.

src can be an object or a file-path String.

source


# Base.readMethod.
julia
read(A::AbstractRaster)
+read!(scr::AbstractRasterSeries, dst::AbstractRasterSeries)

read! will copy the data from src to the object dst.

src can be an object or a file-path String.

source


# Base.readMethod.
julia
read(A::AbstractRaster)
 read(A::AbstractRasterStack)
-read(A::AbstractRasterSeries)

read will move a Rasters.jl object completely to memory.

Keywords

  • checkmemory: If true (the default), check if there is enough memory for the operation. false will ignore memory needs.

source


# Base.skipmissingMethod.
julia
skipmissing(itr::Raster)

Returns an iterable over the elements in a Raster object, skipping any values equal to either the missingval or missing.

source


# Base.writeMethod.
julia
Base.write(filepath::AbstractString, s::AbstractRasterSeries; kw...)

Write any AbstractRasterSeries to multiple files, guessing the backend from the file extension.

The lookup values of the series will be appended to the filepath (before the extension), separated by underscores.

All keywords are passed through to these Raster and RasterStack methods.

Keywords

  • chunks: a NTuple{N,Int} specifying the chunk size for each dimension. To specify only specific dimensions, a Tuple of Dimension wrapping Int or a NamedTuple of Int can be used. Other dimensions will have a chunk size of 1. true can be used to mean: use the original chunk size of the lazy Raster being written or X and Y of 256 by 256. false means don't use chunks at all.

  • ext: filename extension such as ".tiff" or ".nc". Used to specify specific files if only a directory path is used.

  • force: false by default. If true it force writing to a file destructively, even if it already exists.

  • missingval: set the missing value (i.e. FillValue / nodataval) of the written raster, as Julias missing cannot be stored. If not passed in, missingval will be detected from metadata or a default will be chosen. For series with RasterStack child objects, this may be a NamedTuple, one for each layer.

  • source: Usually automatically detected from filepath extension. To manually force, a Symbol can be passed :gdal, :netcdf, :grd, :grib. The internal Rasters.Source objects, such as Rasters.GDALsource(), Rasters.GRIBsource() or Rasters.NCDsource() can also be used.

  • vebose: whether to print messages about potential problems. true by default.

source


# Base.writeMethod.
julia
Base.write(filename::AbstractString, s::AbstractRasterStack; kw...)

Write any AbstractRasterStack to one or multiple files, depending on the backend. Backend is guessed from the filename extension or forced with the source keyword.

If the source can't be saved as a stack-like object, individual array layers will be saved.

Keywords

  • chunks: a NTuple{N,Int} specifying the chunk size for each dimension. To specify only specific dimensions, a Tuple of Dimension wrapping Int or a NamedTuple of Int can be used. Other dimensions will have a chunk size of 1. true can be used to mean: use the original chunk size of the lazy Raster being written or X and Y of 256 by 256. false means don't use chunks at all.

  • ext: filename extension such as ".tiff" or ".nc". Used to specify specific files if only a directory path is used.

  • force: false by default. If true it force writing to a file destructively, even if it already exists.

  • missingval: set the missing value (i.e. FillValue / nodataval) of the written raster, as Julias missing cannot be stored. If not passed in, missingval will be detected from metadata or a default will be chosen. For RasterStack this may be a NamedTuple, one for each layer.

  • source: Usually automatically detected from filepath extension. To manually force, a Symbol can be passed :gdal, :netcdf, :grd, :grib. The internal Rasters.Source objects, such as Rasters.GDALsource(), Rasters.GRIBsource() or Rasters.NCDsource() can also be used.

  • suffix: a string or value to append to the filename. A tuple of suffix will be applied to stack layers. keys(stack) are the default.

  • vebose: whether to print messages about potential problems. true by default.

Other keyword arguments are passed to the write method for the backend.

NetCDF keywords

GDAL Keywords

  • force: false by default. If true it force writing to a file destructively, even if it already exists.

  • driver: A GDAL driver name String or a GDAL driver retrieved via ArchGDAL.getdriver(drivername). By default driver is guessed from the filename extension.

  • options::Dict{String,String}: A dictionary containing the dataset creation options passed to the driver. For example: Dict("COMPRESS" => "DEFLATE").

Valid options for each specific driver can be found at: https://gdal.org/drivers/raster/index.html

Source comments

R grd/grid files

Write a Raster to a .grd file with a .gri header file. Returns the base of filename with a .grd extension.

GDAL (tiff, and everything else)

Used if you write a Raster with a filename extension that no other backend can write. GDAL is the fallback, and writes a lot of file types, but is not guaranteed to work.

source


# Base.writeMethod.
julia
Base.write(filename::AbstractString, A::AbstractRaster; [source], kw...)

Write an AbstractRaster to file, guessing the backend from the file extension or using the source keyword.

Keywords

  • chunks: a NTuple{N,Int} specifying the chunk size for each dimension. To specify only specific dimensions, a Tuple of Dimension wrapping Int or a NamedTuple of Int can be used. Other dimensions will have a chunk size of 1. true can be used to mean: use the original chunk size of the lazy Raster being written or X and Y of 256 by 256. false means don't use chunks at all.

  • force: false by default. If true it force writing to a file destructively, even if it already exists.

  • missingval: set the missing value (i.e. FillValue / nodataval) of the written raster, as Julias missing cannot be stored. If not passed in, missingval will be detected from metadata or a default will be chosen.

  • source: Usually automatically detected from filepath extension. To manually force, a Symbol can be passed :gdal, :netcdf, :grd, :grib. The internal Rasters.Source objects, such as Rasters.GDALsource(), Rasters.GRIBsource() or Rasters.NCDsource() can also be used.

Other keyword arguments are passed to the write method for the backend.

NetCDF keywords

GDAL Keywords

  • force: false by default. If true it force writing to a file destructively, even if it already exists.

  • driver: A GDAL driver name String or a GDAL driver retrieved via ArchGDAL.getdriver(drivername). By default driver is guessed from the filename extension.

  • options::Dict{String,String}: A dictionary containing the dataset creation options passed to the driver. For example: Dict("COMPRESS" => "DEFLATE").

Valid options for each specific driver can be found at: https://gdal.org/drivers/raster/index.html

Source comments

R grd/grid files

Write a Raster to a .grd file with a .gri header file. Returns the base of filename with a .grd extension.

GDAL (tiff, and everything else)

Used if you write a Raster with a filename extension that no other backend can write. GDAL is the fallback, and writes a lot of file types, but is not guaranteed to work.

Returns filename.

source


# Base.writeMethod.
julia
Base.write(filename::AbstractString, ::Type{GRDsource}, s::AbstractRaster; kw...)

Write a Raster to a .grd file with a .gri header file.

This method is called automatically if you write a Raster with a .grd or .gri extension.

Keywords

  • force: false by default. If true it force writing to a file destructively, even if it already exists.

If this method is called directly the extension of filename will be ignored.

Returns the base of filename with a .grd extension.

source


# Rasters.checkmem!Method.
julia
checkmem!(x::Bool)

Set checkmem to true or false.

In some architectures memory reporting may be wrong and you may wish to disable memory checks.

This setting can be overridden with the checkmem keyword, where applicable.

source


# Rasters.rplotMethod.
julia
Rasters.rplot([position::GridPosition], raster; kw...)

raster may be a Raster (of 2 or 3 dimensions) or a RasterStack whose underlying rasters are 2 dimensional, or 3-dimensional with a singleton (length-1) third dimension.

Keywords

  • plottype = Makie.Heatmap: The type of plot. Can be any Makie plot type which accepts a Raster; in practice, Heatmap, Contour, Contourf and Surface are the best bets.

  • axistype = Makie.Axis: The type of axis. This can be an Axis, Axis3, LScene, or even a GeoAxis from GeoMakie.jl.

  • X = XDim: The X dimension of the raster.

  • Y = YDim: The Y dimension of the raster.

  • Z = YDim: The Y dimension of the raster.

  • draw_colorbar = true: Whether to draw a colorbar for the axis or not.

  • colorbar_position = Makie.Right(): Indicates which side of the axis the colorbar should be placed on. Can be Makie.Top(), Makie.Bottom(), Makie.Left(), or Makie.Right().

  • colorbar_padding = Makie.automatic: The amount of padding between the colorbar and its axis. If automatic, then this is set to the width of the colorbar.

  • title = Makie.automatic: The titles of each plot. If automatic, these are set to the name of the band.

  • xlabel = Makie.automatic: The x-label for the axis. If automatic, set to the dimension name of the X-dimension of the raster.

  • ylabel = Makie.automatic: The y-label for the axis. If automatic, set to the dimension name of the Y-dimension of the raster.

  • colorbarlabel = "": Usually nothing, but here if you need it. Sets the label on the colorbar.

  • colormap = nothing: The colormap for the heatmap. This can be set to a vector of colormaps (symbols, strings, cgrads) if plotting a 3D raster or RasterStack.

  • colorrange = Makie.automatic: The colormap for the heatmap. This can be set to a vector of (low, high) if plotting a 3D raster or RasterStack.

  • nan_color = :transparent: The color which NaN values should take. Default to transparent.

source


`,130),v=[A];function R(D,B,w,x,j,S){return e(),i("div",null,v)}const q=s(C,[["render",R]]);export{_ as __pageData,q as default}; +read(A::AbstractRasterSeries)

read will move a Rasters.jl object completely to memory.

Keywords

source


# Base.skipmissingMethod.
julia
skipmissing(itr::Raster)

Returns an iterable over the elements in a Raster object, skipping any values equal to either the missingval or missing.

source


# Base.writeMethod.
julia
Base.write(filepath::AbstractString, s::AbstractRasterSeries; kw...)

Write any AbstractRasterSeries to multiple files, guessing the backend from the file extension.

The lookup values of the series will be appended to the filepath (before the extension), separated by underscores.

All keywords are passed through to these Raster and RasterStack methods.

Keywords

source


# Base.writeMethod.
julia
Base.write(filename::AbstractString, s::AbstractRasterStack; kw...)

Write any AbstractRasterStack to one or multiple files, depending on the backend. Backend is guessed from the filename extension or forced with the source keyword.

If the source can't be saved as a stack-like object, individual array layers will be saved.

Keywords

Other keyword arguments are passed to the write method for the backend.

NetCDF keywords

GDAL Keywords

Valid options for each specific driver can be found at: https://gdal.org/drivers/raster/index.html

Source comments

R grd/grid files

Write a Raster to a .grd file with a .gri header file. Returns the base of filename with a .grd extension.

GDAL (tiff, and everything else)

Used if you write a Raster with a filename extension that no other backend can write. GDAL is the fallback, and writes a lot of file types, but is not guaranteed to work.

source


# Base.writeMethod.
julia
Base.write(filename::AbstractString, A::AbstractRaster; [source], kw...)

Write an AbstractRaster to file, guessing the backend from the file extension or using the source keyword.

Keywords

Other keyword arguments are passed to the write method for the backend.

NetCDF keywords

GDAL Keywords

Valid options for each specific driver can be found at: https://gdal.org/drivers/raster/index.html

Source comments

R grd/grid files

Write a Raster to a .grd file with a .gri header file. Returns the base of filename with a .grd extension.

GDAL (tiff, and everything else)

Used if you write a Raster with a filename extension that no other backend can write. GDAL is the fallback, and writes a lot of file types, but is not guaranteed to work.

Returns filename.

source


# Base.writeMethod.
julia
Base.write(filename::AbstractString, ::Type{GRDsource}, s::AbstractRaster; kw...)

Write a Raster to a .grd file with a .gri header file.

This method is called automatically if you write a Raster with a .grd or .gri extension.

Keywords

If this method is called directly the extension of filename will be ignored.

Returns the base of filename with a .grd extension.

source


# Rasters.checkmem!Method.
julia
checkmem!(x::Bool)

Set checkmem to true or false.

In some architectures memory reporting may be wrong and you may wish to disable memory checks.

This setting can be overridden with the checkmem keyword, where applicable.

source


# Rasters.rplotMethod.
julia
Rasters.rplot([position::GridPosition], raster; kw...)

raster may be a Raster (of 2 or 3 dimensions) or a RasterStack whose underlying rasters are 2 dimensional, or 3-dimensional with a singleton (length-1) third dimension.

Keywords

source


`,132),D=[R];function B(w,x,j,S,T,_){return e(),i("div",null,D)}const L=s(v,[["render",B]]);export{z as __pageData,L as default}; diff --git a/dev/assets/api.md.CXk68RKm.lean.js b/dev/assets/api.md.CXk68RKm.lean.js new file mode 100644 index 00000000..4ab1579a --- /dev/null +++ b/dev/assets/api.md.CXk68RKm.lean.js @@ -0,0 +1 @@ +import{_ as s,c as i,o as e,a7 as a}from"./chunks/framework.Dv3PRBLL.js";const t="/Rasters.jl/dev/assets/aggregate_example.vPDkaGne.png",n="/Rasters.jl/dev/assets/boolmask_example.B6nOyO_A.png",l="/Rasters.jl/dev/assets/classify_example.CA_6ItEA.png",r="/Rasters.jl/dev/assets/classify_bang_example.Ch0DZvbI.png",h="/Rasters.jl/dev/assets/nz_crop_example.CeBIxUDy.png",p="/Rasters.jl/dev/assets/argentina_crop_example.DloKGsrn.png",o="/Rasters.jl/dev/assets/extend_example.DNJ4wwKN.png",d="/Rasters.jl/dev/assets/boolmask_example.B6nOyO_A.png",k="/Rasters.jl/dev/assets/mosaic_bang_example.CvGODN-X.png",c="/Rasters.jl/dev/assets/mosaic_example_africa.Dpr9JnNl.png",g="/Rasters.jl/dev/assets/mosaic_example_aus.BUYX_3VG.png",E="/Rasters.jl/dev/assets/mosaic_example_combined.BOwV7n5f.png",y="/Rasters.jl/dev/assets/china_rasterized.DaqQ_Yxj.png",u="/Rasters.jl/dev/assets/indonesia_rasterized.CAASrLmh.png",b="/Rasters.jl/dev/assets/warp_example_before.DrW8As6m.png",m="/Rasters.jl/dev/assets/resample_example_after.C_gavhhT.png",F="/Rasters.jl/dev/assets/trim_example_before.B583SoP8.png",f="/Rasters.jl/dev/assets/trim_example_after.CsDpPakV.png",C="/Rasters.jl/dev/assets/warp_example_before.DrW8As6m.png",A="/Rasters.jl/dev/assets/warp_example_after.09R-gfOV.png",z=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"api.md","filePath":"api.md","lastUpdated":null}'),v={name:"api.md"},R=a("",132),D=[R];function B(w,x,j,S,T,_){return e(),i("div",null,D)}const L=s(v,[["render",B]]);export{z as __pageData,L as default}; diff --git a/dev/assets/app.Dr4aKytE.js b/dev/assets/app.POub9E0d.js similarity index 95% rename from dev/assets/app.Dr4aKytE.js rename to dev/assets/app.POub9E0d.js index 3c39800b..cfed7c66 100644 --- a/dev/assets/app.Dr4aKytE.js +++ b/dev/assets/app.POub9E0d.js @@ -1 +1 @@ -import{R as p}from"./chunks/theme.DW90zRTW.js";import{U as o,a8 as u,a9 as c,aa as l,ab as f,ac as d,ad as m,ae as h,af as g,ag as A,ah as y,d as P,u as v,y as w,x as C,ai as R,aj as b,ak as E,a6 as S}from"./chunks/framework.Dv3PRBLL.js";function i(e){if(e.extends){const a=i(e.extends);return{...a,...e,async enhanceApp(t){a.enhanceApp&&await a.enhanceApp(t),e.enhanceApp&&await e.enhanceApp(t)}}}return e}const s=i(p),T=P({name:"VitePressApp",setup(){const{site:e,lang:a,dir:t}=v();return w(()=>{C(()=>{document.documentElement.lang=a.value,document.documentElement.dir=t.value})}),e.value.router.prefetchLinks&&R(),b(),E(),s.setup&&s.setup(),()=>S(s.Layout)}});async function j(){globalThis.__VITEPRESS__=!0;const e=D(),a=x();a.provide(c,e);const t=l(e.route);return a.provide(f,t),a.component("Content",d),a.component("ClientOnly",m),Object.defineProperties(a.config.globalProperties,{$frontmatter:{get(){return t.frontmatter.value}},$params:{get(){return t.page.value.params}}}),s.enhanceApp&&await s.enhanceApp({app:a,router:e,siteData:h}),{app:a,router:e,data:t}}function x(){return g(T)}function D(){let e=o,a;return A(t=>{let n=y(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&&j().then(({app:e,router:a,data:t})=>{a.go().then(()=>{u(a.route,t.site),e.mount("#app")})});export{j as createApp}; +import{R as p}from"./chunks/theme.BtGGeu-D.js";import{U as o,a8 as u,a9 as c,aa as l,ab as f,ac as d,ad as m,ae as h,af as g,ag as A,ah as y,d as P,u as v,y as w,x as C,ai as R,aj as b,ak as E,a6 as S}from"./chunks/framework.Dv3PRBLL.js";function i(e){if(e.extends){const a=i(e.extends);return{...a,...e,async enhanceApp(t){a.enhanceApp&&await a.enhanceApp(t),e.enhanceApp&&await e.enhanceApp(t)}}}return e}const s=i(p),T=P({name:"VitePressApp",setup(){const{site:e,lang:a,dir:t}=v();return w(()=>{C(()=>{document.documentElement.lang=a.value,document.documentElement.dir=t.value})}),e.value.router.prefetchLinks&&R(),b(),E(),s.setup&&s.setup(),()=>S(s.Layout)}});async function j(){globalThis.__VITEPRESS__=!0;const e=D(),a=x();a.provide(c,e);const t=l(e.route);return a.provide(f,t),a.component("Content",d),a.component("ClientOnly",m),Object.defineProperties(a.config.globalProperties,{$frontmatter:{get(){return t.frontmatter.value}},$params:{get(){return t.page.value.params}}}),s.enhanceApp&&await s.enhanceApp({app:a,router:e,siteData:h}),{app:a,router:e,data:t}}function x(){return g(T)}function D(){let e=o,a;return A(t=>{let n=y(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&&j().then(({app:e,router:a,data:t})=>{a.go().then(()=>{u(a.route,t.site),e.mount("#app")})});export{j as createApp}; diff --git a/dev/assets/argentina_crop_example.DloKGsrn.png b/dev/assets/argentina_crop_example.DloKGsrn.png new file mode 100644 index 00000000..400af54e Binary files /dev/null and b/dev/assets/argentina_crop_example.DloKGsrn.png differ diff --git a/dev/assets/obszfqq.2YhfOv1i.png b/dev/assets/bbemcbe.2YhfOv1i.png similarity index 100% rename from dev/assets/obszfqq.2YhfOv1i.png rename to dev/assets/bbemcbe.2YhfOv1i.png diff --git a/dev/assets/chunks/@localSearchIndexroot.DxK98W2v.js b/dev/assets/chunks/@localSearchIndexroot.DxK98W2v.js new file mode 100644 index 00000000..a8de7542 --- /dev/null +++ b/dev/assets/chunks/@localSearchIndexroot.DxK98W2v.js @@ -0,0 +1 @@ +const e='{"documentCount":47,"nextId":47,"documentIds":{"0":"/Rasters.jl/dev/api#index","1":"/Rasters.jl/dev/api#Reference-Exported-functions","2":"/Rasters.jl/dev/api#Reference-Internal-functions","3":"/Rasters.jl/dev/array_operations#Mean-over-the-time-dimension:","4":"/Rasters.jl/dev/array_operations#broadcasting","5":"/Rasters.jl/dev/array_operations#Modifying-object-properties","6":"/Rasters.jl/dev/array_operations#rebuild","7":"/Rasters.jl/dev/array_operations#replace-missing","8":"/Rasters.jl/dev/array_operations#set","9":"/Rasters.jl/dev/data_sources#Data-sources","10":"/Rasters.jl/dev/data_sources#grd","11":"/Rasters.jl/dev/data_sources#netcdf","12":"/Rasters.jl/dev/data_sources#gdal","13":"/Rasters.jl/dev/data_sources#smap","14":"/Rasters.jl/dev/data_sources#Writing-file-formats-to-disk","15":"/Rasters.jl/dev/data_sources#RasterDataSources.jl-integration","16":"/Rasters.jl/dev/gbif_wflow#Load-GBIF","17":"/Rasters.jl/dev/gbif_wflow#Extract-coordinates","18":"/Rasters.jl/dev/gbif_wflow#Get-layer-/-Band","19":"/Rasters.jl/dev/get_started#Quick-start","20":"/Rasters.jl/dev/get_started#Install-the-package-by-typing:","21":"/Rasters.jl/dev/get_started#Getting-the-lookup-array-from-dimensions","22":"/Rasters.jl/dev/get_started#Select-by-index","23":"/Rasters.jl/dev/get_started#Select-by-value","24":"/Rasters.jl/dev/get_started#Subsetting-an-object","25":"/Rasters.jl/dev/#installation","26":"/Rasters.jl/dev/#Packages-extensions","27":"/Rasters.jl/dev/#Bugs-and-errors","28":"/Rasters.jl/dev/methods#Methods-that-change-the-resolution-or-extent-of-an-object","29":"/Rasters.jl/dev/methods#Methods-that-change-an-objects-values","30":"/Rasters.jl/dev/methods#Point,-polygon-and-table-operation","31":"/Rasters.jl/dev/methods#Methods-to-load,-write-and-modify-data-sources","32":"/Rasters.jl/dev/plot_makie#Plotting-in-Makie","33":"/Rasters.jl/dev/plot_makie#2-D-rasters-in-Makie","34":"/Rasters.jl/dev/plot_makie#3-D-rasters-in-Makie","35":"/Rasters.jl/dev/plot_makie#reset-theme","36":"/Rasters.jl/dev/plot_makie#Plotting-with-Observables,-animations","37":"/Rasters.jl/dev/plot_makie#Using-vanilla-Makie","38":"/Rasters.jl/dev/plotting#Plots,-simple","39":"/Rasters.jl/dev/plotting#Makie,-simple","40":"/Rasters.jl/dev/plotting#Loading-data","41":"/Rasters.jl/dev/plotting#Plot-a-contour-plot","42":"/Rasters.jl/dev/plotting#write-to-disk","43":"/Rasters.jl/dev/plotting#Polygon-masking,-mosaic-and-plot","44":"/Rasters.jl/dev/plotting#Download-the-shapefile","45":"/Rasters.jl/dev/plotting#Load-using-Shapefile.jl","46":"/Rasters.jl/dev/plotting#Plotting-with-Plots.jl"},"fieldIds":{"title":0,"titles":1,"text":2},"fieldLength":{"0":[1,1,48],"1":[3,1,1483],"2":[3,1,502],"3":[6,1,169],"4":[1,1,157],"5":[3,1,33],"6":[1,3,139],"7":[2,3,114],"8":[1,3,184],"9":[2,1,24],"10":[1,2,30],"11":[1,2,69],"12":[1,2,37],"13":[1,2,67],"14":[5,2,53],"15":[3,2,60],"16":[2,1,87],"17":[2,1,74],"18":[3,1,141],"19":[2,1,1],"20":[6,2,135],"21":[6,2,21],"22":[3,2,107],"23":[3,2,158],"24":[3,2,118],"25":[1,1,4],"26":[2,1,100],"27":[3,1,163],"28":[10,1,70],"29":[6,1,47],"30":[5,1,19],"31":[8,1,34],"32":[3,1,37],"33":[5,1,141],"34":[5,1,84],"35":[2,1,4],"36":[4,2,200],"37":[3,2,165],"38":[2,1,125],"39":[2,1,20],"40":[2,1,235],"41":[4,2,10],"42":[3,2,59],"43":[5,1,38],"44":[3,1,28],"45":[4,3,63],"46":[4,3,137]},"averageFieldLength":[3.2127659574468086,1.5319148936170213,123.27659574468082],"storedFields":{"0":{"title":"Index","titles":[]},"1":{"title":"Reference - Exported functions","titles":[]},"2":{"title":"Reference - Internal functions","titles":[]},"3":{"title":"Mean over the time dimension:","titles":[]},"4":{"title":"Broadcasting","titles":[]},"5":{"title":"Modifying object properties","titles":[]},"6":{"title":"rebuild","titles":["Modifying object properties"]},"7":{"title":"replace_missing","titles":["Modifying object properties"]},"8":{"title":"set","titles":["Modifying object properties"]},"9":{"title":"Data sources","titles":[]},"10":{"title":"GRD","titles":["Data sources"]},"11":{"title":"NetCDF","titles":["Data sources"]},"12":{"title":"GDAL","titles":["Data sources"]},"13":{"title":"SMAP","titles":["Data sources"]},"14":{"title":"Writing file formats to disk","titles":["Data sources"]},"15":{"title":"RasterDataSources.jl integration","titles":["Data sources"]},"16":{"title":"Load GBIF","titles":[]},"17":{"title":"Extract coordinates","titles":[]},"18":{"title":"Get layer / Band","titles":[]},"19":{"title":"Quick start","titles":[]},"20":{"title":"Install the package by typing:","titles":["Quick start"]},"21":{"title":"Getting the lookup array from dimensions","titles":["Quick start"]},"22":{"title":"Select by index","titles":["Quick start"]},"23":{"title":"Select by value","titles":["Quick start"]},"24":{"title":"Subsetting an object","titles":["Quick start"]},"25":{"title":"Installation","titles":[]},"26":{"title":"Packages extensions","titles":[]},"27":{"title":"Bugs and errors","titles":[]},"28":{"title":"Methods that change the resolution or extent of an object","titles":[]},"29":{"title":"Methods that change an objects values","titles":[]},"30":{"title":"Point, polygon and table operation","titles":[]},"31":{"title":"Methods to load, write and modify data sources","titles":[]},"32":{"title":"Plotting in Makie","titles":[]},"33":{"title":"2-D rasters in Makie","titles":[]},"34":{"title":"3-D rasters in Makie","titles":[]},"35":{"title":"reset theme","titles":[]},"36":{"title":"Plotting with Observables, animations","titles":["reset theme"]},"37":{"title":"Using vanilla Makie","titles":["reset theme"]},"38":{"title":"Plots, simple","titles":[]},"39":{"title":"Makie, simple","titles":[]},"40":{"title":"Loading data","titles":[]},"41":{"title":"Plot a contour plot","titles":["Loading data"]},"42":{"title":"write to disk","titles":["Loading data"]},"43":{"title":"Polygon masking, mosaic and plot","titles":[]},"44":{"title":"Download the shapefile","titles":[]},"45":{"title":"Load using Shapefile.jl","titles":["Download the shapefile"]},"46":{"title":"Plotting with Plots.jl","titles":["Download the shapefile"]}},"dirtCount":0,"index":[["↗",{"2":{"20":1,"22":1,"40":2}}],["├─────────────────────┴──────────────────────────────────────────────────",{"2":{"37":1}}],["├───────────────────────┴─────────────────────────────",{"2":{"22":2,"23":1}}],["├──────────────────────────┴─────────────────────────────────────────────",{"2":{"20":1,"22":1}}],["├──────────────────────────┼─────────┼─────────┼─────────┼──────────┼───────────",{"2":{"16":1}}],["├───────────────────────────────┴────────────────────────────────────────",{"2":{"3":1}}],["├─────────────────────────────────────────────────┴──────────────────────",{"2":{"40":1}}],["├──────────────────────────────────────────────────┴─────────────────────",{"2":{"40":1}}],["├───────────────────────────────────────────────────",{"2":{"22":2,"23":1}}],["├──────────────────────────────────────────────────────────────────────",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":2,"20":1,"22":1,"33":1,"37":2,"40":2}}],["├────────────────────────────────────────────────────────────────────",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"33":1,"40":2}}],["├──────────────────────────────────┴─────────────────────────────────────",{"2":{"3":1,"4":1,"6":1,"7":1,"8":2,"33":1}}],["├────────────────────┴───────────────────────────────────────────────────",{"2":{"18":1}}],["╭─────────────────────╮",{"2":{"37":1}}],["╭───────────────────────╮",{"2":{"22":2,"23":1}}],["╭──────────────────────────╮",{"2":{"20":1,"22":1}}],["╭─────────────────────────────────────────────────╮",{"2":{"40":1}}],["╭──────────────────────────────────────────────────╮",{"2":{"40":1}}],["╭──────────────────────────────────╮",{"2":{"3":1,"4":1,"6":1,"7":1,"8":2,"33":1}}],["╭───────────────────────────────╮",{"2":{"3":1}}],["╭────────────────────╮",{"2":{"18":1}}],["└───────────────────────────────────────────────────────────┘",{"2":{"22":2,"23":1}}],["└──────────────────────────────────────────────────────────────────────────────┘",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"20":1,"22":1,"33":1,"37":1,"40":2}}],["└──────────────────────────┴─────────┴─────────┴─────────┴──────────┴───────────",{"2":{"16":1}}],["┌──────────────────────────┬─────────┬─────────┬─────────┬──────────┬───────────",{"2":{"16":1}}],["┤",{"2":{"3":4,"4":2,"6":2,"7":2,"8":4,"18":2,"20":1,"22":3,"23":1,"33":2,"37":2,"40":4}}],["→",{"2":{"3":4,"4":2,"6":2,"7":2,"8":4,"18":1,"20":2,"22":6,"23":2,"33":2,"37":1,"40":2}}],["↓",{"2":{"3":4,"4":2,"6":2,"7":2,"8":4,"18":1,"20":2,"22":6,"23":2,"33":2,"37":1,"40":2}}],["┐",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"20":1,"22":3,"23":1,"33":1,"37":1,"40":2}}],["⋱",{"2":{"1":1,"3":1,"4":1,"6":1,"7":1,"8":2,"16":1,"33":1,"40":2}}],["⋮",{"2":{"1":6,"3":2,"4":2,"6":2,"7":2,"8":4,"16":6,"17":1,"33":2,"40":2}}],["─────┼──────────────────────────────────────────────────────────────────────────",{"2":{"1":1}}],["⋯",{"2":{"1":6,"16":17}}],["│",{"2":{"1":18,"3":4,"4":2,"6":2,"7":2,"8":4,"16":108,"18":2,"20":2,"22":6,"23":2,"33":2,"37":2,"40":4}}],["^a",{"2":{"1":1}}],["quickly",{"2":{"27":1,"38":1}}],["quick",{"0":{"19":1},"1":{"20":1,"21":1,"22":1,"23":1,"24":1}}],["quot",{"2":{"2":18,"11":4,"12":4,"13":4,"14":2,"36":8}}],["quartile",{"2":{"1":4}}],["quadratic",{"2":{"1":1}}],["quality",{"2":{"1":1,"38":1}}],["q3",{"2":{"1":1}}],["q1",{"2":{"1":1}}],["+",{"2":{"1":2}}],["`stack`",{"2":{"36":1}}],["`raster`",{"2":{"2":1}}],["`gi",{"2":{"1":1}}],["`missingval",{"2":{"1":1}}],["`missing`",{"2":{"1":1}}],["`vector`",{"2":{"1":1}}],["`collect`",{"2":{"1":1}}],["`extract`",{"2":{"1":1}}],["6×6×10",{"2":{"22":1}}],["6×6×13",{"2":{"20":1}}],["6×6",{"2":{"22":2,"23":1}}],["61",{"2":{"4":1,"24":1}}],["6326",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["6378137",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["638462f0",{"2":{"1":2}}],["6988",{"2":{"1":1}}],["6667",{"2":{"3":4,"4":2,"6":2,"7":2,"8":4,"33":2}}],["6665",{"2":{"1":1}}],["6694",{"2":{"1":1}}],["65921",{"2":{"1":1}}],["659454f0",{"2":{"1":1}}],["677411",{"2":{"20":1,"22":3,"23":1}}],["67",{"2":{"1":1}}],["6732",{"2":{"1":1}}],["6715",{"2":{"1":1}}],["6751",{"2":{"1":1}}],["6",{"2":{"1":4,"16":1,"46":1}}],["600",{"2":{"37":2}}],["60098",{"2":{"20":1,"22":3,"23":1}}],["603891",{"2":{"20":1,"22":3,"23":1}}],["60",{"2":{"1":3,"40":1}}],["z",{"2":{"1":1,"2":1,"8":4,"11":1,"23":1,"36":1,"40":1,"42":1}}],["za",{"2":{"1":1}}],["zone",{"2":{"1":1}}],["zonal",{"2":{"0":1,"1":5,"30":2}}],["zeros",{"2":{"1":1}}],["zealand",{"2":{"1":1}}],["55",{"2":{"46":1}}],["5504",{"2":{"1":1}}],["53",{"2":{"45":1}}],["537349",{"2":{"20":1,"22":3,"23":1}}],["562503",{"2":{"20":1,"22":3,"23":1}}],["54",{"2":{"45":1}}],["54166666666667",{"2":{"37":2}}],["54166666666666",{"2":{"37":1}}],["542",{"2":{"1":1}}],["5447",{"2":{"1":1}}],["544561f0",{"2":{"1":1}}],["5858",{"2":{"1":1}}],["524924",{"2":{"17":1}}],["5249",{"2":{"16":1}}],["52",{"2":{"1":1}}],["57",{"2":{"1":1}}],["5",{"2":{"1":8,"3":5,"4":2,"6":3,"7":2,"8":4,"18":2,"24":1,"33":3,"37":2,"38":1,"39":1,"40":8}}],["504673",{"2":{"17":1}}],["5047",{"2":{"16":1}}],["50",{"2":{"1":7,"24":1,"37":1}}],[">",{"2":{"1":1,"18":1}}],[">=",{"2":{"1":2}}],["980193",{"2":{"20":1,"22":3,"23":1}}],["980035",{"2":{"20":1,"22":3,"23":1}}],["993704",{"2":{"20":1,"22":3,"23":1}}],["9999",{"2":{"6":2,"7":8}}],["99999999999997",{"2":{"3":1,"4":1,"6":1,"7":1,"8":1,"18":1,"33":1}}],["936132",{"2":{"20":1,"22":3,"23":1}}],["935687",{"2":{"17":1}}],["9357",{"2":{"16":1}}],["9373",{"2":{"3":1}}],["9122",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["9263",{"2":{"1":1}}],["972543",{"2":{"20":1,"22":3,"23":1}}],["97",{"2":{"1":3}}],["9",{"2":{"1":2,"2":2,"26":1,"40":2}}],["901614",{"2":{"20":1,"22":3,"23":1}}],["90",{"2":{"1":5,"3":8,"4":4,"6":4,"7":4,"8":8,"33":4,"40":3}}],["73",{"2":{"46":1}}],["735749",{"2":{"20":1,"22":3,"23":1}}],["71",{"2":{"45":1}}],["75",{"2":{"36":1,"37":1}}],["79",{"2":{"40":2}}],["799606",{"2":{"20":1,"22":3,"23":1}}],["790512",{"2":{"20":1,"22":3,"23":1}}],["798",{"2":{"4":1}}],["7983f0",{"2":{"1":2}}],["724343",{"2":{"20":1,"22":3,"23":1}}],["7288",{"2":{"1":1}}],["72085e5",{"2":{"1":4}}],["760168",{"2":{"20":1,"22":3,"23":1}}],["76",{"2":{"1":1}}],["7454",{"2":{"1":1}}],["784503",{"2":{"20":1,"22":3,"23":1}}],["78",{"2":{"1":1,"16":1,"40":2}}],["775f0",{"2":{"1":1}}],["7",{"2":{"1":5,"18":1}}],["701",{"2":{"3":1,"6":1,"7":1,"8":2,"33":1}}],["7030",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["706488",{"2":{"1":4}}],["70",{"2":{"1":2}}],["853519",{"2":{"20":1,"22":3,"23":1}}],["817494",{"2":{"20":1,"22":3,"23":1}}],["800",{"2":{"41":1}}],["80",{"2":{"40":2}}],["807814",{"2":{"20":1,"22":3,"23":1}}],["805",{"2":{"3":1,"6":1,"7":1,"8":2,"33":1}}],["865838",{"2":{"20":1,"22":3,"23":1}}],["863578",{"2":{"20":1,"22":3,"23":1}}],["8688",{"2":{"1":1}}],["835874",{"2":{"20":1,"22":3,"23":1}}],["83",{"2":{"17":1}}],["833",{"2":{"3":1,"4":1,"6":1,"7":1,"8":2,"33":1}}],["8333",{"2":{"3":4,"4":2,"6":2,"7":2,"8":4,"33":2}}],["83333333333333",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":2,"33":1}}],["83333333333331",{"2":{"3":1,"4":1,"6":1,"7":1,"8":3,"18":1,"33":1}}],["842182",{"2":{"20":1,"22":3,"23":1}}],["8485",{"2":{"4":1}}],["84",{"2":{"3":4,"4":2,"6":2,"7":2,"8":4,"18":2,"33":2,"37":2}}],["8901",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["89",{"2":{"3":14,"4":6,"6":7,"7":6,"8":14,"18":1,"33":7,"40":2}}],["8991",{"2":{"1":1}}],["87126",{"2":{"1":1}}],["8868",{"2":{"1":1}}],["88",{"2":{"1":1,"40":2}}],["8",{"2":{"1":5,"26":1}}],["48",{"2":{"24":1}}],["480",{"2":{"1":1}}],["490719",{"2":{"17":1}}],["43",{"2":{"24":1,"37":2}}],["437709",{"2":{"17":1}}],["432552",{"2":{"17":2}}],["4326",{"2":{"1":14,"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"23":1,"33":1,"37":1,"40":4}}],["431684",{"2":{"17":1}}],["4317",{"2":{"16":1}}],["433349",{"2":{"17":1}}],["4333",{"2":{"16":1}}],["4243",{"2":{"3":1,"6":1,"7":1,"8":2,"33":1}}],["4291",{"2":{"1":1}}],["4f38",{"2":{"3":10,"4":1,"6":8,"8":18,"18":1,"33":9}}],["4759",{"2":{"1":1}}],["45",{"2":{"1":4,"40":1}}],["448374",{"2":{"17":1}}],["4474",{"2":{"1":1}}],["441",{"2":{"1":2}}],["446",{"2":{"1":1}}],["418261",{"2":{"17":1}}],["4167",{"2":{"17":1}}],["41",{"2":{"1":2}}],["4",{"2":{"1":3,"2":2,"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":2}}],["400",{"2":{"41":1}}],["400058",{"2":{"17":1}}],["402",{"2":{"4":1}}],["40",{"2":{"1":8,"18":1,"46":1}}],["4×6",{"2":{"1":1}}],["382602",{"2":{"17":1}}],["381847",{"2":{"17":1}}],["3818",{"2":{"16":1}}],["381",{"2":{"1":1}}],["310064",{"2":{"17":1}}],["31",{"2":{"4":1}}],["343577",{"2":{"20":1,"22":3,"23":1}}],["347186",{"2":{"17":1}}],["347",{"2":{"16":1}}],["34",{"2":{"4":1}}],["36",{"2":{"16":7,"17":18}}],["360",{"2":{"3":1,"40":2}}],["3656",{"2":{"1":1}}],["3d",{"2":{"2":2,"32":1,"33":3,"34":2,"36":2,"38":1}}],["332969",{"2":{"17":1}}],["333783",{"2":{"17":2}}],["333",{"2":{"16":1}}],["33333333333336",{"2":{"37":2}}],["3333",{"2":{"3":2,"6":1,"8":2,"33":1}}],["33",{"2":{"1":1,"17":1}}],["324826",{"2":{"20":1,"22":3,"23":1}}],["328025",{"2":{"17":1}}],["328896",{"2":{"17":1}}],["329",{"2":{"16":1}}],["321388f0",{"2":{"1":1}}],["32",{"2":{"1":3}}],["359",{"2":{"40":2}}],["357",{"2":{"40":2}}],["35",{"2":{"1":6,"17":1}}],["3",{"0":{"34":1},"2":{"1":9,"2":2,"3":10,"4":1,"6":8,"8":18,"10":1,"16":1,"18":2,"20":1,"22":1,"33":9,"36":3,"37":3,"40":5}}],["302071",{"2":{"20":1,"22":3,"23":1}}],["30362",{"2":{"17":1}}],["3036",{"2":{"16":1}}],["300",{"2":{"16":1}}],["3087",{"2":{"1":1}}],["30",{"2":{"1":5,"4":2,"20":8,"21":1,"22":18,"23":6,"40":2}}],["377673",{"2":{"17":1}}],["373215",{"2":{"17":1}}],["37",{"2":{"1":2,"40":2}}],["398952",{"2":{"20":1,"22":3,"23":1}}],["398438",{"2":{"17":1}}],["394749",{"2":{"17":1}}],["391682",{"2":{"17":1}}],["391097",{"2":{"17":1}}],["391",{"2":{"16":1}}],["396453",{"2":{"17":1}}],["396",{"2":{"16":1}}],["399",{"2":{"3":1,"6":1,"7":1,"8":2,"33":1}}],["39",{"2":{"1":9,"2":5,"8":1,"13":1,"18":2,"27":2,"38":1,"42":1}}],["0f20",{"2":{"40":4}}],["0f0",{"2":{"1":5,"6":1,"7":1}}],["0xffffffff",{"2":{"37":1}}],["0xffff",{"2":{"37":3}}],["04",{"2":{"24":1}}],["046",{"2":{"3":1,"6":1,"7":1,"8":2,"33":1}}],["0842919",{"2":{"20":1,"22":3,"23":1}}],["0930747",{"2":{"20":1,"22":3,"23":1}}],["096394",{"2":{"17":1}}],["096",{"2":{"16":1}}],["092",{"2":{"4":1}}],["05",{"2":{"1":1}}],["0273",{"2":{"1":1}}],["029825f0",{"2":{"1":1}}],["0632695",{"2":{"20":1,"22":3,"23":1}}],["063",{"2":{"1":1}}],["03",{"2":{"1":2}}],["0768",{"2":{"3":1}}],["076923f0",{"2":{"1":2}}],["077084f0",{"2":{"1":1}}],["07",{"2":{"1":1}}],["0",{"2":{"1":76,"2":2,"3":27,"4":12,"6":12,"7":18,"8":24,"18":4,"20":36,"22":108,"23":36,"26":1,"33":12,"36":1,"37":5,"40":22,"42":1,"44":1,"46":1}}],["0094",{"2":{"3":1}}],["005fvlen",{"2":{"2":2}}],["005fdef",{"2":{"2":2}}],["007",{"2":{"1":1}}],["000000000000005",{"2":{"37":1}}],["000000000000004",{"2":{"18":1}}],["000",{"2":{"1":2}}],["00",{"2":{"1":12,"20":8,"22":8,"40":16}}],["0107138",{"2":{"20":1,"22":3,"23":1}}],["0162678",{"2":{"20":1,"22":3,"23":1}}],["0174532925199433",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["01158e6",{"2":{"1":4}}],["01t00",{"2":{"1":6,"20":4,"22":4,"40":4}}],["01",{"2":{"1":6,"20":4,"22":2,"40":10}}],["kingdom",{"2":{"16":1}}],["k",{"2":{"2":3,"40":2}}],["keeps",{"2":{"1":1}}],["keys",{"2":{"1":10,"2":4}}],["keyword",{"2":{"1":14,"2":6}}],["keywords",{"2":{"1":35,"2":11,"15":1,"34":1,"36":1}}],["key",{"2":{"1":2,"27":1}}],["km",{"2":{"1":1}}],["known",{"2":{"11":1}}],["know",{"2":{"1":4,"5":1,"27":1}}],["kw",{"2":{"1":22,"2":5,"18":2,"36":1,"38":1}}],["uint16",{"2":{"37":3}}],["uint64",{"2":{"16":2}}],["uint8",{"2":{"16":1}}],["uint32",{"2":{"1":1,"37":1}}],["ucar",{"2":{"2":2,"40":1}}],["update",{"2":{"8":1,"29":1}}],["updating",{"2":{"1":1}}],["upper",{"2":{"1":13}}],["upper=",{"2":{"1":1}}],["url",{"2":{"1":14,"27":1,"40":2,"44":2}}],["unexported",{"2":{"34":1,"38":1}}],["unexpected",{"2":{"1":6}}],["until",{"2":{"24":1}}],["unitrange",{"2":{"16":1}}],["unit",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1,"39":1}}],["units",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"33":1,"40":4}}],["unidata",{"2":{"2":2,"40":1}}],["union",{"2":{"1":10,"2":2,"40":2}}],["unmasked",{"2":{"1":2}}],["under",{"2":{"26":1}}],["underscores",{"2":{"2":1}}],["underlying",{"2":{"1":3,"2":1,"31":1,"36":1,"38":1}}],["undefined",{"2":{"1":1}}],["unchanged",{"2":{"1":3}}],["unless",{"2":{"1":2}}],["unopened",{"2":{"1":1}}],["us",{"2":{"1":1}}],["using",{"0":{"37":1,"45":1},"2":{"1":26,"2":3,"10":1,"11":2,"12":1,"14":1,"15":1,"16":1,"20":2,"22":1,"24":1,"26":8,"33":1,"39":1,"40":2,"43":2,"44":1,"45":2,"46":3}}],["usually",{"2":{"1":11,"2":5,"36":1}}],["users",{"2":{"2":1}}],["uses",{"2":{"1":3,"9":1,"23":1,"40":1}}],["used",{"2":{"1":90,"2":16,"5":1,"8":1,"11":2,"13":1,"15":2,"23":1,"24":1,"38":1,"42":1}}],["use",{"2":{"1":44,"2":6,"3":1,"4":1,"6":1,"9":1,"11":1,"24":2,"26":1,"27":1,"28":1,"34":1,"38":1,"40":1}}],["usefull",{"2":{"1":2}}],["usefulnesss",{"2":{"1":1}}],["useful",{"2":{"1":9,"31":1}}],["=a",{"2":{"22":1}}],["===",{"2":{"1":1}}],["=>",{"2":{"1":14,"3":8,"4":4,"6":4,"7":4,"8":10,"33":4,"40":18}}],["=",{"2":{"1":135,"2":18,"3":5,"4":5,"6":4,"7":2,"8":4,"15":1,"16":2,"17":1,"18":8,"20":6,"21":2,"22":7,"23":2,"24":3,"33":6,"34":4,"36":20,"37":20,"38":1,"39":2,"40":10,"44":2,"45":9,"46":8}}],["video",{"2":{"36":2}}],["visualize",{"2":{"34":1}}],["via",{"2":{"2":2,"22":1,"45":1}}],["views",{"2":{"1":1}}],["view",{"2":{"1":4,"24":4}}],["vlen",{"2":{"2":2}}],["vebose",{"2":{"1":2,"2":2}}],["vertical",{"2":{"23":1}}],["verbose",{"2":{"1":4}}],["version",{"2":{"1":2}}],["versions",{"2":{"1":19}}],["very",{"2":{"1":5,"10":1,"38":1}}],["vectors",{"2":{"1":1}}],["vector",{"2":{"1":17,"2":2,"16":2,"17":2,"36":2,"44":1}}],["vanilla",{"0":{"37":1}}],["variations",{"2":{"27":1}}],["variable",{"2":{"2":2}}],["variables",{"2":{"1":2,"11":1,"18":1}}],["various",{"2":{"15":1}}],["valid",{"2":{"2":2}}],["values",{"0":{"29":1},"2":{"1":73,"2":3,"6":1,"24":3,"28":1,"29":2,"30":1,"36":1,"38":3,"42":1,"45":1}}],["value",{"0":{"23":1},"2":{"1":54,"2":4,"5":1,"8":1,"17":1,"24":4,"40":2,"46":1}}],["val",{"2":{"1":2}}],["val=",{"2":{"1":1}}],["2d",{"2":{"34":1,"38":1}}],["265376",{"2":{"20":1,"22":3,"23":1}}],["26",{"2":{"20":2,"22":6,"23":2}}],["235596",{"2":{"17":1}}],["236",{"2":{"16":1}}],["23",{"2":{"3":1,"16":1,"40":2}}],["2332e6",{"2":{"1":4}}],["22",{"2":{"1":1,"3":2,"16":1}}],["2727",{"2":{"1":1}}],["27",{"2":{"1":4,"4":1,"20":2,"22":6,"23":2}}],["273",{"2":{"1":1}}],["271",{"2":{"1":1}}],["284565",{"2":{"17":1}}],["285",{"2":{"16":1}}],["2888",{"2":{"1":1}}],["28",{"2":{"1":2,"4":1,"20":2,"22":6,"23":2}}],["2955",{"2":{"4":1}}],["298",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["29",{"2":{"1":4,"20":2,"22":6,"23":2}}],["240881",{"2":{"17":1}}],["243",{"2":{"1":1}}],["24534",{"2":{"1":1}}],["24",{"2":{"1":5}}],["215861",{"2":{"20":1,"22":3,"23":1}}],["210115",{"2":{"20":1,"22":3,"23":1}}],["2160",{"2":{"3":1,"4":1,"6":1,"7":1,"8":2,"33":1}}],["2160×1080",{"2":{"3":1,"4":1,"6":1,"7":1,"8":2,"33":1}}],["21",{"2":{"1":4,"16":1}}],["2592000000",{"2":{"40":1}}],["259489",{"2":{"17":1}}],["258",{"2":{"1":1}}],["258×8",{"2":{"1":1}}],["257223563",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["257",{"2":{"1":1}}],["256",{"2":{"1":1,"2":6,"17":1}}],["255",{"2":{"1":1}}],["254",{"2":{"1":1}}],["253",{"2":{"1":1}}],["252",{"2":{"1":1}}],["25",{"2":{"1":9,"17":1,"18":3,"20":8,"21":1,"22":18,"23":6,"24":2}}],["2",{"0":{"33":1},"2":{"1":9,"2":3,"3":2,"4":4,"6":1,"7":1,"8":2,"13":1,"16":1,"22":2,"23":1,"32":1,"33":5,"36":2,"37":7,"39":1,"42":1}}],["20833333333334",{"2":{"37":1}}],["2020",{"2":{"16":1}}],["2021",{"2":{"16":1}}],["2012",{"2":{"16":2}}],["2015",{"2":{"16":1}}],["2016",{"2":{"16":2}}],["2011",{"2":{"16":1}}],["2065",{"2":{"1":1}}],["20417f0",{"2":{"1":1}}],["2003",{"2":{"40":2}}],["2005",{"2":{"40":2}}],["2009",{"2":{"1":1}}],["2002",{"2":{"1":3,"20":3,"40":5}}],["2001",{"2":{"1":6,"20":3,"22":4,"23":1,"40":7}}],["20",{"2":{"1":11,"42":2}}],["gadm",{"2":{"43":1}}],["going",{"2":{"38":1}}],["good",{"2":{"27":1}}],["google",{"2":{"27":1}}],["gbif",{"0":{"16":1}}],["gbif2",{"2":{"1":2,"16":4}}],["global",{"2":{"13":1,"45":1}}],["guaranteed",{"2":{"2":2}}],["guessed",{"2":{"2":3}}],["guessing",{"2":{"2":2}}],["gis",{"2":{"29":1}}],["giving",{"2":{"1":1}}],["given",{"2":{"1":2,"20":1}}],["gives",{"2":{"1":6}}],["give",{"2":{"1":7}}],["github",{"2":{"1":23,"44":1}}],["gpu",{"2":{"1":1,"31":1}}],["great",{"2":{"27":1}}],["greenwich",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["grow",{"2":{"1":2}}],["group3",{"2":{"1":2}}],["group2",{"2":{"1":2}}],["group1",{"2":{"1":2}}],["group=",{"2":{"1":2}}],["groups",{"2":{"1":2}}],["group",{"2":{"1":6}}],["gri",{"2":{"2":4}}],["grid=false",{"2":{"37":2}}],["gridposition",{"2":{"2":1,"36":1,"38":1}}],["grid",{"2":{"1":2,"2":2}}],["gribsource",{"2":{"1":2,"2":3}}],["grib",{"2":{"1":4,"2":3,"26":1}}],["grdsource",{"2":{"2":1}}],["grd",{"0":{"10":1},"2":{"1":2,"2":12,"10":1,"26":1}}],["g",{"2":{"1":11,"2":1,"20":1,"23":1,"24":2,"27":1,"28":1,"31":1,"38":1}}],["gdalwarp",{"2":{"1":4,"28":1}}],["gdals",{"2":{"1":2}}],["gdalsource",{"2":{"1":2,"2":3,"3":2,"4":1,"6":1,"7":1,"8":2,"33":1}}],["gdal",{"0":{"12":1},"2":{"1":8,"2":15,"12":1,"26":3}}],["gdalarray",{"2":{"1":1}}],["gt",{"2":{"1":17,"2":2,"36":3}}],["getting",{"0":{"21":1}}],["getdriver",{"2":{"2":2}}],["getring",{"2":{"1":1}}],["getring`",{"2":{"1":1}}],["getraster",{"2":{"1":1,"15":1}}],["get",{"0":{"18":1},"2":{"1":8,"18":1,"24":4,"27":1,"40":1,"43":1}}],["getindex",{"2":{"1":10,"24":2}}],["geogcs",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["geoaxis",{"2":{"2":1,"36":1}}],["geomakie",{"2":{"2":1,"36":1}}],["geom",{"2":{"1":7}}],["geometric",{"2":{"1":1}}],["geometries",{"2":{"1":50,"30":3}}],["geometrycolumn",{"2":{"1":20}}],["geometry",{"2":{"1":32,"16":1}}],["geotiff",{"2":{"1":1,"20":1}}],["geointerface",{"2":{"1":18,"17":1}}],["geoformattypes",{"2":{"1":7,"8":1}}],["geoformat",{"2":{"1":9,"8":1}}],["generating",{"2":{"5":1}}],["generator",{"2":{"1":1}}],["generates",{"2":{"20":1}}],["generate",{"2":{"1":4}}],["generally",{"2":{"1":1,"8":1,"12":1}}],["generically",{"2":{"23":1}}],["generic",{"2":{"1":1,"40":1,"46":1}}],["||",{"2":{"1":5}}],["|",{"2":{"1":2}}],["|>",{"2":{"1":7,"37":1,"40":2,"42":1}}],["xlabel",{"2":{"2":1,"36":1,"37":1}}],["x=",{"2":{"1":1}}],["x=100",{"2":{"1":1}}],["xs",{"2":{"1":8}}],["xdim",{"2":{"1":6,"2":1,"36":1}}],["x",{"2":{"1":69,"2":11,"3":5,"4":2,"6":2,"7":2,"8":6,"10":1,"11":1,"13":1,"17":1,"18":7,"20":4,"21":2,"22":6,"23":4,"24":6,"29":1,"33":2,"36":4,"37":7,"40":7,"42":1,"46":1}}],["x3c",{"2":{"1":14,"2":3}}],["ylabel",{"2":{"2":1,"36":1,"37":1}}],["year",{"2":{"16":1,"40":1}}],["year=",{"2":{"1":1}}],["yet",{"2":{"2":1,"26":1}}],["y=",{"2":{"1":2}}],["ydim",{"2":{"1":6,"2":2,"36":2}}],["y",{"2":{"1":19,"2":8,"3":4,"4":2,"6":2,"7":2,"8":4,"10":1,"11":1,"13":1,"17":1,"18":7,"20":4,"21":2,"22":6,"23":4,"24":2,"29":1,"33":2,"36":5,"37":7,"40":7,"42":2,"46":1}}],["your",{"2":{"1":2,"27":2}}],["you",{"2":{"1":14,"2":6,"5":2,"6":1,"8":1,"9":1,"26":4,"27":3,"32":1,"34":2,"36":1,"38":1}}],["1×1080",{"2":{"3":1}}],["113",{"2":{"37":2}}],["11",{"2":{"1":1,"16":5,"40":2}}],["110",{"2":{"1":1}}],["190",{"2":{"40":1}}],["194",{"2":{"37":1}}],["194×161",{"2":{"37":5}}],["1984",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["192",{"2":{"1":1}}],["1952e6",{"2":{"1":4}}],["1837",{"2":{"1":1}}],["1864",{"2":{"1":1}}],["180×170×1",{"2":{"40":1}}],["180×170×24",{"2":{"40":1}}],["180",{"2":{"1":2,"3":8,"4":3,"6":3,"7":3,"8":6,"33":3}}],["147",{"2":{"16":1,"17":1}}],["1478",{"2":{"3":1,"6":1,"7":1,"8":2,"33":1}}],["148",{"2":{"16":6,"17":17}}],["14",{"2":{"1":2,"3":1,"6":1,"7":1,"8":2,"33":1}}],["145",{"2":{"1":1}}],["144",{"2":{"1":1}}],["16t00",{"2":{"40":4}}],["161",{"2":{"37":1}}],["16666666666667",{"2":{"18":1}}],["1622",{"2":{"1":1}}],["160",{"2":{"1":3,"37":1}}],["16",{"2":{"1":1,"40":2}}],["165",{"2":{"1":1}}],["1f0",{"2":{"1":1}}],["179",{"2":{"3":3,"4":3,"6":3,"7":3,"8":6,"33":3}}],["17",{"2":{"1":6,"3":1,"6":1,"7":1,"8":2,"33":1,"40":1}}],["138",{"2":{"18":3}}],["13",{"2":{"1":2,"3":1,"6":1,"7":1,"8":2,"33":1,"37":2}}],["130",{"2":{"1":1}}],["153",{"2":{"37":2}}],["153847f0",{"2":{"1":2}}],["154",{"2":{"18":2}}],["155",{"2":{"18":1}}],["151",{"2":{"17":1}}],["15",{"2":{"1":7,"3":3,"6":3,"7":3,"8":6,"16":2,"33":3}}],["150",{"2":{"1":1}}],["1287",{"2":{"1":1}}],["12",{"2":{"1":3,"18":1,"24":2,"36":1,"40":2}}],["12048e6",{"2":{"1":4}}],["120",{"2":{"1":3}}],["102",{"2":{"18":1}}],["102×89",{"2":{"18":5}}],["1080",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"33":1}}],["10m",{"2":{"1":8,"3":2,"4":1,"6":1,"7":1,"8":2,"33":1,"44":2}}],["10",{"2":{"1":36,"16":1,"22":3,"37":3,"45":1}}],["100",{"2":{"1":28,"24":1,"37":1}}],["1",{"2":{"1":39,"2":4,"3":4,"4":2,"6":2,"7":2,"8":4,"16":3,"18":4,"20":7,"21":1,"22":10,"23":2,"24":1,"26":1,"33":4,"34":1,"36":2,"37":6,"40":8,"42":1,"46":2}}],["np",{"2":{"46":3}}],["ncstack",{"2":{"11":1}}],["ncdatasets",{"2":{"11":1,"26":1,"40":1,"43":1}}],["ncdsource",{"2":{"1":2,"2":5,"40":2}}],["nc",{"2":{"2":4,"11":3,"40":2,"42":2,"46":1}}],["ntuple",{"2":{"2":3}}],["nuevo",{"2":{"1":1}}],["numbers",{"2":{"20":1}}],["number",{"2":{"1":3,"9":1}}],["natively",{"2":{"10":1}}],["natural",{"2":{"1":5,"44":1}}],["na",{"2":{"2":3}}],["nan",{"2":{"1":16,"2":2,"36":2}}],["name=",{"2":{"6":1,"11":1,"13":1}}],["nametuple",{"2":{"1":1}}],["names",{"2":{"1":2,"11":1,"23":1,"36":1}}],["named",{"2":{"1":1,"20":1}}],["namedtuple",{"2":{"1":12,"2":5}}],["name",{"2":{"1":29,"2":7,"6":2,"11":1,"13":1,"36":3,"40":6,"44":2,"45":1}}],["nvkelso",{"2":{"1":4,"44":1}}],["nz",{"2":{"1":6}}],["n",{"2":{"1":1,"2":3}}],["norway",{"2":{"45":4,"46":11}}],["north",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["normally",{"2":{"1":2}}],["nochecksum",{"2":{"2":2}}],["now",{"2":{"1":1,"26":1,"40":2,"46":2}}],["nodataval",{"2":{"2":3}}],["nodata",{"2":{"1":9}}],["none",{"2":{"18":1}}],["non",{"2":{"1":11,"42":1}}],["no",{"2":{"1":23,"2":4,"36":1}}],["nometadata",{"2":{"1":1}}],["notice",{"2":{"40":1}}],["nothing",{"2":{"1":22,"2":2,"36":2}}],["note",{"2":{"1":10,"24":1,"29":1}}],["not",{"2":{"1":102,"2":6,"10":1,"11":1,"14":1,"26":1,"27":2,"33":1,"36":2,"38":1}}],["neighbour",{"2":{"1":1}}],["ne",{"2":{"1":7,"44":1}}],["newdocs",{"2":{"2":2}}],["newmissingval",{"2":{"1":2}}],["new",{"2":{"1":11,"5":1}}],["nested",{"2":{"1":13,"8":1}}],["needs",{"2":{"2":2}}],["needed",{"2":{"1":4,"26":1}}],["need",{"2":{"1":6,"2":2,"4":1,"6":1,"26":2,"27":4,"36":1,"40":1}}],["netcdf",{"0":{"11":1},"2":{"1":9,"2":14,"11":4,"20":1,"23":1,"26":1,"28":1,"40":2,"46":1}}],["nearly",{"2":{"27":1}}],["nearest",{"2":{"1":1}}],["near",{"2":{"1":3,"23":1,"24":1,"40":2,"42":1}}],["nbsp",{"2":{"1":49,"2":15,"36":1}}],["dp",{"2":{"46":1}}],["dpi=300",{"2":{"41":1}}],["d",{"0":{"33":1,"34":1},"2":{"32":1}}],["df",{"2":{"18":2}}],["dark",{"2":{"37":1}}],["day",{"2":{"16":1}}],["datsets",{"2":{"15":1}}],["datum",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["date",{"2":{"40":1}}],["date=datetime",{"2":{"1":2}}],["dates",{"2":{"1":8,"15":1,"20":1,"43":1}}],["datetime360day",{"2":{"40":12}}],["datetime",{"2":{"1":13,"20":7,"22":5,"23":1}}],["dataaspect",{"2":{"33":1,"34":1}}],["dataframe",{"2":{"1":3,"18":2}}],["dataframes",{"2":{"1":1,"18":1}}],["datasets",{"2":{"1":2,"15":1}}],["dataset",{"2":{"1":4,"2":4,"13":1,"45":1}}],["data",{"0":{"9":1,"31":1,"40":1},"1":{"10":1,"11":1,"12":1,"13":1,"14":1,"15":1,"41":1,"42":1},"2":{"1":52,"2":1,"3":1,"9":1,"13":1,"14":1,"15":3,"20":1,"23":1,"26":1,"27":1,"28":3,"31":4,"36":1,"37":1,"38":1,"40":2,"45":1}}],["drive",{"2":{"27":1}}],["drivers",{"2":{"2":2}}],["drivername",{"2":{"2":2}}],["driver",{"2":{"2":12}}],["draw",{"2":{"2":2,"36":2}}],["drop",{"2":{"1":2,"27":1}}],["dropband",{"2":{"1":2}}],["dhekelia",{"2":{"1":1}}],["dbf",{"2":{"1":7}}],["dstlookup",{"2":{"1":1}}],["dst",{"2":{"1":4,"2":4}}],["due",{"2":{"1":9}}],["during",{"2":{"1":2}}],["duplicate",{"2":{"1":4}}],["documentation",{"2":{"28":1}}],["documenter",{"2":{"13":1}}],["docstring",{"2":{"13":2}}],["docs",{"2":{"1":2,"14":1,"15":2}}],["dot",{"2":{"3":1}}],["down",{"2":{"1":2}}],["downloading",{"2":{"27":1}}],["downloads",{"2":{"1":9,"26":1,"27":1,"40":1,"43":1,"44":2}}],["download",{"0":{"44":1},"1":{"45":1,"46":1},"2":{"1":12,"15":2,"26":1,"40":2,"44":1}}],["do",{"2":{"1":2,"2":5,"3":1,"4":2,"5":1,"20":1,"26":1,"27":1,"36":1,"37":1}}],["don",{"2":{"1":1,"2":4,"8":1}}],["done",{"2":{"1":2,"22":1,"27":1}}],["doesn",{"2":{"42":1}}],["does",{"2":{"1":6}}],["denmark",{"2":{"45":4,"46":4}}],["degc",{"2":{"40":2}}],["degree",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1,"42":1}}],["degrees",{"2":{"1":6}}],["descriptions",{"2":{"28":1}}],["description",{"2":{"24":1,"28":1,"29":1,"30":1,"31":1}}],["designed",{"2":{"23":1}}],["destructively",{"2":{"2":6}}],["destination",{"2":{"1":1}}],["dest",{"2":{"1":3}}],["decimallatitude",{"2":{"17":2}}],["decimallongitude",{"2":{"17":1}}],["decline",{"2":{"1":2}}],["details",{"2":{"13":1,"23":1}}],["determines",{"2":{"1":1}}],["determine",{"2":{"1":6}}],["detect",{"2":{"9":1}}],["detected",{"2":{"1":10,"2":6}}],["detecting",{"2":{"1":1}}],["depending",{"2":{"1":2,"2":1}}],["depth",{"2":{"1":2,"28":1}}],["deferred",{"2":{"24":1}}],["deflate",{"2":{"2":2}}],["deflatelevel",{"2":{"2":2}}],["defualts",{"2":{"1":2}}],["defined",{"2":{"1":1,"2":1}}],["define",{"2":{"1":2,"46":1}}],["defines",{"2":{"1":1,"23":1}}],["defaults",{"2":{"1":3}}],["defaulting",{"2":{"1":1}}],["default",{"2":{"1":61,"2":20,"12":1,"36":1}}],["difficult",{"2":{"8":1}}],["differences",{"2":{"1":2}}],["differently",{"2":{"32":1}}],["different",{"2":{"1":3,"11":1,"14":1,"28":3,"32":1}}],["differnce",{"2":{"1":1}}],["divided",{"2":{"1":2}}],["directions",{"2":{"23":1}}],["directly",{"2":{"1":8,"2":1,"3":1,"4":1,"11":1,"15":1}}],["directory",{"2":{"1":4,"2":2}}],["directories",{"2":{"1":1}}],["dir",{"2":{"1":4}}],["dictionary",{"2":{"2":2}}],["dict",{"2":{"1":5,"2":4,"3":2,"4":1,"6":1,"7":1,"8":2,"33":1,"40":2}}],["disable",{"2":{"2":1}}],["disaggregate",{"2":{"0":2,"1":4,"28":2}}],["distribution",{"2":{"1":1}}],["distance",{"2":{"1":4}}],["diskarrays",{"2":{"2":4}}],["disk",{"0":{"14":1,"42":1},"2":{"1":10,"2":3,"3":1,"4":2,"11":1,"14":1,"24":1,"31":1,"40":2,"42":1,"46":1}}],["dimtuple",{"2":{"1":1}}],["dim",{"2":{"1":2,"11":1}}],["dimz",{"2":{"1":4}}],["dims=ti",{"2":{"40":1}}],["dims=x",{"2":{"3":1}}],["dims=",{"2":{"1":2}}],["dims=band",{"2":{"1":1}}],["dims",{"2":{"1":21,"3":2,"4":1,"6":1,"7":1,"8":2,"18":5,"20":1,"22":3,"23":1,"33":1,"37":5,"40":2}}],["dimension",{"0":{"3":1},"2":{"1":47,"2":14,"3":1,"8":1,"11":1,"12":1,"23":2,"24":1,"28":2,"36":8,"38":1,"40":2}}],["dimensional",{"2":{"2":2,"10":1,"13":1,"36":2,"38":1}}],["dimensionalarray",{"2":{"1":1}}],["dimensionaldata",{"2":{"1":6,"20":1,"23":2,"24":1,"40":1,"42":1}}],["dimensions",{"0":{"21":1},"2":{"1":45,"2":7,"8":2,"10":1,"11":3,"13":1,"20":2,"23":5,"24":1,"29":1,"36":2,"40":1,"42":1}}],["efficient",{"2":{"34":1}}],["effort",{"2":{"27":1}}],["effect",{"2":{"1":3}}],["especially",{"2":{"23":1}}],["ecology",{"2":{"15":1}}],["eltype",{"2":{"18":4,"37":4}}],["else",{"2":{"2":2}}],["elements",{"2":{"1":1,"2":1}}],["element",{"2":{"1":3,"16":1,"17":1,"36":1}}],["elevation",{"2":{"1":1}}],["every",{"2":{"40":1}}],["everything",{"2":{"2":2}}],["evenness",{"2":{"1":19,"37":3}}],["even",{"2":{"1":1,"2":7,"32":1,"33":2,"36":1}}],["edu",{"2":{"2":2,"40":1}}],["equal",{"2":{"2":1}}],["etc",{"2":{"1":1}}],["errors",{"0":{"27":1},"2":{"1":2,"27":1}}],["error",{"2":{"1":4,"27":1,"36":2}}],["empty",{"2":{"1":3}}],["ease",{"2":{"32":1}}],["easy",{"2":{"27":1}}],["east",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":2,"33":1,"37":1}}],["earth",{"2":{"1":5,"44":1}}],["earthenv",{"2":{"1":8,"37":2}}],["eagerly",{"2":{"1":1}}],["eachchunk",{"2":{"2":1}}],["each",{"2":{"1":24,"2":10,"26":1,"28":1,"36":1,"46":1}}],["enumerate",{"2":{"37":2}}],["environmental",{"2":{"15":1}}],["entries",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"33":1,"40":2}}],["entire",{"2":{"1":2,"46":1}}],["enough",{"2":{"2":1}}],["ensure",{"2":{"2":1}}],["end",{"2":{"1":1,"2":1,"4":2,"36":1,"37":2,"46":2}}],["e",{"2":{"1":13,"2":4,"20":1,"23":1,"24":2,"27":1,"28":1,"31":1,"36":1,"38":1}}],["eg",{"2":{"1":3}}],["epsg",{"2":{"1":10,"3":10,"4":5,"6":5,"7":5,"8":10,"18":5,"23":1,"33":5,"37":5,"40":4}}],["either",{"2":{"1":2,"2":1}}],["excluding",{"2":{"24":1}}],["excessive",{"2":{"1":5}}],["exact",{"2":{"27":1}}],["exactly",{"2":{"24":1}}],["examplewrite",{"2":{"46":1}}],["examplep",{"2":{"46":1}}],["examplenorway",{"2":{"46":2}}],["examplenp",{"2":{"46":1}}],["exampledp",{"2":{"46":1}}],["examplemask",{"2":{"45":1}}],["exampleusing",{"2":{"45":1}}],["examplescandinavia",{"2":{"46":1}}],["examplesp",{"2":{"46":1}}],["examples",{"2":{"20":1,"28":1,"40":1}}],["example",{"2":{"1":46,"2":2,"26":1,"27":1,"34":1,"40":1,"42":1,"43":1}}],["exists",{"2":{"2":8}}],["existing",{"2":{"1":3}}],["explicit",{"2":{"23":1,"40":2}}],["experience",{"2":{"1":1}}],["experimental",{"2":{"1":19,"34":1}}],["expected",{"2":{"1":6}}],["exported",{"0":{"1":1}}],["extra",{"2":{"27":1}}],["extracts",{"2":{"1":1}}],["extract",{"0":{"17":1},"2":{"0":1,"1":5,"17":1,"18":2,"30":2}}],["extrema",{"2":{"1":2}}],["ext",{"2":{"1":1,"2":2,"14":1}}],["extensions",{"0":{"26":1},"2":{"26":3}}],["extension",{"2":{"1":2,"2":18}}],["extents",{"2":{"1":18,"28":1}}],["extent",{"0":{"28":1},"2":{"1":43,"3":4,"4":2,"6":2,"7":2,"8":4,"18":2,"20":2,"22":6,"23":2,"28":2,"33":2,"37":2,"40":4}}],["extends",{"2":{"20":1}}],["extend",{"2":{"0":1,"1":8,"28":2}}],["l",{"2":{"37":4}}],["lscene",{"2":{"2":1,"36":1}}],["limited",{"2":{"38":1}}],["limit=300",{"2":{"16":1}}],["limit=5",{"2":{"1":1}}],["little",{"2":{"14":1,"27":1,"34":2}}],["linrange",{"2":{"3":3,"4":2,"6":2,"7":2,"8":4,"18":2,"33":2,"37":2}}],["linewidth=0",{"2":{"1":2,"46":1}}],["lines",{"2":{"1":11,"44":1}}],["line",{"2":{"1":11}}],["listed",{"2":{"24":1}}],["list",{"2":{"1":1}}],["like",{"2":{"1":18,"2":4,"3":1,"20":1,"23":3,"26":2,"32":1,"38":1}}],["lt",{"2":{"1":20,"36":3}}],["lets",{"2":{"46":1}}],["legend=",{"2":{"18":1}}],["legend=false",{"2":{"1":1}}],["left",{"2":{"2":1,"36":1}}],["leave",{"2":{"1":2}}],["length",{"2":{"1":5,"2":1,"36":1,"46":1}}],["level",{"2":{"1":1,"2":2}}],["layout",{"2":{"37":2}}],["layername",{"2":{"11":2,"13":1}}],["layered",{"2":{"1":4,"2":1,"13":1,"46":1}}],["layer",{"0":{"18":1},"2":{"1":16,"2":2,"6":1,"11":1,"13":1,"40":1,"46":1}}],["layersfrom",{"2":{"1":1}}],["layersfrom=band",{"2":{"1":2,"12":1}}],["layers",{"2":{"1":24,"2":3,"4":1,"11":4,"12":1,"13":3,"18":2,"28":1,"37":5,"45":1}}],["label",{"2":{"2":3,"36":3,"37":1,"40":1}}],["labels",{"2":{"1":1}}],["lanczos",{"2":{"1":2}}],["last",{"2":{"1":12}}],["largely",{"2":{"23":1}}],["largest",{"2":{"1":1}}],["larger",{"2":{"1":2}}],["large",{"2":{"1":19,"38":2}}],["lazy=false",{"2":{"1":1,"2":1}}],["lazy=true",{"2":{"1":5,"2":1,"3":1}}],["lazy",{"2":{"1":10,"2":3,"24":1}}],["lazily",{"2":{"1":10,"2":1,"3":1,"46":1}}],["latitude",{"2":{"1":1,"3":2,"4":1,"6":1,"7":1,"8":2,"17":1,"18":1,"21":1,"23":1,"33":1,"37":1,"42":1}}],["latter",{"2":{"1":1}}],["later",{"2":{"1":1}}],["lat",{"2":{"1":4,"20":2,"21":1,"37":1,"40":1}}],["lost",{"2":{"14":1}}],["lossless",{"2":{"1":1}}],["log",{"2":{"13":1}}],["lot",{"2":{"2":2,"46":1}}],["lower",{"2":{"1":13}}],["lower=",{"2":{"1":1}}],["low",{"2":{"1":5,"2":1,"36":1}}],["locus",{"2":{"1":4}}],["location",{"2":{"1":1}}],["long",{"2":{"40":2}}],["longest",{"2":{"38":1}}],["longitude",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"17":1,"18":1,"21":1,"23":1,"33":1,"37":1}}],["lon",{"2":{"1":4,"20":2,"37":1,"40":1}}],["lookups",{"2":{"1":9,"2":1}}],["lookup",{"0":{"21":1},"2":{"1":17,"2":2,"21":2,"23":2}}],["loads",{"2":{"26":1,"40":1}}],["load",{"0":{"16":1,"31":1,"45":1},"2":{"1":13,"9":1,"15":1,"26":2,"40":1,"45":2}}],["loading",{"0":{"40":1},"1":{"41":1,"42":1},"2":{"1":5,"11":1,"38":1}}],["loaded",{"2":{"1":6,"10":1,"11":2,"12":3,"13":2,"14":1}}],["h5",{"2":{"13":2}}],["html",{"2":{"2":4}}],["https",{"2":{"1":4,"2":6,"40":1,"44":1}}],["height=relative",{"2":{"36":1}}],["help",{"2":{"11":1}}],["header",{"2":{"2":3}}],["heatmap",{"2":{"1":1,"2":4,"32":1,"36":4,"37":1,"38":2}}],["heterogeneity",{"2":{"1":1}}],["here",{"2":{"1":2,"2":1,"8":1,"24":1,"34":1,"36":2,"40":1}}],["hosting",{"2":{"27":1}}],["however",{"2":{"1":2}}],["how",{"2":{"1":3,"23":1,"27":2,"38":1}}],["holding",{"2":{"2":1,"5":1}}],["holds",{"2":{"1":1,"2":3}}],["hold",{"2":{"1":6}}],["history",{"2":{"40":2}}],["hidden",{"2":{"2":1}}],["hideydecorations",{"2":{"37":1}}],["hidexdecorations",{"2":{"37":1}}],["hide",{"2":{"1":7}}],["high",{"2":{"1":6,"2":1,"24":1,"36":1,"38":1}}],["had",{"2":{"5":1}}],["habitat",{"2":{"1":1}}],["habitatheterogeneity",{"2":{"1":7,"37":2}}],["handled",{"2":{"1":1}}],["handle",{"2":{"1":3,"23":2,"45":1}}],["having",{"2":{"1":3}}],["have",{"2":{"1":12,"2":4,"8":1,"10":1,"11":3,"23":1,"26":1,"27":1,"40":1,"42":1}}],["haschunks",{"2":{"2":1}}],["has",{"2":{"1":10,"14":1,"34":1,"40":2}}],["hdf5",{"2":{"1":1,"2":1,"13":1,"14":1,"26":1}}],["j",{"2":{"37":2}}],["json3",{"2":{"16":2}}],["january",{"2":{"1":3,"36":1}}],["join",{"2":{"1":1,"28":1}}],["joined",{"2":{"1":2}}],["just",{"2":{"1":4,"2":2,"3":1,"24":1,"26":1,"27":2,"34":1}}],["juliafunction",{"2":{"46":1}}],["juliafig",{"2":{"33":1}}],["juliafilearray",{"2":{"2":1}}],["juliafilestack",{"2":{"2":1}}],["juliafiles",{"2":{"1":1}}],["juliawrite",{"2":{"42":1}}],["juliawarp",{"2":{"1":1}}],["julialayers",{"2":{"37":1}}],["julialon",{"2":{"21":1}}],["julianewstack",{"2":{"4":1}}],["juliaopen",{"2":{"2":1,"4":1}}],["juliaopenstack",{"2":{"2":1}}],["juliazonal",{"2":{"1":1}}],["juliatrim",{"2":{"1":1}}],["juliashapes",{"2":{"45":1}}],["juliastack",{"2":{"34":1}}],["juliasurface",{"2":{"33":1}}],["julias",{"2":{"2":3,"10":1}}],["juliaskipmissing",{"2":{"2":1}}],["juliaslice",{"2":{"1":1}}],["juliaset",{"2":{"8":1}}],["juliasetmappedcrs",{"2":{"1":1}}],["juliasetcrs",{"2":{"1":1}}],["juliaras",{"2":{"22":3,"23":1}}],["juliarasterdiskarray",{"2":{"2":1}}],["juliarasterize",{"2":{"1":2}}],["juliarasters",{"2":{"2":1,"36":1}}],["juliarasterstack",{"2":{"1":1}}],["juliarasterseries",{"2":{"1":2}}],["juliaraster",{"2":{"1":1}}],["juliarecords",{"2":{"16":1}}],["juliaread",{"2":{"2":2}}],["juliaresample",{"2":{"1":1}}],["juliareproject",{"2":{"1":2}}],["juliareplace",{"2":{"1":1,"7":1}}],["juliapoints",{"2":{"1":1}}],["juliaprojected",{"2":{"1":1}}],["juliaextract",{"2":{"1":1}}],["juliaextend",{"2":{"1":1}}],["juliadisaggregate",{"2":{"1":2}}],["juliacheckmem",{"2":{"2":1}}],["juliacrop",{"2":{"1":1}}],["juliacrs",{"2":{"1":1}}],["juliacoords",{"2":{"17":1}}],["juliacoverage",{"2":{"1":2}}],["juliaconvertlookup",{"2":{"1":1}}],["juliacombine",{"2":{"1":1}}],["juliaclassify",{"2":{"1":2}}],["juliacellsize",{"2":{"1":1}}],["juliab",{"2":{"6":1}}],["juliabase",{"2":{"2":4}}],["juliabanddim",{"2":{"1":1}}],["juliaband",{"2":{"1":1}}],["juliaboolmask",{"2":{"1":1}}],["juliausing",{"2":{"1":21,"3":1,"8":1,"13":1,"15":1,"16":1,"18":3,"20":2,"24":1,"26":1,"33":1,"37":1,"38":1,"39":1,"40":3,"41":1,"44":1}}],["juliaa",{"2":{"4":1,"6":1,"18":1,"40":1,"42":1}}],["juliaabstractprojected",{"2":{"2":1}}],["juliaabstractrasterstack",{"2":{"1":1}}],["juliaabstractrasterseries",{"2":{"1":1}}],["juliaabstractraster",{"2":{"1":1}}],["juliaaggregate",{"2":{"1":2}}],["juliamean",{"2":{"3":1}}],["juliamosaic",{"2":{"1":2}}],["juliamodify",{"2":{"1":1}}],["juliamissingval",{"2":{"1":1}}],["juliamissingmask",{"2":{"1":1}}],["juliamakie",{"2":{"34":1,"35":1,"36":2}}],["juliamask",{"2":{"1":2}}],["juliamappedindex",{"2":{"1":1}}],["juliamappedcrs",{"2":{"1":1}}],["juliamappedbounds",{"2":{"1":1}}],["juliamapped",{"2":{"1":1}}],["juliajulia>",{"2":{"1":2}}],["juliagdalarray",{"2":{"1":1}}],["julia",{"2":{"1":1,"2":1,"20":1,"25":1,"26":1,"29":1,"37":1}}],["jl",{"0":{"15":1,"45":1,"46":1},"2":{"1":46,"2":4,"8":1,"9":1,"11":1,"12":1,"15":3,"17":1,"20":2,"23":1,"24":1,"26":1,"27":3,"36":1,"38":3,"40":2,"42":2,"43":1,"45":1,"46":1}}],["ignore",{"2":{"1":4,"2":2}}],["ignored",{"2":{"1":1,"2":1}}],["image",{"2":{"37":1}}],["improve",{"2":{"2":2}}],["implemented",{"2":{"1":1,"14":1}}],["implementation",{"2":{"1":2}}],["implementations",{"2":{"1":1}}],["imola",{"2":{"1":1}}],["irregular",{"2":{"1":3}}],["i",{"2":{"1":2,"2":4,"18":1,"36":3,"37":6,"46":1}}],["ie",{"2":{"1":1}}],["if",{"2":{"1":75,"2":37,"3":1,"5":1,"6":1,"17":1,"21":2,"27":1,"31":1,"36":7,"38":1,"40":1,"46":1}}],["identically",{"2":{"1":1}}],["identical",{"2":{"1":4}}],["input",{"2":{"36":2}}],["inputs",{"2":{"1":1}}],["invoke",{"2":{"38":1}}],["involves",{"2":{"27":1}}],["invert",{"2":{"1":8}}],["info",{"2":{"24":1,"29":1}}],["information",{"2":{"1":2}}],["inf",{"2":{"3":4,"4":6}}],["indices",{"2":{"22":1,"24":2,"40":1}}],["indicates",{"2":{"2":1,"36":1}}],["individually",{"2":{"2":2}}],["individual",{"2":{"1":1,"2":1,"13":1,"46":1}}],["independently",{"2":{"1":1}}],["indexing",{"2":{"4":1}}],["indexed",{"2":{"1":3,"2":1,"3":1,"20":1}}],["index",{"0":{"0":1,"22":1},"2":{"1":19,"2":3,"22":1,"23":1,"24":4,"40":1}}],["indonesian",{"2":{"1":1}}],["indonesia",{"2":{"1":7}}],["installation",{"0":{"25":1}}],["install",{"0":{"20":1}}],["instead",{"2":{"1":5,"2":1,"8":1,"38":1,"40":2}}],["insertcols",{"2":{"1":1}}],["inside",{"2":{"1":18}}],["including",{"2":{"1":4}}],["includes",{"2":{"46":1}}],["included",{"2":{"1":4,"46":1}}],["include",{"2":{"1":9,"27":1}}],["increase",{"2":{"1":1}}],["increases",{"2":{"1":2}}],["incorrectly",{"2":{"5":1}}],["incorrect",{"2":{"1":5}}],["int64",{"2":{"16":4,"20":2,"21":1,"22":6,"23":2}}],["into",{"2":{"1":12,"15":1,"27":1,"28":1,"29":1,"46":1}}],["intended",{"2":{"26":1}}],["integrated",{"2":{"15":1}}],["integration",{"0":{"15":1}}],["integer",{"2":{"1":6}}],["integers",{"2":{"1":5}}],["interpreted",{"2":{"34":1}}],["interpolation",{"2":{"1":1}}],["interface",{"2":{"34":1}}],["intervalsets",{"2":{"1":1}}],["intervals",{"2":{"1":3,"3":4,"4":2,"6":2,"7":2,"8":4,"18":2,"33":2,"37":2,"40":6,"46":1}}],["interval",{"2":{"1":5,"22":1,"24":1,"40":2}}],["internal",{"0":{"2":1},"2":{"1":2,"2":3}}],["int",{"2":{"1":24,"2":9}}],["in",{"0":{"32":1,"33":1,"34":1},"2":{"1":176,"2":13,"4":1,"8":1,"11":2,"13":1,"14":3,"15":1,"17":2,"24":2,"26":3,"27":2,"28":1,"29":2,"31":1,"32":1,"34":3,"36":1,"37":4,"38":1,"40":5,"42":1,"43":1,"46":1}}],["inherit",{"2":{"1":1}}],["issue",{"2":{"27":3}}],["issues",{"2":{"1":19,"11":1,"27":3}}],["isn",{"2":{"27":1}}],["ismissing",{"2":{"17":1}}],["islands",{"2":{"1":6,"46":1}}],["island",{"2":{"1":2}}],["isfile",{"2":{"1":5}}],["is",{"2":{"1":214,"2":28,"3":2,"8":1,"11":2,"12":1,"13":1,"15":1,"20":1,"21":2,"22":1,"23":3,"24":2,"27":1,"31":1,"32":1,"33":2,"34":2,"36":2,"38":3,"42":1,"46":1}}],["itr",{"2":{"2":1}}],["iteratively",{"2":{"1":1}}],["iterator",{"2":{"1":1}}],["iterable",{"2":{"1":8,"2":1}}],["iterables",{"2":{"1":1}}],["it",{"2":{"1":51,"2":21,"8":1,"26":2,"27":7,"31":1,"34":1,"36":1,"38":1,"40":5,"46":1}}],["its",{"2":{"1":2,"2":1,"26":1,"27":1,"36":1}}],["wgs",{"2":{"3":6,"4":3,"6":3,"7":3,"8":6,"18":3,"33":3,"37":3}}],["www",{"2":{"2":2,"40":1}}],["wc2",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"33":1}}],["wc",{"2":{"1":10}}],["well",{"2":{"26":1}}],["wellknowntext",{"2":{"1":1}}],["were",{"2":{"3":1,"14":1}}],["web",{"2":{"2":2,"27":1}}],["weighted",{"2":{"1":2}}],["wether",{"2":{"1":2}}],["we",{"2":{"1":6,"2":3,"3":1,"4":2,"8":2,"26":1,"27":9,"34":1,"38":1,"40":4,"42":1,"43":1,"45":2,"46":2}}],["wrong",{"2":{"2":1}}],["writing",{"0":{"14":1},"2":{"1":5,"2":6,"31":1}}],["written",{"2":{"1":7,"2":6,"14":2}}],["writes",{"2":{"2":2}}],["write=false",{"2":{"2":1}}],["write=true",{"2":{"1":2,"2":1,"4":1}}],["write",{"0":{"31":1,"42":1},"2":{"1":15,"2":24,"4":1,"14":2,"18":2,"31":2,"42":1,"46":3}}],["wrapping",{"2":{"2":4,"21":1}}],["wrapped",{"2":{"1":1,"2":1}}],["wrapper",{"2":{"1":2,"2":3}}],["wraper",{"2":{"1":1}}],["wrap",{"2":{"1":1}}],["worst",{"2":{"1":1}}],["world",{"2":{"1":2}}],["worldclim",{"2":{"1":20,"3":3,"4":1,"6":2,"7":1,"8":2,"15":1,"18":1,"24":1,"26":1,"33":2,"34":1,"36":2,"38":1,"39":1,"45":2}}],["working",{"2":{"2":1,"27":1,"36":1}}],["works",{"2":{"1":1,"3":1,"8":1,"32":1,"33":2}}],["work",{"2":{"1":7,"2":2,"23":1,"24":1,"26":1,"27":1,"29":1,"46":1}}],["would",{"2":{"1":2,"3":1}}],["way",{"2":{"1":3,"2":1,"24":1,"34":1,"38":1}}],["warnings",{"2":{"1":2}}],["warning",{"2":{"1":19,"34":1}}],["warped",{"2":{"1":2}}],["warp",{"2":{"0":1,"1":8,"28":1}}],["was",{"2":{"1":2,"26":2}}],["wind",{"2":{"45":1}}],["windowed",{"2":{"1":1}}],["width=5",{"2":{"36":1}}],["width",{"2":{"2":1,"36":1,"37":5}}],["wish",{"2":{"2":1}}],["will",{"2":{"1":91,"2":22,"3":1,"4":1,"6":1,"8":3,"9":1,"11":1,"20":1,"23":1,"38":5,"40":2,"43":1,"46":2}}],["within",{"2":{"24":1}}],["with=poly",{"2":{"45":1}}],["with=maskfile",{"2":{"2":1}}],["with=wc",{"2":{"1":2}}],["without",{"2":{"1":6,"11":1,"13":1,"27":2}}],["with",{"0":{"36":1,"46":1},"2":{"1":84,"2":17,"3":2,"4":1,"6":1,"7":1,"8":3,"13":1,"14":1,"15":1,"20":1,"23":4,"24":1,"27":2,"32":1,"33":1,"36":1,"37":1,"38":2,"40":4,"43":1,"45":1,"46":3}}],["whose",{"2":{"2":1,"36":1}}],["whole",{"2":{"1":3}}],["whatever",{"2":{"1":1,"27":1}}],["whether",{"2":{"1":4,"2":3,"36":1}}],["wherever",{"2":{"1":2}}],["where",{"2":{"1":46,"2":1,"14":1,"23":2,"24":2,"26":1,"46":1}}],["when",{"2":{"1":66,"2":3,"3":2,"4":2,"26":1,"27":1,"42":1,"46":1}}],["while",{"2":{"1":1}}],["which",{"2":{"1":27,"2":6,"4":1,"8":1,"9":1,"10":1,"12":1,"34":3,"36":3,"38":1,"40":1,"46":1}}],["ocean",{"2":{"40":1,"42":1}}],["occurs",{"2":{"4":1}}],["occurrence",{"2":{"1":3,"16":2,"18":1}}],["occur",{"2":{"1":24,"27":1}}],["o1",{"2":{"40":2}}],["o",{"2":{"4":2}}],["omitted",{"2":{"1":1,"16":1}}],["obtain",{"2":{"1":1,"38":1}}],["observable",{"2":{"36":2}}],["observables",{"0":{"36":1},"2":{"36":1}}],["observation",{"2":{"1":1}}],["obs",{"2":{"1":2,"36":3}}],["obj",{"2":{"1":10}}],["object",{"0":{"5":1,"24":1,"28":1},"1":{"6":1,"7":1,"8":1},"2":{"1":41,"2":10,"5":2,"8":1,"16":1,"24":1,"28":4,"29":2,"30":1,"42":1}}],["objects",{"0":{"29":1},"2":{"1":17,"2":5,"8":1,"24":2,"28":2,"31":3,"40":2}}],["our",{"2":{"1":1,"27":1,"40":1}}],["outside",{"2":{"1":2}}],["output",{"2":{"1":29,"20":1}}],["out",{"2":{"1":6,"36":1,"37":1,"46":1}}],["opacity=0",{"2":{"18":1}}],["op",{"2":{"1":5}}],["optionally",{"2":{"1":1}}],["options",{"2":{"1":1,"2":6,"23":1}}],["optimisations",{"2":{"1":3}}],["opbject",{"2":{"1":1}}],["operation",{"0":{"30":1},"2":{"1":8,"2":1}}],["operations",{"2":{"1":5,"2":1,"11":1}}],["opens",{"2":{"2":1}}],["openstack",{"2":{"0":1,"2":3}}],["openinterval",{"2":{"1":1}}],["open",{"2":{"1":6,"2":11,"4":1,"31":2}}],["opened",{"2":{"1":3,"2":3}}],["otherwise",{"2":{"1":10,"11":1}}],["others=0",{"2":{"1":2}}],["others=nothing",{"2":{"1":1}}],["others",{"2":{"1":9}}],["other",{"2":{"1":20,"2":8,"13":1,"14":1,"23":1,"24":1,"26":1,"27":1,"29":1,"34":1,"40":2,"46":1}}],["overridden",{"2":{"2":1}}],["overlap",{"2":{"1":2,"46":1}}],["overlapping",{"2":{"1":2}}],["over",{"0":{"3":1},"2":{"1":11,"2":1,"3":2,"4":1,"27":1,"40":1,"46":1}}],["onwards",{"2":{"26":1}}],["one",{"2":{"1":9,"2":4,"8":2,"40":3}}],["on",{"2":{"1":27,"2":5,"8":1,"15":1,"18":1,"23":1,"24":1,"26":1,"27":3,"28":1,"31":1,"36":2,"38":3,"40":2}}],["only",{"2":{"1":29,"2":5,"3":1,"4":1,"8":1,"26":1,"38":1,"40":2}}],["offset",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"33":1}}],["of=countries",{"2":{"1":1}}],["often",{"2":{"1":9,"2":1,"27":1}}],["of",{"0":{"28":1},"2":{"1":222,"2":50,"3":2,"4":2,"5":1,"6":2,"7":1,"8":5,"9":1,"13":1,"15":1,"17":1,"22":1,"23":1,"24":3,"27":4,"28":3,"33":1,"34":1,"36":20,"37":1,"38":2,"40":4,"42":1,"46":3}}],["org",{"2":{"2":4}}],["original",{"2":{"1":4,"2":3,"40":4}}],["order=forwardordered",{"2":{"1":2}}],["order=autoorder",{"2":{"1":2}}],["order",{"2":{"1":14}}],["or",{"0":{"28":1},"2":{"1":293,"2":35,"4":1,"5":1,"6":1,"14":1,"15":1,"18":1,"20":1,"22":2,"26":1,"27":4,"28":5,"29":2,"30":1,"31":1,"32":1,"34":1,"36":8,"38":2,"42":1}}],["text",{"2":{"34":1}}],["template",{"2":{"27":2}}],["temperatures",{"2":{"40":1}}],["temperature",{"2":{"6":2,"13":1,"40":4,"42":1}}],["tempname",{"2":{"1":1}}],["tempfile",{"2":{"1":4}}],["tempory",{"2":{"1":1}}],["temp=",{"2":{"1":1}}],["temp",{"2":{"1":2}}],["typing",{"0":{"20":1}}],["typically",{"2":{"2":1}}],["typemax",{"2":{"36":1}}],["typename",{"2":{"2":2}}],["types",{"2":{"2":3,"27":1,"46":1}}],["type",{"2":{"1":16,"2":13,"14":1,"36":4}}],["two",{"2":{"1":2,"24":1,"38":1}}],["twice",{"2":{"1":2}}],["tmax",{"2":{"1":3,"45":1}}],["tmin",{"2":{"1":2,"45":1}}],["t",{"2":{"1":3,"2":5,"8":1,"27":1,"40":2,"42":1}}],["target",{"2":{"1":1}}],["tavg",{"2":{"1":3,"15":1}}],["tabular",{"2":{"1":1}}],["table",{"0":{"30":1},"2":{"1":18,"16":1}}],["tables",{"2":{"1":18}}],["take",{"2":{"2":1,"24":1,"27":1,"36":1,"40":1,"46":1}}],["takes",{"2":{"1":2}}],["taken",{"2":{"1":4}}],["taking",{"2":{"1":3,"12":1}}],["tickalign",{"2":{"37":4}}],["tickalign=1",{"2":{"37":1}}],["ticks=false",{"2":{"37":2}}],["ticksize",{"2":{"37":5}}],["tiled",{"2":{"34":1,"38":1}}],["ti=at",{"2":{"23":1}}],["ti=1",{"2":{"22":1,"40":1}}],["tightly",{"2":{"15":1}}],["titles",{"2":{"2":1,"36":1}}],["title",{"2":{"2":1,"36":1,"37":1}}],["ti",{"2":{"1":7,"3":1,"11":1,"20":6,"22":4,"23":1,"40":5,"42":1}}],["tif",{"2":{"1":8,"3":2,"4":1,"6":1,"7":1,"8":2,"12":2,"33":1,"46":2}}],["tifs",{"2":{"1":1}}],["tiff",{"2":{"1":2,"2":4,"12":1}}],["timespan",{"2":{"40":1}}],["time",{"0":{"3":1},"2":{"1":4,"3":1,"20":1,"22":1,"23":1,"26":1,"27":2,"34":1,"40":4,"46":1}}],["trace",{"2":{"27":1}}],["transect",{"2":{"42":1}}],["transformations",{"2":{"26":1}}],["transferred",{"2":{"1":1}}],["transparent",{"2":{"2":2,"36":2,"37":2}}],["tr",{"2":{"1":2}}],["trigger",{"2":{"27":1}}],["triggers",{"2":{"1":1,"27":1}}],["trims",{"2":{"28":1}}],["trimming",{"2":{"1":1}}],["trimmed",{"2":{"1":3,"37":1}}],["trim",{"2":{"0":1,"1":10,"28":1,"37":2,"45":7,"46":1}}],["try",{"2":{"1":1,"8":1}}],["true",{"2":{"1":36,"2":18,"16":1,"36":1}}],["treated",{"2":{"1":11,"23":1,"34":1}}],["tuples",{"2":{"1":3}}],["tuple",{"2":{"1":65,"2":6,"16":2,"17":2}}],["together",{"2":{"43":1}}],["tos",{"2":{"40":5,"41":1,"42":3}}],["toy",{"2":{"20":1}}],["top",{"2":{"2":1,"36":1}}],["touch",{"2":{"1":2}}],["touches=false",{"2":{"1":1}}],["touches",{"2":{"1":13}}],["tolerances",{"2":{"1":2}}],["tolerance",{"2":{"1":3}}],["to=b",{"2":{"1":1}}],["to=first",{"2":{"1":1}}],["to=awap",{"2":{"1":2}}],["to=rnge",{"2":{"1":1}}],["to=shp",{"2":{"1":1}}],["to=nz",{"2":{"1":1}}],["total",{"2":{"1":2}}],["to",{"0":{"14":1,"31":1,"42":1},"2":{"1":317,"2":57,"3":1,"4":5,"5":1,"6":1,"8":6,"9":2,"11":1,"14":2,"15":2,"17":1,"18":3,"20":2,"23":4,"24":4,"26":5,"27":9,"28":5,"31":5,"32":1,"34":1,"36":8,"37":1,"38":4,"40":4,"42":1,"43":1,"46":5}}],["things",{"2":{"2":1}}],["third",{"2":{"1":2,"2":1,"36":1,"40":1}}],["this",{"2":{"1":63,"2":9,"4":1,"8":1,"20":2,"26":2,"27":1,"33":1,"34":2,"36":4,"38":1,"40":1,"43":1}}],["three",{"2":{"27":1}}],["thread",{"2":{"1":4}}],["threadsafe=true",{"2":{"1":1}}],["threadsafe",{"2":{"1":7}}],["threading",{"2":{"1":6}}],["threaded=false",{"2":{"1":1}}],["threaded",{"2":{"1":20}}],["through",{"2":{"1":1,"2":1,"28":1}}],["than",{"2":{"1":7,"14":2,"32":1,"40":1}}],["that",{"0":{"28":1,"29":1},"2":{"1":63,"2":9,"5":1,"8":2,"11":1,"14":1,"15":1,"20":1,"27":7,"29":1,"34":1,"36":1,"40":1,"46":1}}],["then",{"2":{"1":2,"2":1,"3":1,"6":1,"18":1,"20":1,"27":2,"36":1,"40":1,"43":1,"45":2}}],["theme",{"0":{"35":1},"1":{"36":1,"37":1},"2":{"34":3,"35":1,"36":4,"37":2}}],["theming",{"2":{"34":1}}],["themselves",{"2":{"2":1}}],["them",{"2":{"1":5,"2":1,"18":1,"23":1,"27":2,"46":1}}],["there",{"2":{"1":6,"2":1,"27":3,"46":1}}],["these",{"2":{"1":13,"2":2,"12":1,"13":1,"23":1,"29":1,"36":1,"46":2}}],["their",{"2":{"1":1,"45":1}}],["they",{"2":{"1":6,"2":1,"10":2,"14":2,"23":1,"27":2}}],["the",{"0":{"3":1,"20":1,"21":1,"28":1,"44":1},"1":{"45":1,"46":1},"2":{"1":496,"2":114,"3":2,"4":4,"5":2,"6":3,"8":4,"11":3,"12":2,"13":2,"14":1,"15":4,"17":1,"20":2,"22":1,"23":4,"24":13,"26":2,"27":14,"28":4,"31":2,"32":1,"34":1,"36":42,"37":2,"38":7,"40":10,"42":3,"43":2,"45":2,"46":6}}],["flipaxis",{"2":{"37":3}}],["fletcher32",{"2":{"2":2}}],["flexible",{"2":{"1":1}}],["flag",{"2":{"1":1}}],["flags",{"2":{"1":4}}],["float",{"2":{"1":2}}],["floating",{"2":{"1":5}}],["float32",{"2":{"1":5,"3":2,"4":1,"6":1,"7":1,"8":2,"18":4,"33":1,"36":1,"40":2}}],["float64",{"2":{"1":8,"3":7,"4":4,"6":4,"7":4,"8":8,"16":2,"17":2,"18":4,"20":1,"22":3,"23":1,"33":4,"37":4,"40":4}}],["framerate",{"2":{"36":1}}],["fraction",{"2":{"1":2}}],["from",{"0":{"21":1},"2":{"1":67,"2":14,"3":1,"8":1,"11":2,"12":1,"23":1,"24":1,"26":1,"30":1,"31":1,"36":1,"40":1,"45":1,"46":1}}],["features",{"2":{"1":2}}],["feature",{"2":{"1":24}}],["f",{"2":{"1":12,"2":3,"24":1}}],["fully",{"2":{"38":1}}],["functionality",{"2":{"26":2}}],["function",{"2":{"1":32,"2":1,"3":1,"4":1,"24":2,"27":1,"28":1,"32":1,"36":1,"38":3,"46":2}}],["functions",{"0":{"1":1,"2":1},"2":{"1":10,"38":1,"40":1}}],["future",{"2":{"1":21}}],["fast",{"2":{"10":1}}],["fastest",{"2":{"1":1}}],["faster",{"2":{"1":9}}],["fall",{"2":{"40":1}}],["falls",{"2":{"24":1}}],["fallback",{"2":{"2":2,"42":1}}],["falling",{"2":{"1":1}}],["false",{"2":{"1":24,"2":11,"37":1}}],["fail",{"2":{"1":1}}],["factor",{"2":{"1":4}}],["facilitate",{"2":{"1":1}}],["following",{"2":{"20":1}}],["focus",{"2":{"15":1}}],["fo",{"2":{"1":1}}],["found",{"2":{"1":2,"2":2}}],["forward",{"2":{"38":1}}],["forwardordered",{"2":{"1":4,"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"20":3,"21":1,"22":7,"23":2,"33":1,"37":1,"40":6}}],["foreach",{"2":{"18":1}}],["form",{"2":{"1":1}}],["formats",{"0":{"14":1},"2":{"14":3}}],["format",{"2":{"1":3,"13":1}}],["forced",{"2":{"2":1}}],["force",{"2":{"1":10,"2":15}}],["for",{"2":{"1":138,"2":25,"4":1,"9":1,"11":1,"13":2,"14":2,"15":3,"17":1,"23":2,"26":3,"27":3,"28":3,"29":1,"30":1,"31":1,"32":1,"34":1,"36":7,"37":4,"38":4,"42":1,"46":3}}],["figure",{"2":{"37":3}}],["fig",{"2":{"33":4,"36":2,"37":10}}],["fixing",{"2":{"27":1}}],["fixed",{"2":{"27":1}}],["fix",{"2":{"27":3}}],["fix2",{"2":{"1":9}}],["finally",{"2":{"26":1}}],["find",{"2":{"24":1,"27":1}}],["finished",{"2":{"26":1}}],["finish",{"2":{"2":1}}],["field",{"2":{"1":1,"8":1}}],["fields",{"2":{"1":6,"5":1}}],["filter",{"2":{"2":2,"24":1}}],["filled",{"2":{"38":1,"40":1}}],["fillvalue",{"2":{"2":3,"40":2}}],["fillalpha=0",{"2":{"1":2,"46":1}}],["fill=1",{"2":{"1":2}}],["fill",{"2":{"1":12}}],["fills",{"2":{"1":2}}],["filepaths",{"2":{"1":1}}],["filepath",{"2":{"1":6,"2":6,"3":2,"4":1,"6":1,"7":1,"8":2,"33":1}}],["file",{"0":{"14":1},"2":{"1":45,"2":23,"4":1,"5":1,"11":2,"14":1,"27":7,"28":1,"31":1,"40":2,"46":3}}],["files",{"2":{"1":18,"2":7,"5":1,"10":1,"11":3,"12":2,"14":1,"20":1,"26":1,"27":1,"38":1,"43":1}}],["filestack",{"2":{"0":1,"2":2}}],["filenames",{"2":{"1":5}}],["filename",{"2":{"1":34,"2":20,"4":1,"11":2,"12":2,"13":2,"14":1,"40":2}}],["filearray",{"2":{"0":1,"1":2,"2":3}}],["fit",{"2":{"1":1}}],["first",{"2":{"1":22,"11":1,"13":1,"27":1,"40":3,"43":1,"46":4}}],["sweden",{"2":{"45":4,"46":5}}],["swapping",{"2":{"1":1}}],["squished",{"2":{"34":1}}],["square",{"2":{"1":8}}],["smaller",{"2":{"34":1}}],["smallest",{"2":{"1":2}}],["smapseries",{"2":{"13":1}}],["smap",{"0":{"13":1},"2":{"14":1,"26":1}}],["sciences",{"2":{"15":1}}],["screen",{"2":{"37":1}}],["scr",{"2":{"2":1}}],["scandinavia",{"2":{"46":6}}],["scandinavian",{"2":{"43":1}}],["scatter",{"2":{"18":2}}],["scarborough",{"2":{"1":1}}],["scale^2",{"2":{"1":2}}],["scale",{"2":{"1":27,"3":2,"4":1,"6":1,"7":1,"8":2,"33":1}}],["snap",{"2":{"1":1,"28":1}}],["skewed",{"2":{"1":1}}],["skipping",{"2":{"2":1}}],["skipped",{"2":{"1":2}}],["skip",{"2":{"1":1}}],["skipmissing=true",{"2":{"1":1}}],["skipmissingval=false",{"2":{"1":1}}],["skipmissingval=true",{"2":{"1":1}}],["skipmissingval",{"2":{"1":2}}],["skipmissing",{"2":{"1":2,"2":1}}],["slow",{"2":{"1":1}}],["slicing",{"2":{"1":1}}],["slices",{"2":{"1":3}}],["sliced",{"2":{"1":5,"40":1}}],["slice",{"2":{"0":1,"1":6,"22":1}}],["src=",{"2":{"36":1}}],["src",{"2":{"1":10,"2":4}}],["s",{"2":{"1":11,"2":7,"8":1,"13":1,"24":2,"27":1}}],["system",{"2":{"1":10,"32":1}}],["symbols",{"2":{"2":1,"36":1}}],["symbol",{"2":{"1":32,"2":6}}],["syntax",{"2":{"1":2,"15":1,"22":1,"46":1}}],["safe",{"2":{"1":4,"2":1}}],["sa",{"2":{"1":6}}],["saved",{"2":{"2":2}}],["savefig",{"2":{"1":24}}],["save",{"2":{"1":3,"2":2,"37":1,"40":1,"46":1}}],["sample",{"2":{"1":4}}],["sampled",{"2":{"1":6,"20":3,"21":1,"22":7,"23":2,"40":2}}],["sampling=intervals",{"2":{"1":4}}],["sampling=autosampling",{"2":{"1":2}}],["sampling",{"2":{"1":2}}],["same",{"2":{"1":11,"5":1,"11":1,"27":1,"28":1,"36":3,"46":1}}],["sure",{"2":{"27":2,"38":1}}],["surface",{"2":{"2":1,"32":2,"33":1,"36":1,"38":2,"40":4,"42":1}}],["subtle",{"2":{"27":2}}],["subplot=i",{"2":{"18":1,"46":1}}],["subplots",{"2":{"18":1,"46":1}}],["subarray",{"2":{"16":1}}],["substrin",{"2":{"1":1}}],["subsetting",{"0":{"24":1}}],["subset",{"2":{"1":1,"18":1,"23":1,"24":1}}],["subdivision",{"2":{"1":2}}],["summed",{"2":{"1":2}}],["sum",{"2":{"1":23}}],["suffix",{"2":{"1":19,"2":2}}],["such",{"2":{"1":11,"2":5,"12":1,"29":1}}],["supports",{"2":{"38":1}}],["supported",{"2":{"38":1}}],["support",{"2":{"36":1}}],["supplied",{"2":{"1":1}}],["supertype",{"2":{"1":3,"2":1}}],["sosstsst",{"2":{"40":2}}],["soil",{"2":{"13":2}}],["software",{"2":{"2":2,"40":1}}],["sovereign",{"2":{"1":1}}],["south",{"2":{"1":1,"18":1}}],["sources",{"0":{"9":1,"31":1},"1":{"10":1,"11":1,"12":1,"13":1,"14":1,"15":1},"2":{"1":2,"15":2,"26":1}}],["source",{"2":{"1":58,"2":27,"36":1}}],["so",{"2":{"1":11,"2":1,"8":1,"15":1,"20":1,"26":1,"27":4,"33":1,"40":1,"42":1}}],["somewhat",{"2":{"32":1}}],["something",{"2":{"20":1}}],["somelayer",{"2":{"1":2}}],["some",{"2":{"1":16,"2":1,"11":1,"14":2,"27":2,"34":1,"45":1}}],["side",{"2":{"2":1,"36":1}}],["sides",{"2":{"1":1}}],["since",{"2":{"1":1,"32":1,"38":1}}],["sinc",{"2":{"1":1}}],["singleton",{"2":{"2":1,"36":1}}],["single",{"2":{"1":37,"2":3,"28":1,"43":1,"46":2}}],["silently",{"2":{"1":1}}],["size=",{"2":{"37":1,"41":1}}],["sizes",{"2":{"2":1,"28":2}}],["size",{"2":{"1":33,"2":10,"18":4,"28":1,"37":4}}],["sized",{"2":{"1":1}}],["simple",{"0":{"38":1,"39":1},"2":{"1":5}}],["simply",{"2":{"1":3,"40":1}}],["similarly",{"2":{"28":1,"38":1}}],["similar",{"2":{"1":1,"20":1,"38":1}}],["still",{"2":{"11":1,"40":1}}],["store",{"2":{"14":1}}],["stored",{"2":{"1":1,"2":4}}],["stores",{"2":{"1":1}}],["steps",{"2":{"1":1,"27":1}}],["stem",{"2":{"1":1}}],["st",{"2":{"1":16,"37":2}}],["stats",{"2":{"1":2}}],["statistics",{"2":{"1":9,"3":1,"30":1,"40":1}}],["stage",{"2":{"1":1}}],["start",{"0":{"19":1},"1":{"20":1,"21":1,"22":1,"23":1,"24":1},"2":{"1":12,"3":4,"4":2,"6":2,"7":2,"8":3,"18":2,"33":2,"37":2}}],["stack",{"2":{"1":33,"2":7,"4":2,"27":1,"28":2,"34":2,"36":4,"46":1}}],["stacks",{"2":{"1":8}}],["standardises",{"2":{"15":1}}],["standard",{"2":{"1":1,"29":1,"40":2}}],["strings",{"2":{"1":1,"2":1,"36":1}}],["string",{"2":{"1":23,"2":9,"3":2,"4":1,"6":1,"7":1,"8":2,"16":2,"33":1,"37":1,"40":2}}],["structures",{"2":{"1":1}}],["sp",{"2":{"46":1}}],["spheroid",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["sphere",{"2":{"1":1}}],["spratly",{"2":{"1":1}}],["spring",{"2":{"1":2}}],["spread",{"2":{"1":1}}],["speed",{"2":{"1":1}}],["speedups",{"2":{"1":5}}],["special",{"2":{"1":2}}],["species",{"2":{"1":4}}],["specify",{"2":{"1":2,"2":5,"8":2,"15":1,"23":1}}],["specifying",{"2":{"1":4,"2":3}}],["specific",{"2":{"2":7,"8":1,"26":1,"28":2}}],["specifically",{"2":{"1":1}}],["specifies",{"2":{"1":2,"38":1}}],["specified",{"2":{"1":14,"5":1}}],["spline",{"2":{"1":1}}],["split",{"2":{"1":2}}],["splat",{"2":{"1":1}}],["splatted",{"2":{"1":2}}],["space",{"2":{"1":1,"24":1,"34":1}}],["spans",{"2":{"1":1,"23":1}}],["span=regular",{"2":{"1":2}}],["span=autospan",{"2":{"1":2}}],["span",{"2":{"1":2}}],["spatial",{"2":{"1":5,"14":1,"20":2,"23":1,"42":1}}],["shrink",{"2":{"28":1}}],["shuffle",{"2":{"2":4}}],["shp",{"2":{"1":15,"44":2}}],["shapes",{"2":{"1":6,"45":6}}],["shapefile",{"0":{"44":1,"45":1},"1":{"45":1,"46":1},"2":{"1":31,"43":1,"44":5,"45":2}}],["shape=",{"2":{"1":1}}],["shape",{"2":{"1":9,"43":1,"46":1}}],["sharing",{"2":{"1":1}}],["shared",{"2":{"1":4}}],["share",{"2":{"1":2,"27":1}}],["shoudle",{"2":{"1":1}}],["should",{"2":{"1":15,"2":2,"36":3}}],["shortcuts",{"2":{"1":2}}],["show",{"2":{"1":10,"38":1}}],["shown",{"2":{"1":1,"38":1}}],["sea",{"2":{"40":4}}],["search",{"2":{"1":1,"16":1}}],["second",{"2":{"26":1}}],["seconds",{"2":{"26":1}}],["se",{"2":{"18":3}}],["separated",{"2":{"1":1,"2":1}}],["separately",{"2":{"1":3}}],["separator",{"2":{"1":3}}],["seem",{"2":{"34":1}}],["seems",{"2":{"1":1}}],["see",{"2":{"1":3,"14":1,"15":1,"23":1}}],["serranilla",{"2":{"1":1}}],["ser",{"2":{"1":2}}],["series",{"2":{"1":19,"2":2,"34":1}}],["sense",{"2":{"1":1}}],["selecting",{"2":{"22":1}}],["selects",{"2":{"1":6}}],["select",{"0":{"22":1,"23":1},"2":{"1":12}}],["selectors",{"2":{"1":1,"24":3}}],["selector",{"2":{"1":10,"24":1}}],["sets",{"2":{"2":1,"36":1}}],["setting",{"2":{"2":1}}],["set",{"0":{"8":1},"2":{"1":14,"2":10,"8":6,"34":1,"35":1,"36":8,"38":1}}],["setmappedcrs",{"2":{"0":1,"1":2,"8":1}}],["setcrs",{"2":{"0":1,"1":2,"8":1}}],["rgba",{"2":{"36":1}}],["rs",{"2":{"16":1,"18":1,"24":1}}],["right",{"2":{"2":2,"27":1,"36":2}}],["rings",{"2":{"1":1}}],["r",{"2":{"1":3,"2":2,"10":1,"17":4}}],["rms",{"2":{"1":1}}],["root",{"2":{"1":1}}],["rotated",{"2":{"1":1}}],["roughly",{"2":{"1":3,"37":1}}],["rowgap",{"2":{"37":1}}],["rows",{"2":{"1":3,"16":1}}],["row",{"2":{"1":3}}],["rnge",{"2":{"1":3}}],["random",{"2":{"20":1,"42":1}}],["rand",{"2":{"20":1}}],["range",{"2":{"1":13,"37":3,"46":1}}],["ras",{"2":{"20":1,"21":2}}],["rasterisation",{"2":{"1":2}}],["rasterized",{"2":{"1":2}}],["rasterize",{"2":{"0":2,"1":10,"30":2}}],["rasterdatasources",{"0":{"15":1},"2":{"1":21,"3":1,"15":4,"16":1,"24":1,"26":2,"33":1,"37":1,"38":1,"39":1,"43":1,"45":2}}],["rasterdiskarray",{"2":{"0":1,"2":2}}],["raster",{"2":{"0":1,"1":108,"2":32,"3":6,"4":6,"6":3,"7":2,"8":4,"9":2,"11":1,"12":1,"13":1,"15":4,"18":1,"20":3,"22":6,"23":2,"24":1,"26":1,"27":2,"29":1,"32":1,"33":4,"36":11,"37":1,"38":4,"39":1,"40":5,"45":1,"46":2}}],["rasterstacks",{"2":{"1":2,"34":1,"38":1,"46":1}}],["rasterstack",{"2":{"0":1,"1":56,"2":7,"4":1,"9":1,"11":1,"12":1,"13":1,"15":2,"18":2,"34":1,"36":5,"37":3,"38":1,"40":1,"45":1}}],["rasterseries",{"2":{"0":1,"1":22,"9":1,"15":2,"46":1}}],["rasters",{"0":{"33":1,"34":1},"2":{"0":56,"1":106,"2":22,"3":3,"4":1,"6":1,"7":1,"8":3,"9":1,"13":1,"15":2,"16":3,"20":5,"23":2,"24":2,"25":1,"26":5,"27":3,"28":1,"33":2,"34":8,"36":6,"37":2,"38":5,"39":1,"40":3,"42":1,"43":1,"45":2,"46":1}}],["ratio",{"2":{"2":2}}],["rather",{"2":{"1":1}}],["raw",{"2":{"1":4,"44":1}}],["race",{"2":{"1":5}}],["runs",{"2":{"27":1}}],["running",{"2":{"1":4,"27":1}}],["run",{"2":{"1":8}}],["rplot",{"2":{"0":2,"2":2,"34":3,"36":6,"38":1}}],["re",{"2":{"38":1}}],["remain",{"2":{"36":2}}],["record",{"2":{"36":1}}],["records",{"2":{"17":1}}],["recipes",{"2":{"38":1,"42":1}}],["recipe",{"2":{"32":1}}],["reverseordered",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["reversing",{"2":{"1":1}}],["reef",{"2":{"1":1}}],["reduced",{"2":{"26":1}}],["reduces",{"2":{"1":1}}],["reduce",{"2":{"1":2,"27":1}}],["reducer",{"2":{"1":9}}],["reducing",{"2":{"1":5}}],["region",{"2":{"1":1,"46":3}}],["regions",{"2":{"1":12}}],["regular",{"2":{"1":6,"2":1,"3":4,"4":2,"6":2,"7":2,"8":4,"18":2,"20":3,"21":1,"22":7,"23":2,"24":1,"29":1,"33":2,"37":2,"40":5}}],["related",{"2":{"13":1}}],["reliable",{"2":{"1":19}}],["relhum",{"2":{"1":2}}],["relhum=",{"2":{"1":1}}],["reason",{"2":{"34":1}}],["reassign",{"2":{"8":1}}],["really",{"2":{"27":1}}],["real",{"2":{"1":18}}],["reading",{"2":{"31":1}}],["reads",{"2":{"24":1}}],["read",{"2":{"1":13,"2":9,"4":1,"11":1,"20":1,"31":4,"46":1}}],["rebuild",{"0":{"6":1},"2":{"1":1,"5":1,"6":3,"8":1}}],["res=3000",{"2":{"38":1}}],["res=0",{"2":{"1":1}}],["reset",{"0":{"35":1},"1":{"36":1,"37":1},"2":{"36":1}}],["resampling",{"2":{"1":17}}],["resamples",{"2":{"1":1}}],["resampled",{"2":{"1":1}}],["resample",{"2":{"0":1,"1":15,"28":2}}],["result",{"2":{"1":5}}],["results",{"2":{"1":6}}],["resulting",{"2":{"1":6}}],["resolution",{"0":{"28":1},"2":{"1":19,"38":3}}],["res",{"2":{"1":21,"38":1}}],["rest",{"2":{"1":1}}],["refer",{"2":{"1":1}}],["reference",{"0":{"1":1,"2":1},"2":{"1":11}}],["refdims",{"2":{"1":5}}],["retrieved",{"2":{"2":2}}],["retrieve",{"2":{"1":3,"2":1}}],["returning",{"2":{"1":2}}],["returned",{"2":{"1":14}}],["returns",{"2":{"1":8,"2":5}}],["return",{"2":{"1":7,"46":1}}],["required",{"2":{"1":24,"2":2,"29":1}}],["reports",{"2":{"27":1}}],["reporting",{"2":{"2":1}}],["reproduced",{"2":{"27":1}}],["reproduce",{"2":{"27":1}}],["reprojecting",{"2":{"1":1}}],["reproject",{"2":{"0":2,"1":6}}],["represent",{"2":{"1":1,"23":2}}],["representing",{"2":{"1":1}}],["reprsenting",{"2":{"1":1}}],["replaced",{"2":{"1":1,"2":1}}],["replacement",{"2":{"1":6}}],["replace",{"0":{"7":1},"2":{"0":1,"1":17,"6":2,"29":3,"31":1}}],["px",{"2":{"39":1}}],["put",{"2":{"26":1,"27":1}}],["phylum",{"2":{"16":1}}],["p",{"2":{"1":4,"18":3,"46":8}}],["pygmy",{"2":{"1":1}}],["per",{"2":{"39":1}}],["peru",{"2":{"1":1}}],["performance",{"2":{"1":4}}],["permission",{"2":{"1":1}}],["permissions",{"2":{"1":1}}],["plt",{"2":{"37":5}}],["platform",{"2":{"27":1}}],["places",{"2":{"27":1}}],["placed",{"2":{"2":1,"36":1}}],["place",{"2":{"1":6,"27":1}}],["please",{"2":{"1":19}}],["plotted",{"2":{"34":1}}],["plotting",{"0":{"32":1,"36":1,"46":1},"2":{"2":2,"32":1,"36":2,"38":2,"40":1,"42":1}}],["plottype",{"2":{"2":1,"36":1}}],["plot`",{"2":{"1":1}}],["plots",{"0":{"38":1,"46":1},"2":{"1":20,"18":1,"26":1,"32":1,"34":2,"38":4,"40":3,"41":2,"43":1,"46":1}}],["plot",{"0":{"41":2,"43":1},"2":{"1":39,"2":3,"15":1,"18":2,"24":1,"32":1,"33":3,"36":3,"37":1,"38":7,"39":1,"40":8,"42":3,"43":1,"46":9}}],["pixelated",{"2":{"1":1}}],["pixel",{"2":{"1":18,"38":2,"45":1}}],["pixels",{"2":{"1":15}}],["png",{"2":{"1":24,"37":1}}],["principle",{"2":{"8":1}}],["print",{"2":{"1":4,"2":2}}],["primem",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["practically",{"2":{"27":1}}],["practice",{"2":{"1":2,"2":1,"36":1}}],["practise",{"2":{"1":1}}],["predefined",{"2":{"31":1}}],["predictor",{"2":{"18":1}}],["predictors",{"2":{"18":6}}],["previously",{"2":{"26":1}}],["prefer",{"2":{"1":1}}],["prec",{"2":{"1":8,"45":1}}],["pressure",{"2":{"1":1}}],["pressure=",{"2":{"1":1}}],["present",{"2":{"1":2}}],["problem",{"2":{"27":2}}],["problems",{"2":{"1":23,"2":2}}],["providing",{"2":{"14":1}}],["provide",{"2":{"34":1}}],["provides",{"2":{"13":1,"46":1}}],["provided",{"2":{"1":6,"38":1}}],["prod",{"2":{"1":1}}],["produces",{"2":{"27":1}}],["produce",{"2":{"1":2,"40":1}}],["productive",{"2":{"1":5}}],["properties",{"0":{"5":1},"1":{"6":1,"7":1,"8":1},"2":{"1":3,"8":2,"23":1}}],["progress=false",{"2":{"1":4}}],["progress",{"2":{"1":22}}],["projections",{"2":{"1":4,"23":1}}],["projection",{"2":{"1":7,"23":2,"28":1}}],["projected",{"2":{"0":1,"1":16,"2":1,"3":4,"4":2,"6":2,"7":2,"8":4,"18":2,"23":1,"33":2,"37":2}}],["pane",{"2":{"40":1}}],["paste",{"2":{"27":1}}],["passive",{"2":{"13":1}}],["passing",{"2":{"1":3}}],["passed",{"2":{"1":24,"2":12,"24":2}}],["pass",{"2":{"1":3,"2":1,"32":1,"34":1}}],["packages",{"0":{"26":1},"2":{"26":4}}],["package",{"0":{"20":1},"2":{"26":2}}],["pad=10",{"2":{"45":1}}],["padding",{"2":{"1":1,"2":2,"36":2}}],["padded",{"2":{"1":1}}],["pad",{"2":{"1":3,"45":1}}],["pair",{"2":{"1":2}}],["pairs",{"2":{"1":16}}],["part",{"2":{"27":1}}],["parvus",{"2":{"1":2,"16":1,"18":2}}],["parent",{"2":{"1":1}}],["parallel",{"2":{"1":5}}],["parse",{"2":{"1":1}}],["parsed",{"2":{"1":1}}],["path",{"2":{"1":7,"2":3}}],["paths",{"2":{"1":6}}],["poly",{"2":{"45":1,"46":2}}],["polygons",{"2":{"1":16,"43":1}}],["polygon",{"0":{"30":1,"43":1},"2":{"1":37,"29":1,"45":1}}],["poor",{"2":{"1":1}}],["potential",{"2":{"1":2,"2":2}}],["pointer",{"2":{"2":1}}],["point",{"0":{"30":1},"2":{"1":27,"17":1}}],["points",{"2":{"0":1,"1":42,"8":4,"17":1,"18":1,"20":3,"21":1,"22":7,"23":2,"30":2}}],["possibly",{"2":{"5":1}}],["possible",{"2":{"1":9,"3":1,"20":1,"26":1,"27":2}}],["possum",{"2":{"1":1}}],["positive",{"2":{"1":2}}],["position",{"2":{"1":1,"2":2,"36":2}}],["mp4",{"2":{"36":2}}],["mmap",{"2":{"10":1}}],["my",{"2":{"1":2}}],["myseries",{"2":{"1":3}}],["millisecond",{"2":{"40":1}}],["minutes",{"2":{"40":2}}],["min",{"2":{"1":3}}],["minimum",{"2":{"1":7,"27":1}}],["minor",{"2":{"1":2}}],["mix",{"2":{"1":1}}],["mixed",{"2":{"1":7}}],["missing=false",{"2":{"1":2}}],["missing",{"0":{"7":1},"2":{"0":1,"1":51,"2":7,"5":1,"6":1,"7":1,"13":2,"16":29,"28":1,"29":2,"40":6,"45":1}}],["missingval=",{"2":{"6":1,"7":1}}],["missingval=uint32",{"2":{"1":1}}],["missingval=missingval",{"2":{"1":2}}],["missingval=0",{"2":{"1":2}}],["missingval",{"2":{"0":1,"1":37,"2":7,"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"29":1,"33":1,"37":1,"40":2}}],["missingmask",{"2":{"0":1,"1":6}}],["mutating",{"2":{"33":1}}],["must",{"2":{"1":17,"36":2}}],["multidimensional",{"2":{"28":1}}],["multi",{"2":{"1":5,"2":1,"13":1,"40":1,"46":1}}],["multiple",{"2":{"1":18,"2":3}}],["much",{"2":{"1":3}}],["med",{"2":{"1":1}}],["median",{"2":{"1":6}}],["merge",{"2":{"1":1}}],["messages",{"2":{"1":2,"2":2}}],["meters",{"2":{"1":6}}],["methoderror",{"2":{"36":1}}],["method",{"2":{"1":45,"2":17,"33":1,"36":1,"46":1}}],["methods",{"0":{"28":1,"29":1,"31":1},"2":{"1":5,"2":1,"28":1,"29":3,"30":1,"31":1,"40":2,"46":3}}],["metadata",{"2":{"1":7,"2":4,"3":4,"4":2,"6":2,"7":2,"8":4,"14":3,"33":2,"40":4}}],["means",{"2":{"1":4,"2":7,"10":1,"26":1}}],["mean",{"0":{"3":1},"2":{"1":15,"2":3,"3":1,"40":6,"41":1,"42":4}}],["memory",{"2":{"1":18,"2":6,"31":2}}],["month",{"2":{"16":1,"20":2,"22":1,"34":1,"36":1,"40":2}}],["month=july",{"2":{"45":1}}],["month=june",{"2":{"15":1}}],["month=jan",{"2":{"1":1}}],["month=6",{"2":{"1":1}}],["month=1",{"2":{"1":11}}],["moisture",{"2":{"13":2}}],["move",{"2":{"2":1,"31":1}}],["mountain",{"2":{"1":1}}],["more",{"2":{"1":5,"8":1,"23":2,"28":1,"40":1}}],["modification",{"2":{"1":1}}],["modifying",{"0":{"5":1},"1":{"6":1,"7":1,"8":1}}],["modify",{"0":{"31":1},"2":{"1":1,"5":1,"8":1,"31":1}}],["model",{"2":{"1":1}}],["mode=",{"2":{"1":2}}],["mode",{"2":{"1":15,"4":1}}],["module",{"2":{"1":1}}],["mos",{"2":{"1":2}}],["most",{"2":{"1":4,"27":1,"29":1}}],["mosaic",{"0":{"43":1},"2":{"0":2,"1":15,"28":1,"43":1,"46":2}}],["mdash",{"2":{"1":49,"2":15,"36":1}}],["margin",{"2":{"45":1}}],["markercolor=",{"2":{"18":1}}],["markershape=",{"2":{"18":1}}],["many",{"2":{"26":1,"27":2}}],["manually",{"2":{"1":17,"2":3,"26":1,"31":1,"38":1}}],["madagascar",{"2":{"24":3}}],["made",{"2":{"1":2}}],["map",{"2":{"4":2}}],["mappedindex",{"2":{"0":1,"1":1}}],["mappedcrs=epsg",{"2":{"1":3}}],["mappedcrs=nothing",{"2":{"1":2}}],["mappedcrs",{"2":{"0":1,"1":20,"38":1,"40":2}}],["mappedbounds",{"2":{"0":1,"1":1}}],["mapped",{"2":{"0":1,"1":16,"23":3,"40":4}}],["making",{"2":{"24":1,"27":1}}],["makie",{"0":{"32":1,"33":1,"34":1,"37":1,"39":1},"2":{"2":13,"15":1,"24":1,"26":2,"32":1,"33":1,"34":2,"36":13,"37":1,"38":3,"39":1}}],["make",{"2":{"1":4,"8":1,"27":1,"43":1}}],["makes",{"2":{"1":1,"34":1}}],["macao",{"2":{"1":1}}],["malaysia",{"2":{"1":1}}],["max",{"2":{"1":1,"38":2}}],["maximum",{"2":{"1":7,"2":2,"38":1}}],["magnitude",{"2":{"1":2}}],["magma",{"2":{"1":2}}],["master",{"2":{"1":4,"44":1}}],["masking",{"0":{"43":1}}],["masks",{"2":{"1":1}}],["masked",{"2":{"1":15,"30":1}}],["mask",{"2":{"0":2,"1":36,"2":1,"29":2,"43":1,"45":5,"46":2}}],["matters",{"2":{"1":2}}],["matter",{"2":{"1":2}}],["matching",{"2":{"1":3,"24":1,"36":1,"38":1}}],["match",{"2":{"1":9}}],["matches",{"2":{"1":1}}],["matrix",{"2":{"1":2}}],["may",{"2":{"1":70,"2":5,"11":2,"14":1,"34":1,"36":1}}],["cftime",{"2":{"40":2}}],["cmor",{"2":{"40":2}}],["cgrads",{"2":{"2":1,"36":1}}],["cyprus",{"2":{"1":1}}],["c",{"2":{"1":2,"2":2}}],["cp",{"2":{"1":1}}],["c=",{"2":{"1":3}}],["csv",{"2":{"1":1,"18":5}}],["cs",{"2":{"1":1}}],["circumstances",{"2":{"1":5}}],["closest",{"2":{"24":1}}],["closed",{"2":{"2":1}}],["click",{"2":{"28":1}}],["clipperton",{"2":{"1":1}}],["clims=",{"2":{"1":4}}],["climate",{"2":{"1":14,"15":1,"26":1,"34":1,"36":2,"45":7,"46":1}}],["classes",{"2":{"1":5}}],["classified",{"2":{"1":3}}],["classify",{"2":{"0":2,"1":10,"29":2}}],["certain",{"2":{"24":1}}],["center",{"2":{"1":20,"40":6}}],["cell",{"2":{"1":5,"40":2}}],["cells",{"2":{"1":4}}],["cellsize",{"2":{"0":1,"1":2}}],["cubicspline",{"2":{"1":1}}],["cubic",{"2":{"1":3}}],["custom",{"2":{"1":4,"13":1}}],["current",{"2":{"1":3,"2":2,"6":1,"37":1}}],["currently",{"2":{"1":6}}],["cultural",{"2":{"1":4,"44":1}}],["cut",{"2":{"1":5,"37":1}}],["cuda",{"2":{"1":1}}],["cuarray",{"2":{"1":1}}],["chordata",{"2":{"16":15}}],["chosen",{"2":{"1":2,"2":3}}],["chunk",{"2":{"2":11}}],["chunks",{"2":{"2":6}}],["chunking",{"2":{"2":1}}],["changing",{"2":{"1":1}}],["changes",{"2":{"1":2}}],["change",{"0":{"28":1,"29":1},"2":{"1":22,"6":1,"8":2,"38":2}}],["chile",{"2":{"1":1}}],["child",{"2":{"1":11,"2":1}}],["china",{"2":{"1":8}}],["checks",{"2":{"2":1}}],["checksum",{"2":{"2":4}}],["check",{"2":{"2":1,"13":1}}],["checked",{"2":{"1":2}}],["checkmemory",{"2":{"2":1}}],["checkmem",{"2":{"0":1,"2":3}}],["creep",{"2":{"27":1}}],["creation",{"2":{"2":2}}],["creating",{"2":{"1":3}}],["creates",{"2":{"1":1}}],["create",{"2":{"1":6}}],["cross",{"2":{"18":1}}],["crop",{"2":{"0":1,"1":13,"28":1,"46":1}}],["crs=epsg",{"2":{"1":4}}],["crs=nothing",{"2":{"1":1}}],["crs",{"2":{"1":57,"3":2,"4":1,"6":1,"7":1,"8":5,"18":1,"33":1,"37":1,"38":1,"40":2}}],["categories",{"2":{"29":1}}],["cairomakie",{"2":{"15":1,"24":2,"33":1,"37":1,"39":3}}],["caveats",{"2":{"14":1}}],["cartier",{"2":{"1":1}}],["cartesianindex",{"2":{"1":1}}],["caused",{"2":{"27":1}}],["cause",{"2":{"1":1}}],["caution",{"2":{"1":5}}],["calculate",{"2":{"1":4,"30":1}}],["calculated",{"2":{"1":8}}],["calling",{"2":{"1":3}}],["called",{"2":{"1":1,"2":2}}],["cased",{"2":{"1":2}}],["case",{"2":{"1":8}}],["cases",{"2":{"1":20}}],["cannot",{"2":{"1":1,"2":3}}],["can",{"2":{"1":67,"2":30,"5":2,"8":3,"10":1,"11":2,"12":3,"13":2,"14":2,"15":1,"20":1,"23":1,"26":1,"27":5,"32":1,"34":2,"36":5,"38":2,"46":2}}],["code",{"2":{"26":1,"27":1}}],["coords",{"2":{"18":2}}],["coordinatetransformations",{"2":{"26":1}}],["coordinate",{"2":{"1":10,"26":1}}],["coordinates",{"0":{"17":1},"2":{"1":11,"20":1,"24":1,"40":1}}],["could",{"2":{"1":1,"40":1,"42":1}}],["counts",{"2":{"17":1}}],["country",{"2":{"1":7,"43":1}}],["countries",{"2":{"1":8,"43":1,"44":1,"46":2}}],["count",{"2":{"1":4}}],["counted",{"2":{"1":2}}],["counter",{"2":{"1":5}}],["correlation",{"2":{"1":1,"37":3}}],["corresponding",{"2":{"1":1}}],["correctly",{"2":{"40":1}}],["correct",{"2":{"1":1}}],["covering",{"2":{"28":1}}],["cover",{"2":{"1":2}}],["covered",{"2":{"1":10}}],["coverage",{"2":{"0":2,"1":15}}],["colgap",{"2":{"37":1}}],["colortypes",{"2":{"36":1}}],["color",{"2":{"2":2,"36":2}}],["colorrange",{"2":{"2":1,"36":1}}],["colormaps",{"2":{"2":1,"36":1}}],["colormap",{"2":{"2":3,"36":3,"37":2}}],["colorbar=",{"2":{"36":1}}],["colorbarlabel",{"2":{"2":1,"36":1}}],["colorbar",{"2":{"2":8,"36":8,"37":5}}],["color=",{"2":{"1":2}}],["collect",{"2":{"1":1,"18":1}}],["collection",{"2":{"1":1}}],["collections",{"2":{"1":3}}],["collapse",{"2":{"1":3}}],["columns",{"2":{"1":19,"16":1}}],["column",{"2":{"1":21}}],["copying",{"2":{"1":1}}],["copy",{"2":{"1":2,"2":1}}],["command",{"2":{"42":1}}],["comments",{"2":{"2":2}}],["common",{"2":{"1":4,"11":1,"15":1,"46":1}}],["commonly",{"2":{"1":1,"29":1}}],["com",{"2":{"1":4,"44":1}}],["compress",{"2":{"2":2}}],["compressed",{"2":{"2":2,"10":1}}],["compression",{"2":{"2":8}}],["compute",{"2":{"1":1}}],["computes",{"2":{"1":1}}],["compatable",{"2":{"1":1}}],["compatible",{"2":{"1":22}}],["comparison",{"2":{"1":6}}],["complicated",{"2":{"1":5,"27":1}}],["completely",{"2":{"1":7,"2":1,"14":1}}],["complete",{"2":{"1":1,"27":1}}],["combining",{"2":{"1":3}}],["combination",{"2":{"1":4}}],["combined",{"2":{"1":7}}],["combine",{"2":{"0":1,"1":9,"46":1}}],["conversion",{"2":{"14":2}}],["converting",{"2":{"1":1}}],["converted",{"2":{"1":7,"11":1,"38":1}}],["convert",{"2":{"1":4,"18":1}}],["convertlookup",{"2":{"0":1,"1":1}}],["const",{"2":{"16":1,"24":1}}],["constructor",{"2":{"1":3}}],["considering",{"2":{"1":1}}],["concatenate",{"2":{"1":2}}],["concrete",{"2":{"1":2}}],["conditions",{"2":{"1":5}}],["contourf",{"2":{"2":1,"32":1,"33":1,"36":2,"38":2,"41":1}}],["contour",{"0":{"41":1},"2":{"2":1,"32":1,"33":1,"36":1,"38":2,"40":1}}],["controls",{"2":{"36":1}}],["controls=",{"2":{"36":1}}],["contributing",{"2":{"1":8}}],["contribute",{"2":{"1":4}}],["contrast",{"2":{"1":3,"37":3}}],["continents",{"2":{"1":2}}],["contained",{"2":{"2":1}}],["contains",{"2":{"1":7,"23":1,"24":1}}],["contain",{"2":{"1":4}}],["containing",{"2":{"1":13,"2":2}}],["contents",{"2":{"1":2}}],["break",{"2":{"34":1}}],["breaks",{"2":{"27":1}}],["broken",{"2":{"33":1}}],["broadcast",{"2":{"2":1,"3":2,"4":2}}],["broadcasting",{"0":{"4":1},"2":{"1":1}}],["black",{"2":{"18":1}}],["block",{"2":{"2":2}}],["blocks",{"2":{"1":2}}],["blocking",{"2":{"1":4}}],["b",{"2":{"1":13,"6":1,"22":2,"24":2}}],["bilinear",{"2":{"1":2}}],["bio",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"33":1}}],["bio7",{"2":{"1":6,"18":1}}],["bio5",{"2":{"1":6,"3":2,"4":1,"6":1,"7":1,"8":2,"33":1}}],["bio3",{"2":{"1":6,"18":1}}],["bio12",{"2":{"1":6,"18":1}}],["bio1",{"2":{"1":6,"18":1}}],["bioclim",{"2":{"1":2,"3":3,"4":1,"6":2,"7":1,"8":2,"18":3,"24":1,"33":2,"38":1,"39":1}}],["bitarray",{"2":{"1":5}}],["bug",{"2":{"27":5}}],["bugs",{"0":{"27":1},"2":{"27":2}}],["built",{"2":{"1":2,"26":1}}],["build",{"2":{"1":24,"13":1}}],["burramys",{"2":{"1":1,"16":1,"18":2}}],["burramis",{"2":{"1":1}}],["but",{"2":{"1":13,"2":3,"5":1,"10":1,"12":1,"23":1,"26":1,"27":3,"36":2}}],["by",{"0":{"20":1,"22":1,"23":1},"2":{"1":71,"2":15,"8":1,"22":1,"24":1,"28":1,"29":1,"30":1,"34":1,"38":1}}],["box",{"2":{"27":1,"36":1}}],["bottom",{"2":{"2":1,"27":1,"36":1}}],["both",{"2":{"1":2}}],["bolivia",{"2":{"1":1}}],["border",{"2":{"1":8,"43":1,"45":7,"46":9}}],["borders",{"2":{"1":8,"46":11}}],["boundaries",{"2":{"1":1}}],["boundary=",{"2":{"1":2}}],["boundary",{"2":{"1":8,"43":1,"44":1}}],["bounds",{"2":{"1":9}}],["bool",{"2":{"1":5,"2":1}}],["boolmask",{"2":{"0":1,"1":6}}],["batlow",{"2":{"37":1}}],["basic",{"2":{"2":1}}],["based",{"2":{"1":2,"2":2,"4":1,"46":1}}],["base",{"2":{"1":2,"2":11}}],["bajo",{"2":{"1":1}}],["backgroundcolor=",{"2":{"37":2}}],["back",{"2":{"1":1,"40":1}}],["backends",{"2":{"9":1}}],["backend",{"2":{"1":1,"2":10,"9":1,"26":2}}],["backed",{"2":{"1":8}}],["bank",{"2":{"1":2}}],["bang",{"2":{"1":4}}],["bands",{"2":{"1":1,"23":1}}],["band",{"0":{"18":1},"2":{"0":1,"1":10,"2":1,"10":1,"12":1,"18":1,"23":1,"36":1}}],["bar",{"2":{"1":9}}],["becomes",{"2":{"8":1}}],["because",{"2":{"1":5,"20":1,"27":2}}],["best",{"2":{"2":1,"12":1,"36":1}}],["besides",{"2":{"1":2}}],["being",{"2":{"2":3,"46":1}}],["beyond",{"2":{"1":1}}],["bets",{"2":{"2":1,"36":1}}],["better",{"2":{"1":1}}],["between",{"2":{"1":9,"2":1,"24":3,"36":1}}],["before",{"2":{"1":14,"2":1}}],["behaviours",{"2":{"1":2}}],["been",{"2":{"1":2,"14":1}}],["below",{"2":{"1":1,"34":1}}],["be",{"2":{"1":185,"2":50,"3":1,"4":1,"5":1,"8":2,"10":1,"11":1,"12":2,"13":2,"14":3,"15":1,"20":1,"23":1,"27":2,"36":7,"38":2}}],["api",{"2":{"38":1}}],["appropriately",{"2":{"34":1}}],["approximately",{"2":{"1":2}}],["approximates",{"2":{"1":1}}],["approximate",{"2":{"1":1}}],["appreciated",{"2":{"27":1}}],["appears",{"2":{"1":1}}],["appended",{"2":{"2":3}}],["append",{"2":{"1":8,"2":3}}],["apparent",{"2":{"1":1}}],["applications",{"2":{"29":1}}],["applicable",{"2":{"2":1,"46":1}}],["applies",{"2":{"4":1}}],["applied",{"2":{"1":13,"2":1,"3":1,"4":1}}],["apply",{"2":{"1":1}}],["amounts",{"2":{"28":1}}],["amount",{"2":{"2":1,"36":1}}],["americas",{"2":{"40":1}}],["america",{"2":{"1":1}}],["average",{"2":{"1":3}}],["available",{"2":{"1":3,"3":1,"23":1,"24":1}}],["affected",{"2":{"8":1}}],["africa",{"2":{"1":8}}],["after",{"2":{"1":13,"2":1}}],["autoplay",{"2":{"36":1}}],["autoplay=",{"2":{"36":1}}],["automatic",{"2":{"2":9,"36":9}}],["automatically",{"2":{"1":8,"2":4,"9":1}}],["authentication",{"2":{"27":1}}],["authority",{"2":{"3":10,"4":5,"6":5,"7":5,"8":10,"18":5,"33":5,"37":5}}],["ausbounds",{"2":{"1":2,"37":2}}],["aus",{"2":{"1":9,"18":3,"37":3}}],["australian",{"2":{"1":1}}],["australia",{"2":{"1":3,"18":1,"37":2}}],["awap",{"2":{"1":13}}],["admin",{"2":{"1":5,"44":1}}],["adding",{"2":{"3":1}}],["additional",{"2":{"1":3,"23":1,"26":2,"29":1}}],["additionally",{"2":{"1":5}}],["addition",{"2":{"1":2}}],["add",{"2":{"1":1,"20":1,"25":1,"27":1,"46":1}}],["added",{"2":{"1":2,"46":1}}],["again",{"2":{"1":1,"2":1,"46":1}}],["ag",{"2":{"1":2}}],["aggregation",{"2":{"1":8}}],["aggregated",{"2":{"1":8}}],["aggregate",{"2":{"0":2,"1":12,"28":2}}],["axs",{"2":{"37":5}}],["ax",{"2":{"33":3}}],["axis3",{"2":{"2":1,"36":1}}],["axistype",{"2":{"2":1,"36":1}}],["axis",{"2":{"1":6,"2":8,"3":4,"4":2,"6":2,"7":2,"8":5,"18":2,"24":1,"28":1,"33":3,"34":1,"36":8,"37":3,"38":1}}],["axes",{"2":{"1":4,"38":2,"40":1}}],["across",{"2":{"28":1}}],["activate",{"2":{"24":1,"39":1}}],["activated",{"2":{"2":2}}],["active",{"2":{"13":1}}],["actually",{"2":{"2":2,"6":1,"27":1}}],["actual",{"2":{"1":2}}],["accurate",{"2":{"1":1}}],["accept",{"2":{"38":1}}],["accepts",{"2":{"1":2,"2":2,"36":1}}],["accepted",{"2":{"1":2,"33":1}}],["accessible",{"2":{"27":1}}],["access",{"2":{"1":3,"12":1}}],["atol",{"2":{"1":10}}],["attributes",{"2":{"34":1,"37":1}}],["attempt",{"2":{"1":2}}],["attempting",{"2":{"1":1}}],["attached",{"2":{"1":7}}],["at",{"2":{"1":8,"2":5,"24":2,"27":1,"34":1,"40":2,"42":1}}],["altered",{"2":{"2":1,"40":2}}],["although",{"2":{"1":1}}],["aligned",{"2":{"1":1}}],["algorithm",{"2":{"1":4}}],["already",{"2":{"1":1,"2":6}}],["along",{"2":{"1":7,"29":1}}],["alphabetically",{"2":{"1":1}}],["also",{"2":{"1":24,"2":3,"3":1,"8":2,"11":1,"12":1,"22":1,"27":1,"46":1}}],["allow",{"2":{"1":1,"38":1}}],["allows",{"2":{"1":1}}],["allocating",{"2":{"1":1}}],["alllayers",{"2":{"1":3}}],["alllayers=true",{"2":{"1":1}}],["all",{"2":{"1":73,"2":4,"11":1,"12":1,"14":1,"18":1,"24":2,"27":1,"29":1,"46":2}}],["always",{"2":{"1":4,"2":1,"10":1,"13":1,"24":1,"26":1,"27":2}}],["around",{"2":{"40":1}}],["arbitrary",{"2":{"11":1,"23":1}}],["architectures",{"2":{"2":1}}],["archive",{"2":{"2":2}}],["archgdal",{"2":{"1":22,"2":2,"12":1,"26":2,"33":1,"38":1,"39":1,"43":1}}],["args",{"2":{"38":1}}],["argentina",{"2":{"1":4}}],["argument",{"2":{"1":3,"2":2}}],["arguments",{"2":{"1":27,"2":2}}],["area",{"2":{"1":10}}],["areas",{"2":{"1":17,"28":1}}],["are",{"2":{"1":90,"2":8,"8":1,"10":3,"11":3,"12":1,"13":1,"23":1,"24":3,"27":6,"29":1,"34":3,"36":3,"38":1,"40":1,"42":1,"46":1}}],["arrays",{"2":{"1":18,"2":2,"5":1,"23":2,"28":1,"46":1}}],["array",{"0":{"21":1},"2":{"1":49,"2":1,"3":1,"4":2,"16":1,"24":2,"28":1,"29":1,"38":1}}],["aspect",{"2":{"33":1,"34":1}}],["associated",{"2":{"23":1}}],["assign",{"2":{"1":2}}],["assigned",{"2":{"1":6}}],["assigns",{"2":{"1":1}}],["asc",{"2":{"12":1}}],["ashmore",{"2":{"1":1}}],["as",{"2":{"1":64,"2":10,"6":1,"11":2,"12":3,"13":2,"14":1,"15":1,"17":1,"24":1,"29":2,"34":2,"36":1,"40":1,"42":1}}],["a",{"0":{"41":1},"2":{"1":427,"2":100,"3":4,"4":4,"5":2,"6":2,"7":1,"8":5,"9":1,"13":1,"14":1,"15":4,"17":3,"18":2,"22":2,"24":7,"26":2,"27":5,"28":3,"29":2,"31":1,"32":2,"33":9,"34":4,"36":11,"38":6,"39":2,"40":5,"42":3,"43":1,"45":1,"46":6}}],["absolute",{"2":{"1":2}}],["abstracrasterseries",{"2":{"1":2}}],["abstrackrasterstack",{"2":{"1":1}}],["abstractdiskarray",{"2":{"2":3}}],["abstractdimensionalarray",{"2":{"1":1}}],["abstractdimarray",{"2":{"1":4}}],["abstractvector",{"2":{"1":3}}],["abstractgeometry",{"2":{"1":15}}],["abstractstack",{"2":{"1":2}}],["abstractstring",{"2":{"1":3,"2":6}}],["abstractsampled",{"2":{"1":2,"2":1}}],["abstractarray",{"2":{"1":5,"2":1}}],["abstract",{"2":{"1":3,"2":1}}],["abstractrasters",{"2":{"1":5}}],["abstractrasterstack",{"2":{"0":1,"1":12,"2":5}}],["abstractrasterseries",{"2":{"0":1,"1":8,"2":5}}],["abstractraster",{"2":{"0":1,"1":27,"2":9}}],["abstractprojected",{"2":{"0":1,"1":4,"2":1}}],["about",{"2":{"1":4,"2":2}}],["animations",{"0":{"36":1}}],["animalia",{"2":{"16":15}}],["answer",{"2":{"1":2}}],["anything",{"2":{"8":1}}],["any",{"2":{"1":20,"2":6,"3":3,"4":1,"6":1,"7":1,"8":3,"27":1,"28":1,"32":1,"33":1,"34":2,"36":1,"38":1,"40":2}}],["another",{"2":{"1":9,"23":1,"28":3}}],["and",{"0":{"27":1,"30":1,"31":1,"43":1},"2":{"1":133,"2":18,"3":1,"8":1,"9":1,"10":2,"11":1,"12":1,"13":2,"15":5,"16":1,"18":3,"20":2,"22":1,"23":7,"24":3,"26":5,"27":7,"28":3,"29":1,"30":1,"34":3,"36":2,"38":3,"40":5,"45":1,"46":9}}],["an",{"0":{"24":1,"28":1,"29":1},"2":{"1":69,"2":9,"3":1,"5":2,"8":2,"24":3,"27":2,"29":2,"30":1,"34":1,"36":1,"38":1,"46":1}}]],"serializationVersion":2}';export{e as default}; diff --git a/dev/assets/chunks/@localSearchIndexroot.V1smaAuW.js b/dev/assets/chunks/@localSearchIndexroot.V1smaAuW.js deleted file mode 100644 index d72ab711..00000000 --- a/dev/assets/chunks/@localSearchIndexroot.V1smaAuW.js +++ /dev/null @@ -1 +0,0 @@ -const e='{"documentCount":47,"nextId":47,"documentIds":{"0":"/Rasters.jl/dev/api#index","1":"/Rasters.jl/dev/api#Reference-Exported-functions","2":"/Rasters.jl/dev/api#Reference-Internal-functions","3":"/Rasters.jl/dev/array_operations#Mean-over-the-time-dimension:","4":"/Rasters.jl/dev/array_operations#broadcasting","5":"/Rasters.jl/dev/array_operations#Modifying-object-properties","6":"/Rasters.jl/dev/array_operations#rebuild","7":"/Rasters.jl/dev/array_operations#replace-missing","8":"/Rasters.jl/dev/array_operations#set","9":"/Rasters.jl/dev/data_sources#Data-sources","10":"/Rasters.jl/dev/data_sources#grd","11":"/Rasters.jl/dev/data_sources#netcdf","12":"/Rasters.jl/dev/data_sources#gdal","13":"/Rasters.jl/dev/data_sources#smap","14":"/Rasters.jl/dev/data_sources#Writing-file-formats-to-disk","15":"/Rasters.jl/dev/data_sources#RasterDataSources.jl-integration","16":"/Rasters.jl/dev/gbif_wflow#Load-GBIF","17":"/Rasters.jl/dev/gbif_wflow#Extract-coordinates","18":"/Rasters.jl/dev/gbif_wflow#Get-layer-/-Band","19":"/Rasters.jl/dev/get_started#Quick-start","20":"/Rasters.jl/dev/get_started#Install-the-package-by-typing:","21":"/Rasters.jl/dev/get_started#Getting-the-lookup-array-from-dimensions","22":"/Rasters.jl/dev/get_started#Select-by-index","23":"/Rasters.jl/dev/get_started#Select-by-value","24":"/Rasters.jl/dev/get_started#Subsetting-an-object","25":"/Rasters.jl/dev/#installation","26":"/Rasters.jl/dev/#Packages-extensions","27":"/Rasters.jl/dev/#Bugs-and-errors","28":"/Rasters.jl/dev/methods#Methods-that-change-the-resolution-or-extent-of-an-object","29":"/Rasters.jl/dev/methods#Methods-that-change-an-objects-values","30":"/Rasters.jl/dev/methods#Point,-polygon-and-table-operation","31":"/Rasters.jl/dev/methods#Methods-to-load,-write-and-modify-data-sources","32":"/Rasters.jl/dev/plot_makie#Plotting-in-Makie","33":"/Rasters.jl/dev/plot_makie#2-D-rasters-in-Makie","34":"/Rasters.jl/dev/plot_makie#3-D-rasters-in-Makie","35":"/Rasters.jl/dev/plot_makie#reset-theme","36":"/Rasters.jl/dev/plot_makie#Plotting-with-Observables,-animations","37":"/Rasters.jl/dev/plot_makie#Using-vanilla-Makie","38":"/Rasters.jl/dev/plotting#Plots,-simple","39":"/Rasters.jl/dev/plotting#Makie,-simple","40":"/Rasters.jl/dev/plotting#Loading-data","41":"/Rasters.jl/dev/plotting#Plot-a-contour-plot","42":"/Rasters.jl/dev/plotting#write-to-disk","43":"/Rasters.jl/dev/plotting#Polygon-masking,-mosaic-and-plot","44":"/Rasters.jl/dev/plotting#Download-the-shapefile","45":"/Rasters.jl/dev/plotting#Load-using-Shapefile.jl","46":"/Rasters.jl/dev/plotting#Plotting-with-Plots.jl"},"fieldIds":{"title":0,"titles":1,"text":2},"fieldLength":{"0":[1,1,47],"1":[3,1,1466],"2":[3,1,502],"3":[6,1,169],"4":[1,1,157],"5":[3,1,33],"6":[1,3,139],"7":[2,3,114],"8":[1,3,184],"9":[2,1,24],"10":[1,2,30],"11":[1,2,69],"12":[1,2,37],"13":[1,2,67],"14":[5,2,53],"15":[3,2,60],"16":[2,1,87],"17":[2,1,74],"18":[3,1,141],"19":[2,1,1],"20":[6,2,135],"21":[6,2,21],"22":[3,2,107],"23":[3,2,158],"24":[3,2,118],"25":[1,1,4],"26":[2,1,100],"27":[3,1,163],"28":[10,1,70],"29":[6,1,47],"30":[5,1,19],"31":[8,1,34],"32":[3,1,37],"33":[5,1,141],"34":[5,1,84],"35":[2,1,4],"36":[4,2,200],"37":[3,2,165],"38":[2,1,125],"39":[2,1,20],"40":[2,1,235],"41":[4,2,10],"42":[3,2,59],"43":[5,1,38],"44":[3,1,28],"45":[4,3,63],"46":[4,3,137]},"averageFieldLength":[3.2127659574468086,1.5319148936170213,122.8936170212766],"storedFields":{"0":{"title":"Index","titles":[]},"1":{"title":"Reference - Exported functions","titles":[]},"2":{"title":"Reference - Internal functions","titles":[]},"3":{"title":"Mean over the time dimension:","titles":[]},"4":{"title":"Broadcasting","titles":[]},"5":{"title":"Modifying object properties","titles":[]},"6":{"title":"rebuild","titles":["Modifying object properties"]},"7":{"title":"replace_missing","titles":["Modifying object properties"]},"8":{"title":"set","titles":["Modifying object properties"]},"9":{"title":"Data sources","titles":[]},"10":{"title":"GRD","titles":["Data sources"]},"11":{"title":"NetCDF","titles":["Data sources"]},"12":{"title":"GDAL","titles":["Data sources"]},"13":{"title":"SMAP","titles":["Data sources"]},"14":{"title":"Writing file formats to disk","titles":["Data sources"]},"15":{"title":"RasterDataSources.jl integration","titles":["Data sources"]},"16":{"title":"Load GBIF","titles":[]},"17":{"title":"Extract coordinates","titles":[]},"18":{"title":"Get layer / Band","titles":[]},"19":{"title":"Quick start","titles":[]},"20":{"title":"Install the package by typing:","titles":["Quick start"]},"21":{"title":"Getting the lookup array from dimensions","titles":["Quick start"]},"22":{"title":"Select by index","titles":["Quick start"]},"23":{"title":"Select by value","titles":["Quick start"]},"24":{"title":"Subsetting an object","titles":["Quick start"]},"25":{"title":"Installation","titles":[]},"26":{"title":"Packages extensions","titles":[]},"27":{"title":"Bugs and errors","titles":[]},"28":{"title":"Methods that change the resolution or extent of an object","titles":[]},"29":{"title":"Methods that change an objects values","titles":[]},"30":{"title":"Point, polygon and table operation","titles":[]},"31":{"title":"Methods to load, write and modify data sources","titles":[]},"32":{"title":"Plotting in Makie","titles":[]},"33":{"title":"2-D rasters in Makie","titles":[]},"34":{"title":"3-D rasters in Makie","titles":[]},"35":{"title":"reset theme","titles":[]},"36":{"title":"Plotting with Observables, animations","titles":["reset theme"]},"37":{"title":"Using vanilla Makie","titles":["reset theme"]},"38":{"title":"Plots, simple","titles":[]},"39":{"title":"Makie, simple","titles":[]},"40":{"title":"Loading data","titles":[]},"41":{"title":"Plot a contour plot","titles":["Loading data"]},"42":{"title":"write to disk","titles":["Loading data"]},"43":{"title":"Polygon masking, mosaic and plot","titles":[]},"44":{"title":"Download the shapefile","titles":[]},"45":{"title":"Load using Shapefile.jl","titles":["Download the shapefile"]},"46":{"title":"Plotting with Plots.jl","titles":["Download the shapefile"]}},"dirtCount":0,"index":[["↗",{"2":{"20":1,"22":1,"40":2}}],["├─────────────────────┴──────────────────────────────────────────────────",{"2":{"37":1}}],["├───────────────────────┴─────────────────────────────",{"2":{"22":2,"23":1}}],["├──────────────────────────┴─────────────────────────────────────────────",{"2":{"20":1,"22":1}}],["├──────────────────────────┼─────────┼─────────┼─────────┼──────────┼───────────",{"2":{"16":1}}],["├───────────────────────────────┴────────────────────────────────────────",{"2":{"3":1}}],["├─────────────────────────────────────────────────┴──────────────────────",{"2":{"40":1}}],["├──────────────────────────────────────────────────┴─────────────────────",{"2":{"40":1}}],["├───────────────────────────────────────────────────",{"2":{"22":2,"23":1}}],["├──────────────────────────────────────────────────────────────────────",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":2,"20":1,"22":1,"33":1,"37":2,"40":2}}],["├────────────────────────────────────────────────────────────────────",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"33":1,"40":2}}],["├──────────────────────────────────┴─────────────────────────────────────",{"2":{"3":1,"4":1,"6":1,"7":1,"8":2,"33":1}}],["├────────────────────┴───────────────────────────────────────────────────",{"2":{"18":1}}],["╭─────────────────────╮",{"2":{"37":1}}],["╭───────────────────────╮",{"2":{"22":2,"23":1}}],["╭──────────────────────────╮",{"2":{"20":1,"22":1}}],["╭─────────────────────────────────────────────────╮",{"2":{"40":1}}],["╭──────────────────────────────────────────────────╮",{"2":{"40":1}}],["╭──────────────────────────────────╮",{"2":{"3":1,"4":1,"6":1,"7":1,"8":2,"33":1}}],["╭───────────────────────────────╮",{"2":{"3":1}}],["╭────────────────────╮",{"2":{"18":1}}],["└───────────────────────────────────────────────────────────┘",{"2":{"22":2,"23":1}}],["└──────────────────────────────────────────────────────────────────────────────┘",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"20":1,"22":1,"33":1,"37":1,"40":2}}],["└──────────────────────────┴─────────┴─────────┴─────────┴──────────┴───────────",{"2":{"16":1}}],["┌──────────────────────────┬─────────┬─────────┬─────────┬──────────┬───────────",{"2":{"16":1}}],["┤",{"2":{"3":4,"4":2,"6":2,"7":2,"8":4,"18":2,"20":1,"22":3,"23":1,"33":2,"37":2,"40":4}}],["→",{"2":{"3":4,"4":2,"6":2,"7":2,"8":4,"18":1,"20":2,"22":6,"23":2,"33":2,"37":1,"40":2}}],["↓",{"2":{"3":4,"4":2,"6":2,"7":2,"8":4,"18":1,"20":2,"22":6,"23":2,"33":2,"37":1,"40":2}}],["┐",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"20":1,"22":3,"23":1,"33":1,"37":1,"40":2}}],["⋱",{"2":{"1":1,"3":1,"4":1,"6":1,"7":1,"8":2,"16":1,"33":1,"40":2}}],["⋮",{"2":{"1":6,"3":2,"4":2,"6":2,"7":2,"8":4,"16":6,"17":1,"33":2,"40":2}}],["─────┼──────────────────────────────────────────────────────────────────────────",{"2":{"1":1}}],["⋯",{"2":{"1":6,"16":17}}],["│",{"2":{"1":18,"3":4,"4":2,"6":2,"7":2,"8":4,"16":108,"18":2,"20":2,"22":6,"23":2,"33":2,"37":2,"40":4}}],["^a",{"2":{"1":1}}],["quickly",{"2":{"27":1,"38":1}}],["quick",{"0":{"19":1},"1":{"20":1,"21":1,"22":1,"23":1,"24":1}}],["quot",{"2":{"2":18,"11":4,"12":4,"13":4,"14":2,"36":8}}],["quartile",{"2":{"1":4}}],["quadratic",{"2":{"1":1}}],["quality",{"2":{"1":1,"38":1}}],["q3",{"2":{"1":1}}],["q1",{"2":{"1":1}}],["z",{"2":{"1":1,"2":1,"8":4,"11":1,"23":1,"36":1,"40":1,"42":1}}],["za",{"2":{"1":1}}],["zone",{"2":{"1":1}}],["zonal",{"2":{"0":1,"1":4,"30":2}}],["zeros",{"2":{"1":1}}],["+",{"2":{"1":2}}],["6×6×10",{"2":{"22":1}}],["6×6×13",{"2":{"20":1}}],["6×6",{"2":{"22":2,"23":1}}],["61",{"2":{"4":1,"24":1}}],["6326",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["6378137",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["638462f0",{"2":{"1":2}}],["6988",{"2":{"1":1}}],["6667",{"2":{"3":4,"4":2,"6":2,"7":2,"8":4,"33":2}}],["6665",{"2":{"1":1}}],["6694",{"2":{"1":1}}],["65921",{"2":{"1":1}}],["659454f0",{"2":{"1":1}}],["67",{"2":{"1":1}}],["6732",{"2":{"1":1}}],["6715",{"2":{"1":1}}],["6751",{"2":{"1":1}}],["6",{"2":{"1":3,"16":1,"46":1}}],["600",{"2":{"37":2}}],["60",{"2":{"1":3,"40":1}}],["`stack`",{"2":{"36":1}}],["`raster`",{"2":{"2":1}}],["`gi",{"2":{"1":1}}],["`missingval",{"2":{"1":1}}],["`missing`",{"2":{"1":1}}],["`vector`",{"2":{"1":1}}],["`collect`",{"2":{"1":1}}],["`extract`",{"2":{"1":1}}],["55",{"2":{"46":1}}],["5504",{"2":{"1":1}}],["53",{"2":{"45":1}}],["569855",{"2":{"20":1,"22":3,"23":1}}],["594375",{"2":{"20":1,"22":3,"23":1}}],["54",{"2":{"45":1}}],["54166666666667",{"2":{"37":2}}],["54166666666666",{"2":{"37":1}}],["548909",{"2":{"20":1,"22":3,"23":1}}],["542",{"2":{"1":1}}],["5447",{"2":{"1":1}}],["544561f0",{"2":{"1":1}}],["5858",{"2":{"1":1}}],["524924",{"2":{"17":1}}],["5249",{"2":{"16":1}}],["52",{"2":{"1":1}}],["57",{"2":{"1":1}}],["5",{"2":{"1":8,"3":5,"4":2,"6":3,"7":2,"8":4,"18":2,"24":1,"33":3,"37":2,"38":1,"39":1,"40":8}}],["504673",{"2":{"17":1}}],["5047",{"2":{"16":1}}],["50",{"2":{"1":6,"24":1,"37":1}}],[">",{"2":{"1":1,"18":1}}],[">=",{"2":{"1":2}}],["927241",{"2":{"20":1,"22":3,"23":1}}],["9263",{"2":{"1":1}}],["987735",{"2":{"20":1,"22":3,"23":1}}],["96631",{"2":{"20":1,"22":3,"23":1}}],["935687",{"2":{"17":1}}],["9357",{"2":{"16":1}}],["93739",{"2":{"20":1,"22":3,"23":1}}],["9373",{"2":{"3":1}}],["9999",{"2":{"6":2,"7":8}}],["99999999999997",{"2":{"3":1,"4":1,"6":1,"7":1,"8":1,"18":1,"33":1}}],["9122",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["972067",{"2":{"20":1,"22":3,"23":1}}],["97",{"2":{"1":3}}],["9",{"2":{"1":2,"2":2,"26":1,"40":2}}],["901968",{"2":{"20":1,"22":3,"23":1}}],["90",{"2":{"1":5,"3":8,"4":4,"6":4,"7":4,"8":8,"33":4,"40":3}}],["73",{"2":{"46":1}}],["71",{"2":{"45":1}}],["79",{"2":{"40":2}}],["798",{"2":{"4":1}}],["7983f0",{"2":{"1":2}}],["75",{"2":{"36":1,"37":1}}],["779093",{"2":{"20":1,"22":3,"23":1}}],["775f0",{"2":{"1":1}}],["7288",{"2":{"1":1}}],["72085e5",{"2":{"1":4}}],["76909",{"2":{"20":1,"22":3,"23":1}}],["76",{"2":{"1":1}}],["7454",{"2":{"1":1}}],["780556",{"2":{"20":1,"22":3,"23":1}}],["78",{"2":{"1":1,"16":1,"40":2}}],["7",{"2":{"1":5,"18":1}}],["701",{"2":{"3":1,"6":1,"7":1,"8":2,"33":1}}],["7030",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["706488",{"2":{"1":4}}],["70",{"2":{"1":2}}],["800",{"2":{"41":1}}],["80",{"2":{"40":2}}],["805",{"2":{"3":1,"6":1,"7":1,"8":2,"33":1}}],["817717",{"2":{"20":1,"22":3,"23":1}}],["831194",{"2":{"20":1,"22":3,"23":1}}],["83",{"2":{"17":1}}],["833945",{"2":{"20":1,"22":3,"23":1}}],["833",{"2":{"3":1,"4":1,"6":1,"7":1,"8":2,"33":1}}],["8333",{"2":{"3":4,"4":2,"6":2,"7":2,"8":4,"33":2}}],["83333333333333",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":2,"33":1}}],["83333333333331",{"2":{"3":1,"4":1,"6":1,"7":1,"8":3,"18":1,"33":1}}],["8485",{"2":{"4":1}}],["84",{"2":{"3":4,"4":2,"6":2,"7":2,"8":4,"18":2,"33":2,"37":2}}],["898168",{"2":{"20":1,"22":3,"23":1}}],["8901",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["89",{"2":{"3":14,"4":6,"6":7,"7":6,"8":14,"18":1,"33":7,"40":2}}],["8991",{"2":{"1":1}}],["87126",{"2":{"1":1}}],["8688",{"2":{"1":1}}],["882252",{"2":{"20":1,"22":3,"23":1}}],["886321",{"2":{"20":1,"22":3,"23":1}}],["8868",{"2":{"1":1}}],["88",{"2":{"1":1,"40":2}}],["8",{"2":{"1":5,"26":1}}],["48",{"2":{"24":1}}],["480",{"2":{"1":1}}],["490719",{"2":{"17":1}}],["43",{"2":{"24":1,"37":2}}],["436025",{"2":{"20":1,"22":3,"23":1}}],["437709",{"2":{"17":1}}],["432552",{"2":{"17":2}}],["4326",{"2":{"1":14,"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"23":1,"33":1,"37":1,"40":4}}],["431684",{"2":{"17":1}}],["4317",{"2":{"16":1}}],["433349",{"2":{"17":1}}],["4333",{"2":{"16":1}}],["4243",{"2":{"3":1,"6":1,"7":1,"8":2,"33":1}}],["4291",{"2":{"1":1}}],["4f38",{"2":{"3":10,"4":1,"6":8,"8":18,"18":1,"33":9}}],["4759",{"2":{"1":1}}],["450851",{"2":{"20":1,"22":3,"23":1}}],["454329",{"2":{"20":1,"22":3,"23":1}}],["45",{"2":{"1":4,"40":1}}],["442579",{"2":{"20":1,"22":3,"23":1}}],["448374",{"2":{"17":1}}],["4474",{"2":{"1":1}}],["441",{"2":{"1":2}}],["446",{"2":{"1":1}}],["418261",{"2":{"17":1}}],["4167",{"2":{"17":1}}],["41",{"2":{"1":2}}],["4",{"2":{"1":3,"2":2,"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":2}}],["400",{"2":{"41":1}}],["400058",{"2":{"17":1}}],["402",{"2":{"4":1}}],["40",{"2":{"1":8,"18":1,"46":1}}],["4×6",{"2":{"1":1}}],["382602",{"2":{"17":1}}],["381847",{"2":{"17":1}}],["3818",{"2":{"16":1}}],["381",{"2":{"1":1}}],["318222",{"2":{"20":1,"22":3,"23":1}}],["310064",{"2":{"17":1}}],["31",{"2":{"4":1}}],["340114",{"2":{"20":1,"22":3,"23":1}}],["347186",{"2":{"17":1}}],["347",{"2":{"16":1}}],["34",{"2":{"4":1}}],["36",{"2":{"16":7,"17":18}}],["360",{"2":{"3":1,"40":2}}],["3656",{"2":{"1":1}}],["3d",{"2":{"2":2,"32":1,"33":3,"34":2,"36":2,"38":1}}],["331222",{"2":{"20":1,"22":3,"23":1}}],["332969",{"2":{"17":1}}],["333783",{"2":{"17":2}}],["333",{"2":{"16":1}}],["33333333333336",{"2":{"37":2}}],["3333",{"2":{"3":2,"6":1,"8":2,"33":1}}],["33",{"2":{"1":1,"17":1}}],["328025",{"2":{"17":1}}],["328896",{"2":{"17":1}}],["329",{"2":{"16":1}}],["321388f0",{"2":{"1":1}}],["32",{"2":{"1":2}}],["359",{"2":{"40":2}}],["357",{"2":{"40":2}}],["35",{"2":{"1":6,"17":1}}],["3",{"0":{"34":1},"2":{"1":9,"2":2,"3":10,"4":1,"6":8,"8":18,"10":1,"16":1,"18":2,"20":1,"22":1,"33":9,"36":3,"37":3,"40":5}}],["306762",{"2":{"20":1,"22":3,"23":1}}],["30362",{"2":{"17":1}}],["3036",{"2":{"16":1}}],["300",{"2":{"16":1}}],["3087",{"2":{"1":1}}],["30",{"2":{"1":5,"4":2,"20":8,"21":1,"22":18,"23":6,"40":2}}],["377673",{"2":{"17":1}}],["373215",{"2":{"17":1}}],["37",{"2":{"1":2,"40":2}}],["398438",{"2":{"17":1}}],["394749",{"2":{"17":1}}],["391682",{"2":{"17":1}}],["391097",{"2":{"17":1}}],["391",{"2":{"16":1}}],["396453",{"2":{"17":1}}],["396",{"2":{"16":1}}],["399",{"2":{"3":1,"6":1,"7":1,"8":2,"33":1}}],["39",{"2":{"1":9,"2":5,"8":1,"13":1,"18":2,"27":2,"38":1,"42":1}}],["0f20",{"2":{"40":4}}],["0f0",{"2":{"1":5,"6":1,"7":1}}],["0xffffffff",{"2":{"37":1}}],["0xffff",{"2":{"37":3}}],["04",{"2":{"24":1}}],["046",{"2":{"3":1,"6":1,"7":1,"8":2,"33":1}}],["0661761",{"2":{"20":1,"22":3,"23":1}}],["063",{"2":{"1":1}}],["096394",{"2":{"17":1}}],["096",{"2":{"16":1}}],["0923552",{"2":{"20":1,"22":3,"23":1}}],["092",{"2":{"4":1}}],["05",{"2":{"1":1}}],["0265653",{"2":{"20":1,"22":3,"23":1}}],["0273",{"2":{"1":1}}],["029825f0",{"2":{"1":1}}],["03",{"2":{"1":2}}],["0768",{"2":{"3":1}}],["076923f0",{"2":{"1":2}}],["077084f0",{"2":{"1":1}}],["07",{"2":{"1":1}}],["0",{"2":{"1":75,"2":2,"3":27,"4":12,"6":12,"7":18,"8":24,"18":4,"20":36,"22":108,"23":36,"26":1,"33":12,"36":1,"37":5,"40":22,"42":1,"44":1,"46":1}}],["0094",{"2":{"3":1}}],["005fvlen",{"2":{"2":2}}],["005fdef",{"2":{"2":2}}],["007",{"2":{"1":1}}],["000000000000005",{"2":{"37":1}}],["000000000000004",{"2":{"18":1}}],["000",{"2":{"1":2}}],["00",{"2":{"1":12,"20":8,"22":8,"40":16}}],["0174532925199433",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["01158e6",{"2":{"1":4}}],["01t00",{"2":{"1":6,"20":4,"22":4,"40":4}}],["01",{"2":{"1":6,"20":4,"22":2,"40":10}}],["kingdom",{"2":{"16":1}}],["k",{"2":{"2":3,"40":2}}],["keeps",{"2":{"1":1}}],["keys",{"2":{"1":10,"2":4}}],["keyword",{"2":{"1":13,"2":6}}],["keywords",{"2":{"1":33,"2":11,"15":1,"34":1,"36":1}}],["key",{"2":{"1":2,"27":1}}],["km",{"2":{"1":1}}],["known",{"2":{"11":1}}],["know",{"2":{"1":4,"5":1,"27":1}}],["kw",{"2":{"1":22,"2":5,"18":2,"36":1,"38":1}}],["uint16",{"2":{"37":3}}],["uint64",{"2":{"16":2}}],["uint8",{"2":{"16":1}}],["uint32",{"2":{"1":1,"37":1}}],["ucar",{"2":{"2":2,"40":1}}],["update",{"2":{"8":1,"29":1}}],["updating",{"2":{"1":1}}],["upper",{"2":{"1":13}}],["upper=",{"2":{"1":1}}],["url",{"2":{"1":12,"27":1,"40":2,"44":2}}],["unexported",{"2":{"34":1,"38":1}}],["unexpected",{"2":{"1":6}}],["until",{"2":{"24":1}}],["unitrange",{"2":{"16":1}}],["unit",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1,"39":1}}],["units",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"33":1,"40":4}}],["unidata",{"2":{"2":2,"40":1}}],["union",{"2":{"1":11,"2":2,"40":2}}],["unmasked",{"2":{"1":2}}],["under",{"2":{"26":1}}],["underscores",{"2":{"2":1}}],["underlying",{"2":{"1":3,"2":1,"31":1,"36":1,"38":1}}],["undefined",{"2":{"1":1}}],["unchanged",{"2":{"1":3}}],["unless",{"2":{"1":2}}],["unopened",{"2":{"1":1}}],["us",{"2":{"1":1}}],["using",{"0":{"37":1,"45":1},"2":{"1":25,"2":3,"10":1,"11":2,"12":1,"14":1,"15":1,"16":1,"20":2,"22":1,"24":1,"26":8,"33":1,"39":1,"40":2,"43":2,"44":1,"45":2,"46":3}}],["usually",{"2":{"1":11,"2":5,"36":1}}],["users",{"2":{"2":1}}],["uses",{"2":{"1":3,"9":1,"23":1,"40":1}}],["used",{"2":{"1":87,"2":16,"5":1,"8":1,"11":2,"13":1,"15":2,"23":1,"24":1,"38":1,"42":1}}],["use",{"2":{"1":43,"2":6,"3":1,"4":1,"6":1,"9":1,"11":1,"24":2,"26":1,"27":1,"28":1,"34":1,"38":1,"40":1}}],["usefull",{"2":{"1":2}}],["usefulnesss",{"2":{"1":1}}],["useful",{"2":{"1":9,"31":1}}],["=a",{"2":{"22":1}}],["===",{"2":{"1":1}}],["=>",{"2":{"1":14,"3":8,"4":4,"6":4,"7":4,"8":10,"33":4,"40":18}}],["=",{"2":{"1":125,"2":18,"3":5,"4":5,"6":4,"7":2,"8":4,"15":1,"16":2,"17":1,"18":8,"20":6,"21":2,"22":7,"23":2,"24":3,"33":6,"34":4,"36":20,"37":20,"38":1,"39":2,"40":10,"44":2,"45":9,"46":8}}],["video",{"2":{"36":2}}],["visualize",{"2":{"34":1}}],["via",{"2":{"2":2,"22":1,"45":1}}],["views",{"2":{"1":1}}],["view",{"2":{"1":3,"24":4}}],["vlen",{"2":{"2":2}}],["vebose",{"2":{"1":2,"2":2}}],["vertical",{"2":{"23":1}}],["verbose",{"2":{"1":4}}],["version",{"2":{"1":2}}],["versions",{"2":{"1":18}}],["very",{"2":{"1":5,"10":1,"38":1}}],["vectors",{"2":{"1":1}}],["vector",{"2":{"1":15,"2":2,"16":2,"17":2,"36":2,"44":1}}],["vanilla",{"0":{"37":1}}],["variations",{"2":{"27":1}}],["variable",{"2":{"2":2}}],["variables",{"2":{"1":2,"11":1,"18":1}}],["various",{"2":{"15":1}}],["valid",{"2":{"2":2}}],["values",{"0":{"29":1},"2":{"1":72,"2":3,"6":1,"24":3,"28":1,"29":2,"30":1,"36":1,"38":3,"42":1,"45":1}}],["value",{"0":{"23":1},"2":{"1":54,"2":4,"5":1,"8":1,"17":1,"24":4,"40":2,"46":1}}],["val",{"2":{"1":2}}],["val=",{"2":{"1":1}}],["2d",{"2":{"34":1,"38":1}}],["26",{"2":{"20":2,"22":6,"23":2}}],["235596",{"2":{"17":1}}],["236",{"2":{"16":1}}],["23",{"2":{"3":1,"16":1,"40":2}}],["2332e6",{"2":{"1":4}}],["22",{"2":{"1":1,"3":2,"16":1}}],["2727",{"2":{"1":1}}],["27",{"2":{"1":4,"4":1,"20":2,"22":6,"23":2}}],["273",{"2":{"1":1}}],["271",{"2":{"1":1}}],["282703",{"2":{"20":1,"22":3,"23":1}}],["284565",{"2":{"17":1}}],["285",{"2":{"16":1}}],["2888",{"2":{"1":1}}],["28",{"2":{"1":2,"4":1,"20":2,"22":6,"23":2}}],["2955",{"2":{"4":1}}],["298",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["29",{"2":{"1":4,"20":2,"22":6,"23":2}}],["240881",{"2":{"17":1}}],["243",{"2":{"1":1}}],["24534",{"2":{"1":1}}],["24",{"2":{"1":5}}],["218844",{"2":{"20":1,"22":3,"23":1}}],["2160",{"2":{"3":1,"4":1,"6":1,"7":1,"8":2,"33":1}}],["2160×1080",{"2":{"3":1,"4":1,"6":1,"7":1,"8":2,"33":1}}],["21",{"2":{"1":4,"16":1}}],["2592000000",{"2":{"40":1}}],["259489",{"2":{"17":1}}],["250943",{"2":{"20":1,"22":3,"23":1}}],["258",{"2":{"1":1}}],["258×8",{"2":{"1":1}}],["257223563",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["257",{"2":{"1":1}}],["256",{"2":{"1":1,"2":6,"17":1}}],["255",{"2":{"1":1}}],["254",{"2":{"1":1}}],["253",{"2":{"1":1}}],["252",{"2":{"1":1}}],["25",{"2":{"1":9,"17":1,"18":3,"20":8,"21":1,"22":18,"23":6,"24":2}}],["2",{"0":{"33":1},"2":{"1":9,"2":3,"3":2,"4":4,"6":1,"7":1,"8":2,"13":1,"16":1,"22":2,"23":1,"32":1,"33":5,"36":2,"37":7,"39":1,"42":1}}],["20833333333334",{"2":{"37":1}}],["2020",{"2":{"16":1}}],["2021",{"2":{"16":1}}],["2012",{"2":{"16":2}}],["2015",{"2":{"16":1}}],["2016",{"2":{"16":2}}],["2011",{"2":{"16":1}}],["2065",{"2":{"1":1}}],["20417f0",{"2":{"1":1}}],["2003",{"2":{"40":2}}],["2005",{"2":{"40":2}}],["2009",{"2":{"1":1}}],["2002",{"2":{"1":3,"20":3,"40":5}}],["2001",{"2":{"1":6,"20":3,"22":4,"23":1,"40":7}}],["20",{"2":{"1":11,"42":2}}],["gadm",{"2":{"43":1}}],["going",{"2":{"38":1}}],["good",{"2":{"27":1}}],["google",{"2":{"27":1}}],["gbif",{"0":{"16":1}}],["gbif2",{"2":{"1":2,"16":4}}],["global",{"2":{"13":1,"45":1}}],["guaranteed",{"2":{"2":2}}],["guessed",{"2":{"2":3}}],["guessing",{"2":{"2":2}}],["gis",{"2":{"29":1}}],["giving",{"2":{"1":1}}],["given",{"2":{"1":2,"20":1}}],["gives",{"2":{"1":6}}],["give",{"2":{"1":7}}],["github",{"2":{"1":21,"44":1}}],["gpu",{"2":{"1":1,"31":1}}],["great",{"2":{"27":1}}],["greenwich",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["grow",{"2":{"1":2}}],["group3",{"2":{"1":2}}],["group2",{"2":{"1":2}}],["group1",{"2":{"1":2}}],["group=",{"2":{"1":2}}],["groups",{"2":{"1":2}}],["group",{"2":{"1":6}}],["gri",{"2":{"2":4}}],["grid=false",{"2":{"37":2}}],["gridposition",{"2":{"2":1,"36":1,"38":1}}],["grid",{"2":{"1":2,"2":2}}],["gribsource",{"2":{"1":2,"2":3}}],["grib",{"2":{"1":4,"2":3,"26":1}}],["grdsource",{"2":{"2":1}}],["grd",{"0":{"10":1},"2":{"1":2,"2":12,"10":1,"26":1}}],["g",{"2":{"1":10,"2":1,"20":1,"23":1,"24":2,"27":1,"28":1,"31":1,"38":1}}],["gdalwarp",{"2":{"1":4,"28":1}}],["gdals",{"2":{"1":2}}],["gdalsource",{"2":{"1":2,"2":3,"3":2,"4":1,"6":1,"7":1,"8":2,"33":1}}],["gdal",{"0":{"12":1},"2":{"1":8,"2":15,"12":1,"26":3}}],["gdalarray",{"2":{"1":1}}],["gt",{"2":{"1":17,"2":2,"36":3}}],["getting",{"0":{"21":1}}],["getdriver",{"2":{"2":2}}],["getring",{"2":{"1":1}}],["getring`",{"2":{"1":1}}],["getraster",{"2":{"1":1,"15":1}}],["get",{"0":{"18":1},"2":{"1":8,"18":1,"24":4,"27":1,"40":1,"43":1}}],["getindex",{"2":{"1":10,"24":2}}],["geogcs",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["geoaxis",{"2":{"2":1,"36":1}}],["geomakie",{"2":{"2":1,"36":1}}],["geom",{"2":{"1":7}}],["geometric",{"2":{"1":1}}],["geometries",{"2":{"1":47,"30":3}}],["geometrycolumn",{"2":{"1":17}}],["geometry",{"2":{"1":31,"16":1}}],["geotiff",{"2":{"1":1,"20":1}}],["geointerface",{"2":{"1":17,"17":1}}],["geoformattypes",{"2":{"1":7,"8":1}}],["geoformat",{"2":{"1":9,"8":1}}],["generating",{"2":{"5":1}}],["generator",{"2":{"1":1}}],["generates",{"2":{"20":1}}],["generate",{"2":{"1":4}}],["generally",{"2":{"1":1,"8":1,"12":1}}],["generically",{"2":{"23":1}}],["generic",{"2":{"1":1,"40":1,"46":1}}],["||",{"2":{"1":4}}],["|",{"2":{"1":2}}],["|>",{"2":{"1":7,"37":1,"40":2,"42":1}}],["xlabel",{"2":{"2":1,"36":1,"37":1}}],["x=",{"2":{"1":1}}],["x=100",{"2":{"1":1}}],["xs",{"2":{"1":6}}],["xdim",{"2":{"1":6,"2":1,"36":1}}],["x",{"2":{"1":66,"2":11,"3":5,"4":2,"6":2,"7":2,"8":6,"10":1,"11":1,"13":1,"17":1,"18":7,"20":4,"21":2,"22":6,"23":4,"24":6,"29":1,"33":2,"36":4,"37":7,"40":7,"42":1,"46":1}}],["x3c",{"2":{"1":14,"2":3}}],["ylabel",{"2":{"2":1,"36":1,"37":1}}],["year",{"2":{"16":1,"40":1}}],["year=",{"2":{"1":1}}],["yet",{"2":{"2":1,"26":1}}],["y=",{"2":{"1":2}}],["ydim",{"2":{"1":6,"2":2,"36":2}}],["y",{"2":{"1":18,"2":8,"3":4,"4":2,"6":2,"7":2,"8":4,"10":1,"11":1,"13":1,"17":1,"18":7,"20":4,"21":2,"22":6,"23":4,"24":2,"29":1,"33":2,"36":5,"37":7,"40":7,"42":2,"46":1}}],["your",{"2":{"1":2,"27":2}}],["you",{"2":{"1":14,"2":6,"5":2,"6":1,"8":1,"9":1,"26":4,"27":3,"32":1,"34":2,"36":1,"38":1}}],["1×1080",{"2":{"3":1}}],["113",{"2":{"37":2}}],["11",{"2":{"1":1,"16":5,"40":2}}],["110",{"2":{"1":1}}],["183067",{"2":{"20":1,"22":3,"23":1}}],["1837",{"2":{"1":1}}],["180×170×1",{"2":{"40":1}}],["180×170×24",{"2":{"40":1}}],["180",{"2":{"1":1,"3":8,"4":3,"6":3,"7":3,"8":6,"33":3}}],["1864",{"2":{"1":1}}],["190",{"2":{"40":1}}],["194",{"2":{"37":1}}],["194×161",{"2":{"37":5}}],["1984",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["192",{"2":{"1":1}}],["1952e6",{"2":{"1":4}}],["147",{"2":{"16":1,"17":1}}],["1478",{"2":{"3":1,"6":1,"7":1,"8":2,"33":1}}],["148",{"2":{"16":6,"17":17}}],["14",{"2":{"1":2,"3":1,"6":1,"7":1,"8":2,"33":1}}],["145",{"2":{"1":1}}],["144",{"2":{"1":1}}],["16t00",{"2":{"40":4}}],["161",{"2":{"37":1}}],["168953",{"2":{"20":1,"22":3,"23":1}}],["167618",{"2":{"20":1,"22":3,"23":1}}],["16666666666667",{"2":{"18":1}}],["1622",{"2":{"1":1}}],["160",{"2":{"1":3,"37":1}}],["16",{"2":{"1":1,"40":2}}],["1f0",{"2":{"1":1}}],["179",{"2":{"3":3,"4":3,"6":3,"7":3,"8":6,"33":3}}],["17",{"2":{"1":6,"3":1,"6":1,"7":1,"8":2,"33":1,"40":1}}],["138",{"2":{"18":3}}],["13",{"2":{"1":2,"3":1,"6":1,"7":1,"8":2,"33":1,"37":2}}],["130",{"2":{"1":1}}],["153",{"2":{"37":2}}],["153847f0",{"2":{"1":2}}],["154",{"2":{"18":2}}],["155",{"2":{"18":1}}],["151",{"2":{"17":1}}],["15",{"2":{"1":7,"3":3,"6":3,"7":3,"8":6,"16":2,"33":3}}],["150",{"2":{"1":1}}],["1287",{"2":{"1":1}}],["12",{"2":{"1":3,"18":1,"24":2,"36":1,"40":2}}],["12048e6",{"2":{"1":4}}],["120",{"2":{"1":3}}],["107567",{"2":{"20":1,"22":3,"23":1}}],["102",{"2":{"18":1}}],["102×89",{"2":{"18":5}}],["1080",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"33":1}}],["10m",{"2":{"1":6,"3":2,"4":1,"6":1,"7":1,"8":2,"33":1,"44":2}}],["10",{"2":{"1":36,"16":1,"22":3,"37":3,"45":1}}],["100",{"2":{"1":27,"24":1,"37":1}}],["1",{"2":{"1":39,"2":4,"3":4,"4":2,"6":2,"7":2,"8":4,"16":3,"18":4,"20":7,"21":1,"22":10,"23":2,"24":1,"26":1,"33":4,"34":1,"36":2,"37":6,"40":8,"42":1,"46":2}}],["np",{"2":{"46":3}}],["ncstack",{"2":{"11":1}}],["ncdatasets",{"2":{"11":1,"26":1,"40":1,"43":1}}],["ncdsource",{"2":{"1":2,"2":5,"40":2}}],["nc",{"2":{"2":4,"11":3,"40":2,"42":2,"46":1}}],["ntuple",{"2":{"2":3}}],["nuevo",{"2":{"1":1}}],["numbers",{"2":{"20":1}}],["number",{"2":{"1":3,"9":1}}],["natively",{"2":{"10":1}}],["natural",{"2":{"1":4,"44":1}}],["na",{"2":{"2":3}}],["nan",{"2":{"1":16,"2":2,"36":2}}],["name=",{"2":{"6":1,"11":1,"13":1}}],["nametuple",{"2":{"1":1}}],["names",{"2":{"1":2,"11":1,"23":1,"36":1}}],["named",{"2":{"1":1,"20":1}}],["namedtuple",{"2":{"1":12,"2":5}}],["name",{"2":{"1":25,"2":7,"6":2,"11":1,"13":1,"36":3,"40":6,"44":2,"45":1}}],["nvkelso",{"2":{"1":3,"44":1}}],["n",{"2":{"1":1,"2":3}}],["norway",{"2":{"45":4,"46":11}}],["north",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["normally",{"2":{"1":2}}],["nochecksum",{"2":{"2":2}}],["now",{"2":{"1":1,"26":1,"40":2,"46":2}}],["nodataval",{"2":{"2":3}}],["nodata",{"2":{"1":9}}],["none",{"2":{"18":1}}],["non",{"2":{"1":11,"42":1}}],["no",{"2":{"1":22,"2":4,"36":1}}],["nometadata",{"2":{"1":1}}],["notice",{"2":{"40":1}}],["nothing",{"2":{"1":20,"2":2,"36":2}}],["note",{"2":{"1":10,"24":1,"29":1}}],["not",{"2":{"1":100,"2":6,"10":1,"11":1,"14":1,"26":1,"27":2,"33":1,"36":2,"38":1}}],["neighbour",{"2":{"1":1}}],["ne",{"2":{"1":6,"44":1}}],["newdocs",{"2":{"2":2}}],["newmissingval",{"2":{"1":2}}],["new",{"2":{"1":9,"5":1}}],["nested",{"2":{"1":12,"8":1}}],["needs",{"2":{"2":2}}],["needed",{"2":{"1":4,"26":1}}],["need",{"2":{"1":5,"2":2,"4":1,"6":1,"26":2,"27":4,"36":1,"40":1}}],["netcdf",{"0":{"11":1},"2":{"1":9,"2":14,"11":4,"20":1,"23":1,"26":1,"28":1,"40":2,"46":1}}],["nearly",{"2":{"27":1}}],["nearest",{"2":{"1":1}}],["near",{"2":{"1":3,"23":1,"24":1,"40":2,"42":1}}],["nbsp",{"2":{"1":48,"2":15,"36":1}}],["dp",{"2":{"46":1}}],["dpi=300",{"2":{"41":1}}],["d",{"0":{"33":1,"34":1},"2":{"32":1}}],["df",{"2":{"18":2}}],["dark",{"2":{"37":1}}],["day",{"2":{"16":1}}],["datsets",{"2":{"15":1}}],["datum",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["date",{"2":{"40":1}}],["date=datetime",{"2":{"1":2}}],["dates",{"2":{"1":7,"15":1,"20":1,"43":1}}],["datetime360day",{"2":{"40":12}}],["datetime",{"2":{"1":13,"20":7,"22":5,"23":1}}],["dataaspect",{"2":{"33":1,"34":1}}],["dataframe",{"2":{"1":3,"18":2}}],["dataframes",{"2":{"1":1,"18":1}}],["datasets",{"2":{"1":2,"15":1}}],["dataset",{"2":{"1":4,"2":4,"13":1,"45":1}}],["data",{"0":{"9":1,"31":1,"40":1},"1":{"10":1,"11":1,"12":1,"13":1,"14":1,"15":1,"41":1,"42":1},"2":{"1":51,"2":1,"3":1,"9":1,"13":1,"14":1,"15":3,"20":1,"23":1,"26":1,"27":1,"28":3,"31":4,"36":1,"37":1,"38":1,"40":2,"45":1}}],["drive",{"2":{"27":1}}],["drivers",{"2":{"2":2}}],["drivername",{"2":{"2":2}}],["driver",{"2":{"2":12}}],["draw",{"2":{"2":2,"36":2}}],["drop",{"2":{"1":2,"27":1}}],["dropband",{"2":{"1":2}}],["dhekelia",{"2":{"1":1}}],["dbf",{"2":{"1":7}}],["dstlookup",{"2":{"1":1}}],["dst",{"2":{"1":4,"2":4}}],["due",{"2":{"1":9}}],["during",{"2":{"1":2}}],["duplicate",{"2":{"1":4}}],["documentation",{"2":{"28":1}}],["documenter",{"2":{"13":1}}],["docstring",{"2":{"13":2}}],["docs",{"2":{"1":2,"14":1,"15":2}}],["dot",{"2":{"3":1}}],["down",{"2":{"1":2}}],["downloading",{"2":{"27":1}}],["downloads",{"2":{"1":7,"26":1,"27":1,"40":1,"43":1,"44":2}}],["download",{"0":{"44":1},"1":{"45":1,"46":1},"2":{"1":10,"15":2,"26":1,"40":2,"44":1}}],["do",{"2":{"1":2,"2":5,"3":1,"4":2,"5":1,"20":1,"26":1,"27":1,"36":1,"37":1}}],["don",{"2":{"1":1,"2":4,"8":1}}],["done",{"2":{"1":2,"22":1,"27":1}}],["doesn",{"2":{"42":1}}],["does",{"2":{"1":6}}],["denmark",{"2":{"45":4,"46":4}}],["degc",{"2":{"40":2}}],["degree",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1,"42":1}}],["degrees",{"2":{"1":6}}],["descriptions",{"2":{"28":1}}],["description",{"2":{"24":1,"28":1,"29":1,"30":1,"31":1}}],["designed",{"2":{"23":1}}],["destructively",{"2":{"2":6}}],["destination",{"2":{"1":1}}],["dest",{"2":{"1":3}}],["decimallatitude",{"2":{"17":2}}],["decimallongitude",{"2":{"17":1}}],["decline",{"2":{"1":2}}],["details",{"2":{"13":1,"23":1}}],["determines",{"2":{"1":1}}],["determine",{"2":{"1":6}}],["detect",{"2":{"9":1}}],["detected",{"2":{"1":10,"2":6}}],["detecting",{"2":{"1":1}}],["depending",{"2":{"1":2,"2":1}}],["depth",{"2":{"1":2,"28":1}}],["deferred",{"2":{"24":1}}],["deflate",{"2":{"2":2}}],["deflatelevel",{"2":{"2":2}}],["defualts",{"2":{"1":2}}],["defined",{"2":{"1":1,"2":1}}],["define",{"2":{"1":2,"46":1}}],["defines",{"2":{"1":1,"23":1}}],["defaults",{"2":{"1":3}}],["defaulting",{"2":{"1":1}}],["default",{"2":{"1":60,"2":20,"12":1,"36":1}}],["difficult",{"2":{"8":1}}],["differences",{"2":{"1":2}}],["differently",{"2":{"32":1}}],["different",{"2":{"1":3,"11":1,"14":1,"28":3,"32":1}}],["differnce",{"2":{"1":1}}],["divided",{"2":{"1":2}}],["directions",{"2":{"23":1}}],["directly",{"2":{"1":8,"2":1,"3":1,"4":1,"11":1,"15":1}}],["directory",{"2":{"1":4,"2":2}}],["directories",{"2":{"1":1}}],["dir",{"2":{"1":4}}],["dictionary",{"2":{"2":2}}],["dict",{"2":{"1":5,"2":4,"3":2,"4":1,"6":1,"7":1,"8":2,"33":1,"40":2}}],["disable",{"2":{"2":1}}],["disaggregate",{"2":{"0":2,"1":4,"28":2}}],["distribution",{"2":{"1":1}}],["distance",{"2":{"1":4}}],["diskarrays",{"2":{"2":4}}],["disk",{"0":{"14":1,"42":1},"2":{"1":10,"2":3,"3":1,"4":2,"11":1,"14":1,"24":1,"31":1,"40":2,"42":1,"46":1}}],["dimtuple",{"2":{"1":1}}],["dim",{"2":{"1":2,"11":1}}],["dimz",{"2":{"1":4}}],["dims=ti",{"2":{"40":1}}],["dims=x",{"2":{"3":1}}],["dims=",{"2":{"1":2}}],["dims=band",{"2":{"1":1}}],["dims",{"2":{"1":21,"3":2,"4":1,"6":1,"7":1,"8":2,"18":5,"20":1,"22":3,"23":1,"33":1,"37":5,"40":2}}],["dimension",{"0":{"3":1},"2":{"1":47,"2":14,"3":1,"8":1,"11":1,"12":1,"23":2,"24":1,"28":2,"36":8,"38":1,"40":2}}],["dimensional",{"2":{"2":2,"10":1,"13":1,"36":2,"38":1}}],["dimensionalarray",{"2":{"1":1}}],["dimensionaldata",{"2":{"1":6,"20":1,"23":2,"24":1,"40":1,"42":1}}],["dimensions",{"0":{"21":1},"2":{"1":44,"2":7,"8":2,"10":1,"11":3,"13":1,"20":2,"23":5,"24":1,"29":1,"36":2,"40":1,"42":1}}],["efficient",{"2":{"34":1}}],["effort",{"2":{"27":1}}],["effect",{"2":{"1":3}}],["especially",{"2":{"23":1}}],["ecology",{"2":{"15":1}}],["eltype",{"2":{"18":4,"37":4}}],["else",{"2":{"2":2}}],["elements",{"2":{"1":1,"2":1}}],["element",{"2":{"1":3,"16":1,"17":1,"36":1}}],["elevation",{"2":{"1":1}}],["every",{"2":{"40":1}}],["everything",{"2":{"2":2}}],["evenness",{"2":{"1":7,"37":3}}],["even",{"2":{"1":1,"2":7,"32":1,"33":2,"36":1}}],["edu",{"2":{"2":2,"40":1}}],["equal",{"2":{"2":1}}],["etc",{"2":{"1":1}}],["errors",{"0":{"27":1},"2":{"1":2,"27":1}}],["error",{"2":{"1":4,"27":1,"36":2}}],["empty",{"2":{"1":3}}],["ease",{"2":{"32":1}}],["easy",{"2":{"27":1}}],["east",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":2,"33":1,"37":1}}],["earth",{"2":{"1":4,"44":1}}],["earthenv",{"2":{"1":5,"37":2}}],["eachchunk",{"2":{"2":1}}],["each",{"2":{"1":24,"2":10,"26":1,"28":1,"36":1,"46":1}}],["enumerate",{"2":{"37":2}}],["environmental",{"2":{"15":1}}],["entries",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"33":1,"40":2}}],["entire",{"2":{"1":2,"46":1}}],["enough",{"2":{"2":1}}],["ensure",{"2":{"2":1}}],["end",{"2":{"1":1,"2":1,"4":2,"36":1,"37":2,"46":2}}],["e",{"2":{"1":12,"2":4,"20":1,"23":1,"24":2,"27":1,"28":1,"31":1,"36":1,"38":1}}],["eg",{"2":{"1":3}}],["epsg",{"2":{"1":10,"3":10,"4":5,"6":5,"7":5,"8":10,"18":5,"23":1,"33":5,"37":5,"40":4}}],["either",{"2":{"1":2,"2":1}}],["excluding",{"2":{"24":1}}],["excessive",{"2":{"1":5}}],["exact",{"2":{"27":1}}],["exactly",{"2":{"24":1}}],["examplewrite",{"2":{"46":1}}],["examplep",{"2":{"46":1}}],["examplenorway",{"2":{"46":2}}],["examplenp",{"2":{"46":1}}],["exampledp",{"2":{"46":1}}],["examplemask",{"2":{"45":1}}],["exampleusing",{"2":{"45":1}}],["examplescandinavia",{"2":{"46":1}}],["examplesp",{"2":{"46":1}}],["examples",{"2":{"20":1,"28":1,"40":1}}],["example",{"2":{"1":43,"2":2,"26":1,"27":1,"34":1,"40":1,"42":1,"43":1}}],["exists",{"2":{"2":8}}],["existing",{"2":{"1":3}}],["explicit",{"2":{"23":1,"40":2}}],["experience",{"2":{"1":1}}],["experimental",{"2":{"1":18,"34":1}}],["expected",{"2":{"1":6}}],["exported",{"0":{"1":1}}],["extra",{"2":{"27":1}}],["extracts",{"2":{"1":1}}],["extract",{"0":{"17":1},"2":{"0":1,"1":5,"17":1,"18":2,"30":2}}],["extrema",{"2":{"1":2}}],["ext",{"2":{"1":1,"2":2,"14":1}}],["extensions",{"0":{"26":1},"2":{"26":3}}],["extension",{"2":{"1":2,"2":18}}],["extents",{"2":{"1":18,"28":1}}],["extent",{"0":{"28":1},"2":{"1":42,"3":4,"4":2,"6":2,"7":2,"8":4,"18":2,"20":2,"22":6,"23":2,"28":2,"33":2,"37":2,"40":4}}],["extends",{"2":{"20":1}}],["extend",{"2":{"0":1,"1":8,"28":2}}],["l",{"2":{"37":4}}],["lscene",{"2":{"2":1,"36":1}}],["limited",{"2":{"38":1}}],["limit=300",{"2":{"16":1}}],["limit=5",{"2":{"1":1}}],["little",{"2":{"14":1,"27":1,"34":2}}],["linrange",{"2":{"3":3,"4":2,"6":2,"7":2,"8":4,"18":2,"33":2,"37":2}}],["linewidth=0",{"2":{"1":2,"46":1}}],["lines",{"2":{"1":10,"44":1}}],["line",{"2":{"1":11}}],["listed",{"2":{"24":1}}],["list",{"2":{"1":1}}],["like",{"2":{"1":18,"2":4,"3":1,"20":1,"23":3,"26":2,"32":1,"38":1}}],["lt",{"2":{"1":20,"36":3}}],["lets",{"2":{"46":1}}],["legend=",{"2":{"18":1}}],["legend=false",{"2":{"1":1}}],["left",{"2":{"2":1,"36":1}}],["leave",{"2":{"1":2}}],["length",{"2":{"1":5,"2":1,"36":1,"46":1}}],["level",{"2":{"1":1,"2":2}}],["layout",{"2":{"37":2}}],["layername",{"2":{"11":2,"13":1}}],["layered",{"2":{"1":4,"2":1,"13":1,"46":1}}],["layer",{"0":{"18":1},"2":{"1":16,"2":2,"6":1,"11":1,"13":1,"40":1,"46":1}}],["layersfrom",{"2":{"1":1}}],["layersfrom=band",{"2":{"1":2,"12":1}}],["layers",{"2":{"1":24,"2":3,"4":1,"11":4,"12":1,"13":3,"18":2,"28":1,"37":5,"45":1}}],["label",{"2":{"2":3,"36":3,"37":1,"40":1}}],["labels",{"2":{"1":1}}],["lanczos",{"2":{"1":2}}],["last",{"2":{"1":12}}],["largely",{"2":{"23":1}}],["largest",{"2":{"1":1}}],["larger",{"2":{"1":2}}],["large",{"2":{"1":19,"38":2}}],["lazy=false",{"2":{"1":1,"2":1}}],["lazy=true",{"2":{"1":5,"2":1,"3":1}}],["lazy",{"2":{"1":5,"2":3,"24":1}}],["lazily",{"2":{"1":8,"2":1,"3":1,"46":1}}],["latitude",{"2":{"1":1,"3":2,"4":1,"6":1,"7":1,"8":2,"17":1,"18":1,"21":1,"23":1,"33":1,"37":1,"42":1}}],["latter",{"2":{"1":1}}],["later",{"2":{"1":1}}],["lat",{"2":{"1":4,"20":2,"21":1,"37":1,"40":1}}],["lost",{"2":{"14":1}}],["lossless",{"2":{"1":1}}],["log",{"2":{"13":1}}],["lot",{"2":{"2":2,"46":1}}],["lower",{"2":{"1":13}}],["lower=",{"2":{"1":1}}],["low",{"2":{"1":5,"2":1,"36":1}}],["locus",{"2":{"1":4}}],["location",{"2":{"1":1}}],["long",{"2":{"40":2}}],["longest",{"2":{"38":1}}],["longitude",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"17":1,"18":1,"21":1,"23":1,"33":1,"37":1}}],["lon",{"2":{"1":4,"20":2,"37":1,"40":1}}],["lookups",{"2":{"1":9,"2":1}}],["lookup",{"0":{"21":1},"2":{"1":17,"2":2,"21":2,"23":2}}],["loads",{"2":{"26":1,"40":1}}],["load",{"0":{"16":1,"31":1,"45":1},"2":{"1":13,"9":1,"15":1,"26":2,"40":1,"45":2}}],["loading",{"0":{"40":1},"1":{"41":1,"42":1},"2":{"1":5,"11":1,"38":1}}],["loaded",{"2":{"1":6,"10":1,"11":2,"12":3,"13":2,"14":1}}],["h5",{"2":{"13":2}}],["html",{"2":{"2":4}}],["https",{"2":{"1":3,"2":6,"40":1,"44":1}}],["height=relative",{"2":{"36":1}}],["help",{"2":{"11":1}}],["header",{"2":{"2":3}}],["heatmap",{"2":{"1":1,"2":4,"32":1,"36":4,"37":1,"38":2}}],["heterogeneity",{"2":{"1":1}}],["here",{"2":{"1":2,"2":1,"8":1,"24":1,"34":1,"36":2,"40":1}}],["hosting",{"2":{"27":1}}],["however",{"2":{"1":2}}],["how",{"2":{"1":3,"23":1,"27":2,"38":1}}],["holding",{"2":{"2":1,"5":1}}],["holds",{"2":{"1":1,"2":3}}],["hold",{"2":{"1":6}}],["history",{"2":{"40":2}}],["hidden",{"2":{"2":1}}],["hideydecorations",{"2":{"37":1}}],["hidexdecorations",{"2":{"37":1}}],["hide",{"2":{"1":7}}],["high",{"2":{"1":6,"2":1,"24":1,"36":1,"38":1}}],["had",{"2":{"5":1}}],["habitat",{"2":{"1":1}}],["habitatheterogeneity",{"2":{"1":4,"37":2}}],["handled",{"2":{"1":1}}],["handle",{"2":{"1":2,"23":2,"45":1}}],["having",{"2":{"1":3}}],["have",{"2":{"1":12,"2":4,"8":1,"10":1,"11":3,"23":1,"26":1,"27":1,"40":1,"42":1}}],["haschunks",{"2":{"2":1}}],["has",{"2":{"1":10,"14":1,"34":1,"40":2}}],["hdf5",{"2":{"1":1,"2":1,"13":1,"14":1,"26":1}}],["j",{"2":{"37":2}}],["json3",{"2":{"16":2}}],["january",{"2":{"1":3,"36":1}}],["join",{"2":{"1":1,"28":1}}],["joined",{"2":{"1":2}}],["just",{"2":{"1":4,"2":2,"3":1,"24":1,"26":1,"27":2,"34":1}}],["juliafunction",{"2":{"46":1}}],["juliafig",{"2":{"33":1}}],["juliafilearray",{"2":{"2":1}}],["juliafilestack",{"2":{"2":1}}],["juliafiles",{"2":{"1":1}}],["juliawrite",{"2":{"42":1}}],["juliawarp",{"2":{"1":1}}],["julialayers",{"2":{"37":1}}],["julialon",{"2":{"21":1}}],["julianewstack",{"2":{"4":1}}],["juliaopen",{"2":{"2":1,"4":1}}],["juliaopenstack",{"2":{"2":1}}],["juliazonal",{"2":{"1":1}}],["juliatrim",{"2":{"1":1}}],["juliashapes",{"2":{"45":1}}],["juliastack",{"2":{"34":1}}],["juliasurface",{"2":{"33":1}}],["julias",{"2":{"2":3,"10":1}}],["juliaskipmissing",{"2":{"2":1}}],["juliaslice",{"2":{"1":1}}],["juliaset",{"2":{"8":1}}],["juliasetmappedcrs",{"2":{"1":1}}],["juliasetcrs",{"2":{"1":1}}],["juliaras",{"2":{"22":3,"23":1}}],["juliarasterdiskarray",{"2":{"2":1}}],["juliarasterize",{"2":{"1":2}}],["juliarasters",{"2":{"2":1,"36":1}}],["juliarasterstack",{"2":{"1":1}}],["juliarasterseries",{"2":{"1":2}}],["juliaraster",{"2":{"1":1}}],["juliarecords",{"2":{"16":1}}],["juliaread",{"2":{"2":2}}],["juliaresample",{"2":{"1":1}}],["juliareproject",{"2":{"1":2}}],["juliareplace",{"2":{"1":1,"7":1}}],["juliapoints",{"2":{"1":1}}],["juliaprojected",{"2":{"1":1}}],["juliaextract",{"2":{"1":1}}],["juliaextend",{"2":{"1":1}}],["juliadisaggregate",{"2":{"1":2}}],["juliacheckmem",{"2":{"2":1}}],["juliacoords",{"2":{"17":1}}],["juliacoverage",{"2":{"1":2}}],["juliaconvertlookup",{"2":{"1":1}}],["juliacombine",{"2":{"1":1}}],["juliaclassify",{"2":{"1":2}}],["juliacellsize",{"2":{"1":1}}],["juliacrs",{"2":{"1":1}}],["juliab",{"2":{"6":1}}],["juliabase",{"2":{"2":4}}],["juliabanddim",{"2":{"1":1}}],["juliaband",{"2":{"1":1}}],["juliaboolmask",{"2":{"1":1}}],["juliausing",{"2":{"1":19,"3":1,"8":1,"13":1,"15":1,"16":1,"18":3,"20":2,"24":1,"26":1,"33":1,"37":1,"38":1,"39":1,"40":3,"41":1,"44":1}}],["juliaa",{"2":{"4":1,"6":1,"18":1,"40":1,"42":1}}],["juliaabstractprojected",{"2":{"2":1}}],["juliaabstractrasterstack",{"2":{"1":1}}],["juliaabstractrasterseries",{"2":{"1":1}}],["juliaabstractraster",{"2":{"1":1}}],["juliaaggregate",{"2":{"1":2}}],["juliamean",{"2":{"3":1}}],["juliamosaic",{"2":{"1":2}}],["juliamodify",{"2":{"1":1}}],["juliamissingval",{"2":{"1":1}}],["juliamissingmask",{"2":{"1":1}}],["juliamakie",{"2":{"34":1,"35":1,"36":2}}],["juliamask",{"2":{"1":2}}],["juliamappedindex",{"2":{"1":1}}],["juliamappedcrs",{"2":{"1":1}}],["juliamappedbounds",{"2":{"1":1}}],["juliamapped",{"2":{"1":1}}],["juliajulia>",{"2":{"1":2}}],["juliagdalarray",{"2":{"1":1}}],["julia",{"2":{"1":1,"2":1,"20":1,"25":1,"26":1,"29":1,"37":1}}],["jl",{"0":{"15":1,"45":1,"46":1},"2":{"1":43,"2":4,"8":1,"9":1,"11":1,"12":1,"15":3,"17":1,"20":2,"23":1,"24":1,"26":1,"27":3,"36":1,"38":3,"40":2,"42":2,"43":1,"45":1,"46":1}}],["ignore",{"2":{"1":4,"2":2}}],["ignored",{"2":{"1":1,"2":1}}],["image",{"2":{"37":1}}],["improve",{"2":{"2":2}}],["implemented",{"2":{"1":1,"14":1}}],["implementation",{"2":{"1":2}}],["implementations",{"2":{"1":1}}],["imola",{"2":{"1":1}}],["irregular",{"2":{"1":3}}],["i",{"2":{"1":2,"2":4,"18":1,"36":3,"37":6,"46":1}}],["ie",{"2":{"1":1}}],["if",{"2":{"1":72,"2":37,"3":1,"5":1,"6":1,"17":1,"21":2,"27":1,"31":1,"36":7,"38":1,"40":1,"46":1}}],["identically",{"2":{"1":1}}],["identical",{"2":{"1":4}}],["input",{"2":{"36":2}}],["inputs",{"2":{"1":1}}],["invoke",{"2":{"38":1}}],["involves",{"2":{"27":1}}],["invert",{"2":{"1":8}}],["info",{"2":{"24":1,"29":1}}],["information",{"2":{"1":2}}],["inf",{"2":{"3":4,"4":6}}],["indices",{"2":{"22":1,"24":2,"40":1}}],["indicates",{"2":{"2":1,"36":1}}],["individually",{"2":{"2":2}}],["individual",{"2":{"1":1,"2":1,"13":1,"46":1}}],["independently",{"2":{"1":1}}],["indexing",{"2":{"4":1}}],["indexed",{"2":{"1":3,"2":1,"3":1,"20":1}}],["index",{"0":{"0":1,"22":1},"2":{"1":19,"2":3,"22":1,"23":1,"24":4,"40":1}}],["indonesian",{"2":{"1":1}}],["indonesia",{"2":{"1":7}}],["installation",{"0":{"25":1}}],["install",{"0":{"20":1}}],["instead",{"2":{"1":5,"2":1,"8":1,"38":1,"40":2}}],["insertcols",{"2":{"1":1}}],["inside",{"2":{"1":18}}],["including",{"2":{"1":4}}],["includes",{"2":{"46":1}}],["included",{"2":{"1":3,"46":1}}],["include",{"2":{"1":9,"27":1}}],["increase",{"2":{"1":1}}],["increases",{"2":{"1":2}}],["incorrectly",{"2":{"5":1}}],["incorrect",{"2":{"1":5}}],["int64",{"2":{"16":4,"20":2,"21":1,"22":6,"23":2}}],["into",{"2":{"1":11,"15":1,"27":1,"28":1,"29":1,"46":1}}],["intended",{"2":{"26":1}}],["integrated",{"2":{"15":1}}],["integration",{"0":{"15":1}}],["integer",{"2":{"1":6}}],["integers",{"2":{"1":5}}],["interpreted",{"2":{"34":1}}],["interpolation",{"2":{"1":1}}],["interface",{"2":{"34":1}}],["intervalsets",{"2":{"1":1}}],["intervals",{"2":{"1":3,"3":4,"4":2,"6":2,"7":2,"8":4,"18":2,"33":2,"37":2,"40":6,"46":1}}],["interval",{"2":{"1":5,"22":1,"24":1,"40":2}}],["internal",{"0":{"2":1},"2":{"1":2,"2":3}}],["int",{"2":{"1":24,"2":9}}],["in",{"0":{"32":1,"33":1,"34":1},"2":{"1":171,"2":13,"4":1,"8":1,"11":2,"13":1,"14":3,"15":1,"17":2,"24":2,"26":3,"27":2,"28":1,"29":2,"31":1,"32":1,"34":3,"36":1,"37":4,"38":1,"40":5,"42":1,"43":1,"46":1}}],["inherit",{"2":{"1":1}}],["issue",{"2":{"27":3}}],["issues",{"2":{"1":18,"11":1,"27":3}}],["isn",{"2":{"27":1}}],["ismissing",{"2":{"17":1}}],["islands",{"2":{"1":6,"46":1}}],["island",{"2":{"1":2}}],["isfile",{"2":{"1":4}}],["is",{"2":{"1":207,"2":28,"3":2,"8":1,"11":2,"12":1,"13":1,"15":1,"20":1,"21":2,"22":1,"23":3,"24":2,"27":1,"31":1,"32":1,"33":2,"34":2,"36":2,"38":3,"42":1,"46":1}}],["itr",{"2":{"2":1}}],["iteratively",{"2":{"1":1}}],["iterator",{"2":{"1":1}}],["iterable",{"2":{"1":8,"2":1}}],["iterables",{"2":{"1":1}}],["it",{"2":{"1":50,"2":21,"8":1,"26":2,"27":7,"31":1,"34":1,"36":1,"38":1,"40":5,"46":1}}],["its",{"2":{"1":2,"2":1,"26":1,"27":1,"36":1}}],["wgs",{"2":{"3":6,"4":3,"6":3,"7":3,"8":6,"18":3,"33":3,"37":3}}],["www",{"2":{"2":2,"40":1}}],["wc2",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"33":1}}],["wc",{"2":{"1":10}}],["well",{"2":{"26":1}}],["wellknowntext",{"2":{"1":1}}],["were",{"2":{"3":1,"14":1}}],["web",{"2":{"2":2,"27":1}}],["weighted",{"2":{"1":2}}],["wether",{"2":{"1":2}}],["we",{"2":{"1":6,"2":3,"3":1,"4":2,"8":2,"26":1,"27":9,"34":1,"38":1,"40":4,"42":1,"43":1,"45":2,"46":2}}],["wrong",{"2":{"2":1}}],["writing",{"0":{"14":1},"2":{"1":5,"2":6,"31":1}}],["written",{"2":{"1":7,"2":6,"14":2}}],["writes",{"2":{"2":2}}],["write=false",{"2":{"2":1}}],["write=true",{"2":{"1":2,"2":1,"4":1}}],["write",{"0":{"31":1,"42":1},"2":{"1":15,"2":24,"4":1,"14":2,"18":2,"31":2,"42":1,"46":3}}],["wrapping",{"2":{"2":4,"21":1}}],["wrapped",{"2":{"1":1,"2":1}}],["wrapper",{"2":{"1":2,"2":3}}],["wrap",{"2":{"1":1}}],["worst",{"2":{"1":1}}],["world",{"2":{"1":2}}],["worldclim",{"2":{"1":20,"3":3,"4":1,"6":2,"7":1,"8":2,"15":1,"18":1,"24":1,"26":1,"33":2,"34":1,"36":2,"38":1,"39":1,"45":2}}],["working",{"2":{"2":1,"27":1,"36":1}}],["works",{"2":{"1":1,"3":1,"8":1,"32":1,"33":2}}],["work",{"2":{"1":7,"2":2,"23":1,"24":1,"26":1,"27":1,"29":1,"46":1}}],["would",{"2":{"1":2,"3":1}}],["way",{"2":{"1":3,"2":1,"24":1,"34":1,"38":1}}],["warnings",{"2":{"1":2}}],["warning",{"2":{"1":18,"34":1}}],["warped",{"2":{"1":2}}],["warp",{"2":{"0":1,"1":8,"28":1}}],["was",{"2":{"1":2,"26":2}}],["wind",{"2":{"45":1}}],["windowed",{"2":{"1":1}}],["width=5",{"2":{"36":1}}],["width",{"2":{"2":1,"36":1,"37":5}}],["wish",{"2":{"2":1}}],["will",{"2":{"1":91,"2":22,"3":1,"4":1,"6":1,"8":3,"9":1,"11":1,"20":1,"23":1,"38":5,"40":2,"43":1,"46":2}}],["within",{"2":{"24":1}}],["with=poly",{"2":{"45":1}}],["with=maskfile",{"2":{"2":1}}],["with=wc",{"2":{"1":2}}],["without",{"2":{"1":6,"11":1,"13":1,"27":2}}],["with",{"0":{"36":1,"46":1},"2":{"1":84,"2":17,"3":2,"4":1,"6":1,"7":1,"8":3,"13":1,"14":1,"15":1,"20":1,"23":4,"24":1,"27":2,"32":1,"33":1,"36":1,"37":1,"38":2,"40":4,"43":1,"45":1,"46":3}}],["whose",{"2":{"2":1,"36":1}}],["whole",{"2":{"1":3}}],["whatever",{"2":{"1":1,"27":1}}],["whether",{"2":{"1":3,"2":3,"36":1}}],["wherever",{"2":{"1":2}}],["where",{"2":{"1":46,"2":1,"14":1,"23":2,"24":2,"26":1,"46":1}}],["when",{"2":{"1":64,"2":3,"3":2,"4":2,"26":1,"27":1,"42":1,"46":1}}],["while",{"2":{"1":1}}],["which",{"2":{"1":26,"2":6,"4":1,"8":1,"9":1,"10":1,"12":1,"34":3,"36":3,"38":1,"40":1,"46":1}}],["ocean",{"2":{"40":1,"42":1}}],["occurs",{"2":{"4":1}}],["occurrence",{"2":{"1":3,"16":2,"18":1}}],["occur",{"2":{"1":23,"27":1}}],["o1",{"2":{"40":2}}],["o",{"2":{"4":2}}],["omitted",{"2":{"1":1,"16":1}}],["obtain",{"2":{"1":1,"38":1}}],["observable",{"2":{"36":2}}],["observables",{"0":{"36":1},"2":{"36":1}}],["observation",{"2":{"1":1}}],["obs",{"2":{"1":2,"36":3}}],["obj",{"2":{"1":10}}],["object",{"0":{"5":1,"24":1,"28":1},"1":{"6":1,"7":1,"8":1},"2":{"1":36,"2":10,"5":2,"8":1,"16":1,"24":1,"28":4,"29":2,"30":1,"42":1}}],["objects",{"0":{"29":1},"2":{"1":17,"2":5,"8":1,"24":2,"28":2,"31":3,"40":2}}],["our",{"2":{"1":1,"27":1,"40":1}}],["outside",{"2":{"1":2}}],["output",{"2":{"1":27,"20":1}}],["out",{"2":{"1":5,"36":1,"37":1,"46":1}}],["opacity=0",{"2":{"18":1}}],["op",{"2":{"1":5}}],["optionally",{"2":{"1":1}}],["options",{"2":{"1":1,"2":6,"23":1}}],["optimisations",{"2":{"1":3}}],["opbject",{"2":{"1":1}}],["operation",{"0":{"30":1},"2":{"1":8,"2":1}}],["operations",{"2":{"1":5,"2":1,"11":1}}],["opens",{"2":{"2":1}}],["openstack",{"2":{"0":1,"2":3}}],["openinterval",{"2":{"1":1}}],["open",{"2":{"1":6,"2":11,"4":1,"31":2}}],["opened",{"2":{"1":3,"2":3}}],["otherwise",{"2":{"1":9,"11":1}}],["others=0",{"2":{"1":2}}],["others=nothing",{"2":{"1":1}}],["others",{"2":{"1":9}}],["other",{"2":{"1":20,"2":8,"13":1,"14":1,"23":1,"24":1,"26":1,"27":1,"29":1,"34":1,"40":2,"46":1}}],["overridden",{"2":{"2":1}}],["overlap",{"2":{"1":2,"46":1}}],["overlapping",{"2":{"1":2}}],["over",{"0":{"3":1},"2":{"1":11,"2":1,"3":2,"4":1,"27":1,"40":1,"46":1}}],["onwards",{"2":{"26":1}}],["one",{"2":{"1":7,"2":4,"8":2,"40":3}}],["on",{"2":{"1":26,"2":5,"8":1,"15":1,"18":1,"23":1,"24":1,"26":1,"27":3,"28":1,"31":1,"36":2,"38":3,"40":2}}],["only",{"2":{"1":29,"2":5,"3":1,"4":1,"8":1,"26":1,"38":1,"40":2}}],["offset",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"33":1}}],["of=countries",{"2":{"1":1}}],["often",{"2":{"1":9,"2":1,"27":1}}],["of",{"0":{"28":1},"2":{"1":216,"2":50,"3":2,"4":2,"5":1,"6":2,"7":1,"8":5,"9":1,"13":1,"15":1,"17":1,"22":1,"23":1,"24":3,"27":4,"28":3,"33":1,"34":1,"36":20,"37":1,"38":2,"40":4,"42":1,"46":3}}],["org",{"2":{"2":4}}],["original",{"2":{"1":4,"2":3,"40":4}}],["order=forwardordered",{"2":{"1":2}}],["order=autoorder",{"2":{"1":2}}],["order",{"2":{"1":14}}],["or",{"0":{"28":1},"2":{"1":284,"2":35,"4":1,"5":1,"6":1,"14":1,"15":1,"18":1,"20":1,"22":2,"26":1,"27":4,"28":5,"29":2,"30":1,"31":1,"32":1,"34":1,"36":8,"38":2,"42":1}}],["text",{"2":{"34":1}}],["template",{"2":{"27":2}}],["temperatures",{"2":{"40":1}}],["temperature",{"2":{"6":2,"13":1,"40":4,"42":1}}],["tempname",{"2":{"1":1}}],["tempfile",{"2":{"1":4}}],["tempory",{"2":{"1":1}}],["temp=",{"2":{"1":1}}],["temp",{"2":{"1":2}}],["typing",{"0":{"20":1}}],["typically",{"2":{"2":1}}],["typemax",{"2":{"36":1}}],["typename",{"2":{"2":2}}],["types",{"2":{"2":3,"27":1,"46":1}}],["type",{"2":{"1":16,"2":13,"14":1,"36":4}}],["two",{"2":{"1":2,"24":1,"38":1}}],["twice",{"2":{"1":2}}],["tmax",{"2":{"1":3,"45":1}}],["tmin",{"2":{"1":2,"45":1}}],["t",{"2":{"1":3,"2":5,"8":1,"27":1,"40":2,"42":1}}],["target",{"2":{"1":1}}],["tavg",{"2":{"1":3,"15":1}}],["tabular",{"2":{"1":1}}],["table",{"0":{"30":1},"2":{"1":17,"16":1}}],["tables",{"2":{"1":16}}],["take",{"2":{"2":1,"24":1,"27":1,"36":1,"40":1,"46":1}}],["takes",{"2":{"1":2}}],["taken",{"2":{"1":4}}],["taking",{"2":{"1":3,"12":1}}],["tickalign",{"2":{"37":4}}],["tickalign=1",{"2":{"37":1}}],["ticks=false",{"2":{"37":2}}],["ticksize",{"2":{"37":5}}],["tiled",{"2":{"34":1,"38":1}}],["ti=at",{"2":{"23":1}}],["ti=1",{"2":{"22":1,"40":1}}],["tightly",{"2":{"15":1}}],["titles",{"2":{"2":1,"36":1}}],["title",{"2":{"2":1,"36":1,"37":1}}],["ti",{"2":{"1":7,"3":1,"11":1,"20":6,"22":4,"23":1,"40":5,"42":1}}],["tif",{"2":{"1":8,"3":2,"4":1,"6":1,"7":1,"8":2,"12":2,"33":1,"46":2}}],["tifs",{"2":{"1":1}}],["tiff",{"2":{"1":2,"2":4,"12":1}}],["timespan",{"2":{"40":1}}],["time",{"0":{"3":1},"2":{"1":4,"3":1,"20":1,"22":1,"23":1,"26":1,"27":2,"34":1,"40":4,"46":1}}],["trace",{"2":{"27":1}}],["transect",{"2":{"42":1}}],["transformations",{"2":{"26":1}}],["transferred",{"2":{"1":1}}],["transparent",{"2":{"2":2,"36":2,"37":2}}],["tr",{"2":{"1":2}}],["trigger",{"2":{"27":1}}],["triggers",{"2":{"1":1,"27":1}}],["trims",{"2":{"28":1}}],["trimming",{"2":{"1":1}}],["trimmed",{"2":{"1":3,"37":1}}],["trim",{"2":{"0":1,"1":10,"28":1,"37":2,"45":7,"46":1}}],["try",{"2":{"1":1,"8":1}}],["true",{"2":{"1":34,"2":18,"16":1,"36":1}}],["treated",{"2":{"1":11,"23":1,"34":1}}],["tuples",{"2":{"1":3}}],["tuple",{"2":{"1":64,"2":6,"16":2,"17":2}}],["together",{"2":{"43":1}}],["tos",{"2":{"40":5,"41":1,"42":3}}],["toy",{"2":{"20":1}}],["top",{"2":{"2":1,"36":1}}],["touch",{"2":{"1":2}}],["touches",{"2":{"1":11}}],["to=b",{"2":{"1":1}}],["to=first",{"2":{"1":1}}],["to=awap",{"2":{"1":2}}],["to=rnge",{"2":{"1":1}}],["tolerances",{"2":{"1":2}}],["tolerance",{"2":{"1":3}}],["total",{"2":{"1":2}}],["to",{"0":{"14":1,"31":1,"42":1},"2":{"1":302,"2":57,"3":1,"4":5,"5":1,"6":1,"8":6,"9":2,"11":1,"14":2,"15":2,"17":1,"18":3,"20":2,"23":4,"24":4,"26":5,"27":9,"28":5,"31":5,"32":1,"34":1,"36":8,"37":1,"38":4,"40":4,"42":1,"43":1,"46":5}}],["things",{"2":{"2":1}}],["third",{"2":{"1":2,"2":1,"36":1,"40":1}}],["this",{"2":{"1":61,"2":9,"4":1,"8":1,"20":2,"26":2,"27":1,"33":1,"34":2,"36":4,"38":1,"40":1,"43":1}}],["three",{"2":{"27":1}}],["thread",{"2":{"1":4}}],["threadsafe=true",{"2":{"1":1}}],["threadsafe",{"2":{"1":7}}],["threading",{"2":{"1":6}}],["threaded=false",{"2":{"1":1}}],["threaded",{"2":{"1":20}}],["through",{"2":{"1":1,"2":1,"28":1}}],["than",{"2":{"1":6,"14":2,"32":1,"40":1}}],["that",{"0":{"28":1,"29":1},"2":{"1":62,"2":9,"5":1,"8":2,"11":1,"14":1,"15":1,"20":1,"27":7,"29":1,"34":1,"36":1,"40":1,"46":1}}],["then",{"2":{"1":2,"2":1,"3":1,"6":1,"18":1,"20":1,"27":2,"36":1,"40":1,"43":1,"45":2}}],["theme",{"0":{"35":1},"1":{"36":1,"37":1},"2":{"34":3,"35":1,"36":4,"37":2}}],["theming",{"2":{"34":1}}],["themselves",{"2":{"2":1}}],["them",{"2":{"1":5,"2":1,"18":1,"23":1,"27":2,"46":1}}],["there",{"2":{"1":6,"2":1,"27":3,"46":1}}],["these",{"2":{"1":13,"2":2,"12":1,"13":1,"23":1,"29":1,"36":1,"46":2}}],["their",{"2":{"1":1,"45":1}}],["they",{"2":{"1":6,"2":1,"10":2,"14":2,"23":1,"27":2}}],["the",{"0":{"3":1,"20":1,"21":1,"28":1,"44":1},"1":{"45":1,"46":1},"2":{"1":486,"2":114,"3":2,"4":4,"5":2,"6":3,"8":4,"11":3,"12":2,"13":2,"14":1,"15":4,"17":1,"20":2,"22":1,"23":4,"24":13,"26":2,"27":14,"28":4,"31":2,"32":1,"34":1,"36":42,"37":2,"38":7,"40":10,"42":3,"43":2,"45":2,"46":6}}],["flipaxis",{"2":{"37":3}}],["fletcher32",{"2":{"2":2}}],["flexible",{"2":{"1":1}}],["flag",{"2":{"1":1}}],["flags",{"2":{"1":4}}],["float",{"2":{"1":2}}],["floating",{"2":{"1":5}}],["float32",{"2":{"1":5,"3":2,"4":1,"6":1,"7":1,"8":2,"18":4,"33":1,"36":1,"40":2}}],["float64",{"2":{"1":8,"3":7,"4":4,"6":4,"7":4,"8":8,"16":2,"17":2,"18":4,"20":1,"22":3,"23":1,"33":4,"37":4,"40":4}}],["framerate",{"2":{"36":1}}],["fraction",{"2":{"1":2}}],["from",{"0":{"21":1},"2":{"1":66,"2":14,"3":1,"8":1,"11":2,"12":1,"23":1,"24":1,"26":1,"30":1,"31":1,"36":1,"40":1,"45":1,"46":1}}],["features",{"2":{"1":2}}],["feature",{"2":{"1":23}}],["f",{"2":{"1":12,"2":3,"24":1}}],["fully",{"2":{"38":1}}],["functionality",{"2":{"26":2}}],["function",{"2":{"1":31,"2":1,"3":1,"4":1,"24":2,"27":1,"28":1,"32":1,"36":1,"38":3,"46":2}}],["functions",{"0":{"1":1,"2":1},"2":{"1":10,"38":1,"40":1}}],["future",{"2":{"1":20}}],["fast",{"2":{"10":1}}],["fastest",{"2":{"1":1}}],["faster",{"2":{"1":9}}],["fall",{"2":{"40":1}}],["falls",{"2":{"24":1}}],["fallback",{"2":{"2":2,"42":1}}],["falling",{"2":{"1":1}}],["false",{"2":{"1":23,"2":11,"37":1}}],["fail",{"2":{"1":1}}],["factor",{"2":{"1":4}}],["facilitate",{"2":{"1":1}}],["following",{"2":{"20":1}}],["focus",{"2":{"15":1}}],["fo",{"2":{"1":1}}],["found",{"2":{"1":2,"2":2}}],["forward",{"2":{"38":1}}],["forwardordered",{"2":{"1":4,"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"20":3,"21":1,"22":7,"23":2,"33":1,"37":1,"40":6}}],["foreach",{"2":{"18":1}}],["form",{"2":{"1":1}}],["formats",{"0":{"14":1},"2":{"14":3}}],["format",{"2":{"1":3,"13":1}}],["forced",{"2":{"2":1}}],["force",{"2":{"1":10,"2":15}}],["for",{"2":{"1":136,"2":25,"4":1,"9":1,"11":1,"13":2,"14":2,"15":3,"17":1,"23":2,"26":3,"27":3,"28":3,"29":1,"30":1,"31":1,"32":1,"34":1,"36":7,"37":4,"38":4,"42":1,"46":3}}],["figure",{"2":{"37":3}}],["fig",{"2":{"33":4,"36":2,"37":10}}],["fixing",{"2":{"27":1}}],["fixed",{"2":{"27":1}}],["fix",{"2":{"27":3}}],["fix2",{"2":{"1":9}}],["finally",{"2":{"26":1}}],["find",{"2":{"24":1,"27":1}}],["finished",{"2":{"26":1}}],["finish",{"2":{"2":1}}],["field",{"2":{"1":1,"8":1}}],["fields",{"2":{"1":6,"5":1}}],["filter",{"2":{"2":2,"24":1}}],["filled",{"2":{"38":1,"40":1}}],["fillvalue",{"2":{"2":3,"40":2}}],["fillalpha=0",{"2":{"1":2,"46":1}}],["fill=1",{"2":{"1":2}}],["fill",{"2":{"1":12}}],["fills",{"2":{"1":2}}],["filepaths",{"2":{"1":1}}],["filepath",{"2":{"1":6,"2":6,"3":2,"4":1,"6":1,"7":1,"8":2,"33":1}}],["file",{"0":{"14":1},"2":{"1":44,"2":23,"4":1,"5":1,"11":2,"14":1,"27":7,"28":1,"31":1,"40":2,"46":3}}],["files",{"2":{"1":18,"2":7,"5":1,"10":1,"11":3,"12":2,"14":1,"20":1,"26":1,"27":1,"38":1,"43":1}}],["filestack",{"2":{"0":1,"2":2}}],["filenames",{"2":{"1":5}}],["filename",{"2":{"1":33,"2":20,"4":1,"11":2,"12":2,"13":2,"14":1,"40":2}}],["filearray",{"2":{"0":1,"1":2,"2":3}}],["fit",{"2":{"1":1}}],["first",{"2":{"1":22,"11":1,"13":1,"27":1,"40":3,"43":1,"46":4}}],["sweden",{"2":{"45":4,"46":5}}],["swapping",{"2":{"1":1}}],["smaller",{"2":{"34":1}}],["smapseries",{"2":{"13":1}}],["smap",{"0":{"13":1},"2":{"14":1,"26":1}}],["squished",{"2":{"34":1}}],["square",{"2":{"1":8}}],["sciences",{"2":{"15":1}}],["screen",{"2":{"37":1}}],["scr",{"2":{"2":1}}],["scandinavia",{"2":{"46":6}}],["scandinavian",{"2":{"43":1}}],["scatter",{"2":{"18":2}}],["scarborough",{"2":{"1":1}}],["scale^2",{"2":{"1":2}}],["scale",{"2":{"1":27,"3":2,"4":1,"6":1,"7":1,"8":2,"33":1}}],["snap",{"2":{"1":1,"28":1}}],["skewed",{"2":{"1":1}}],["skipping",{"2":{"2":1}}],["skipped",{"2":{"1":2}}],["skip",{"2":{"1":1}}],["skipmissing=true",{"2":{"1":1}}],["skipmissingval=false",{"2":{"1":1}}],["skipmissingval=true",{"2":{"1":1}}],["skipmissingval",{"2":{"1":2}}],["skipmissing",{"2":{"1":2,"2":1}}],["slow",{"2":{"1":1}}],["slicing",{"2":{"1":1}}],["slices",{"2":{"1":3}}],["sliced",{"2":{"1":5,"40":1}}],["slice",{"2":{"0":1,"1":6,"22":1}}],["src=",{"2":{"36":1}}],["src",{"2":{"1":10,"2":4}}],["s",{"2":{"1":11,"2":7,"8":1,"13":1,"24":2,"27":1}}],["system",{"2":{"1":10,"32":1}}],["symbols",{"2":{"2":1,"36":1}}],["symbol",{"2":{"1":30,"2":6}}],["syntax",{"2":{"1":2,"15":1,"22":1,"46":1}}],["safe",{"2":{"1":4,"2":1}}],["sa",{"2":{"1":6}}],["saved",{"2":{"2":2}}],["savefig",{"2":{"1":22}}],["save",{"2":{"1":3,"2":2,"37":1,"40":1,"46":1}}],["sample",{"2":{"1":4}}],["sampled",{"2":{"1":6,"20":3,"21":1,"22":7,"23":2,"40":2}}],["sampling=intervals",{"2":{"1":4}}],["sampling=autosampling",{"2":{"1":2}}],["sampling",{"2":{"1":2}}],["same",{"2":{"1":11,"5":1,"11":1,"27":1,"28":1,"36":3,"46":1}}],["sure",{"2":{"27":2,"38":1}}],["surface",{"2":{"2":1,"32":2,"33":1,"36":1,"38":2,"40":4,"42":1}}],["subtle",{"2":{"27":2}}],["subplot=i",{"2":{"18":1,"46":1}}],["subplots",{"2":{"18":1,"46":1}}],["subarray",{"2":{"16":1}}],["substrin",{"2":{"1":1}}],["subsetting",{"0":{"24":1}}],["subset",{"2":{"1":1,"18":1,"23":1,"24":1}}],["subdivision",{"2":{"1":2}}],["summed",{"2":{"1":2}}],["sum",{"2":{"1":23}}],["suffix",{"2":{"1":18,"2":2}}],["such",{"2":{"1":11,"2":5,"12":1,"29":1}}],["supports",{"2":{"38":1}}],["supported",{"2":{"38":1}}],["support",{"2":{"36":1}}],["supplied",{"2":{"1":1}}],["supertype",{"2":{"1":3,"2":1}}],["sosstsst",{"2":{"40":2}}],["soil",{"2":{"13":2}}],["software",{"2":{"2":2,"40":1}}],["sovereign",{"2":{"1":1}}],["south",{"2":{"1":1,"18":1}}],["sources",{"0":{"9":1,"31":1},"1":{"10":1,"11":1,"12":1,"13":1,"14":1,"15":1},"2":{"1":2,"15":2,"26":1}}],["source",{"2":{"1":57,"2":27,"36":1}}],["so",{"2":{"1":11,"2":1,"8":1,"15":1,"20":1,"26":1,"27":4,"33":1,"40":1,"42":1}}],["somewhat",{"2":{"32":1}}],["something",{"2":{"20":1}}],["somelayer",{"2":{"1":2}}],["some",{"2":{"1":16,"2":1,"11":1,"14":2,"27":2,"34":1,"45":1}}],["side",{"2":{"2":1,"36":1}}],["sides",{"2":{"1":1}}],["since",{"2":{"1":1,"32":1,"38":1}}],["sinc",{"2":{"1":1}}],["singleton",{"2":{"2":1,"36":1}}],["single",{"2":{"1":37,"2":3,"28":1,"43":1,"46":2}}],["silently",{"2":{"1":1}}],["size=",{"2":{"37":1,"41":1}}],["sizes",{"2":{"2":1,"28":2}}],["size",{"2":{"1":32,"2":10,"18":4,"28":1,"37":4}}],["sized",{"2":{"1":1}}],["simple",{"0":{"38":1,"39":1},"2":{"1":5}}],["simply",{"2":{"1":3,"40":1}}],["similarly",{"2":{"28":1,"38":1}}],["similar",{"2":{"1":1,"20":1,"38":1}}],["still",{"2":{"11":1,"40":1}}],["store",{"2":{"14":1}}],["stored",{"2":{"1":1,"2":4}}],["stores",{"2":{"1":1}}],["steps",{"2":{"1":1,"27":1}}],["stem",{"2":{"1":1}}],["st",{"2":{"1":16,"37":2}}],["stats",{"2":{"1":2}}],["statistics",{"2":{"1":8,"3":1,"30":1,"40":1}}],["stage",{"2":{"1":1}}],["start",{"0":{"19":1},"1":{"20":1,"21":1,"22":1,"23":1,"24":1},"2":{"1":12,"3":4,"4":2,"6":2,"7":2,"8":3,"18":2,"33":2,"37":2}}],["stack",{"2":{"1":33,"2":7,"4":2,"27":1,"28":2,"34":2,"36":4,"46":1}}],["stacks",{"2":{"1":8}}],["standardises",{"2":{"15":1}}],["standard",{"2":{"1":1,"29":1,"40":2}}],["strings",{"2":{"1":1,"2":1,"36":1}}],["string",{"2":{"1":23,"2":9,"3":2,"4":1,"6":1,"7":1,"8":2,"16":2,"33":1,"37":1,"40":2}}],["structures",{"2":{"1":1}}],["sp",{"2":{"46":1}}],["spheroid",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["sphere",{"2":{"1":1}}],["spratly",{"2":{"1":1}}],["spring",{"2":{"1":2}}],["spread",{"2":{"1":1}}],["speed",{"2":{"1":1}}],["speedups",{"2":{"1":5}}],["special",{"2":{"1":2}}],["species",{"2":{"1":4}}],["specify",{"2":{"1":2,"2":5,"8":2,"15":1,"23":1}}],["specifying",{"2":{"1":4,"2":3}}],["specific",{"2":{"2":7,"8":1,"26":1,"28":2}}],["specifically",{"2":{"1":1}}],["specifies",{"2":{"1":2,"38":1}}],["specified",{"2":{"1":13,"5":1}}],["spline",{"2":{"1":1}}],["split",{"2":{"1":2}}],["splat",{"2":{"1":1}}],["splatted",{"2":{"1":2}}],["space",{"2":{"1":1,"24":1,"34":1}}],["spans",{"2":{"1":1,"23":1}}],["span=regular",{"2":{"1":2}}],["span=autospan",{"2":{"1":2}}],["span",{"2":{"1":2}}],["spatial",{"2":{"1":5,"14":1,"20":2,"23":1,"42":1}}],["shrink",{"2":{"28":1}}],["shuffle",{"2":{"2":4}}],["shp",{"2":{"1":12,"44":2}}],["shapes",{"2":{"1":5,"45":6}}],["shapefile",{"0":{"44":1,"45":1},"1":{"45":1,"46":1},"2":{"1":22,"43":1,"44":5,"45":2}}],["shape=",{"2":{"1":1}}],["shape",{"2":{"1":9,"43":1,"46":1}}],["sharing",{"2":{"1":1}}],["shared",{"2":{"1":2}}],["share",{"2":{"1":2,"27":1}}],["shoudle",{"2":{"1":1}}],["should",{"2":{"1":14,"2":2,"36":3}}],["shortcuts",{"2":{"1":2}}],["show",{"2":{"1":10,"38":1}}],["shown",{"2":{"1":1,"38":1}}],["sea",{"2":{"40":4}}],["search",{"2":{"1":1,"16":1}}],["second",{"2":{"26":1}}],["seconds",{"2":{"26":1}}],["se",{"2":{"18":3}}],["separated",{"2":{"1":1,"2":1}}],["separately",{"2":{"1":3}}],["separator",{"2":{"1":3}}],["seem",{"2":{"34":1}}],["seems",{"2":{"1":1}}],["see",{"2":{"1":3,"14":1,"15":1,"23":1}}],["serranilla",{"2":{"1":1}}],["ser",{"2":{"1":2}}],["series",{"2":{"1":19,"2":2,"34":1}}],["sense",{"2":{"1":1}}],["selecting",{"2":{"22":1}}],["selects",{"2":{"1":6}}],["select",{"0":{"22":1,"23":1},"2":{"1":11}}],["selectors",{"2":{"1":1,"24":3}}],["selector",{"2":{"1":10,"24":1}}],["sets",{"2":{"2":1,"36":1}}],["setting",{"2":{"2":1}}],["set",{"0":{"8":1},"2":{"1":14,"2":10,"8":6,"34":1,"35":1,"36":8,"38":1}}],["setmappedcrs",{"2":{"0":1,"1":2,"8":1}}],["setcrs",{"2":{"0":1,"1":2,"8":1}}],["rgba",{"2":{"36":1}}],["rs",{"2":{"16":1,"18":1,"24":1}}],["right",{"2":{"2":2,"27":1,"36":2}}],["rings",{"2":{"1":1}}],["r",{"2":{"1":3,"2":2,"10":1,"17":4}}],["rms",{"2":{"1":1}}],["root",{"2":{"1":1}}],["rotated",{"2":{"1":1}}],["roughly",{"2":{"1":2,"37":1}}],["rowgap",{"2":{"37":1}}],["rows",{"2":{"1":3,"16":1}}],["row",{"2":{"1":3}}],["rnge",{"2":{"1":1}}],["random",{"2":{"20":1,"42":1}}],["rand",{"2":{"20":1}}],["range",{"2":{"1":9,"37":3,"46":1}}],["ras",{"2":{"20":1,"21":2}}],["rasterisation",{"2":{"1":2}}],["rasterized",{"2":{"1":2}}],["rasterize",{"2":{"0":2,"1":10,"30":2}}],["rasterdatasources",{"0":{"15":1},"2":{"1":19,"3":1,"15":4,"16":1,"24":1,"26":2,"33":1,"37":1,"38":1,"39":1,"43":1,"45":2}}],["rasterdiskarray",{"2":{"0":1,"2":2}}],["raster",{"2":{"0":1,"1":102,"2":32,"3":6,"4":6,"6":3,"7":2,"8":4,"9":2,"11":1,"12":1,"13":1,"15":4,"18":1,"20":3,"22":6,"23":2,"24":1,"26":1,"27":2,"29":1,"32":1,"33":4,"36":11,"37":1,"38":4,"39":1,"40":5,"45":1,"46":2}}],["rasterstacks",{"2":{"1":2,"34":1,"38":1,"46":1}}],["rasterstack",{"2":{"0":1,"1":56,"2":7,"4":1,"9":1,"11":1,"12":1,"13":1,"15":2,"18":2,"34":1,"36":5,"37":3,"38":1,"40":1,"45":1}}],["rasterseries",{"2":{"0":1,"1":22,"9":1,"15":2,"46":1}}],["rasters",{"0":{"33":1,"34":1},"2":{"0":55,"1":102,"2":22,"3":3,"4":1,"6":1,"7":1,"8":3,"9":1,"13":1,"15":2,"16":3,"20":5,"23":2,"24":2,"25":1,"26":5,"27":3,"28":1,"33":2,"34":8,"36":6,"37":2,"38":5,"39":1,"40":3,"42":1,"43":1,"45":2,"46":1}}],["ratio",{"2":{"2":2}}],["raw",{"2":{"1":3,"44":1}}],["race",{"2":{"1":5}}],["runs",{"2":{"27":1}}],["running",{"2":{"1":4,"27":1}}],["run",{"2":{"1":8}}],["rplot",{"2":{"0":2,"2":2,"34":3,"36":6,"38":1}}],["re",{"2":{"38":1}}],["remain",{"2":{"36":2}}],["record",{"2":{"36":1}}],["records",{"2":{"17":1}}],["recipes",{"2":{"38":1,"42":1}}],["recipe",{"2":{"32":1}}],["reverseordered",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["reversing",{"2":{"1":1}}],["reef",{"2":{"1":1}}],["reduced",{"2":{"26":1}}],["reduces",{"2":{"1":1}}],["reduce",{"2":{"1":2,"27":1}}],["reducer",{"2":{"1":9}}],["reducing",{"2":{"1":5}}],["region",{"2":{"1":1,"46":3}}],["regions",{"2":{"1":12}}],["regular",{"2":{"1":6,"2":1,"3":4,"4":2,"6":2,"7":2,"8":4,"18":2,"20":3,"21":1,"22":7,"23":2,"24":1,"29":1,"33":2,"37":2,"40":5}}],["related",{"2":{"13":1}}],["reliable",{"2":{"1":18}}],["relhum",{"2":{"1":2}}],["relhum=",{"2":{"1":1}}],["reason",{"2":{"34":1}}],["reassign",{"2":{"8":1}}],["really",{"2":{"27":1}}],["real",{"2":{"1":18}}],["reading",{"2":{"31":1}}],["reads",{"2":{"24":1}}],["read",{"2":{"1":13,"2":9,"4":1,"11":1,"20":1,"31":4,"46":1}}],["rebuild",{"0":{"6":1},"2":{"1":1,"5":1,"6":3,"8":1}}],["res=3000",{"2":{"38":1}}],["res=0",{"2":{"1":1}}],["reset",{"0":{"35":1},"1":{"36":1,"37":1},"2":{"36":1}}],["resampling",{"2":{"1":17}}],["resamples",{"2":{"1":1}}],["resampled",{"2":{"1":1}}],["resample",{"2":{"0":1,"1":15,"28":2}}],["result",{"2":{"1":5}}],["results",{"2":{"1":6}}],["resulting",{"2":{"1":6}}],["resolution",{"0":{"28":1},"2":{"1":19,"38":3}}],["res",{"2":{"1":21,"38":1}}],["rest",{"2":{"1":1}}],["refer",{"2":{"1":1}}],["reference",{"0":{"1":1,"2":1},"2":{"1":11}}],["refdims",{"2":{"1":5}}],["retrieved",{"2":{"2":2}}],["retrieve",{"2":{"1":3,"2":1}}],["returning",{"2":{"1":2}}],["returned",{"2":{"1":14}}],["returns",{"2":{"1":8,"2":5}}],["return",{"2":{"1":7,"46":1}}],["required",{"2":{"1":24,"2":2,"29":1}}],["reports",{"2":{"27":1}}],["reporting",{"2":{"2":1}}],["reproduced",{"2":{"27":1}}],["reproduce",{"2":{"27":1}}],["reprojecting",{"2":{"1":1}}],["reproject",{"2":{"0":2,"1":6}}],["represent",{"2":{"1":1,"23":2}}],["representing",{"2":{"1":1}}],["reprsenting",{"2":{"1":1}}],["replaced",{"2":{"1":1,"2":1}}],["replacement",{"2":{"1":6}}],["replace",{"0":{"7":1},"2":{"0":1,"1":17,"6":2,"29":3,"31":1}}],["px",{"2":{"39":1}}],["put",{"2":{"26":1,"27":1}}],["phylum",{"2":{"16":1}}],["p",{"2":{"1":4,"18":3,"46":8}}],["pygmy",{"2":{"1":1}}],["per",{"2":{"39":1}}],["peru",{"2":{"1":1}}],["performance",{"2":{"1":4}}],["permission",{"2":{"1":1}}],["permissions",{"2":{"1":1}}],["plt",{"2":{"37":5}}],["platform",{"2":{"27":1}}],["places",{"2":{"27":1}}],["placed",{"2":{"2":1,"36":1}}],["place",{"2":{"1":6,"27":1}}],["please",{"2":{"1":18}}],["plotted",{"2":{"34":1}}],["plotting",{"0":{"32":1,"36":1,"46":1},"2":{"2":2,"32":1,"36":2,"38":2,"40":1,"42":1}}],["plottype",{"2":{"2":1,"36":1}}],["plot`",{"2":{"1":1}}],["plots",{"0":{"38":1,"46":1},"2":{"1":18,"18":1,"26":1,"32":1,"34":2,"38":4,"40":3,"41":2,"43":1,"46":1}}],["plot",{"0":{"41":2,"43":1},"2":{"1":37,"2":3,"15":1,"18":2,"24":1,"32":1,"33":3,"36":3,"37":1,"38":7,"39":1,"40":8,"42":3,"43":1,"46":9}}],["pixelated",{"2":{"1":1}}],["pixel",{"2":{"1":18,"38":2,"45":1}}],["pixels",{"2":{"1":15}}],["png",{"2":{"1":22,"37":1}}],["principle",{"2":{"8":1}}],["print",{"2":{"1":4,"2":2}}],["primem",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"33":1,"37":1}}],["practically",{"2":{"27":1}}],["practice",{"2":{"1":2,"2":1,"36":1}}],["practise",{"2":{"1":1}}],["predefined",{"2":{"31":1}}],["predictor",{"2":{"18":1}}],["predictors",{"2":{"18":6}}],["previously",{"2":{"26":1}}],["prefer",{"2":{"1":1}}],["prec",{"2":{"1":8,"45":1}}],["pressure",{"2":{"1":1}}],["pressure=",{"2":{"1":1}}],["present",{"2":{"1":2}}],["problem",{"2":{"27":2}}],["problems",{"2":{"1":22,"2":2}}],["providing",{"2":{"14":1}}],["provide",{"2":{"34":1}}],["provides",{"2":{"13":1,"46":1}}],["provided",{"2":{"1":6,"38":1}}],["prod",{"2":{"1":1}}],["produces",{"2":{"27":1}}],["produce",{"2":{"1":2,"40":1}}],["productive",{"2":{"1":5}}],["properties",{"0":{"5":1},"1":{"6":1,"7":1,"8":1},"2":{"1":3,"8":2,"23":1}}],["progress=false",{"2":{"1":4}}],["progress",{"2":{"1":22}}],["projections",{"2":{"1":4,"23":1}}],["projection",{"2":{"1":7,"23":2,"28":1}}],["projected",{"2":{"0":1,"1":16,"2":1,"3":4,"4":2,"6":2,"7":2,"8":4,"18":2,"23":1,"33":2,"37":2}}],["pane",{"2":{"40":1}}],["paste",{"2":{"27":1}}],["passive",{"2":{"13":1}}],["passing",{"2":{"1":3}}],["passed",{"2":{"1":23,"2":12,"24":2}}],["pass",{"2":{"1":3,"2":1,"32":1,"34":1}}],["packages",{"0":{"26":1},"2":{"26":4}}],["package",{"0":{"20":1},"2":{"26":2}}],["pad=10",{"2":{"45":1}}],["padding",{"2":{"1":1,"2":2,"36":2}}],["padded",{"2":{"1":1}}],["pad",{"2":{"1":3,"45":1}}],["pair",{"2":{"1":2}}],["pairs",{"2":{"1":16}}],["part",{"2":{"27":1}}],["parvus",{"2":{"1":2,"16":1,"18":2}}],["parent",{"2":{"1":1}}],["parallel",{"2":{"1":5}}],["parse",{"2":{"1":1}}],["parsed",{"2":{"1":1}}],["path",{"2":{"1":7,"2":3}}],["paths",{"2":{"1":6}}],["poly",{"2":{"45":1,"46":2}}],["polygons",{"2":{"1":16,"43":1}}],["polygon",{"0":{"30":1,"43":1},"2":{"1":36,"29":1,"45":1}}],["poor",{"2":{"1":1}}],["potential",{"2":{"1":2,"2":2}}],["pointer",{"2":{"2":1}}],["point",{"0":{"30":1},"2":{"1":26,"17":1}}],["points",{"2":{"0":1,"1":41,"8":4,"17":1,"18":1,"20":3,"21":1,"22":7,"23":2,"30":2}}],["possibly",{"2":{"5":1}}],["possible",{"2":{"1":9,"3":1,"20":1,"26":1,"27":2}}],["possum",{"2":{"1":1}}],["positive",{"2":{"1":2}}],["position",{"2":{"1":1,"2":2,"36":2}}],["mp4",{"2":{"36":2}}],["mmap",{"2":{"10":1}}],["my",{"2":{"1":2}}],["myseries",{"2":{"1":3}}],["millisecond",{"2":{"40":1}}],["minutes",{"2":{"40":2}}],["min",{"2":{"1":3}}],["minimum",{"2":{"1":7,"27":1}}],["minor",{"2":{"1":2}}],["mix",{"2":{"1":1}}],["mixed",{"2":{"1":7}}],["missing=false",{"2":{"1":2}}],["missing",{"0":{"7":1},"2":{"0":1,"1":51,"2":7,"5":1,"6":1,"7":1,"13":2,"16":29,"28":1,"29":2,"40":6,"45":1}}],["missingval=",{"2":{"6":1,"7":1}}],["missingval=uint32",{"2":{"1":1}}],["missingval=missingval",{"2":{"1":2}}],["missingval=0",{"2":{"1":2}}],["missingval",{"2":{"0":1,"1":37,"2":7,"3":2,"4":1,"6":1,"7":1,"8":2,"18":1,"29":1,"33":1,"37":1,"40":2}}],["missingmask",{"2":{"0":1,"1":6}}],["mutating",{"2":{"33":1}}],["must",{"2":{"1":16,"36":2}}],["multidimensional",{"2":{"28":1}}],["multi",{"2":{"1":5,"2":1,"13":1,"40":1,"46":1}}],["multiple",{"2":{"1":16,"2":3}}],["much",{"2":{"1":3}}],["med",{"2":{"1":1}}],["median",{"2":{"1":6}}],["merge",{"2":{"1":1}}],["messages",{"2":{"1":2,"2":2}}],["meters",{"2":{"1":6}}],["methoderror",{"2":{"36":1}}],["method",{"2":{"1":45,"2":17,"33":1,"36":1,"46":1}}],["methods",{"0":{"28":1,"29":1,"31":1},"2":{"1":5,"2":1,"28":1,"29":3,"30":1,"31":1,"40":2,"46":3}}],["metadata",{"2":{"1":7,"2":4,"3":4,"4":2,"6":2,"7":2,"8":4,"14":3,"33":2,"40":4}}],["means",{"2":{"1":4,"2":7,"10":1,"26":1}}],["mean",{"0":{"3":1},"2":{"1":15,"2":3,"3":1,"40":6,"41":1,"42":4}}],["memory",{"2":{"1":17,"2":6,"31":2}}],["month",{"2":{"16":1,"20":2,"22":1,"34":1,"36":1,"40":2}}],["month=july",{"2":{"45":1}}],["month=june",{"2":{"15":1}}],["month=jan",{"2":{"1":1}}],["month=6",{"2":{"1":1}}],["month=1",{"2":{"1":11}}],["moisture",{"2":{"13":2}}],["move",{"2":{"2":1,"31":1}}],["mountain",{"2":{"1":1}}],["more",{"2":{"1":5,"8":1,"23":2,"28":1,"40":1}}],["modification",{"2":{"1":1}}],["modifying",{"0":{"5":1},"1":{"6":1,"7":1,"8":1}}],["modify",{"0":{"31":1},"2":{"1":1,"5":1,"8":1,"31":1}}],["model",{"2":{"1":1}}],["mode=",{"2":{"1":2}}],["mode",{"2":{"1":15,"4":1}}],["module",{"2":{"1":1}}],["mos",{"2":{"1":2}}],["most",{"2":{"1":4,"27":1,"29":1}}],["mosaic",{"0":{"43":1},"2":{"0":2,"1":15,"28":1,"43":1,"46":2}}],["mdash",{"2":{"1":48,"2":15,"36":1}}],["margin",{"2":{"45":1}}],["markercolor=",{"2":{"18":1}}],["markershape=",{"2":{"18":1}}],["many",{"2":{"26":1,"27":2}}],["manually",{"2":{"1":16,"2":3,"26":1,"31":1,"38":1}}],["madagascar",{"2":{"24":3}}],["made",{"2":{"1":2}}],["map",{"2":{"4":2}}],["mappedindex",{"2":{"0":1,"1":1}}],["mappedcrs=epsg",{"2":{"1":3}}],["mappedcrs=nothing",{"2":{"1":2}}],["mappedcrs",{"2":{"0":1,"1":20,"38":1,"40":2}}],["mappedbounds",{"2":{"0":1,"1":1}}],["mapped",{"2":{"0":1,"1":16,"23":3,"40":4}}],["making",{"2":{"24":1,"27":1}}],["makie",{"0":{"32":1,"33":1,"34":1,"37":1,"39":1},"2":{"2":13,"15":1,"24":1,"26":2,"32":1,"33":1,"34":2,"36":13,"37":1,"38":3,"39":1}}],["make",{"2":{"1":4,"8":1,"27":1,"43":1}}],["makes",{"2":{"1":1,"34":1}}],["macao",{"2":{"1":1}}],["malaysia",{"2":{"1":1}}],["max",{"2":{"1":1,"38":2}}],["maximum",{"2":{"1":7,"2":2,"38":1}}],["master",{"2":{"1":3,"44":1}}],["masking",{"0":{"43":1}}],["masks",{"2":{"1":1}}],["masked",{"2":{"1":15,"30":1}}],["mask",{"2":{"0":2,"1":36,"2":1,"29":2,"43":1,"45":5,"46":2}}],["magnitude",{"2":{"1":2}}],["magma",{"2":{"1":2}}],["matters",{"2":{"1":2}}],["matter",{"2":{"1":2}}],["matching",{"2":{"1":3,"24":1,"36":1,"38":1}}],["match",{"2":{"1":7}}],["matches",{"2":{"1":1}}],["matrix",{"2":{"1":2}}],["may",{"2":{"1":68,"2":5,"11":2,"14":1,"34":1,"36":1}}],["cftime",{"2":{"40":2}}],["cmor",{"2":{"40":2}}],["cgrads",{"2":{"2":1,"36":1}}],["cyprus",{"2":{"1":1}}],["c",{"2":{"1":2,"2":2}}],["cp",{"2":{"1":1}}],["c=",{"2":{"1":3}}],["csv",{"2":{"1":1,"18":5}}],["cs",{"2":{"1":1}}],["circumstances",{"2":{"1":5}}],["closest",{"2":{"24":1}}],["closed",{"2":{"2":1}}],["click",{"2":{"28":1}}],["clipperton",{"2":{"1":1}}],["clims=",{"2":{"1":4}}],["climate",{"2":{"1":14,"15":1,"26":1,"34":1,"36":2,"45":7,"46":1}}],["classes",{"2":{"1":5}}],["classified",{"2":{"1":3}}],["classify",{"2":{"0":2,"1":10,"29":2}}],["certain",{"2":{"24":1}}],["center",{"2":{"1":20,"40":6}}],["cell",{"2":{"1":5,"40":2}}],["cells",{"2":{"1":4}}],["cellsize",{"2":{"0":1,"1":2}}],["cubicspline",{"2":{"1":1}}],["cubic",{"2":{"1":3}}],["cultural",{"2":{"1":3,"44":1}}],["custom",{"2":{"1":4,"13":1}}],["current",{"2":{"1":3,"2":2,"6":1,"37":1}}],["currently",{"2":{"1":6}}],["cut",{"2":{"1":4,"37":1}}],["cuda",{"2":{"1":1}}],["cuarray",{"2":{"1":1}}],["crop",{"2":{"28":1,"46":1}}],["cross",{"2":{"18":1}}],["creep",{"2":{"27":1}}],["creation",{"2":{"2":2}}],["creating",{"2":{"1":3}}],["creates",{"2":{"1":1}}],["create",{"2":{"1":6}}],["crs=epsg",{"2":{"1":4}}],["crs=nothing",{"2":{"1":1}}],["crs",{"2":{"1":57,"3":2,"4":1,"6":1,"7":1,"8":5,"18":1,"33":1,"37":1,"38":1,"40":2}}],["chordata",{"2":{"16":15}}],["chosen",{"2":{"1":2,"2":3}}],["chunk",{"2":{"2":11}}],["chunks",{"2":{"2":6}}],["chunking",{"2":{"2":1}}],["changing",{"2":{"1":1}}],["changes",{"2":{"1":2}}],["change",{"0":{"28":1,"29":1},"2":{"1":21,"6":1,"8":2,"38":2}}],["chile",{"2":{"1":1}}],["child",{"2":{"1":11,"2":1}}],["china",{"2":{"1":8}}],["checks",{"2":{"2":1}}],["checksum",{"2":{"2":4}}],["check",{"2":{"2":1,"13":1}}],["checked",{"2":{"1":2}}],["checkmemory",{"2":{"2":1}}],["checkmem",{"2":{"0":1,"2":3}}],["categories",{"2":{"29":1}}],["cairomakie",{"2":{"15":1,"24":2,"33":1,"37":1,"39":3}}],["caveats",{"2":{"14":1}}],["cartier",{"2":{"1":1}}],["cartesianindex",{"2":{"1":1}}],["caused",{"2":{"27":1}}],["cause",{"2":{"1":1}}],["caution",{"2":{"1":5}}],["calculate",{"2":{"1":4,"30":1}}],["calculated",{"2":{"1":8}}],["calling",{"2":{"1":3}}],["called",{"2":{"1":1,"2":2}}],["cased",{"2":{"1":2}}],["case",{"2":{"1":7}}],["cases",{"2":{"1":19}}],["cannot",{"2":{"1":1,"2":3}}],["can",{"2":{"1":65,"2":30,"5":2,"8":3,"10":1,"11":2,"12":3,"13":2,"14":2,"15":1,"20":1,"23":1,"26":1,"27":5,"32":1,"34":2,"36":5,"38":2,"46":2}}],["code",{"2":{"26":1,"27":1}}],["coords",{"2":{"18":2}}],["coordinatetransformations",{"2":{"26":1}}],["coordinate",{"2":{"1":10,"26":1}}],["coordinates",{"0":{"17":1},"2":{"1":10,"20":1,"24":1,"40":1}}],["counts",{"2":{"17":1}}],["country",{"2":{"1":7,"43":1}}],["countries",{"2":{"1":7,"43":1,"44":1,"46":2}}],["count",{"2":{"1":4}}],["counted",{"2":{"1":2}}],["counter",{"2":{"1":5}}],["could",{"2":{"1":1,"40":1,"42":1}}],["correlation",{"2":{"1":1,"37":3}}],["corresponding",{"2":{"1":1}}],["correctly",{"2":{"40":1}}],["correct",{"2":{"1":1}}],["covering",{"2":{"28":1}}],["cover",{"2":{"1":2}}],["covered",{"2":{"1":10}}],["coverage",{"2":{"0":2,"1":15}}],["colgap",{"2":{"37":1}}],["colortypes",{"2":{"36":1}}],["color",{"2":{"2":2,"36":2}}],["colorrange",{"2":{"2":1,"36":1}}],["colormaps",{"2":{"2":1,"36":1}}],["colormap",{"2":{"2":3,"36":3,"37":2}}],["colorbar=",{"2":{"36":1}}],["colorbarlabel",{"2":{"2":1,"36":1}}],["colorbar",{"2":{"2":8,"36":8,"37":5}}],["color=",{"2":{"1":2}}],["collect",{"2":{"1":1,"18":1}}],["collection",{"2":{"1":1}}],["collections",{"2":{"1":3}}],["collapse",{"2":{"1":3}}],["columns",{"2":{"1":17,"16":1}}],["column",{"2":{"1":19}}],["copying",{"2":{"1":1}}],["copy",{"2":{"1":2,"2":1}}],["command",{"2":{"42":1}}],["comments",{"2":{"2":2}}],["common",{"2":{"1":4,"11":1,"15":1,"46":1}}],["commonly",{"2":{"1":1,"29":1}}],["com",{"2":{"1":3,"44":1}}],["compress",{"2":{"2":2}}],["compressed",{"2":{"2":2,"10":1}}],["compression",{"2":{"2":8}}],["compute",{"2":{"1":1}}],["computes",{"2":{"1":1}}],["compatable",{"2":{"1":1}}],["compatible",{"2":{"1":20}}],["comparison",{"2":{"1":6}}],["complicated",{"2":{"1":5,"27":1}}],["completely",{"2":{"1":7,"2":1,"14":1}}],["complete",{"2":{"1":1,"27":1}}],["combining",{"2":{"1":3}}],["combination",{"2":{"1":4}}],["combined",{"2":{"1":7}}],["combine",{"2":{"0":1,"1":9,"46":1}}],["conversion",{"2":{"14":2}}],["converting",{"2":{"1":1}}],["converted",{"2":{"1":7,"11":1,"38":1}}],["convert",{"2":{"1":4,"18":1}}],["convertlookup",{"2":{"0":1,"1":1}}],["const",{"2":{"16":1,"24":1}}],["constructor",{"2":{"1":3}}],["considering",{"2":{"1":1}}],["conditions",{"2":{"1":5}}],["concrete",{"2":{"1":2}}],["contourf",{"2":{"2":1,"32":1,"33":1,"36":2,"38":2,"41":1}}],["contour",{"0":{"41":1},"2":{"2":1,"32":1,"33":1,"36":1,"38":2,"40":1}}],["controls",{"2":{"36":1}}],["controls=",{"2":{"36":1}}],["contributing",{"2":{"1":8}}],["contribute",{"2":{"1":4}}],["contrast",{"2":{"1":3,"37":3}}],["continents",{"2":{"1":2}}],["contained",{"2":{"2":1}}],["contains",{"2":{"1":7,"23":1,"24":1}}],["contain",{"2":{"1":4}}],["containing",{"2":{"1":12,"2":2}}],["contents",{"2":{"1":2}}],["break",{"2":{"34":1}}],["breaks",{"2":{"27":1}}],["broken",{"2":{"33":1}}],["broadcast",{"2":{"2":1,"3":2,"4":2}}],["broadcasting",{"0":{"4":1},"2":{"1":1}}],["black",{"2":{"18":1}}],["block",{"2":{"2":2}}],["blocks",{"2":{"1":2}}],["blocking",{"2":{"1":4}}],["b",{"2":{"1":13,"6":1,"22":2,"24":2}}],["bilinear",{"2":{"1":2}}],["bio",{"2":{"3":2,"4":1,"6":1,"7":1,"8":2,"33":1}}],["bio7",{"2":{"1":6,"18":1}}],["bio5",{"2":{"1":6,"3":2,"4":1,"6":1,"7":1,"8":2,"33":1}}],["bio3",{"2":{"1":6,"18":1}}],["bio12",{"2":{"1":6,"18":1}}],["bio1",{"2":{"1":6,"18":1}}],["bioclim",{"2":{"1":2,"3":3,"4":1,"6":2,"7":1,"8":2,"18":3,"24":1,"33":2,"38":1,"39":1}}],["bitarray",{"2":{"1":5}}],["bug",{"2":{"27":5}}],["bugs",{"0":{"27":1},"2":{"27":2}}],["built",{"2":{"1":2,"26":1}}],["build",{"2":{"1":22,"13":1}}],["burramys",{"2":{"1":1,"16":1,"18":2}}],["burramis",{"2":{"1":1}}],["but",{"2":{"1":13,"2":3,"5":1,"10":1,"12":1,"23":1,"26":1,"27":3,"36":2}}],["by",{"0":{"20":1,"22":1,"23":1},"2":{"1":71,"2":15,"8":1,"22":1,"24":1,"28":1,"29":1,"30":1,"34":1,"38":1}}],["box",{"2":{"27":1,"36":1}}],["bottom",{"2":{"2":1,"27":1,"36":1}}],["both",{"2":{"1":2}}],["bolivia",{"2":{"1":1}}],["borders",{"2":{"1":7,"46":11}}],["border",{"2":{"1":8,"43":1,"45":7,"46":9}}],["boundaries",{"2":{"1":1}}],["boundary=",{"2":{"1":2}}],["boundary",{"2":{"1":7,"43":1,"44":1}}],["bounds",{"2":{"1":7}}],["bool",{"2":{"1":5,"2":1}}],["boolmask",{"2":{"0":1,"1":6}}],["batlow",{"2":{"37":1}}],["basic",{"2":{"2":1}}],["based",{"2":{"1":2,"2":2,"4":1,"46":1}}],["base",{"2":{"1":2,"2":11}}],["bajo",{"2":{"1":1}}],["backgroundcolor=",{"2":{"37":2}}],["back",{"2":{"1":1,"40":1}}],["backends",{"2":{"9":1}}],["backend",{"2":{"1":1,"2":10,"9":1,"26":2}}],["backed",{"2":{"1":8}}],["bank",{"2":{"1":2}}],["bang",{"2":{"1":4}}],["bands",{"2":{"1":1,"23":1}}],["band",{"0":{"18":1},"2":{"0":1,"1":10,"2":1,"10":1,"12":1,"18":1,"23":1,"36":1}}],["bar",{"2":{"1":9}}],["becomes",{"2":{"8":1}}],["because",{"2":{"1":5,"20":1,"27":2}}],["best",{"2":{"2":1,"12":1,"36":1}}],["besides",{"2":{"1":2}}],["being",{"2":{"2":3,"46":1}}],["beyond",{"2":{"1":1}}],["bets",{"2":{"2":1,"36":1}}],["better",{"2":{"1":1}}],["between",{"2":{"1":9,"2":1,"24":3,"36":1}}],["before",{"2":{"1":14,"2":1}}],["behaviours",{"2":{"1":2}}],["been",{"2":{"1":2,"14":1}}],["below",{"2":{"1":1,"34":1}}],["be",{"2":{"1":179,"2":50,"3":1,"4":1,"5":1,"8":2,"10":1,"11":1,"12":2,"13":2,"14":3,"15":1,"20":1,"23":1,"27":2,"36":7,"38":2}}],["api",{"2":{"38":1}}],["appropriately",{"2":{"34":1}}],["approximately",{"2":{"1":2}}],["approximates",{"2":{"1":1}}],["approximate",{"2":{"1":1}}],["appreciated",{"2":{"27":1}}],["appears",{"2":{"1":1}}],["appended",{"2":{"2":3}}],["append",{"2":{"1":8,"2":3}}],["apparent",{"2":{"1":1}}],["applications",{"2":{"29":1}}],["applicable",{"2":{"2":1,"46":1}}],["applies",{"2":{"4":1}}],["applied",{"2":{"1":13,"2":1,"3":1,"4":1}}],["apply",{"2":{"1":1}}],["amounts",{"2":{"28":1}}],["amount",{"2":{"2":1,"36":1}}],["americas",{"2":{"40":1}}],["america",{"2":{"1":1}}],["average",{"2":{"1":3}}],["available",{"2":{"1":3,"3":1,"23":1,"24":1}}],["admin",{"2":{"1":4,"44":1}}],["adding",{"2":{"3":1}}],["additional",{"2":{"1":3,"23":1,"26":2,"29":1}}],["additionally",{"2":{"1":5}}],["addition",{"2":{"1":2}}],["add",{"2":{"1":1,"20":1,"25":1,"27":1,"46":1}}],["added",{"2":{"1":2,"46":1}}],["affected",{"2":{"8":1}}],["africa",{"2":{"1":8}}],["after",{"2":{"1":13,"2":1}}],["autoplay",{"2":{"36":1}}],["autoplay=",{"2":{"36":1}}],["automatic",{"2":{"2":9,"36":9}}],["automatically",{"2":{"1":8,"2":4,"9":1}}],["authentication",{"2":{"27":1}}],["authority",{"2":{"3":10,"4":5,"6":5,"7":5,"8":10,"18":5,"33":5,"37":5}}],["ausbounds",{"2":{"1":2,"37":2}}],["aus",{"2":{"1":9,"18":3,"37":3}}],["australian",{"2":{"1":1}}],["australia",{"2":{"1":3,"18":1,"37":2}}],["awap",{"2":{"1":13}}],["again",{"2":{"1":1,"2":1,"46":1}}],["ag",{"2":{"1":2}}],["aggregation",{"2":{"1":8}}],["aggregated",{"2":{"1":8}}],["aggregate",{"2":{"0":2,"1":12,"28":2}}],["axs",{"2":{"37":5}}],["ax",{"2":{"33":3}}],["axis3",{"2":{"2":1,"36":1}}],["axistype",{"2":{"2":1,"36":1}}],["axis",{"2":{"1":6,"2":8,"3":4,"4":2,"6":2,"7":2,"8":5,"18":2,"24":1,"28":1,"33":3,"34":1,"36":8,"37":3,"38":1}}],["axes",{"2":{"1":4,"38":2,"40":1}}],["across",{"2":{"28":1}}],["activate",{"2":{"24":1,"39":1}}],["activated",{"2":{"2":2}}],["active",{"2":{"13":1}}],["actually",{"2":{"2":2,"6":1,"27":1}}],["actual",{"2":{"1":2}}],["accurate",{"2":{"1":1}}],["accept",{"2":{"38":1}}],["accepts",{"2":{"1":2,"2":2,"36":1}}],["accepted",{"2":{"1":2,"33":1}}],["accessible",{"2":{"27":1}}],["access",{"2":{"1":3,"12":1}}],["atol",{"2":{"1":10}}],["attributes",{"2":{"34":1,"37":1}}],["attempt",{"2":{"1":2}}],["attempting",{"2":{"1":1}}],["attached",{"2":{"1":7}}],["at",{"2":{"1":8,"2":5,"24":2,"27":1,"34":1,"40":2,"42":1}}],["altered",{"2":{"2":1,"40":2}}],["although",{"2":{"1":1}}],["aligned",{"2":{"1":1}}],["algorithm",{"2":{"1":4}}],["already",{"2":{"1":1,"2":6}}],["along",{"2":{"1":7,"29":1}}],["alphabetically",{"2":{"1":1}}],["also",{"2":{"1":24,"2":3,"3":1,"8":2,"11":1,"12":1,"22":1,"27":1,"46":1}}],["allow",{"2":{"1":1,"38":1}}],["allows",{"2":{"1":1}}],["alllayers",{"2":{"1":3}}],["alllayers=true",{"2":{"1":1}}],["all",{"2":{"1":71,"2":4,"11":1,"12":1,"14":1,"18":1,"24":2,"27":1,"29":1,"46":2}}],["always",{"2":{"1":4,"2":1,"10":1,"13":1,"24":1,"26":1,"27":2}}],["around",{"2":{"40":1}}],["arbitrary",{"2":{"11":1,"23":1}}],["architectures",{"2":{"2":1}}],["archive",{"2":{"2":2}}],["archgdal",{"2":{"1":22,"2":2,"12":1,"26":2,"33":1,"38":1,"39":1,"43":1}}],["args",{"2":{"38":1}}],["argentina",{"2":{"1":1}}],["argument",{"2":{"1":3,"2":2}}],["arguments",{"2":{"1":27,"2":2}}],["area",{"2":{"1":9}}],["areas",{"2":{"1":17,"28":1}}],["are",{"2":{"1":87,"2":8,"8":1,"10":3,"11":3,"12":1,"13":1,"23":1,"24":3,"27":6,"29":1,"34":3,"36":3,"38":1,"40":1,"42":1,"46":1}}],["arrays",{"2":{"1":18,"2":2,"5":1,"23":2,"28":1,"46":1}}],["array",{"0":{"21":1},"2":{"1":49,"2":1,"3":1,"4":2,"16":1,"24":2,"28":1,"29":1,"38":1}}],["aspect",{"2":{"33":1,"34":1}}],["associated",{"2":{"23":1}}],["assign",{"2":{"1":2}}],["assigned",{"2":{"1":6}}],["assigns",{"2":{"1":1}}],["asc",{"2":{"12":1}}],["ashmore",{"2":{"1":1}}],["as",{"2":{"1":63,"2":10,"6":1,"11":2,"12":3,"13":2,"14":1,"15":1,"17":1,"24":1,"29":2,"34":2,"36":1,"40":1,"42":1}}],["a",{"0":{"41":1},"2":{"1":417,"2":100,"3":4,"4":4,"5":2,"6":2,"7":1,"8":5,"9":1,"13":1,"14":1,"15":4,"17":3,"18":2,"22":2,"24":7,"26":2,"27":5,"28":3,"29":2,"31":1,"32":2,"33":9,"34":4,"36":11,"38":6,"39":2,"40":5,"42":3,"43":1,"45":1,"46":6}}],["absolute",{"2":{"1":2}}],["abstracrasterseries",{"2":{"1":2}}],["abstrackrasterstack",{"2":{"1":1}}],["abstractdiskarray",{"2":{"2":3}}],["abstractdimensionalarray",{"2":{"1":1}}],["abstractdimarray",{"2":{"1":4}}],["abstractvector",{"2":{"1":3}}],["abstractgeometry",{"2":{"1":13}}],["abstractstack",{"2":{"1":2}}],["abstractstring",{"2":{"1":3,"2":6}}],["abstractsampled",{"2":{"1":2,"2":1}}],["abstractarray",{"2":{"1":5,"2":1}}],["abstract",{"2":{"1":3,"2":1}}],["abstractrasters",{"2":{"1":5}}],["abstractrasterstack",{"2":{"0":1,"1":12,"2":5}}],["abstractrasterseries",{"2":{"0":1,"1":8,"2":5}}],["abstractraster",{"2":{"0":1,"1":27,"2":9}}],["abstractprojected",{"2":{"0":1,"1":4,"2":1}}],["about",{"2":{"1":4,"2":2}}],["animations",{"0":{"36":1}}],["animalia",{"2":{"16":15}}],["answer",{"2":{"1":2}}],["anything",{"2":{"8":1}}],["any",{"2":{"1":19,"2":6,"3":3,"4":1,"6":1,"7":1,"8":3,"27":1,"28":1,"32":1,"33":1,"34":2,"36":1,"38":1,"40":2}}],["another",{"2":{"1":8,"23":1,"28":3}}],["and",{"0":{"27":1,"30":1,"31":1,"43":1},"2":{"1":129,"2":18,"3":1,"8":1,"9":1,"10":2,"11":1,"12":1,"13":2,"15":5,"16":1,"18":3,"20":2,"22":1,"23":7,"24":3,"26":5,"27":7,"28":3,"29":1,"30":1,"34":3,"36":2,"38":3,"40":5,"45":1,"46":9}}],["an",{"0":{"24":1,"28":1,"29":1},"2":{"1":69,"2":9,"3":1,"5":2,"8":2,"24":3,"27":2,"29":2,"30":1,"34":1,"36":1,"38":1,"46":1}}]],"serializationVersion":2}';export{e as default}; diff --git a/dev/assets/chunks/VPLocalSearchBox.6RcbE376.js b/dev/assets/chunks/VPLocalSearchBox.Bwg4A3k8.js similarity index 99% rename from dev/assets/chunks/VPLocalSearchBox.6RcbE376.js rename to dev/assets/chunks/VPLocalSearchBox.Bwg4A3k8.js index a6752a2c..19388d70 100644 --- a/dev/assets/chunks/VPLocalSearchBox.6RcbE376.js +++ b/dev/assets/chunks/VPLocalSearchBox.Bwg4A3k8.js @@ -1,4 +1,4 @@ -var Ft=Object.defineProperty;var Ot=(a,e,t)=>e in a?Ft(a,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):a[e]=t;var Ce=(a,e,t)=>Ot(a,typeof e!="symbol"?e+"":e,t);import{X as Rt,s as ne,h as ve,al as et,am as Ct,an as Mt,v as je,ao as At,d as Lt,G as ye,ap as tt,aq as Dt,ar as zt,x as Pt,as as Vt,y as Me,R as de,Q as we,at as jt,au as $t,Y as Bt,U as Wt,a1 as Kt,o as Q,b as Jt,j as x,a2 as Ut,k as D,av as qt,aw as Gt,ax as Qt,c as Z,n as st,e as _e,E as nt,F as it,a as he,t as fe,ay as Ht,p as Yt,l as Zt,az as rt,aA as Xt,ab as es,ah as ts,aB as ss,_ as ns}from"./framework.Dv3PRBLL.js";import{u as is,c as rs}from"./theme.DW90zRTW.js";const as={root:()=>Rt(()=>import("./@localSearchIndexroot.V1smaAuW.js"),[])};/*! +var Ft=Object.defineProperty;var Ot=(a,e,t)=>e in a?Ft(a,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):a[e]=t;var Ce=(a,e,t)=>Ot(a,typeof e!="symbol"?e+"":e,t);import{X as Rt,s as ne,h as ve,al as et,am as Ct,an as Mt,v as je,ao as At,d as Lt,G as ye,ap as tt,aq as Dt,ar as zt,x as Pt,as as Vt,y as Me,R as de,Q as we,at as jt,au as $t,Y as Bt,U as Wt,a1 as Kt,o as Q,b as Jt,j as x,a2 as Ut,k as D,av as qt,aw as Gt,ax as Qt,c as Z,n as st,e as _e,E as nt,F as it,a as he,t as fe,ay as Ht,p as Yt,l as Zt,az as rt,aA as Xt,ab as es,ah as ts,aB as ss,_ as ns}from"./framework.Dv3PRBLL.js";import{u as is,c as rs}from"./theme.BtGGeu-D.js";const as={root:()=>Rt(()=>import("./@localSearchIndexroot.DxK98W2v.js"),[])};/*! * tabbable 6.2.0 * @license MIT, https://github.com/focus-trap/tabbable/blob/master/LICENSE */var mt=["input:not([inert])","select:not([inert])","textarea:not([inert])","a[href]:not([inert])","button:not([inert])","[tabindex]:not(slot):not([inert])","audio[controls]:not([inert])","video[controls]:not([inert])",'[contenteditable]:not([contenteditable="false"]):not([inert])',"details>summary:first-of-type:not([inert])","details:not([inert])"],Ie=mt.join(","),gt=typeof Element>"u",re=gt?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector,Ne=!gt&&Element.prototype.getRootNode?function(a){var e;return a==null||(e=a.getRootNode)===null||e===void 0?void 0:e.call(a)}:function(a){return a==null?void 0:a.ownerDocument},ke=function a(e,t){var s;t===void 0&&(t=!0);var n=e==null||(s=e.getAttribute)===null||s===void 0?void 0:s.call(e,"inert"),r=n===""||n==="true",i=r||t&&e&&a(e.parentNode);return i},os=function(e){var t,s=e==null||(t=e.getAttribute)===null||t===void 0?void 0:t.call(e,"contenteditable");return s===""||s==="true"},bt=function(e,t,s){if(ke(e))return[];var n=Array.prototype.slice.apply(e.querySelectorAll(Ie));return t&&re.call(e,Ie)&&n.unshift(e),n=n.filter(s),n},yt=function a(e,t,s){for(var n=[],r=Array.from(e);r.length;){var i=r.shift();if(!ke(i,!1))if(i.tagName==="SLOT"){var o=i.assignedElements(),c=o.length?o:i.children,l=a(c,!0,s);s.flatten?n.push.apply(n,l):n.push({scopeParent:i,candidates:l})}else{var h=re.call(i,Ie);h&&s.filter(i)&&(t||!e.includes(i))&&n.push(i);var v=i.shadowRoot||typeof s.getShadowRoot=="function"&&s.getShadowRoot(i),f=!ke(v,!1)&&(!s.shadowRootFilter||s.shadowRootFilter(i));if(v&&f){var b=a(v===!0?i.children:v.children,!0,s);s.flatten?n.push.apply(n,b):n.push({scopeParent:i,candidates:b})}else r.unshift.apply(r,i.children)}}return n},wt=function(e){return!isNaN(parseInt(e.getAttribute("tabindex"),10))},ie=function(e){if(!e)throw new Error("No node provided");return e.tabIndex<0&&(/^(AUDIO|VIDEO|DETAILS)$/.test(e.tagName)||os(e))&&!wt(e)?0:e.tabIndex},cs=function(e,t){var s=ie(e);return s<0&&t&&!wt(e)?0:s},ls=function(e,t){return e.tabIndex===t.tabIndex?e.documentOrder-t.documentOrder:e.tabIndex-t.tabIndex},_t=function(e){return e.tagName==="INPUT"},us=function(e){return _t(e)&&e.type==="hidden"},ds=function(e){var t=e.tagName==="DETAILS"&&Array.prototype.slice.apply(e.children).some(function(s){return s.tagName==="SUMMARY"});return t},hs=function(e,t){for(var s=0;ssummary:first-of-type"),i=r?e.parentElement:e;if(re.call(i,"details:not([open]) *"))return!0;if(!s||s==="full"||s==="legacy-full"){if(typeof n=="function"){for(var o=e;e;){var c=e.parentElement,l=Ne(e);if(c&&!c.shadowRoot&&n(c)===!0)return at(e);e.assignedSlot?e=e.assignedSlot:!c&&l!==e.ownerDocument?e=l.host:e=c}e=o}if(ms(e))return!e.getClientRects().length;if(s!=="legacy-full")return!0}else if(s==="non-zero-area")return at(e);return!1},bs=function(e){if(/^(INPUT|BUTTON|SELECT|TEXTAREA)$/.test(e.tagName))for(var t=e.parentElement;t;){if(t.tagName==="FIELDSET"&&t.disabled){for(var s=0;s=0)},ws=function a(e){var t=[],s=[];return e.forEach(function(n,r){var i=!!n.scopeParent,o=i?n.scopeParent:n,c=cs(o,i),l=i?a(n.candidates):o;c===0?i?t.push.apply(t,l):t.push(o):s.push({documentOrder:r,tabIndex:c,item:n,isScope:i,content:l})}),s.sort(ls).reduce(function(n,r){return r.isScope?n.push.apply(n,r.content):n.push(r.content),n},[]).concat(t)},_s=function(e,t){t=t||{};var s;return t.getShadowRoot?s=yt([e],t.includeContainer,{filter:$e.bind(null,t),flatten:!1,getShadowRoot:t.getShadowRoot,shadowRootFilter:ys}):s=bt(e,t.includeContainer,$e.bind(null,t)),ws(s)},xs=function(e,t){t=t||{};var s;return t.getShadowRoot?s=yt([e],t.includeContainer,{filter:Fe.bind(null,t),flatten:!0,getShadowRoot:t.getShadowRoot}):s=bt(e,t.includeContainer,Fe.bind(null,t)),s},ae=function(e,t){if(t=t||{},!e)throw new Error("No node provided");return re.call(e,Ie)===!1?!1:$e(t,e)},Ss=mt.concat("iframe").join(","),Ae=function(e,t){if(t=t||{},!e)throw new Error("No node provided");return re.call(e,Ss)===!1?!1:Fe(t,e)};/*! diff --git a/dev/assets/chunks/theme.DW90zRTW.js b/dev/assets/chunks/theme.BtGGeu-D.js similarity index 99% rename from dev/assets/chunks/theme.DW90zRTW.js rename to dev/assets/chunks/theme.BtGGeu-D.js index e804b0ba..4856f758 100644 --- a/dev/assets/chunks/theme.DW90zRTW.js +++ b/dev/assets/chunks/theme.BtGGeu-D.js @@ -1,2 +1,2 @@ -const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/chunks/VPLocalSearchBox.6RcbE376.js","assets/chunks/framework.Dv3PRBLL.js"])))=>i.map(i=>d[i]); -import{d as _,o as a,c as u,r as c,n as N,a as j,t as I,b as $,w as f,e as h,T as pe,_ as g,u as Je,i as Ye,f as Xe,g as fe,h as y,j as p,k as r,p as B,l as H,m as q,q as le,s as T,v as O,x as ee,y as R,z as he,A as _e,B as Qe,C as Ze,D as W,F as M,E,G as Te,H as te,I as k,J as D,K as we,L as ne,M as K,N as Y,O as xe,P as Ie,Q as ce,R as Ne,S as Me,U as oe,V as et,W as tt,X as nt,Y as Ae,Z as me,$ as ot,a0 as st,a1 as at,a2 as rt,a3 as Ce,a4 as it,a5 as lt,a6 as ct}from"./framework.Dv3PRBLL.js";const ut=_({__name:"VPBadge",props:{text:{},type:{default:"tip"}},setup(n){return(e,t)=>(a(),u("span",{class:N(["VPBadge",e.type])},[c(e.$slots,"default",{},()=>[j(I(e.text),1)])],2))}}),dt={key:0,class:"VPBackdrop"},vt=_({__name:"VPBackdrop",props:{show:{type:Boolean}},setup(n){return(e,t)=>(a(),$(pe,{name:"fade"},{default:f(()=>[e.show?(a(),u("div",dt)):h("",!0)]),_:1}))}}),pt=g(vt,[["__scopeId","data-v-b06cdb19"]]),V=Je;function ft(n,e){let t,s=!1;return()=>{t&&clearTimeout(t),s?t=setTimeout(n,e):(n(),(s=!0)&&setTimeout(()=>s=!1,e))}}function ue(n){return/^\//.test(n)?n:`/${n}`}function be(n){const{pathname:e,search:t,hash:s,protocol:o}=new URL(n,"http://a.com");if(Ye(n)||n.startsWith("#")||!o.startsWith("http")||!Xe(e))return n;const{site:i}=V(),l=e.endsWith("/")||e.endsWith(".html")?n:n.replace(/(?:(^\.+)\/)?.*$/,`$1${e.replace(/(\.md)?$/,i.value.cleanUrls?"":".html")}${t}${s}`);return fe(l)}function Q({correspondingLink:n=!1}={}){const{site:e,localeIndex:t,page:s,theme:o,hash:i}=V(),l=y(()=>{var v,m;return{label:(v=e.value.locales[t.value])==null?void 0:v.label,link:((m=e.value.locales[t.value])==null?void 0:m.link)||(t.value==="root"?"/":`/${t.value}/`)}});return{localeLinks:y(()=>Object.entries(e.value.locales).flatMap(([v,m])=>l.value.label===m.label?[]:{text:m.label,link:ht(m.link||(v==="root"?"/":`/${v}/`),o.value.i18nRouting!==!1&&n,s.value.relativePath.slice(l.value.link.length-1),!e.value.cleanUrls)+i.value})),currentLang:l}}function ht(n,e,t,s){return e?n.replace(/\/$/,"")+ue(t.replace(/(^|\/)index\.md$/,"$1").replace(/\.md$/,s?".html":"")):n}const _t=n=>(B("data-v-951cab6c"),n=n(),H(),n),mt={class:"NotFound"},bt={class:"code"},kt={class:"title"},$t=_t(()=>p("div",{class:"divider"},null,-1)),gt={class:"quote"},yt={class:"action"},Pt=["href","aria-label"],St=_({__name:"NotFound",setup(n){const{theme:e}=V(),{currentLang:t}=Q();return(s,o)=>{var i,l,d,v,m;return a(),u("div",mt,[p("p",bt,I(((i=r(e).notFound)==null?void 0:i.code)??"404"),1),p("h1",kt,I(((l=r(e).notFound)==null?void 0:l.title)??"PAGE NOT FOUND"),1),$t,p("blockquote",gt,I(((d=r(e).notFound)==null?void 0:d.quote)??"But if you don't change your direction, and if you keep looking, you may end up where you are heading."),1),p("div",yt,[p("a",{class:"link",href:r(fe)(r(t).link),"aria-label":((v=r(e).notFound)==null?void 0:v.linkLabel)??"go to home"},I(((m=r(e).notFound)==null?void 0:m.linkText)??"Take me home"),9,Pt)])])}}}),Vt=g(St,[["__scopeId","data-v-951cab6c"]]);function Be(n,e){if(Array.isArray(n))return Z(n);if(n==null)return[];e=ue(e);const t=Object.keys(n).sort((o,i)=>i.split("/").length-o.split("/").length).find(o=>e.startsWith(ue(o))),s=t?n[t]:[];return Array.isArray(s)?Z(s):Z(s.items,s.base)}function Lt(n){const e=[];let t=0;for(const s in n){const o=n[s];if(o.items){t=e.push(o);continue}e[t]||e.push({items:[]}),e[t].items.push(o)}return e}function Tt(n){const e=[];function t(s){for(const o of s)o.text&&o.link&&e.push({text:o.text,link:o.link,docFooterText:o.docFooterText}),o.items&&t(o.items)}return t(n),e}function de(n,e){return Array.isArray(e)?e.some(t=>de(n,t)):q(n,e.link)?!0:e.items?de(n,e.items):!1}function Z(n,e){return[...n].map(t=>{const s={...t},o=s.base||e;return o&&s.link&&(s.link=o+s.link),s.items&&(s.items=Z(s.items,o)),s})}function U(){const{frontmatter:n,page:e,theme:t}=V(),s=le("(min-width: 960px)"),o=T(!1),i=y(()=>{const C=t.value.sidebar,w=e.value.relativePath;return C?Be(C,w):[]}),l=T(i.value);O(i,(C,w)=>{JSON.stringify(C)!==JSON.stringify(w)&&(l.value=i.value)});const d=y(()=>n.value.sidebar!==!1&&l.value.length>0&&n.value.layout!=="home"),v=y(()=>m?n.value.aside==null?t.value.aside==="left":n.value.aside==="left":!1),m=y(()=>n.value.layout==="home"?!1:n.value.aside!=null?!!n.value.aside:t.value.aside!==!1),L=y(()=>d.value&&s.value),b=y(()=>d.value?Lt(l.value):[]);function P(){o.value=!0}function S(){o.value=!1}function A(){o.value?S():P()}return{isOpen:o,sidebar:l,sidebarGroups:b,hasSidebar:d,hasAside:m,leftAside:v,isSidebarEnabled:L,open:P,close:S,toggle:A}}function wt(n,e){let t;ee(()=>{t=n.value?document.activeElement:void 0}),R(()=>{window.addEventListener("keyup",s)}),he(()=>{window.removeEventListener("keyup",s)});function s(o){o.key==="Escape"&&n.value&&(e(),t==null||t.focus())}}function It(n){const{page:e,hash:t}=V(),s=T(!1),o=y(()=>n.value.collapsed!=null),i=y(()=>!!n.value.link),l=T(!1),d=()=>{l.value=q(e.value.relativePath,n.value.link)};O([e,n,t],d),R(d);const v=y(()=>l.value?!0:n.value.items?de(e.value.relativePath,n.value.items):!1),m=y(()=>!!(n.value.items&&n.value.items.length));ee(()=>{s.value=!!(o.value&&n.value.collapsed)}),_e(()=>{(l.value||v.value)&&(s.value=!1)});function L(){o.value&&(s.value=!s.value)}return{collapsed:s,collapsible:o,isLink:i,isActiveLink:l,hasActiveLink:v,hasChildren:m,toggle:L}}function Nt(){const{hasSidebar:n}=U(),e=le("(min-width: 960px)"),t=le("(min-width: 1280px)");return{isAsideEnabled:y(()=>!t.value&&!e.value?!1:n.value?t.value:e.value)}}const ve=[];function He(n){return typeof n.outline=="object"&&!Array.isArray(n.outline)&&n.outline.label||n.outlineTitle||"On this page"}function ke(n){const e=[...document.querySelectorAll(".VPDoc :where(h1,h2,h3,h4,h5,h6)")].filter(t=>t.id&&t.hasChildNodes()).map(t=>{const s=Number(t.tagName[1]);return{element:t,title:Mt(t),link:"#"+t.id,level:s}});return At(e,n)}function Mt(n){let e="";for(const t of n.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 At(n,e){if(e===!1)return[];const t=(typeof e=="object"&&!Array.isArray(e)?e.level:e)||2,[s,o]=typeof t=="number"?[t,t]:t==="deep"?[2,6]:t;n=n.filter(l=>l.level>=s&&l.level<=o),ve.length=0;for(const{element:l,link:d}of n)ve.push({element:l,link:d});const i=[];e:for(let l=0;l=0;v--){const m=n[v];if(m.level{requestAnimationFrame(i),window.addEventListener("scroll",s)}),Qe(()=>{l(location.hash)}),he(()=>{window.removeEventListener("scroll",s)});function i(){if(!t.value)return;const d=window.scrollY,v=window.innerHeight,m=document.body.offsetHeight,L=Math.abs(d+v-m)<1,b=ve.map(({element:S,link:A})=>({link:A,top:Bt(S)})).filter(({top:S})=>!Number.isNaN(S)).sort((S,A)=>S.top-A.top);if(!b.length){l(null);return}if(d<1){l(null);return}if(L){l(b[b.length-1].link);return}let P=null;for(const{link:S,top:A}of b){if(A>d+Ze()+4)break;P=S}l(P)}function l(d){o&&o.classList.remove("active"),d==null?o=null:o=n.value.querySelector(`a[href="${decodeURIComponent(d)}"]`);const v=o;v?(v.classList.add("active"),e.value.style.top=v.offsetTop+39+"px",e.value.style.opacity="1"):(e.value.style.top="33px",e.value.style.opacity="0")}}function Bt(n){let e=0;for(;n!==document.body;){if(n===null)return NaN;e+=n.offsetTop,n=n.offsetParent}return e}const Ht=["href","title"],Et=_({__name:"VPDocOutlineItem",props:{headers:{},root:{type:Boolean}},setup(n){function e({target:t}){const s=t.href.split("#")[1],o=document.getElementById(decodeURIComponent(s));o==null||o.focus({preventScroll:!0})}return(t,s)=>{const o=W("VPDocOutlineItem",!0);return a(),u("ul",{class:N(["VPDocOutlineItem",t.root?"root":"nested"])},[(a(!0),u(M,null,E(t.headers,({children:i,link:l,title:d})=>(a(),u("li",null,[p("a",{class:"outline-link",href:l,onClick:e,title:d},I(d),9,Ht),i!=null&&i.length?(a(),$(o,{key:0,headers:i},null,8,["headers"])):h("",!0)]))),256))],2)}}}),Ee=g(Et,[["__scopeId","data-v-3f927ebe"]]),Dt={class:"content"},Ft={"aria-level":"2",class:"outline-title",id:"doc-outline-aria-label",role:"heading"},Ot=_({__name:"VPDocAsideOutline",setup(n){const{frontmatter:e,theme:t}=V(),s=Te([]);te(()=>{s.value=ke(e.value.outline??t.value.outline)});const o=T(),i=T();return Ct(o,i),(l,d)=>(a(),u("nav",{"aria-labelledby":"doc-outline-aria-label",class:N(["VPDocAsideOutline",{"has-outline":s.value.length>0}]),ref_key:"container",ref:o},[p("div",Dt,[p("div",{class:"outline-marker",ref_key:"marker",ref:i},null,512),p("div",Ft,I(r(He)(r(t))),1),k(Ee,{headers:s.value,root:!0},null,8,["headers"])])],2))}}),jt=g(Ot,[["__scopeId","data-v-b38bf2ff"]]),Ut={class:"VPDocAsideCarbonAds"},Gt=_({__name:"VPDocAsideCarbonAds",props:{carbonAds:{}},setup(n){const e=()=>null;return(t,s)=>(a(),u("div",Ut,[k(r(e),{"carbon-ads":t.carbonAds},null,8,["carbon-ads"])]))}}),zt=n=>(B("data-v-6d7b3c46"),n=n(),H(),n),Kt={class:"VPDocAside"},Rt=zt(()=>p("div",{class:"spacer"},null,-1)),qt=_({__name:"VPDocAside",setup(n){const{theme:e}=V();return(t,s)=>(a(),u("div",Kt,[c(t.$slots,"aside-top",{},void 0,!0),c(t.$slots,"aside-outline-before",{},void 0,!0),k(jt),c(t.$slots,"aside-outline-after",{},void 0,!0),Rt,c(t.$slots,"aside-ads-before",{},void 0,!0),r(e).carbonAds?(a(),$(Gt,{key:0,"carbon-ads":r(e).carbonAds},null,8,["carbon-ads"])):h("",!0),c(t.$slots,"aside-ads-after",{},void 0,!0),c(t.$slots,"aside-bottom",{},void 0,!0)]))}}),Wt=g(qt,[["__scopeId","data-v-6d7b3c46"]]);function Jt(){const{theme:n,page:e}=V();return y(()=>{const{text:t="Edit this page",pattern:s=""}=n.value.editLink||{};let o;return typeof s=="function"?o=s(e.value):o=s.replace(/:path/g,e.value.filePath),{url:o,text:t}})}function Yt(){const{page:n,theme:e,frontmatter:t}=V();return y(()=>{var m,L,b,P,S,A,C,w;const s=Be(e.value.sidebar,n.value.relativePath),o=Tt(s),i=Xt(o,G=>G.link.replace(/[?#].*$/,"")),l=i.findIndex(G=>q(n.value.relativePath,G.link)),d=((m=e.value.docFooter)==null?void 0:m.prev)===!1&&!t.value.prev||t.value.prev===!1,v=((L=e.value.docFooter)==null?void 0:L.next)===!1&&!t.value.next||t.value.next===!1;return{prev:d?void 0:{text:(typeof t.value.prev=="string"?t.value.prev:typeof t.value.prev=="object"?t.value.prev.text:void 0)??((b=i[l-1])==null?void 0:b.docFooterText)??((P=i[l-1])==null?void 0:P.text),link:(typeof t.value.prev=="object"?t.value.prev.link:void 0)??((S=i[l-1])==null?void 0:S.link)},next:v?void 0:{text:(typeof t.value.next=="string"?t.value.next:typeof t.value.next=="object"?t.value.next.text:void 0)??((A=i[l+1])==null?void 0:A.docFooterText)??((C=i[l+1])==null?void 0:C.text),link:(typeof t.value.next=="object"?t.value.next.link:void 0)??((w=i[l+1])==null?void 0:w.link)}}})}function Xt(n,e){const t=new Set;return n.filter(s=>{const o=e(s);return t.has(o)?!1:t.add(o)})}const F=_({__name:"VPLink",props:{tag:{},href:{},noIcon:{type:Boolean},target:{},rel:{}},setup(n){const e=n,t=y(()=>e.tag??(e.href?"a":"span")),s=y(()=>e.href&&we.test(e.href)||e.target==="_blank");return(o,i)=>(a(),$(D(t.value),{class:N(["VPLink",{link:o.href,"vp-external-link-icon":s.value,"no-icon":o.noIcon}]),href:o.href?r(be)(o.href):void 0,target:o.target??(s.value?"_blank":void 0),rel:o.rel??(s.value?"noreferrer":void 0)},{default:f(()=>[c(o.$slots,"default")]),_:3},8,["class","href","target","rel"]))}}),Qt={class:"VPLastUpdated"},Zt=["datetime"],xt=_({__name:"VPDocFooterLastUpdated",setup(n){const{theme:e,page:t,lang:s}=V(),o=y(()=>new Date(t.value.lastUpdated)),i=y(()=>o.value.toISOString()),l=T("");return R(()=>{ee(()=>{var d,v,m;l.value=new Intl.DateTimeFormat((v=(d=e.value.lastUpdated)==null?void 0:d.formatOptions)!=null&&v.forceLocale?s.value:void 0,((m=e.value.lastUpdated)==null?void 0:m.formatOptions)??{dateStyle:"short",timeStyle:"short"}).format(o.value)})}),(d,v)=>{var m;return a(),u("p",Qt,[j(I(((m=r(e).lastUpdated)==null?void 0:m.text)||r(e).lastUpdatedText||"Last updated")+": ",1),p("time",{datetime:i.value},I(l.value),9,Zt)])}}}),en=g(xt,[["__scopeId","data-v-475f71b8"]]),De=n=>(B("data-v-4f9813fa"),n=n(),H(),n),tn={key:0,class:"VPDocFooter"},nn={key:0,class:"edit-info"},on={key:0,class:"edit-link"},sn=De(()=>p("span",{class:"vpi-square-pen edit-link-icon"},null,-1)),an={key:1,class:"last-updated"},rn={key:1,class:"prev-next","aria-labelledby":"doc-footer-aria-label"},ln=De(()=>p("span",{class:"visually-hidden",id:"doc-footer-aria-label"},"Pager",-1)),cn={class:"pager"},un=["innerHTML"],dn=["innerHTML"],vn={class:"pager"},pn=["innerHTML"],fn=["innerHTML"],hn=_({__name:"VPDocFooter",setup(n){const{theme:e,page:t,frontmatter:s}=V(),o=Jt(),i=Yt(),l=y(()=>e.value.editLink&&s.value.editLink!==!1),d=y(()=>t.value.lastUpdated),v=y(()=>l.value||d.value||i.value.prev||i.value.next);return(m,L)=>{var b,P,S,A;return v.value?(a(),u("footer",tn,[c(m.$slots,"doc-footer-before",{},void 0,!0),l.value||d.value?(a(),u("div",nn,[l.value?(a(),u("div",on,[k(F,{class:"edit-link-button",href:r(o).url,"no-icon":!0},{default:f(()=>[sn,j(" "+I(r(o).text),1)]),_:1},8,["href"])])):h("",!0),d.value?(a(),u("div",an,[k(en)])):h("",!0)])):h("",!0),(b=r(i).prev)!=null&&b.link||(P=r(i).next)!=null&&P.link?(a(),u("nav",rn,[ln,p("div",cn,[(S=r(i).prev)!=null&&S.link?(a(),$(F,{key:0,class:"pager-link prev",href:r(i).prev.link},{default:f(()=>{var C;return[p("span",{class:"desc",innerHTML:((C=r(e).docFooter)==null?void 0:C.prev)||"Previous page"},null,8,un),p("span",{class:"title",innerHTML:r(i).prev.text},null,8,dn)]}),_:1},8,["href"])):h("",!0)]),p("div",vn,[(A=r(i).next)!=null&&A.link?(a(),$(F,{key:0,class:"pager-link next",href:r(i).next.link},{default:f(()=>{var C;return[p("span",{class:"desc",innerHTML:((C=r(e).docFooter)==null?void 0:C.next)||"Next page"},null,8,pn),p("span",{class:"title",innerHTML:r(i).next.text},null,8,fn)]}),_:1},8,["href"])):h("",!0)])])):h("",!0)])):h("",!0)}}}),_n=g(hn,[["__scopeId","data-v-4f9813fa"]]),mn=n=>(B("data-v-83890dd9"),n=n(),H(),n),bn={class:"container"},kn=mn(()=>p("div",{class:"aside-curtain"},null,-1)),$n={class:"aside-container"},gn={class:"aside-content"},yn={class:"content"},Pn={class:"content-container"},Sn={class:"main"},Vn=_({__name:"VPDoc",setup(n){const{theme:e}=V(),t=ne(),{hasSidebar:s,hasAside:o,leftAside:i}=U(),l=y(()=>t.path.replace(/[./]+/g,"_").replace(/_html$/,""));return(d,v)=>{const m=W("Content");return a(),u("div",{class:N(["VPDoc",{"has-sidebar":r(s),"has-aside":r(o)}])},[c(d.$slots,"doc-top",{},void 0,!0),p("div",bn,[r(o)?(a(),u("div",{key:0,class:N(["aside",{"left-aside":r(i)}])},[kn,p("div",$n,[p("div",gn,[k(Wt,null,{"aside-top":f(()=>[c(d.$slots,"aside-top",{},void 0,!0)]),"aside-bottom":f(()=>[c(d.$slots,"aside-bottom",{},void 0,!0)]),"aside-outline-before":f(()=>[c(d.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":f(()=>[c(d.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":f(()=>[c(d.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":f(()=>[c(d.$slots,"aside-ads-after",{},void 0,!0)]),_:3})])])],2)):h("",!0),p("div",yn,[p("div",Pn,[c(d.$slots,"doc-before",{},void 0,!0),p("main",Sn,[k(m,{class:N(["vp-doc",[l.value,r(e).externalLinkIcon&&"external-link-icon-enabled"]])},null,8,["class"])]),k(_n,null,{"doc-footer-before":f(()=>[c(d.$slots,"doc-footer-before",{},void 0,!0)]),_:3}),c(d.$slots,"doc-after",{},void 0,!0)])])]),c(d.$slots,"doc-bottom",{},void 0,!0)],2)}}}),Ln=g(Vn,[["__scopeId","data-v-83890dd9"]]),Tn=_({__name:"VPButton",props:{tag:{},size:{default:"medium"},theme:{default:"brand"},text:{},href:{},target:{},rel:{}},setup(n){const e=n,t=y(()=>e.href&&we.test(e.href)),s=y(()=>e.tag||e.href?"a":"button");return(o,i)=>(a(),$(D(s.value),{class:N(["VPButton",[o.size,o.theme]]),href:o.href?r(be)(o.href):void 0,target:e.target??(t.value?"_blank":void 0),rel:e.rel??(t.value?"noreferrer":void 0)},{default:f(()=>[j(I(o.text),1)]),_:1},8,["class","href","target","rel"]))}}),wn=g(Tn,[["__scopeId","data-v-14206e74"]]),In=["src","alt"],Nn=_({inheritAttrs:!1,__name:"VPImage",props:{image:{},alt:{}},setup(n){return(e,t)=>{const s=W("VPImage",!0);return e.image?(a(),u(M,{key:0},[typeof e.image=="string"||"src"in e.image?(a(),u("img",K({key:0,class:"VPImage"},typeof e.image=="string"?e.$attrs:{...e.image,...e.$attrs},{src:r(fe)(typeof e.image=="string"?e.image:e.image.src),alt:e.alt??(typeof e.image=="string"?"":e.image.alt||"")}),null,16,In)):(a(),u(M,{key:1},[k(s,K({class:"dark",image:e.image.dark,alt:e.image.alt},e.$attrs),null,16,["image","alt"]),k(s,K({class:"light",image:e.image.light,alt:e.image.alt},e.$attrs),null,16,["image","alt"])],64))],64)):h("",!0)}}}),x=g(Nn,[["__scopeId","data-v-35a7d0b8"]]),Mn=n=>(B("data-v-955009fc"),n=n(),H(),n),An={class:"container"},Cn={class:"main"},Bn={key:0,class:"name"},Hn=["innerHTML"],En=["innerHTML"],Dn=["innerHTML"],Fn={key:0,class:"actions"},On={key:0,class:"image"},jn={class:"image-container"},Un=Mn(()=>p("div",{class:"image-bg"},null,-1)),Gn=_({__name:"VPHero",props:{name:{},text:{},tagline:{},image:{},actions:{}},setup(n){const e=Y("hero-image-slot-exists");return(t,s)=>(a(),u("div",{class:N(["VPHero",{"has-image":t.image||r(e)}])},[p("div",An,[p("div",Cn,[c(t.$slots,"home-hero-info-before",{},void 0,!0),c(t.$slots,"home-hero-info",{},()=>[t.name?(a(),u("h1",Bn,[p("span",{innerHTML:t.name,class:"clip"},null,8,Hn)])):h("",!0),t.text?(a(),u("p",{key:1,innerHTML:t.text,class:"text"},null,8,En)):h("",!0),t.tagline?(a(),u("p",{key:2,innerHTML:t.tagline,class:"tagline"},null,8,Dn)):h("",!0)],!0),c(t.$slots,"home-hero-info-after",{},void 0,!0),t.actions?(a(),u("div",Fn,[(a(!0),u(M,null,E(t.actions,o=>(a(),u("div",{key:o.link,class:"action"},[k(wn,{tag:"a",size:"medium",theme:o.theme,text:o.text,href:o.link,target:o.target,rel:o.rel},null,8,["theme","text","href","target","rel"])]))),128))])):h("",!0),c(t.$slots,"home-hero-actions-after",{},void 0,!0)]),t.image||r(e)?(a(),u("div",On,[p("div",jn,[Un,c(t.$slots,"home-hero-image",{},()=>[t.image?(a(),$(x,{key:0,class:"image-src",image:t.image},null,8,["image"])):h("",!0)],!0)])])):h("",!0)])],2))}}),zn=g(Gn,[["__scopeId","data-v-955009fc"]]),Kn=_({__name:"VPHomeHero",setup(n){const{frontmatter:e}=V();return(t,s)=>r(e).hero?(a(),$(zn,{key:0,class:"VPHomeHero",name:r(e).hero.name,text:r(e).hero.text,tagline:r(e).hero.tagline,image:r(e).hero.image,actions:r(e).hero.actions},{"home-hero-info-before":f(()=>[c(t.$slots,"home-hero-info-before")]),"home-hero-info":f(()=>[c(t.$slots,"home-hero-info")]),"home-hero-info-after":f(()=>[c(t.$slots,"home-hero-info-after")]),"home-hero-actions-after":f(()=>[c(t.$slots,"home-hero-actions-after")]),"home-hero-image":f(()=>[c(t.$slots,"home-hero-image")]),_:3},8,["name","text","tagline","image","actions"])):h("",!0)}}),Rn=n=>(B("data-v-f5e9645b"),n=n(),H(),n),qn={class:"box"},Wn={key:0,class:"icon"},Jn=["innerHTML"],Yn=["innerHTML"],Xn=["innerHTML"],Qn={key:4,class:"link-text"},Zn={class:"link-text-value"},xn=Rn(()=>p("span",{class:"vpi-arrow-right link-text-icon"},null,-1)),eo=_({__name:"VPFeature",props:{icon:{},title:{},details:{},link:{},linkText:{},rel:{},target:{}},setup(n){return(e,t)=>(a(),$(F,{class:"VPFeature",href:e.link,rel:e.rel,target:e.target,"no-icon":!0,tag:e.link?"a":"div"},{default:f(()=>[p("article",qn,[typeof e.icon=="object"&&e.icon.wrap?(a(),u("div",Wn,[k(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"?(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?(a(),u("div",{key:2,class:"icon",innerHTML:e.icon},null,8,Jn)):h("",!0),p("h2",{class:"title",innerHTML:e.title},null,8,Yn),e.details?(a(),u("p",{key:3,class:"details",innerHTML:e.details},null,8,Xn)):h("",!0),e.linkText?(a(),u("div",Qn,[p("p",Zn,[j(I(e.linkText)+" ",1),xn])])):h("",!0)])]),_:1},8,["href","rel","target","tag"]))}}),to=g(eo,[["__scopeId","data-v-f5e9645b"]]),no={key:0,class:"VPFeatures"},oo={class:"container"},so={class:"items"},ao=_({__name:"VPFeatures",props:{features:{}},setup(n){const e=n,t=y(()=>{const s=e.features.length;if(s){if(s===2)return"grid-2";if(s===3)return"grid-3";if(s%3===0)return"grid-6";if(s>3)return"grid-4"}else return});return(s,o)=>s.features?(a(),u("div",no,[p("div",oo,[p("div",so,[(a(!0),u(M,null,E(s.features,i=>(a(),u("div",{key:i.title,class:N(["item",[t.value]])},[k(to,{icon:i.icon,title:i.title,details:i.details,link:i.link,"link-text":i.linkText,rel:i.rel,target:i.target},null,8,["icon","title","details","link","link-text","rel","target"])],2))),128))])])])):h("",!0)}}),ro=g(ao,[["__scopeId","data-v-d0a190d7"]]),io=_({__name:"VPHomeFeatures",setup(n){const{frontmatter:e}=V();return(t,s)=>r(e).features?(a(),$(ro,{key:0,class:"VPHomeFeatures",features:r(e).features},null,8,["features"])):h("",!0)}}),lo=_({__name:"VPHomeContent",setup(n){const{width:e}=xe({initialWidth:0,includeScrollbar:!1});return(t,s)=>(a(),u("div",{class:"vp-doc container",style:Ie(r(e)?{"--vp-offset":`calc(50% - ${r(e)/2}px)`}:{})},[c(t.$slots,"default",{},void 0,!0)],4))}}),co=g(lo,[["__scopeId","data-v-7a48a447"]]),uo={class:"VPHome"},vo=_({__name:"VPHome",setup(n){const{frontmatter:e}=V();return(t,s)=>{const o=W("Content");return a(),u("div",uo,[c(t.$slots,"home-hero-before",{},void 0,!0),k(Kn,null,{"home-hero-info-before":f(()=>[c(t.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":f(()=>[c(t.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":f(()=>[c(t.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":f(()=>[c(t.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":f(()=>[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),k(io),c(t.$slots,"home-features-after",{},void 0,!0),r(e).markdownStyles!==!1?(a(),$(co,{key:0},{default:f(()=>[k(o)]),_:1})):(a(),$(o,{key:1}))])}}}),po=g(vo,[["__scopeId","data-v-cbb6ec48"]]),fo={},ho={class:"VPPage"};function _o(n,e){const t=W("Content");return a(),u("div",ho,[c(n.$slots,"page-top"),k(t),c(n.$slots,"page-bottom")])}const mo=g(fo,[["render",_o]]),bo=_({__name:"VPContent",setup(n){const{page:e,frontmatter:t}=V(),{hasSidebar:s}=U();return(o,i)=>(a(),u("div",{class:N(["VPContent",{"has-sidebar":r(s),"is-home":r(t).layout==="home"}]),id:"VPContent"},[r(e).isNotFound?c(o.$slots,"not-found",{key:0},()=>[k(Vt)],!0):r(t).layout==="page"?(a(),$(mo,{key:1},{"page-top":f(()=>[c(o.$slots,"page-top",{},void 0,!0)]),"page-bottom":f(()=>[c(o.$slots,"page-bottom",{},void 0,!0)]),_:3})):r(t).layout==="home"?(a(),$(po,{key:2},{"home-hero-before":f(()=>[c(o.$slots,"home-hero-before",{},void 0,!0)]),"home-hero-info-before":f(()=>[c(o.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":f(()=>[c(o.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":f(()=>[c(o.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":f(()=>[c(o.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":f(()=>[c(o.$slots,"home-hero-image",{},void 0,!0)]),"home-hero-after":f(()=>[c(o.$slots,"home-hero-after",{},void 0,!0)]),"home-features-before":f(()=>[c(o.$slots,"home-features-before",{},void 0,!0)]),"home-features-after":f(()=>[c(o.$slots,"home-features-after",{},void 0,!0)]),_:3})):r(t).layout&&r(t).layout!=="doc"?(a(),$(D(r(t).layout),{key:3})):(a(),$(Ln,{key:4},{"doc-top":f(()=>[c(o.$slots,"doc-top",{},void 0,!0)]),"doc-bottom":f(()=>[c(o.$slots,"doc-bottom",{},void 0,!0)]),"doc-footer-before":f(()=>[c(o.$slots,"doc-footer-before",{},void 0,!0)]),"doc-before":f(()=>[c(o.$slots,"doc-before",{},void 0,!0)]),"doc-after":f(()=>[c(o.$slots,"doc-after",{},void 0,!0)]),"aside-top":f(()=>[c(o.$slots,"aside-top",{},void 0,!0)]),"aside-outline-before":f(()=>[c(o.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":f(()=>[c(o.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":f(()=>[c(o.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":f(()=>[c(o.$slots,"aside-ads-after",{},void 0,!0)]),"aside-bottom":f(()=>[c(o.$slots,"aside-bottom",{},void 0,!0)]),_:3}))],2))}}),ko=g(bo,[["__scopeId","data-v-91765379"]]),$o={class:"container"},go=["innerHTML"],yo=["innerHTML"],Po=_({__name:"VPFooter",setup(n){const{theme:e,frontmatter:t}=V(),{hasSidebar:s}=U();return(o,i)=>r(e).footer&&r(t).footer!==!1?(a(),u("footer",{key:0,class:N(["VPFooter",{"has-sidebar":r(s)}])},[p("div",$o,[r(e).footer.message?(a(),u("p",{key:0,class:"message",innerHTML:r(e).footer.message},null,8,go)):h("",!0),r(e).footer.copyright?(a(),u("p",{key:1,class:"copyright",innerHTML:r(e).footer.copyright},null,8,yo)):h("",!0)])],2)):h("",!0)}}),So=g(Po,[["__scopeId","data-v-c970a860"]]);function Vo(){const{theme:n,frontmatter:e}=V(),t=Te([]),s=y(()=>t.value.length>0);return te(()=>{t.value=ke(e.value.outline??n.value.outline)}),{headers:t,hasLocalNav:s}}const Lo=n=>(B("data-v-bc9dc845"),n=n(),H(),n),To={class:"menu-text"},wo=Lo(()=>p("span",{class:"vpi-chevron-right icon"},null,-1)),Io={class:"header"},No={class:"outline"},Mo=_({__name:"VPLocalNavOutlineDropdown",props:{headers:{},navHeight:{}},setup(n){const e=n,{theme:t}=V(),s=T(!1),o=T(0),i=T(),l=T();function d(b){var P;(P=i.value)!=null&&P.contains(b.target)||(s.value=!1)}O(s,b=>{if(b){document.addEventListener("click",d);return}document.removeEventListener("click",d)}),ce("Escape",()=>{s.value=!1}),te(()=>{s.value=!1});function v(){s.value=!s.value,o.value=window.innerHeight+Math.min(window.scrollY-e.navHeight,0)}function m(b){b.target.classList.contains("outline-link")&&(l.value&&(l.value.style.transition="none"),Ne(()=>{s.value=!1}))}function L(){s.value=!1,window.scrollTo({top:0,left:0,behavior:"smooth"})}return(b,P)=>(a(),u("div",{class:"VPLocalNavOutlineDropdown",style:Ie({"--vp-vh":o.value+"px"}),ref_key:"main",ref:i},[b.headers.length>0?(a(),u("button",{key:0,onClick:v,class:N({open:s.value})},[p("span",To,I(r(He)(r(t))),1),wo],2)):(a(),u("button",{key:1,onClick:L},I(r(t).returnToTopLabel||"Return to top"),1)),k(pe,{name:"flyout"},{default:f(()=>[s.value?(a(),u("div",{key:0,ref_key:"items",ref:l,class:"items",onClick:m},[p("div",Io,[p("a",{class:"top-link",href:"#",onClick:L},I(r(t).returnToTopLabel||"Return to top"),1)]),p("div",No,[k(Ee,{headers:b.headers},null,8,["headers"])])],512)):h("",!0)]),_:1})],4))}}),Ao=g(Mo,[["__scopeId","data-v-bc9dc845"]]),Co=n=>(B("data-v-070ab83d"),n=n(),H(),n),Bo={class:"container"},Ho=["aria-expanded"],Eo=Co(()=>p("span",{class:"vpi-align-left menu-icon"},null,-1)),Do={class:"menu-text"},Fo=_({__name:"VPLocalNav",props:{open:{type:Boolean}},emits:["open-menu"],setup(n){const{theme:e,frontmatter:t}=V(),{hasSidebar:s}=U(),{headers:o}=Vo(),{y:i}=Me(),l=T(0);R(()=>{l.value=parseInt(getComputedStyle(document.documentElement).getPropertyValue("--vp-nav-height"))}),te(()=>{o.value=ke(t.value.outline??e.value.outline)});const d=y(()=>o.value.length===0),v=y(()=>d.value&&!s.value),m=y(()=>({VPLocalNav:!0,"has-sidebar":s.value,empty:d.value,fixed:v.value}));return(L,b)=>r(t).layout!=="home"&&(!v.value||r(i)>=l.value)?(a(),u("div",{key:0,class:N(m.value)},[p("div",Bo,[r(s)?(a(),u("button",{key:0,class:"menu","aria-expanded":L.open,"aria-controls":"VPSidebarNav",onClick:b[0]||(b[0]=P=>L.$emit("open-menu"))},[Eo,p("span",Do,I(r(e).sidebarMenuLabel||"Menu"),1)],8,Ho)):h("",!0),k(Ao,{headers:r(o),navHeight:l.value},null,8,["headers","navHeight"])])],2)):h("",!0)}}),Oo=g(Fo,[["__scopeId","data-v-070ab83d"]]);function jo(){const n=T(!1);function e(){n.value=!0,window.addEventListener("resize",o)}function t(){n.value=!1,window.removeEventListener("resize",o)}function s(){n.value?t():e()}function o(){window.outerWidth>=768&&t()}const i=ne();return O(()=>i.path,t),{isScreenOpen:n,openScreen:e,closeScreen:t,toggleScreen:s}}const Uo={},Go={class:"VPSwitch",type:"button",role:"switch"},zo={class:"check"},Ko={key:0,class:"icon"};function Ro(n,e){return a(),u("button",Go,[p("span",zo,[n.$slots.default?(a(),u("span",Ko,[c(n.$slots,"default",{},void 0,!0)])):h("",!0)])])}const qo=g(Uo,[["render",Ro],["__scopeId","data-v-4a1c76db"]]),Fe=n=>(B("data-v-e40a8bb6"),n=n(),H(),n),Wo=Fe(()=>p("span",{class:"vpi-sun sun"},null,-1)),Jo=Fe(()=>p("span",{class:"vpi-moon moon"},null,-1)),Yo=_({__name:"VPSwitchAppearance",setup(n){const{isDark:e,theme:t}=V(),s=Y("toggle-appearance",()=>{e.value=!e.value}),o=T("");return _e(()=>{o.value=e.value?t.value.lightModeSwitchTitle||"Switch to light theme":t.value.darkModeSwitchTitle||"Switch to dark theme"}),(i,l)=>(a(),$(qo,{title:o.value,class:"VPSwitchAppearance","aria-checked":r(e),onClick:r(s)},{default:f(()=>[Wo,Jo]),_:1},8,["title","aria-checked","onClick"]))}}),$e=g(Yo,[["__scopeId","data-v-e40a8bb6"]]),Xo={key:0,class:"VPNavBarAppearance"},Qo=_({__name:"VPNavBarAppearance",setup(n){const{site:e}=V();return(t,s)=>r(e).appearance&&r(e).appearance!=="force-dark"&&r(e).appearance!=="force-auto"?(a(),u("div",Xo,[k($e)])):h("",!0)}}),Zo=g(Qo,[["__scopeId","data-v-af096f4a"]]),ge=T();let Oe=!1,ie=0;function xo(n){const e=T(!1);if(oe){!Oe&&es(),ie++;const t=O(ge,s=>{var o,i,l;s===n.el.value||(o=n.el.value)!=null&&o.contains(s)?(e.value=!0,(i=n.onFocus)==null||i.call(n)):(e.value=!1,(l=n.onBlur)==null||l.call(n))});he(()=>{t(),ie--,ie||ts()})}return et(e)}function es(){document.addEventListener("focusin",je),Oe=!0,ge.value=document.activeElement}function ts(){document.removeEventListener("focusin",je)}function je(){ge.value=document.activeElement}const ns={class:"VPMenuLink"},os=_({__name:"VPMenuLink",props:{item:{}},setup(n){const{page:e}=V();return(t,s)=>(a(),u("div",ns,[k(F,{class:N({active:r(q)(r(e).relativePath,t.item.activeMatch||t.item.link,!!t.item.activeMatch)}),href:t.item.link,target:t.item.target,rel:t.item.rel},{default:f(()=>[j(I(t.item.text),1)]),_:1},8,["class","href","target","rel"])]))}}),se=g(os,[["__scopeId","data-v-8b74d055"]]),ss={class:"VPMenuGroup"},as={key:0,class:"title"},rs=_({__name:"VPMenuGroup",props:{text:{},items:{}},setup(n){return(e,t)=>(a(),u("div",ss,[e.text?(a(),u("p",as,I(e.text),1)):h("",!0),(a(!0),u(M,null,E(e.items,s=>(a(),u(M,null,["link"in s?(a(),$(se,{key:0,item:s},null,8,["item"])):h("",!0)],64))),256))]))}}),is=g(rs,[["__scopeId","data-v-48c802d0"]]),ls={class:"VPMenu"},cs={key:0,class:"items"},us=_({__name:"VPMenu",props:{items:{}},setup(n){return(e,t)=>(a(),u("div",ls,[e.items?(a(),u("div",cs,[(a(!0),u(M,null,E(e.items,s=>(a(),u(M,{key:JSON.stringify(s)},["link"in s?(a(),$(se,{key:0,item:s},null,8,["item"])):"component"in s?(a(),$(D(s.component),K({key:1,ref_for:!0},s.props),null,16)):(a(),$(is,{key:2,text:s.text,items:s.items},null,8,["text","items"]))],64))),128))])):h("",!0),c(e.$slots,"default",{},void 0,!0)]))}}),ds=g(us,[["__scopeId","data-v-7dd3104a"]]),vs=n=>(B("data-v-e5380155"),n=n(),H(),n),ps=["aria-expanded","aria-label"],fs={key:0,class:"text"},hs=["innerHTML"],_s=vs(()=>p("span",{class:"vpi-chevron-down text-icon"},null,-1)),ms={key:1,class:"vpi-more-horizontal icon"},bs={class:"menu"},ks=_({__name:"VPFlyout",props:{icon:{},button:{},label:{},items:{}},setup(n){const e=T(!1),t=T();xo({el:t,onBlur:s});function s(){e.value=!1}return(o,i)=>(a(),u("div",{class:"VPFlyout",ref_key:"el",ref:t,onMouseenter:i[1]||(i[1]=l=>e.value=!0),onMouseleave:i[2]||(i[2]=l=>e.value=!1)},[p("button",{type:"button",class:"button","aria-haspopup":"true","aria-expanded":e.value,"aria-label":o.label,onClick:i[0]||(i[0]=l=>e.value=!e.value)},[o.button||o.icon?(a(),u("span",fs,[o.icon?(a(),u("span",{key:0,class:N([o.icon,"option-icon"])},null,2)):h("",!0),o.button?(a(),u("span",{key:1,innerHTML:o.button},null,8,hs)):h("",!0),_s])):(a(),u("span",ms))],8,ps),p("div",bs,[k(ds,{items:o.items},{default:f(()=>[c(o.$slots,"default",{},void 0,!0)]),_:3},8,["items"])])],544))}}),ye=g(ks,[["__scopeId","data-v-e5380155"]]),$s=["href","aria-label","innerHTML"],gs=_({__name:"VPSocialLink",props:{icon:{},link:{},ariaLabel:{}},setup(n){const e=n,t=y(()=>typeof e.icon=="object"?e.icon.svg:``);return(s,o)=>(a(),u("a",{class:"VPSocialLink no-icon",href:s.link,"aria-label":s.ariaLabel??(typeof s.icon=="string"?s.icon:""),target:"_blank",rel:"noopener",innerHTML:t.value},null,8,$s))}}),ys=g(gs,[["__scopeId","data-v-717b8b75"]]),Ps={class:"VPSocialLinks"},Ss=_({__name:"VPSocialLinks",props:{links:{}},setup(n){return(e,t)=>(a(),u("div",Ps,[(a(!0),u(M,null,E(e.links,({link:s,icon:o,ariaLabel:i})=>(a(),$(ys,{key:s,icon:o,link:s,ariaLabel:i},null,8,["icon","link","ariaLabel"]))),128))]))}}),Pe=g(Ss,[["__scopeId","data-v-ee7a9424"]]),Vs={key:0,class:"group translations"},Ls={class:"trans-title"},Ts={key:1,class:"group"},ws={class:"item appearance"},Is={class:"label"},Ns={class:"appearance-action"},Ms={key:2,class:"group"},As={class:"item social-links"},Cs=_({__name:"VPNavBarExtra",setup(n){const{site:e,theme:t}=V(),{localeLinks:s,currentLang:o}=Q({correspondingLink:!0}),i=y(()=>s.value.length&&o.value.label||e.value.appearance||t.value.socialLinks);return(l,d)=>i.value?(a(),$(ye,{key:0,class:"VPNavBarExtra",label:"extra navigation"},{default:f(()=>[r(s).length&&r(o).label?(a(),u("div",Vs,[p("p",Ls,I(r(o).label),1),(a(!0),u(M,null,E(r(s),v=>(a(),$(se,{key:v.link,item:v},null,8,["item"]))),128))])):h("",!0),r(e).appearance&&r(e).appearance!=="force-dark"&&r(e).appearance!=="force-auto"?(a(),u("div",Ts,[p("div",ws,[p("p",Is,I(r(t).darkModeSwitchLabel||"Appearance"),1),p("div",Ns,[k($e)])])])):h("",!0),r(t).socialLinks?(a(),u("div",Ms,[p("div",As,[k(Pe,{class:"social-links-list",links:r(t).socialLinks},null,8,["links"])])])):h("",!0)]),_:1})):h("",!0)}}),Bs=g(Cs,[["__scopeId","data-v-925effce"]]),Hs=n=>(B("data-v-5dea55bf"),n=n(),H(),n),Es=["aria-expanded"],Ds=Hs(()=>p("span",{class:"container"},[p("span",{class:"top"}),p("span",{class:"middle"}),p("span",{class:"bottom"})],-1)),Fs=[Ds],Os=_({__name:"VPNavBarHamburger",props:{active:{type:Boolean}},emits:["click"],setup(n){return(e,t)=>(a(),u("button",{type:"button",class:N(["VPNavBarHamburger",{active:e.active}]),"aria-label":"mobile navigation","aria-expanded":e.active,"aria-controls":"VPNavScreen",onClick:t[0]||(t[0]=s=>e.$emit("click"))},Fs,10,Es))}}),js=g(Os,[["__scopeId","data-v-5dea55bf"]]),Us=["innerHTML"],Gs=_({__name:"VPNavBarMenuLink",props:{item:{}},setup(n){const{page:e}=V();return(t,s)=>(a(),$(F,{class:N({VPNavBarMenuLink:!0,active:r(q)(r(e).relativePath,t.item.activeMatch||t.item.link,!!t.item.activeMatch)}),href:t.item.link,noIcon:t.item.noIcon,target:t.item.target,rel:t.item.rel,tabindex:"0"},{default:f(()=>[p("span",{innerHTML:t.item.text},null,8,Us)]),_:1},8,["class","href","noIcon","target","rel"]))}}),zs=g(Gs,[["__scopeId","data-v-ed5ac1f6"]]),Ks=_({__name:"VPNavBarMenuGroup",props:{item:{}},setup(n){const e=n,{page:t}=V(),s=i=>"component"in i?!1:"link"in i?q(t.value.relativePath,i.link,!!e.item.activeMatch):i.items.some(s),o=y(()=>s(e.item));return(i,l)=>(a(),$(ye,{class:N({VPNavBarMenuGroup:!0,active:r(q)(r(t).relativePath,i.item.activeMatch,!!i.item.activeMatch)||o.value}),button:i.item.text,items:i.item.items},null,8,["class","button","items"]))}}),Rs=n=>(B("data-v-e6d46098"),n=n(),H(),n),qs={key:0,"aria-labelledby":"main-nav-aria-label",class:"VPNavBarMenu"},Ws=Rs(()=>p("span",{id:"main-nav-aria-label",class:"visually-hidden"}," Main Navigation ",-1)),Js=_({__name:"VPNavBarMenu",setup(n){const{theme:e}=V();return(t,s)=>r(e).nav?(a(),u("nav",qs,[Ws,(a(!0),u(M,null,E(r(e).nav,o=>(a(),u(M,{key:JSON.stringify(o)},["link"in o?(a(),$(zs,{key:0,item:o},null,8,["item"])):"component"in o?(a(),$(D(o.component),K({key:1,ref_for:!0},o.props),null,16)):(a(),$(Ks,{key:2,item:o},null,8,["item"]))],64))),128))])):h("",!0)}}),Ys=g(Js,[["__scopeId","data-v-e6d46098"]]);function Xs(n){const{localeIndex:e,theme:t}=V();function s(o){var A,C,w;const i=o.split("."),l=(A=t.value.search)==null?void 0:A.options,d=l&&typeof l=="object",v=d&&((w=(C=l.locales)==null?void 0:C[e.value])==null?void 0:w.translations)||null,m=d&&l.translations||null;let L=v,b=m,P=n;const S=i.pop();for(const G of i){let z=null;const J=P==null?void 0:P[G];J&&(z=P=J);const ae=b==null?void 0:b[G];ae&&(z=b=ae);const re=L==null?void 0:L[G];re&&(z=L=re),J||(P=z),ae||(b=z),re||(L=z)}return(L==null?void 0:L[S])??(b==null?void 0:b[S])??(P==null?void 0:P[S])??""}return s}const Qs=["aria-label"],Zs={class:"DocSearch-Button-Container"},xs=p("span",{class:"vp-icon DocSearch-Search-Icon"},null,-1),ea={class:"DocSearch-Button-Placeholder"},ta=p("span",{class:"DocSearch-Button-Keys"},[p("kbd",{class:"DocSearch-Button-Key"}),p("kbd",{class:"DocSearch-Button-Key"},"K")],-1),Se=_({__name:"VPNavBarSearchButton",setup(n){const t=Xs({button:{buttonText:"Search",buttonAriaLabel:"Search"}});return(s,o)=>(a(),u("button",{type:"button",class:"DocSearch DocSearch-Button","aria-label":r(t)("button.buttonAriaLabel")},[p("span",Zs,[xs,p("span",ea,I(r(t)("button.buttonText")),1)]),ta],8,Qs))}}),na={class:"VPNavBarSearch"},oa={id:"local-search"},sa={key:1,id:"docsearch"},aa=_({__name:"VPNavBarSearch",setup(n){const e=tt(()=>nt(()=>import("./VPLocalSearchBox.6RcbE376.js"),__vite__mapDeps([0,1]))),t=()=>null,{theme:s}=V(),o=T(!1),i=T(!1);R(()=>{});function l(){o.value||(o.value=!0,setTimeout(d,16))}function d(){const b=new Event("keydown");b.key="k",b.metaKey=!0,window.dispatchEvent(b),setTimeout(()=>{document.querySelector(".DocSearch-Modal")||d()},16)}function v(b){const P=b.target,S=P.tagName;return P.isContentEditable||S==="INPUT"||S==="SELECT"||S==="TEXTAREA"}const m=T(!1);ce("k",b=>{(b.ctrlKey||b.metaKey)&&(b.preventDefault(),m.value=!0)}),ce("/",b=>{v(b)||(b.preventDefault(),m.value=!0)});const L="local";return(b,P)=>{var S;return a(),u("div",na,[r(L)==="local"?(a(),u(M,{key:0},[m.value?(a(),$(r(e),{key:0,onClose:P[0]||(P[0]=A=>m.value=!1)})):h("",!0),p("div",oa,[k(Se,{onClick:P[1]||(P[1]=A=>m.value=!0)})])],64)):r(L)==="algolia"?(a(),u(M,{key:1},[o.value?(a(),$(r(t),{key:0,algolia:((S=r(s).search)==null?void 0:S.options)??r(s).algolia,onVnodeBeforeMount:P[2]||(P[2]=A=>i.value=!0)},null,8,["algolia"])):h("",!0),i.value?h("",!0):(a(),u("div",sa,[k(Se,{onClick:l})]))],64)):h("",!0)])}}}),ra=_({__name:"VPNavBarSocialLinks",setup(n){const{theme:e}=V();return(t,s)=>r(e).socialLinks?(a(),$(Pe,{key:0,class:"VPNavBarSocialLinks",links:r(e).socialLinks},null,8,["links"])):h("",!0)}}),ia=g(ra,[["__scopeId","data-v-164c457f"]]),la=["href","rel","target"],ca={key:1},ua={key:2},da=_({__name:"VPNavBarTitle",setup(n){const{site:e,theme:t}=V(),{hasSidebar:s}=U(),{currentLang:o}=Q(),i=y(()=>{var v;return typeof t.value.logoLink=="string"?t.value.logoLink:(v=t.value.logoLink)==null?void 0:v.link}),l=y(()=>{var v;return typeof t.value.logoLink=="string"||(v=t.value.logoLink)==null?void 0:v.rel}),d=y(()=>{var v;return typeof t.value.logoLink=="string"||(v=t.value.logoLink)==null?void 0:v.target});return(v,m)=>(a(),u("div",{class:N(["VPNavBarTitle",{"has-sidebar":r(s)}])},[p("a",{class:"title",href:i.value??r(be)(r(o).link),rel:l.value,target:d.value},[c(v.$slots,"nav-bar-title-before",{},void 0,!0),r(t).logo?(a(),$(x,{key:0,class:"logo",image:r(t).logo},null,8,["image"])):h("",!0),r(t).siteTitle?(a(),u("span",ca,I(r(t).siteTitle),1)):r(t).siteTitle===void 0?(a(),u("span",ua,I(r(e).title),1)):h("",!0),c(v.$slots,"nav-bar-title-after",{},void 0,!0)],8,la)],2))}}),va=g(da,[["__scopeId","data-v-28a961f9"]]),pa={class:"items"},fa={class:"title"},ha=_({__name:"VPNavBarTranslations",setup(n){const{theme:e}=V(),{localeLinks:t,currentLang:s}=Q({correspondingLink:!0});return(o,i)=>r(t).length&&r(s).label?(a(),$(ye,{key:0,class:"VPNavBarTranslations",icon:"vpi-languages",label:r(e).langMenuLabel||"Change language"},{default:f(()=>[p("div",pa,[p("p",fa,I(r(s).label),1),(a(!0),u(M,null,E(r(t),l=>(a(),$(se,{key:l.link,item:l},null,8,["item"]))),128))])]),_:1},8,["label"])):h("",!0)}}),_a=g(ha,[["__scopeId","data-v-c80d9ad0"]]),ma=n=>(B("data-v-822684d1"),n=n(),H(),n),ba={class:"wrapper"},ka={class:"container"},$a={class:"title"},ga={class:"content"},ya={class:"content-body"},Pa=ma(()=>p("div",{class:"divider"},[p("div",{class:"divider-line"})],-1)),Sa=_({__name:"VPNavBar",props:{isScreenOpen:{type:Boolean}},emits:["toggle-screen"],setup(n){const e=n,{y:t}=Me(),{hasSidebar:s}=U(),{frontmatter:o}=V(),i=T({});return _e(()=>{i.value={"has-sidebar":s.value,home:o.value.layout==="home",top:t.value===0,"screen-open":e.isScreenOpen}}),(l,d)=>(a(),u("div",{class:N(["VPNavBar",i.value])},[p("div",ba,[p("div",ka,[p("div",$a,[k(va,null,{"nav-bar-title-before":f(()=>[c(l.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":f(()=>[c(l.$slots,"nav-bar-title-after",{},void 0,!0)]),_:3})]),p("div",ga,[p("div",ya,[c(l.$slots,"nav-bar-content-before",{},void 0,!0),k(aa,{class:"search"}),k(Ys,{class:"menu"}),k(_a,{class:"translations"}),k(Zo,{class:"appearance"}),k(ia,{class:"social-links"}),k(Bs,{class:"extra"}),c(l.$slots,"nav-bar-content-after",{},void 0,!0),k(js,{class:"hamburger",active:l.isScreenOpen,onClick:d[0]||(d[0]=v=>l.$emit("toggle-screen"))},null,8,["active"])])])])]),Pa],2))}}),Va=g(Sa,[["__scopeId","data-v-822684d1"]]),La={key:0,class:"VPNavScreenAppearance"},Ta={class:"text"},wa=_({__name:"VPNavScreenAppearance",setup(n){const{site:e,theme:t}=V();return(s,o)=>r(e).appearance&&r(e).appearance!=="force-dark"&&r(e).appearance!=="force-auto"?(a(),u("div",La,[p("p",Ta,I(r(t).darkModeSwitchLabel||"Appearance"),1),k($e)])):h("",!0)}}),Ia=g(wa,[["__scopeId","data-v-ffb44008"]]),Na=_({__name:"VPNavScreenMenuLink",props:{item:{}},setup(n){const e=Y("close-screen");return(t,s)=>(a(),$(F,{class:"VPNavScreenMenuLink",href:t.item.link,target:t.item.target,rel:t.item.rel,onClick:r(e),innerHTML:t.item.text},null,8,["href","target","rel","onClick","innerHTML"]))}}),Ma=g(Na,[["__scopeId","data-v-27d04aeb"]]),Aa=_({__name:"VPNavScreenMenuGroupLink",props:{item:{}},setup(n){const e=Y("close-screen");return(t,s)=>(a(),$(F,{class:"VPNavScreenMenuGroupLink",href:t.item.link,target:t.item.target,rel:t.item.rel,onClick:r(e)},{default:f(()=>[j(I(t.item.text),1)]),_:1},8,["href","target","rel","onClick"]))}}),Ue=g(Aa,[["__scopeId","data-v-7179dbb7"]]),Ca={class:"VPNavScreenMenuGroupSection"},Ba={key:0,class:"title"},Ha=_({__name:"VPNavScreenMenuGroupSection",props:{text:{},items:{}},setup(n){return(e,t)=>(a(),u("div",Ca,[e.text?(a(),u("p",Ba,I(e.text),1)):h("",!0),(a(!0),u(M,null,E(e.items,s=>(a(),$(Ue,{key:s.text,item:s},null,8,["item"]))),128))]))}}),Ea=g(Ha,[["__scopeId","data-v-4b8941ac"]]),Da=n=>(B("data-v-875057a5"),n=n(),H(),n),Fa=["aria-controls","aria-expanded"],Oa=["innerHTML"],ja=Da(()=>p("span",{class:"vpi-plus button-icon"},null,-1)),Ua=["id"],Ga={key:0,class:"item"},za={key:1,class:"item"},Ka={key:2,class:"group"},Ra=_({__name:"VPNavScreenMenuGroup",props:{text:{},items:{}},setup(n){const e=n,t=T(!1),s=y(()=>`NavScreenGroup-${e.text.replace(" ","-").toLowerCase()}`);function o(){t.value=!t.value}return(i,l)=>(a(),u("div",{class:N(["VPNavScreenMenuGroup",{open:t.value}])},[p("button",{class:"button","aria-controls":s.value,"aria-expanded":t.value,onClick:o},[p("span",{class:"button-text",innerHTML:i.text},null,8,Oa),ja],8,Fa),p("div",{id:s.value,class:"items"},[(a(!0),u(M,null,E(i.items,d=>(a(),u(M,{key:JSON.stringify(d)},["link"in d?(a(),u("div",Ga,[k(Ue,{item:d},null,8,["item"])])):"component"in d?(a(),u("div",za,[(a(),$(D(d.component),K({ref_for:!0},d.props,{"screen-menu":""}),null,16))])):(a(),u("div",Ka,[k(Ea,{text:d.text,items:d.items},null,8,["text","items"])]))],64))),128))],8,Ua)],2))}}),qa=g(Ra,[["__scopeId","data-v-875057a5"]]),Wa={key:0,class:"VPNavScreenMenu"},Ja=_({__name:"VPNavScreenMenu",setup(n){const{theme:e}=V();return(t,s)=>r(e).nav?(a(),u("nav",Wa,[(a(!0),u(M,null,E(r(e).nav,o=>(a(),u(M,{key:JSON.stringify(o)},["link"in o?(a(),$(Ma,{key:0,item:o},null,8,["item"])):"component"in o?(a(),$(D(o.component),K({key:1,ref_for:!0},o.props,{"screen-menu":""}),null,16)):(a(),$(qa,{key:2,text:o.text||"",items:o.items},null,8,["text","items"]))],64))),128))])):h("",!0)}}),Ya=_({__name:"VPNavScreenSocialLinks",setup(n){const{theme:e}=V();return(t,s)=>r(e).socialLinks?(a(),$(Pe,{key:0,class:"VPNavScreenSocialLinks",links:r(e).socialLinks},null,8,["links"])):h("",!0)}}),Ge=n=>(B("data-v-362991c2"),n=n(),H(),n),Xa=Ge(()=>p("span",{class:"vpi-languages icon lang"},null,-1)),Qa=Ge(()=>p("span",{class:"vpi-chevron-down icon chevron"},null,-1)),Za={class:"list"},xa=_({__name:"VPNavScreenTranslations",setup(n){const{localeLinks:e,currentLang:t}=Q({correspondingLink:!0}),s=T(!1);function o(){s.value=!s.value}return(i,l)=>r(e).length&&r(t).label?(a(),u("div",{key:0,class:N(["VPNavScreenTranslations",{open:s.value}])},[p("button",{class:"title",onClick:o},[Xa,j(" "+I(r(t).label)+" ",1),Qa]),p("ul",Za,[(a(!0),u(M,null,E(r(e),d=>(a(),u("li",{key:d.link,class:"item"},[k(F,{class:"link",href:d.link},{default:f(()=>[j(I(d.text),1)]),_:2},1032,["href"])]))),128))])],2)):h("",!0)}}),er=g(xa,[["__scopeId","data-v-362991c2"]]),tr={class:"container"},nr=_({__name:"VPNavScreen",props:{open:{type:Boolean}},setup(n){const e=T(null),t=Ae(oe?document.body:null);return(s,o)=>(a(),$(pe,{name:"fade",onEnter:o[0]||(o[0]=i=>t.value=!0),onAfterLeave:o[1]||(o[1]=i=>t.value=!1)},{default:f(()=>[s.open?(a(),u("div",{key:0,class:"VPNavScreen",ref_key:"screen",ref:e,id:"VPNavScreen"},[p("div",tr,[c(s.$slots,"nav-screen-content-before",{},void 0,!0),k(Ja,{class:"menu"}),k(er,{class:"translations"}),k(Ia,{class:"appearance"}),k(Ya,{class:"social-links"}),c(s.$slots,"nav-screen-content-after",{},void 0,!0)])],512)):h("",!0)]),_:3}))}}),or=g(nr,[["__scopeId","data-v-833aabba"]]),sr={key:0,class:"VPNav"},ar=_({__name:"VPNav",setup(n){const{isScreenOpen:e,closeScreen:t,toggleScreen:s}=jo(),{frontmatter:o}=V(),i=y(()=>o.value.navbar!==!1);return me("close-screen",t),ee(()=>{oe&&document.documentElement.classList.toggle("hide-nav",!i.value)}),(l,d)=>i.value?(a(),u("header",sr,[k(Va,{"is-screen-open":r(e),onToggleScreen:r(s)},{"nav-bar-title-before":f(()=>[c(l.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":f(()=>[c(l.$slots,"nav-bar-title-after",{},void 0,!0)]),"nav-bar-content-before":f(()=>[c(l.$slots,"nav-bar-content-before",{},void 0,!0)]),"nav-bar-content-after":f(()=>[c(l.$slots,"nav-bar-content-after",{},void 0,!0)]),_:3},8,["is-screen-open","onToggleScreen"]),k(or,{open:r(e)},{"nav-screen-content-before":f(()=>[c(l.$slots,"nav-screen-content-before",{},void 0,!0)]),"nav-screen-content-after":f(()=>[c(l.$slots,"nav-screen-content-after",{},void 0,!0)]),_:3},8,["open"])])):h("",!0)}}),rr=g(ar,[["__scopeId","data-v-f1e365da"]]),ze=n=>(B("data-v-196b2e5f"),n=n(),H(),n),ir=["role","tabindex"],lr=ze(()=>p("div",{class:"indicator"},null,-1)),cr=ze(()=>p("span",{class:"vpi-chevron-right caret-icon"},null,-1)),ur=[cr],dr={key:1,class:"items"},vr=_({__name:"VPSidebarItem",props:{item:{},depth:{}},setup(n){const e=n,{collapsed:t,collapsible:s,isLink:o,isActiveLink:i,hasActiveLink:l,hasChildren:d,toggle:v}=It(y(()=>e.item)),m=y(()=>d.value?"section":"div"),L=y(()=>o.value?"a":"div"),b=y(()=>d.value?e.depth+2===7?"p":`h${e.depth+2}`:"p"),P=y(()=>o.value?void 0:"button"),S=y(()=>[[`level-${e.depth}`],{collapsible:s.value},{collapsed:t.value},{"is-link":o.value},{"is-active":i.value},{"has-active":l.value}]);function A(w){"key"in w&&w.key!=="Enter"||!e.item.link&&v()}function C(){e.item.link&&v()}return(w,G)=>{const z=W("VPSidebarItem",!0);return a(),$(D(m.value),{class:N(["VPSidebarItem",S.value])},{default:f(()=>[w.item.text?(a(),u("div",K({key:0,class:"item",role:P.value},st(w.item.items?{click:A,keydown:A}:{},!0),{tabindex:w.item.items&&0}),[lr,w.item.link?(a(),$(F,{key:0,tag:L.value,class:"link",href:w.item.link,rel:w.item.rel,target:w.item.target},{default:f(()=>[(a(),$(D(b.value),{class:"text",innerHTML:w.item.text},null,8,["innerHTML"]))]),_:1},8,["tag","href","rel","target"])):(a(),$(D(b.value),{key:1,class:"text",innerHTML:w.item.text},null,8,["innerHTML"])),w.item.collapsed!=null&&w.item.items&&w.item.items.length?(a(),u("div",{key:2,class:"caret",role:"button","aria-label":"toggle section",onClick:C,onKeydown:ot(C,["enter"]),tabindex:"0"},ur,32)):h("",!0)],16,ir)):h("",!0),w.item.items&&w.item.items.length?(a(),u("div",dr,[w.depth<5?(a(!0),u(M,{key:0},E(w.item.items,J=>(a(),$(z,{key:J.text,item:J,depth:w.depth+1},null,8,["item","depth"]))),128)):h("",!0)])):h("",!0)]),_:1},8,["class"])}}}),pr=g(vr,[["__scopeId","data-v-196b2e5f"]]),fr=_({__name:"VPSidebarGroup",props:{items:{}},setup(n){const e=T(!0);let t=null;return R(()=>{t=setTimeout(()=>{t=null,e.value=!1},300)}),at(()=>{t!=null&&(clearTimeout(t),t=null)}),(s,o)=>(a(!0),u(M,null,E(s.items,i=>(a(),u("div",{key:i.text,class:N(["group",{"no-transition":e.value}])},[k(pr,{item:i,depth:0},null,8,["item"])],2))),128))}}),hr=g(fr,[["__scopeId","data-v-9e426adc"]]),Ke=n=>(B("data-v-18756405"),n=n(),H(),n),_r=Ke(()=>p("div",{class:"curtain"},null,-1)),mr={class:"nav",id:"VPSidebarNav","aria-labelledby":"sidebar-aria-label",tabindex:"-1"},br=Ke(()=>p("span",{class:"visually-hidden",id:"sidebar-aria-label"}," Sidebar Navigation ",-1)),kr=_({__name:"VPSidebar",props:{open:{type:Boolean}},setup(n){const{sidebarGroups:e,hasSidebar:t}=U(),s=n,o=T(null),i=Ae(oe?document.body:null);O([s,o],()=>{var d;s.open?(i.value=!0,(d=o.value)==null||d.focus()):i.value=!1},{immediate:!0,flush:"post"});const l=T(0);return O(e,()=>{l.value+=1},{deep:!0}),(d,v)=>r(t)?(a(),u("aside",{key:0,class:N(["VPSidebar",{open:d.open}]),ref_key:"navEl",ref:o,onClick:v[0]||(v[0]=rt(()=>{},["stop"]))},[_r,p("nav",mr,[br,c(d.$slots,"sidebar-nav-before",{},void 0,!0),(a(),$(hr,{items:r(e),key:l.value},null,8,["items"])),c(d.$slots,"sidebar-nav-after",{},void 0,!0)])],2)):h("",!0)}}),$r=g(kr,[["__scopeId","data-v-18756405"]]),gr=_({__name:"VPSkipLink",setup(n){const e=ne(),t=T();O(()=>e.path,()=>t.value.focus());function s({target:o}){const i=document.getElementById(decodeURIComponent(o.hash).slice(1));if(i){const l=()=>{i.removeAttribute("tabindex"),i.removeEventListener("blur",l)};i.setAttribute("tabindex","-1"),i.addEventListener("blur",l),i.focus(),window.scrollTo(0,0)}}return(o,i)=>(a(),u(M,null,[p("span",{ref_key:"backToTop",ref:t,tabindex:"-1"},null,512),p("a",{href:"#VPContent",class:"VPSkipLink visually-hidden",onClick:s}," Skip to content ")],64))}}),yr=g(gr,[["__scopeId","data-v-c3508ec8"]]),Pr=_({__name:"Layout",setup(n){const{isOpen:e,open:t,close:s}=U(),o=ne();O(()=>o.path,s),wt(e,s);const{frontmatter:i}=V(),l=Ce(),d=y(()=>!!l["home-hero-image"]);return me("hero-image-slot-exists",d),(v,m)=>{const L=W("Content");return r(i).layout!==!1?(a(),u("div",{key:0,class:N(["Layout",r(i).pageClass])},[c(v.$slots,"layout-top",{},void 0,!0),k(yr),k(pt,{class:"backdrop",show:r(e),onClick:r(s)},null,8,["show","onClick"]),k(rr,null,{"nav-bar-title-before":f(()=>[c(v.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":f(()=>[c(v.$slots,"nav-bar-title-after",{},void 0,!0)]),"nav-bar-content-before":f(()=>[c(v.$slots,"nav-bar-content-before",{},void 0,!0)]),"nav-bar-content-after":f(()=>[c(v.$slots,"nav-bar-content-after",{},void 0,!0)]),"nav-screen-content-before":f(()=>[c(v.$slots,"nav-screen-content-before",{},void 0,!0)]),"nav-screen-content-after":f(()=>[c(v.$slots,"nav-screen-content-after",{},void 0,!0)]),_:3}),k(Oo,{open:r(e),onOpenMenu:r(t)},null,8,["open","onOpenMenu"]),k($r,{open:r(e)},{"sidebar-nav-before":f(()=>[c(v.$slots,"sidebar-nav-before",{},void 0,!0)]),"sidebar-nav-after":f(()=>[c(v.$slots,"sidebar-nav-after",{},void 0,!0)]),_:3},8,["open"]),k(ko,null,{"page-top":f(()=>[c(v.$slots,"page-top",{},void 0,!0)]),"page-bottom":f(()=>[c(v.$slots,"page-bottom",{},void 0,!0)]),"not-found":f(()=>[c(v.$slots,"not-found",{},void 0,!0)]),"home-hero-before":f(()=>[c(v.$slots,"home-hero-before",{},void 0,!0)]),"home-hero-info-before":f(()=>[c(v.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":f(()=>[c(v.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":f(()=>[c(v.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":f(()=>[c(v.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":f(()=>[c(v.$slots,"home-hero-image",{},void 0,!0)]),"home-hero-after":f(()=>[c(v.$slots,"home-hero-after",{},void 0,!0)]),"home-features-before":f(()=>[c(v.$slots,"home-features-before",{},void 0,!0)]),"home-features-after":f(()=>[c(v.$slots,"home-features-after",{},void 0,!0)]),"doc-footer-before":f(()=>[c(v.$slots,"doc-footer-before",{},void 0,!0)]),"doc-before":f(()=>[c(v.$slots,"doc-before",{},void 0,!0)]),"doc-after":f(()=>[c(v.$slots,"doc-after",{},void 0,!0)]),"doc-top":f(()=>[c(v.$slots,"doc-top",{},void 0,!0)]),"doc-bottom":f(()=>[c(v.$slots,"doc-bottom",{},void 0,!0)]),"aside-top":f(()=>[c(v.$slots,"aside-top",{},void 0,!0)]),"aside-bottom":f(()=>[c(v.$slots,"aside-bottom",{},void 0,!0)]),"aside-outline-before":f(()=>[c(v.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":f(()=>[c(v.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":f(()=>[c(v.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":f(()=>[c(v.$slots,"aside-ads-after",{},void 0,!0)]),_:3}),k(So),c(v.$slots,"layout-bottom",{},void 0,!0)],2)):(a(),$(L,{key:1}))}}}),Sr=g(Pr,[["__scopeId","data-v-a9a9e638"]]),Ve={Layout:Sr,enhanceApp:({app:n})=>{n.component("Badge",ut)}},Vr=n=>{if(typeof document>"u")return{stabilizeScrollPosition:o=>async(...i)=>o(...i)};const e=document.documentElement;return{stabilizeScrollPosition:s=>async(...o)=>{const i=s(...o),l=n.value;if(!l)return i;const d=l.offsetTop-e.scrollTop;return await Ne(),e.scrollTop=l.offsetTop-d,i}}},Re="vitepress:tabSharedState",X=typeof localStorage<"u"?localStorage:null,qe="vitepress:tabsSharedState",Lr=()=>{const n=X==null?void 0:X.getItem(qe);if(n)try{return JSON.parse(n)}catch{}return{}},Tr=n=>{X&&X.setItem(qe,JSON.stringify(n))},wr=n=>{const e=it({});O(()=>e.content,(t,s)=>{t&&s&&Tr(t)},{deep:!0}),n.provide(Re,e)},Ir=(n,e)=>{const t=Y(Re);if(!t)throw new Error("[vitepress-plugin-tabs] TabsSharedState should be injected");R(()=>{t.content||(t.content=Lr())});const s=T(),o=y({get(){var v;const l=e.value,d=n.value;if(l){const m=(v=t.content)==null?void 0:v[l];if(m&&d.includes(m))return m}else{const m=s.value;if(m)return m}return d[0]},set(l){const d=e.value;d?t.content&&(t.content[d]=l):s.value=l}});return{selected:o,select:l=>{o.value=l}}};let Le=0;const Nr=()=>(Le++,""+Le);function Mr(){const n=Ce();return y(()=>{var s;const t=(s=n.default)==null?void 0:s.call(n);return t?t.filter(o=>typeof o.type=="object"&&"__name"in o.type&&o.type.__name==="PluginTabsTab"&&o.props).map(o=>{var i;return(i=o.props)==null?void 0:i.label}):[]})}const We="vitepress:tabSingleState",Ar=n=>{me(We,n)},Cr=()=>{const n=Y(We);if(!n)throw new Error("[vitepress-plugin-tabs] TabsSingleState should be injected");return n},Br={class:"plugin-tabs"},Hr=["id","aria-selected","aria-controls","tabindex","onClick"],Er=_({__name:"PluginTabs",props:{sharedStateKey:{}},setup(n){const e=n,t=Mr(),{selected:s,select:o}=Ir(t,lt(e,"sharedStateKey")),i=T(),{stabilizeScrollPosition:l}=Vr(i),d=l(o),v=T([]),m=b=>{var A;const P=t.value.indexOf(s.value);let S;b.key==="ArrowLeft"?S=P>=1?P-1:t.value.length-1:b.key==="ArrowRight"&&(S=P(a(),u("div",Br,[p("div",{ref_key:"tablist",ref:i,class:"plugin-tabs--tab-list",role:"tablist",onKeydown:m},[(a(!0),u(M,null,E(r(t),S=>(a(),u("button",{id:`tab-${S}-${r(L)}`,ref_for:!0,ref_key:"buttonRefs",ref:v,key:S,role:"tab",class:"plugin-tabs--tab","aria-selected":S===r(s),"aria-controls":`panel-${S}-${r(L)}`,tabindex:S===r(s)?0:-1,onClick:()=>r(d)(S)},I(S),9,Hr))),128))],544),c(b.$slots,"default")]))}}),Dr=["id","aria-labelledby"],Fr=_({__name:"PluginTabsTab",props:{label:{}},setup(n){const{uid:e,selected:t}=Cr();return(s,o)=>r(t)===s.label?(a(),u("div",{key:0,id:`panel-${s.label}-${r(e)}`,class:"plugin-tabs--content",role:"tabpanel",tabindex:"0","aria-labelledby":`tab-${s.label}-${r(e)}`},[c(s.$slots,"default",{},void 0,!0)],8,Dr)):h("",!0)}}),Or=g(Fr,[["__scopeId","data-v-9b0d03d2"]]),jr=n=>{wr(n),n.component("PluginTabs",Er),n.component("PluginTabsTab",Or)},Gr={extends:Ve,Layout(){return ct(Ve.Layout,null,{})},enhanceApp({app:n,router:e,siteData:t}){jr(n)}};export{Gr as R,Xs as c,V as u}; +const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/chunks/VPLocalSearchBox.Bwg4A3k8.js","assets/chunks/framework.Dv3PRBLL.js"])))=>i.map(i=>d[i]); +import{d as _,o as a,c as u,r as c,n as N,a as j,t as I,b as $,w as f,e as h,T as pe,_ as g,u as Je,i as Ye,f as Xe,g as fe,h as y,j as p,k as r,p as B,l as H,m as q,q as le,s as T,v as O,x as ee,y as R,z as he,A as _e,B as Qe,C as Ze,D as W,F as M,E,G as Te,H as te,I as k,J as D,K as we,L as ne,M as K,N as Y,O as xe,P as Ie,Q as ce,R as Ne,S as Me,U as oe,V as et,W as tt,X as nt,Y as Ae,Z as me,$ as ot,a0 as st,a1 as at,a2 as rt,a3 as Ce,a4 as it,a5 as lt,a6 as ct}from"./framework.Dv3PRBLL.js";const ut=_({__name:"VPBadge",props:{text:{},type:{default:"tip"}},setup(n){return(e,t)=>(a(),u("span",{class:N(["VPBadge",e.type])},[c(e.$slots,"default",{},()=>[j(I(e.text),1)])],2))}}),dt={key:0,class:"VPBackdrop"},vt=_({__name:"VPBackdrop",props:{show:{type:Boolean}},setup(n){return(e,t)=>(a(),$(pe,{name:"fade"},{default:f(()=>[e.show?(a(),u("div",dt)):h("",!0)]),_:1}))}}),pt=g(vt,[["__scopeId","data-v-b06cdb19"]]),V=Je;function ft(n,e){let t,s=!1;return()=>{t&&clearTimeout(t),s?t=setTimeout(n,e):(n(),(s=!0)&&setTimeout(()=>s=!1,e))}}function ue(n){return/^\//.test(n)?n:`/${n}`}function be(n){const{pathname:e,search:t,hash:s,protocol:o}=new URL(n,"http://a.com");if(Ye(n)||n.startsWith("#")||!o.startsWith("http")||!Xe(e))return n;const{site:i}=V(),l=e.endsWith("/")||e.endsWith(".html")?n:n.replace(/(?:(^\.+)\/)?.*$/,`$1${e.replace(/(\.md)?$/,i.value.cleanUrls?"":".html")}${t}${s}`);return fe(l)}function Q({correspondingLink:n=!1}={}){const{site:e,localeIndex:t,page:s,theme:o,hash:i}=V(),l=y(()=>{var v,m;return{label:(v=e.value.locales[t.value])==null?void 0:v.label,link:((m=e.value.locales[t.value])==null?void 0:m.link)||(t.value==="root"?"/":`/${t.value}/`)}});return{localeLinks:y(()=>Object.entries(e.value.locales).flatMap(([v,m])=>l.value.label===m.label?[]:{text:m.label,link:ht(m.link||(v==="root"?"/":`/${v}/`),o.value.i18nRouting!==!1&&n,s.value.relativePath.slice(l.value.link.length-1),!e.value.cleanUrls)+i.value})),currentLang:l}}function ht(n,e,t,s){return e?n.replace(/\/$/,"")+ue(t.replace(/(^|\/)index\.md$/,"$1").replace(/\.md$/,s?".html":"")):n}const _t=n=>(B("data-v-951cab6c"),n=n(),H(),n),mt={class:"NotFound"},bt={class:"code"},kt={class:"title"},$t=_t(()=>p("div",{class:"divider"},null,-1)),gt={class:"quote"},yt={class:"action"},Pt=["href","aria-label"],St=_({__name:"NotFound",setup(n){const{theme:e}=V(),{currentLang:t}=Q();return(s,o)=>{var i,l,d,v,m;return a(),u("div",mt,[p("p",bt,I(((i=r(e).notFound)==null?void 0:i.code)??"404"),1),p("h1",kt,I(((l=r(e).notFound)==null?void 0:l.title)??"PAGE NOT FOUND"),1),$t,p("blockquote",gt,I(((d=r(e).notFound)==null?void 0:d.quote)??"But if you don't change your direction, and if you keep looking, you may end up where you are heading."),1),p("div",yt,[p("a",{class:"link",href:r(fe)(r(t).link),"aria-label":((v=r(e).notFound)==null?void 0:v.linkLabel)??"go to home"},I(((m=r(e).notFound)==null?void 0:m.linkText)??"Take me home"),9,Pt)])])}}}),Vt=g(St,[["__scopeId","data-v-951cab6c"]]);function Be(n,e){if(Array.isArray(n))return Z(n);if(n==null)return[];e=ue(e);const t=Object.keys(n).sort((o,i)=>i.split("/").length-o.split("/").length).find(o=>e.startsWith(ue(o))),s=t?n[t]:[];return Array.isArray(s)?Z(s):Z(s.items,s.base)}function Lt(n){const e=[];let t=0;for(const s in n){const o=n[s];if(o.items){t=e.push(o);continue}e[t]||e.push({items:[]}),e[t].items.push(o)}return e}function Tt(n){const e=[];function t(s){for(const o of s)o.text&&o.link&&e.push({text:o.text,link:o.link,docFooterText:o.docFooterText}),o.items&&t(o.items)}return t(n),e}function de(n,e){return Array.isArray(e)?e.some(t=>de(n,t)):q(n,e.link)?!0:e.items?de(n,e.items):!1}function Z(n,e){return[...n].map(t=>{const s={...t},o=s.base||e;return o&&s.link&&(s.link=o+s.link),s.items&&(s.items=Z(s.items,o)),s})}function U(){const{frontmatter:n,page:e,theme:t}=V(),s=le("(min-width: 960px)"),o=T(!1),i=y(()=>{const C=t.value.sidebar,w=e.value.relativePath;return C?Be(C,w):[]}),l=T(i.value);O(i,(C,w)=>{JSON.stringify(C)!==JSON.stringify(w)&&(l.value=i.value)});const d=y(()=>n.value.sidebar!==!1&&l.value.length>0&&n.value.layout!=="home"),v=y(()=>m?n.value.aside==null?t.value.aside==="left":n.value.aside==="left":!1),m=y(()=>n.value.layout==="home"?!1:n.value.aside!=null?!!n.value.aside:t.value.aside!==!1),L=y(()=>d.value&&s.value),b=y(()=>d.value?Lt(l.value):[]);function P(){o.value=!0}function S(){o.value=!1}function A(){o.value?S():P()}return{isOpen:o,sidebar:l,sidebarGroups:b,hasSidebar:d,hasAside:m,leftAside:v,isSidebarEnabled:L,open:P,close:S,toggle:A}}function wt(n,e){let t;ee(()=>{t=n.value?document.activeElement:void 0}),R(()=>{window.addEventListener("keyup",s)}),he(()=>{window.removeEventListener("keyup",s)});function s(o){o.key==="Escape"&&n.value&&(e(),t==null||t.focus())}}function It(n){const{page:e,hash:t}=V(),s=T(!1),o=y(()=>n.value.collapsed!=null),i=y(()=>!!n.value.link),l=T(!1),d=()=>{l.value=q(e.value.relativePath,n.value.link)};O([e,n,t],d),R(d);const v=y(()=>l.value?!0:n.value.items?de(e.value.relativePath,n.value.items):!1),m=y(()=>!!(n.value.items&&n.value.items.length));ee(()=>{s.value=!!(o.value&&n.value.collapsed)}),_e(()=>{(l.value||v.value)&&(s.value=!1)});function L(){o.value&&(s.value=!s.value)}return{collapsed:s,collapsible:o,isLink:i,isActiveLink:l,hasActiveLink:v,hasChildren:m,toggle:L}}function Nt(){const{hasSidebar:n}=U(),e=le("(min-width: 960px)"),t=le("(min-width: 1280px)");return{isAsideEnabled:y(()=>!t.value&&!e.value?!1:n.value?t.value:e.value)}}const ve=[];function He(n){return typeof n.outline=="object"&&!Array.isArray(n.outline)&&n.outline.label||n.outlineTitle||"On this page"}function ke(n){const e=[...document.querySelectorAll(".VPDoc :where(h1,h2,h3,h4,h5,h6)")].filter(t=>t.id&&t.hasChildNodes()).map(t=>{const s=Number(t.tagName[1]);return{element:t,title:Mt(t),link:"#"+t.id,level:s}});return At(e,n)}function Mt(n){let e="";for(const t of n.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 At(n,e){if(e===!1)return[];const t=(typeof e=="object"&&!Array.isArray(e)?e.level:e)||2,[s,o]=typeof t=="number"?[t,t]:t==="deep"?[2,6]:t;n=n.filter(l=>l.level>=s&&l.level<=o),ve.length=0;for(const{element:l,link:d}of n)ve.push({element:l,link:d});const i=[];e:for(let l=0;l=0;v--){const m=n[v];if(m.level{requestAnimationFrame(i),window.addEventListener("scroll",s)}),Qe(()=>{l(location.hash)}),he(()=>{window.removeEventListener("scroll",s)});function i(){if(!t.value)return;const d=window.scrollY,v=window.innerHeight,m=document.body.offsetHeight,L=Math.abs(d+v-m)<1,b=ve.map(({element:S,link:A})=>({link:A,top:Bt(S)})).filter(({top:S})=>!Number.isNaN(S)).sort((S,A)=>S.top-A.top);if(!b.length){l(null);return}if(d<1){l(null);return}if(L){l(b[b.length-1].link);return}let P=null;for(const{link:S,top:A}of b){if(A>d+Ze()+4)break;P=S}l(P)}function l(d){o&&o.classList.remove("active"),d==null?o=null:o=n.value.querySelector(`a[href="${decodeURIComponent(d)}"]`);const v=o;v?(v.classList.add("active"),e.value.style.top=v.offsetTop+39+"px",e.value.style.opacity="1"):(e.value.style.top="33px",e.value.style.opacity="0")}}function Bt(n){let e=0;for(;n!==document.body;){if(n===null)return NaN;e+=n.offsetTop,n=n.offsetParent}return e}const Ht=["href","title"],Et=_({__name:"VPDocOutlineItem",props:{headers:{},root:{type:Boolean}},setup(n){function e({target:t}){const s=t.href.split("#")[1],o=document.getElementById(decodeURIComponent(s));o==null||o.focus({preventScroll:!0})}return(t,s)=>{const o=W("VPDocOutlineItem",!0);return a(),u("ul",{class:N(["VPDocOutlineItem",t.root?"root":"nested"])},[(a(!0),u(M,null,E(t.headers,({children:i,link:l,title:d})=>(a(),u("li",null,[p("a",{class:"outline-link",href:l,onClick:e,title:d},I(d),9,Ht),i!=null&&i.length?(a(),$(o,{key:0,headers:i},null,8,["headers"])):h("",!0)]))),256))],2)}}}),Ee=g(Et,[["__scopeId","data-v-3f927ebe"]]),Dt={class:"content"},Ft={"aria-level":"2",class:"outline-title",id:"doc-outline-aria-label",role:"heading"},Ot=_({__name:"VPDocAsideOutline",setup(n){const{frontmatter:e,theme:t}=V(),s=Te([]);te(()=>{s.value=ke(e.value.outline??t.value.outline)});const o=T(),i=T();return Ct(o,i),(l,d)=>(a(),u("nav",{"aria-labelledby":"doc-outline-aria-label",class:N(["VPDocAsideOutline",{"has-outline":s.value.length>0}]),ref_key:"container",ref:o},[p("div",Dt,[p("div",{class:"outline-marker",ref_key:"marker",ref:i},null,512),p("div",Ft,I(r(He)(r(t))),1),k(Ee,{headers:s.value,root:!0},null,8,["headers"])])],2))}}),jt=g(Ot,[["__scopeId","data-v-b38bf2ff"]]),Ut={class:"VPDocAsideCarbonAds"},Gt=_({__name:"VPDocAsideCarbonAds",props:{carbonAds:{}},setup(n){const e=()=>null;return(t,s)=>(a(),u("div",Ut,[k(r(e),{"carbon-ads":t.carbonAds},null,8,["carbon-ads"])]))}}),zt=n=>(B("data-v-6d7b3c46"),n=n(),H(),n),Kt={class:"VPDocAside"},Rt=zt(()=>p("div",{class:"spacer"},null,-1)),qt=_({__name:"VPDocAside",setup(n){const{theme:e}=V();return(t,s)=>(a(),u("div",Kt,[c(t.$slots,"aside-top",{},void 0,!0),c(t.$slots,"aside-outline-before",{},void 0,!0),k(jt),c(t.$slots,"aside-outline-after",{},void 0,!0),Rt,c(t.$slots,"aside-ads-before",{},void 0,!0),r(e).carbonAds?(a(),$(Gt,{key:0,"carbon-ads":r(e).carbonAds},null,8,["carbon-ads"])):h("",!0),c(t.$slots,"aside-ads-after",{},void 0,!0),c(t.$slots,"aside-bottom",{},void 0,!0)]))}}),Wt=g(qt,[["__scopeId","data-v-6d7b3c46"]]);function Jt(){const{theme:n,page:e}=V();return y(()=>{const{text:t="Edit this page",pattern:s=""}=n.value.editLink||{};let o;return typeof s=="function"?o=s(e.value):o=s.replace(/:path/g,e.value.filePath),{url:o,text:t}})}function Yt(){const{page:n,theme:e,frontmatter:t}=V();return y(()=>{var m,L,b,P,S,A,C,w;const s=Be(e.value.sidebar,n.value.relativePath),o=Tt(s),i=Xt(o,G=>G.link.replace(/[?#].*$/,"")),l=i.findIndex(G=>q(n.value.relativePath,G.link)),d=((m=e.value.docFooter)==null?void 0:m.prev)===!1&&!t.value.prev||t.value.prev===!1,v=((L=e.value.docFooter)==null?void 0:L.next)===!1&&!t.value.next||t.value.next===!1;return{prev:d?void 0:{text:(typeof t.value.prev=="string"?t.value.prev:typeof t.value.prev=="object"?t.value.prev.text:void 0)??((b=i[l-1])==null?void 0:b.docFooterText)??((P=i[l-1])==null?void 0:P.text),link:(typeof t.value.prev=="object"?t.value.prev.link:void 0)??((S=i[l-1])==null?void 0:S.link)},next:v?void 0:{text:(typeof t.value.next=="string"?t.value.next:typeof t.value.next=="object"?t.value.next.text:void 0)??((A=i[l+1])==null?void 0:A.docFooterText)??((C=i[l+1])==null?void 0:C.text),link:(typeof t.value.next=="object"?t.value.next.link:void 0)??((w=i[l+1])==null?void 0:w.link)}}})}function Xt(n,e){const t=new Set;return n.filter(s=>{const o=e(s);return t.has(o)?!1:t.add(o)})}const F=_({__name:"VPLink",props:{tag:{},href:{},noIcon:{type:Boolean},target:{},rel:{}},setup(n){const e=n,t=y(()=>e.tag??(e.href?"a":"span")),s=y(()=>e.href&&we.test(e.href)||e.target==="_blank");return(o,i)=>(a(),$(D(t.value),{class:N(["VPLink",{link:o.href,"vp-external-link-icon":s.value,"no-icon":o.noIcon}]),href:o.href?r(be)(o.href):void 0,target:o.target??(s.value?"_blank":void 0),rel:o.rel??(s.value?"noreferrer":void 0)},{default:f(()=>[c(o.$slots,"default")]),_:3},8,["class","href","target","rel"]))}}),Qt={class:"VPLastUpdated"},Zt=["datetime"],xt=_({__name:"VPDocFooterLastUpdated",setup(n){const{theme:e,page:t,lang:s}=V(),o=y(()=>new Date(t.value.lastUpdated)),i=y(()=>o.value.toISOString()),l=T("");return R(()=>{ee(()=>{var d,v,m;l.value=new Intl.DateTimeFormat((v=(d=e.value.lastUpdated)==null?void 0:d.formatOptions)!=null&&v.forceLocale?s.value:void 0,((m=e.value.lastUpdated)==null?void 0:m.formatOptions)??{dateStyle:"short",timeStyle:"short"}).format(o.value)})}),(d,v)=>{var m;return a(),u("p",Qt,[j(I(((m=r(e).lastUpdated)==null?void 0:m.text)||r(e).lastUpdatedText||"Last updated")+": ",1),p("time",{datetime:i.value},I(l.value),9,Zt)])}}}),en=g(xt,[["__scopeId","data-v-475f71b8"]]),De=n=>(B("data-v-4f9813fa"),n=n(),H(),n),tn={key:0,class:"VPDocFooter"},nn={key:0,class:"edit-info"},on={key:0,class:"edit-link"},sn=De(()=>p("span",{class:"vpi-square-pen edit-link-icon"},null,-1)),an={key:1,class:"last-updated"},rn={key:1,class:"prev-next","aria-labelledby":"doc-footer-aria-label"},ln=De(()=>p("span",{class:"visually-hidden",id:"doc-footer-aria-label"},"Pager",-1)),cn={class:"pager"},un=["innerHTML"],dn=["innerHTML"],vn={class:"pager"},pn=["innerHTML"],fn=["innerHTML"],hn=_({__name:"VPDocFooter",setup(n){const{theme:e,page:t,frontmatter:s}=V(),o=Jt(),i=Yt(),l=y(()=>e.value.editLink&&s.value.editLink!==!1),d=y(()=>t.value.lastUpdated),v=y(()=>l.value||d.value||i.value.prev||i.value.next);return(m,L)=>{var b,P,S,A;return v.value?(a(),u("footer",tn,[c(m.$slots,"doc-footer-before",{},void 0,!0),l.value||d.value?(a(),u("div",nn,[l.value?(a(),u("div",on,[k(F,{class:"edit-link-button",href:r(o).url,"no-icon":!0},{default:f(()=>[sn,j(" "+I(r(o).text),1)]),_:1},8,["href"])])):h("",!0),d.value?(a(),u("div",an,[k(en)])):h("",!0)])):h("",!0),(b=r(i).prev)!=null&&b.link||(P=r(i).next)!=null&&P.link?(a(),u("nav",rn,[ln,p("div",cn,[(S=r(i).prev)!=null&&S.link?(a(),$(F,{key:0,class:"pager-link prev",href:r(i).prev.link},{default:f(()=>{var C;return[p("span",{class:"desc",innerHTML:((C=r(e).docFooter)==null?void 0:C.prev)||"Previous page"},null,8,un),p("span",{class:"title",innerHTML:r(i).prev.text},null,8,dn)]}),_:1},8,["href"])):h("",!0)]),p("div",vn,[(A=r(i).next)!=null&&A.link?(a(),$(F,{key:0,class:"pager-link next",href:r(i).next.link},{default:f(()=>{var C;return[p("span",{class:"desc",innerHTML:((C=r(e).docFooter)==null?void 0:C.next)||"Next page"},null,8,pn),p("span",{class:"title",innerHTML:r(i).next.text},null,8,fn)]}),_:1},8,["href"])):h("",!0)])])):h("",!0)])):h("",!0)}}}),_n=g(hn,[["__scopeId","data-v-4f9813fa"]]),mn=n=>(B("data-v-83890dd9"),n=n(),H(),n),bn={class:"container"},kn=mn(()=>p("div",{class:"aside-curtain"},null,-1)),$n={class:"aside-container"},gn={class:"aside-content"},yn={class:"content"},Pn={class:"content-container"},Sn={class:"main"},Vn=_({__name:"VPDoc",setup(n){const{theme:e}=V(),t=ne(),{hasSidebar:s,hasAside:o,leftAside:i}=U(),l=y(()=>t.path.replace(/[./]+/g,"_").replace(/_html$/,""));return(d,v)=>{const m=W("Content");return a(),u("div",{class:N(["VPDoc",{"has-sidebar":r(s),"has-aside":r(o)}])},[c(d.$slots,"doc-top",{},void 0,!0),p("div",bn,[r(o)?(a(),u("div",{key:0,class:N(["aside",{"left-aside":r(i)}])},[kn,p("div",$n,[p("div",gn,[k(Wt,null,{"aside-top":f(()=>[c(d.$slots,"aside-top",{},void 0,!0)]),"aside-bottom":f(()=>[c(d.$slots,"aside-bottom",{},void 0,!0)]),"aside-outline-before":f(()=>[c(d.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":f(()=>[c(d.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":f(()=>[c(d.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":f(()=>[c(d.$slots,"aside-ads-after",{},void 0,!0)]),_:3})])])],2)):h("",!0),p("div",yn,[p("div",Pn,[c(d.$slots,"doc-before",{},void 0,!0),p("main",Sn,[k(m,{class:N(["vp-doc",[l.value,r(e).externalLinkIcon&&"external-link-icon-enabled"]])},null,8,["class"])]),k(_n,null,{"doc-footer-before":f(()=>[c(d.$slots,"doc-footer-before",{},void 0,!0)]),_:3}),c(d.$slots,"doc-after",{},void 0,!0)])])]),c(d.$slots,"doc-bottom",{},void 0,!0)],2)}}}),Ln=g(Vn,[["__scopeId","data-v-83890dd9"]]),Tn=_({__name:"VPButton",props:{tag:{},size:{default:"medium"},theme:{default:"brand"},text:{},href:{},target:{},rel:{}},setup(n){const e=n,t=y(()=>e.href&&we.test(e.href)),s=y(()=>e.tag||e.href?"a":"button");return(o,i)=>(a(),$(D(s.value),{class:N(["VPButton",[o.size,o.theme]]),href:o.href?r(be)(o.href):void 0,target:e.target??(t.value?"_blank":void 0),rel:e.rel??(t.value?"noreferrer":void 0)},{default:f(()=>[j(I(o.text),1)]),_:1},8,["class","href","target","rel"]))}}),wn=g(Tn,[["__scopeId","data-v-14206e74"]]),In=["src","alt"],Nn=_({inheritAttrs:!1,__name:"VPImage",props:{image:{},alt:{}},setup(n){return(e,t)=>{const s=W("VPImage",!0);return e.image?(a(),u(M,{key:0},[typeof e.image=="string"||"src"in e.image?(a(),u("img",K({key:0,class:"VPImage"},typeof e.image=="string"?e.$attrs:{...e.image,...e.$attrs},{src:r(fe)(typeof e.image=="string"?e.image:e.image.src),alt:e.alt??(typeof e.image=="string"?"":e.image.alt||"")}),null,16,In)):(a(),u(M,{key:1},[k(s,K({class:"dark",image:e.image.dark,alt:e.image.alt},e.$attrs),null,16,["image","alt"]),k(s,K({class:"light",image:e.image.light,alt:e.image.alt},e.$attrs),null,16,["image","alt"])],64))],64)):h("",!0)}}}),x=g(Nn,[["__scopeId","data-v-35a7d0b8"]]),Mn=n=>(B("data-v-955009fc"),n=n(),H(),n),An={class:"container"},Cn={class:"main"},Bn={key:0,class:"name"},Hn=["innerHTML"],En=["innerHTML"],Dn=["innerHTML"],Fn={key:0,class:"actions"},On={key:0,class:"image"},jn={class:"image-container"},Un=Mn(()=>p("div",{class:"image-bg"},null,-1)),Gn=_({__name:"VPHero",props:{name:{},text:{},tagline:{},image:{},actions:{}},setup(n){const e=Y("hero-image-slot-exists");return(t,s)=>(a(),u("div",{class:N(["VPHero",{"has-image":t.image||r(e)}])},[p("div",An,[p("div",Cn,[c(t.$slots,"home-hero-info-before",{},void 0,!0),c(t.$slots,"home-hero-info",{},()=>[t.name?(a(),u("h1",Bn,[p("span",{innerHTML:t.name,class:"clip"},null,8,Hn)])):h("",!0),t.text?(a(),u("p",{key:1,innerHTML:t.text,class:"text"},null,8,En)):h("",!0),t.tagline?(a(),u("p",{key:2,innerHTML:t.tagline,class:"tagline"},null,8,Dn)):h("",!0)],!0),c(t.$slots,"home-hero-info-after",{},void 0,!0),t.actions?(a(),u("div",Fn,[(a(!0),u(M,null,E(t.actions,o=>(a(),u("div",{key:o.link,class:"action"},[k(wn,{tag:"a",size:"medium",theme:o.theme,text:o.text,href:o.link,target:o.target,rel:o.rel},null,8,["theme","text","href","target","rel"])]))),128))])):h("",!0),c(t.$slots,"home-hero-actions-after",{},void 0,!0)]),t.image||r(e)?(a(),u("div",On,[p("div",jn,[Un,c(t.$slots,"home-hero-image",{},()=>[t.image?(a(),$(x,{key:0,class:"image-src",image:t.image},null,8,["image"])):h("",!0)],!0)])])):h("",!0)])],2))}}),zn=g(Gn,[["__scopeId","data-v-955009fc"]]),Kn=_({__name:"VPHomeHero",setup(n){const{frontmatter:e}=V();return(t,s)=>r(e).hero?(a(),$(zn,{key:0,class:"VPHomeHero",name:r(e).hero.name,text:r(e).hero.text,tagline:r(e).hero.tagline,image:r(e).hero.image,actions:r(e).hero.actions},{"home-hero-info-before":f(()=>[c(t.$slots,"home-hero-info-before")]),"home-hero-info":f(()=>[c(t.$slots,"home-hero-info")]),"home-hero-info-after":f(()=>[c(t.$slots,"home-hero-info-after")]),"home-hero-actions-after":f(()=>[c(t.$slots,"home-hero-actions-after")]),"home-hero-image":f(()=>[c(t.$slots,"home-hero-image")]),_:3},8,["name","text","tagline","image","actions"])):h("",!0)}}),Rn=n=>(B("data-v-f5e9645b"),n=n(),H(),n),qn={class:"box"},Wn={key:0,class:"icon"},Jn=["innerHTML"],Yn=["innerHTML"],Xn=["innerHTML"],Qn={key:4,class:"link-text"},Zn={class:"link-text-value"},xn=Rn(()=>p("span",{class:"vpi-arrow-right link-text-icon"},null,-1)),eo=_({__name:"VPFeature",props:{icon:{},title:{},details:{},link:{},linkText:{},rel:{},target:{}},setup(n){return(e,t)=>(a(),$(F,{class:"VPFeature",href:e.link,rel:e.rel,target:e.target,"no-icon":!0,tag:e.link?"a":"div"},{default:f(()=>[p("article",qn,[typeof e.icon=="object"&&e.icon.wrap?(a(),u("div",Wn,[k(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"?(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?(a(),u("div",{key:2,class:"icon",innerHTML:e.icon},null,8,Jn)):h("",!0),p("h2",{class:"title",innerHTML:e.title},null,8,Yn),e.details?(a(),u("p",{key:3,class:"details",innerHTML:e.details},null,8,Xn)):h("",!0),e.linkText?(a(),u("div",Qn,[p("p",Zn,[j(I(e.linkText)+" ",1),xn])])):h("",!0)])]),_:1},8,["href","rel","target","tag"]))}}),to=g(eo,[["__scopeId","data-v-f5e9645b"]]),no={key:0,class:"VPFeatures"},oo={class:"container"},so={class:"items"},ao=_({__name:"VPFeatures",props:{features:{}},setup(n){const e=n,t=y(()=>{const s=e.features.length;if(s){if(s===2)return"grid-2";if(s===3)return"grid-3";if(s%3===0)return"grid-6";if(s>3)return"grid-4"}else return});return(s,o)=>s.features?(a(),u("div",no,[p("div",oo,[p("div",so,[(a(!0),u(M,null,E(s.features,i=>(a(),u("div",{key:i.title,class:N(["item",[t.value]])},[k(to,{icon:i.icon,title:i.title,details:i.details,link:i.link,"link-text":i.linkText,rel:i.rel,target:i.target},null,8,["icon","title","details","link","link-text","rel","target"])],2))),128))])])])):h("",!0)}}),ro=g(ao,[["__scopeId","data-v-d0a190d7"]]),io=_({__name:"VPHomeFeatures",setup(n){const{frontmatter:e}=V();return(t,s)=>r(e).features?(a(),$(ro,{key:0,class:"VPHomeFeatures",features:r(e).features},null,8,["features"])):h("",!0)}}),lo=_({__name:"VPHomeContent",setup(n){const{width:e}=xe({initialWidth:0,includeScrollbar:!1});return(t,s)=>(a(),u("div",{class:"vp-doc container",style:Ie(r(e)?{"--vp-offset":`calc(50% - ${r(e)/2}px)`}:{})},[c(t.$slots,"default",{},void 0,!0)],4))}}),co=g(lo,[["__scopeId","data-v-7a48a447"]]),uo={class:"VPHome"},vo=_({__name:"VPHome",setup(n){const{frontmatter:e}=V();return(t,s)=>{const o=W("Content");return a(),u("div",uo,[c(t.$slots,"home-hero-before",{},void 0,!0),k(Kn,null,{"home-hero-info-before":f(()=>[c(t.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":f(()=>[c(t.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":f(()=>[c(t.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":f(()=>[c(t.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":f(()=>[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),k(io),c(t.$slots,"home-features-after",{},void 0,!0),r(e).markdownStyles!==!1?(a(),$(co,{key:0},{default:f(()=>[k(o)]),_:1})):(a(),$(o,{key:1}))])}}}),po=g(vo,[["__scopeId","data-v-cbb6ec48"]]),fo={},ho={class:"VPPage"};function _o(n,e){const t=W("Content");return a(),u("div",ho,[c(n.$slots,"page-top"),k(t),c(n.$slots,"page-bottom")])}const mo=g(fo,[["render",_o]]),bo=_({__name:"VPContent",setup(n){const{page:e,frontmatter:t}=V(),{hasSidebar:s}=U();return(o,i)=>(a(),u("div",{class:N(["VPContent",{"has-sidebar":r(s),"is-home":r(t).layout==="home"}]),id:"VPContent"},[r(e).isNotFound?c(o.$slots,"not-found",{key:0},()=>[k(Vt)],!0):r(t).layout==="page"?(a(),$(mo,{key:1},{"page-top":f(()=>[c(o.$slots,"page-top",{},void 0,!0)]),"page-bottom":f(()=>[c(o.$slots,"page-bottom",{},void 0,!0)]),_:3})):r(t).layout==="home"?(a(),$(po,{key:2},{"home-hero-before":f(()=>[c(o.$slots,"home-hero-before",{},void 0,!0)]),"home-hero-info-before":f(()=>[c(o.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":f(()=>[c(o.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":f(()=>[c(o.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":f(()=>[c(o.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":f(()=>[c(o.$slots,"home-hero-image",{},void 0,!0)]),"home-hero-after":f(()=>[c(o.$slots,"home-hero-after",{},void 0,!0)]),"home-features-before":f(()=>[c(o.$slots,"home-features-before",{},void 0,!0)]),"home-features-after":f(()=>[c(o.$slots,"home-features-after",{},void 0,!0)]),_:3})):r(t).layout&&r(t).layout!=="doc"?(a(),$(D(r(t).layout),{key:3})):(a(),$(Ln,{key:4},{"doc-top":f(()=>[c(o.$slots,"doc-top",{},void 0,!0)]),"doc-bottom":f(()=>[c(o.$slots,"doc-bottom",{},void 0,!0)]),"doc-footer-before":f(()=>[c(o.$slots,"doc-footer-before",{},void 0,!0)]),"doc-before":f(()=>[c(o.$slots,"doc-before",{},void 0,!0)]),"doc-after":f(()=>[c(o.$slots,"doc-after",{},void 0,!0)]),"aside-top":f(()=>[c(o.$slots,"aside-top",{},void 0,!0)]),"aside-outline-before":f(()=>[c(o.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":f(()=>[c(o.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":f(()=>[c(o.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":f(()=>[c(o.$slots,"aside-ads-after",{},void 0,!0)]),"aside-bottom":f(()=>[c(o.$slots,"aside-bottom",{},void 0,!0)]),_:3}))],2))}}),ko=g(bo,[["__scopeId","data-v-91765379"]]),$o={class:"container"},go=["innerHTML"],yo=["innerHTML"],Po=_({__name:"VPFooter",setup(n){const{theme:e,frontmatter:t}=V(),{hasSidebar:s}=U();return(o,i)=>r(e).footer&&r(t).footer!==!1?(a(),u("footer",{key:0,class:N(["VPFooter",{"has-sidebar":r(s)}])},[p("div",$o,[r(e).footer.message?(a(),u("p",{key:0,class:"message",innerHTML:r(e).footer.message},null,8,go)):h("",!0),r(e).footer.copyright?(a(),u("p",{key:1,class:"copyright",innerHTML:r(e).footer.copyright},null,8,yo)):h("",!0)])],2)):h("",!0)}}),So=g(Po,[["__scopeId","data-v-c970a860"]]);function Vo(){const{theme:n,frontmatter:e}=V(),t=Te([]),s=y(()=>t.value.length>0);return te(()=>{t.value=ke(e.value.outline??n.value.outline)}),{headers:t,hasLocalNav:s}}const Lo=n=>(B("data-v-bc9dc845"),n=n(),H(),n),To={class:"menu-text"},wo=Lo(()=>p("span",{class:"vpi-chevron-right icon"},null,-1)),Io={class:"header"},No={class:"outline"},Mo=_({__name:"VPLocalNavOutlineDropdown",props:{headers:{},navHeight:{}},setup(n){const e=n,{theme:t}=V(),s=T(!1),o=T(0),i=T(),l=T();function d(b){var P;(P=i.value)!=null&&P.contains(b.target)||(s.value=!1)}O(s,b=>{if(b){document.addEventListener("click",d);return}document.removeEventListener("click",d)}),ce("Escape",()=>{s.value=!1}),te(()=>{s.value=!1});function v(){s.value=!s.value,o.value=window.innerHeight+Math.min(window.scrollY-e.navHeight,0)}function m(b){b.target.classList.contains("outline-link")&&(l.value&&(l.value.style.transition="none"),Ne(()=>{s.value=!1}))}function L(){s.value=!1,window.scrollTo({top:0,left:0,behavior:"smooth"})}return(b,P)=>(a(),u("div",{class:"VPLocalNavOutlineDropdown",style:Ie({"--vp-vh":o.value+"px"}),ref_key:"main",ref:i},[b.headers.length>0?(a(),u("button",{key:0,onClick:v,class:N({open:s.value})},[p("span",To,I(r(He)(r(t))),1),wo],2)):(a(),u("button",{key:1,onClick:L},I(r(t).returnToTopLabel||"Return to top"),1)),k(pe,{name:"flyout"},{default:f(()=>[s.value?(a(),u("div",{key:0,ref_key:"items",ref:l,class:"items",onClick:m},[p("div",Io,[p("a",{class:"top-link",href:"#",onClick:L},I(r(t).returnToTopLabel||"Return to top"),1)]),p("div",No,[k(Ee,{headers:b.headers},null,8,["headers"])])],512)):h("",!0)]),_:1})],4))}}),Ao=g(Mo,[["__scopeId","data-v-bc9dc845"]]),Co=n=>(B("data-v-070ab83d"),n=n(),H(),n),Bo={class:"container"},Ho=["aria-expanded"],Eo=Co(()=>p("span",{class:"vpi-align-left menu-icon"},null,-1)),Do={class:"menu-text"},Fo=_({__name:"VPLocalNav",props:{open:{type:Boolean}},emits:["open-menu"],setup(n){const{theme:e,frontmatter:t}=V(),{hasSidebar:s}=U(),{headers:o}=Vo(),{y:i}=Me(),l=T(0);R(()=>{l.value=parseInt(getComputedStyle(document.documentElement).getPropertyValue("--vp-nav-height"))}),te(()=>{o.value=ke(t.value.outline??e.value.outline)});const d=y(()=>o.value.length===0),v=y(()=>d.value&&!s.value),m=y(()=>({VPLocalNav:!0,"has-sidebar":s.value,empty:d.value,fixed:v.value}));return(L,b)=>r(t).layout!=="home"&&(!v.value||r(i)>=l.value)?(a(),u("div",{key:0,class:N(m.value)},[p("div",Bo,[r(s)?(a(),u("button",{key:0,class:"menu","aria-expanded":L.open,"aria-controls":"VPSidebarNav",onClick:b[0]||(b[0]=P=>L.$emit("open-menu"))},[Eo,p("span",Do,I(r(e).sidebarMenuLabel||"Menu"),1)],8,Ho)):h("",!0),k(Ao,{headers:r(o),navHeight:l.value},null,8,["headers","navHeight"])])],2)):h("",!0)}}),Oo=g(Fo,[["__scopeId","data-v-070ab83d"]]);function jo(){const n=T(!1);function e(){n.value=!0,window.addEventListener("resize",o)}function t(){n.value=!1,window.removeEventListener("resize",o)}function s(){n.value?t():e()}function o(){window.outerWidth>=768&&t()}const i=ne();return O(()=>i.path,t),{isScreenOpen:n,openScreen:e,closeScreen:t,toggleScreen:s}}const Uo={},Go={class:"VPSwitch",type:"button",role:"switch"},zo={class:"check"},Ko={key:0,class:"icon"};function Ro(n,e){return a(),u("button",Go,[p("span",zo,[n.$slots.default?(a(),u("span",Ko,[c(n.$slots,"default",{},void 0,!0)])):h("",!0)])])}const qo=g(Uo,[["render",Ro],["__scopeId","data-v-4a1c76db"]]),Fe=n=>(B("data-v-e40a8bb6"),n=n(),H(),n),Wo=Fe(()=>p("span",{class:"vpi-sun sun"},null,-1)),Jo=Fe(()=>p("span",{class:"vpi-moon moon"},null,-1)),Yo=_({__name:"VPSwitchAppearance",setup(n){const{isDark:e,theme:t}=V(),s=Y("toggle-appearance",()=>{e.value=!e.value}),o=T("");return _e(()=>{o.value=e.value?t.value.lightModeSwitchTitle||"Switch to light theme":t.value.darkModeSwitchTitle||"Switch to dark theme"}),(i,l)=>(a(),$(qo,{title:o.value,class:"VPSwitchAppearance","aria-checked":r(e),onClick:r(s)},{default:f(()=>[Wo,Jo]),_:1},8,["title","aria-checked","onClick"]))}}),$e=g(Yo,[["__scopeId","data-v-e40a8bb6"]]),Xo={key:0,class:"VPNavBarAppearance"},Qo=_({__name:"VPNavBarAppearance",setup(n){const{site:e}=V();return(t,s)=>r(e).appearance&&r(e).appearance!=="force-dark"&&r(e).appearance!=="force-auto"?(a(),u("div",Xo,[k($e)])):h("",!0)}}),Zo=g(Qo,[["__scopeId","data-v-af096f4a"]]),ge=T();let Oe=!1,ie=0;function xo(n){const e=T(!1);if(oe){!Oe&&es(),ie++;const t=O(ge,s=>{var o,i,l;s===n.el.value||(o=n.el.value)!=null&&o.contains(s)?(e.value=!0,(i=n.onFocus)==null||i.call(n)):(e.value=!1,(l=n.onBlur)==null||l.call(n))});he(()=>{t(),ie--,ie||ts()})}return et(e)}function es(){document.addEventListener("focusin",je),Oe=!0,ge.value=document.activeElement}function ts(){document.removeEventListener("focusin",je)}function je(){ge.value=document.activeElement}const ns={class:"VPMenuLink"},os=_({__name:"VPMenuLink",props:{item:{}},setup(n){const{page:e}=V();return(t,s)=>(a(),u("div",ns,[k(F,{class:N({active:r(q)(r(e).relativePath,t.item.activeMatch||t.item.link,!!t.item.activeMatch)}),href:t.item.link,target:t.item.target,rel:t.item.rel},{default:f(()=>[j(I(t.item.text),1)]),_:1},8,["class","href","target","rel"])]))}}),se=g(os,[["__scopeId","data-v-8b74d055"]]),ss={class:"VPMenuGroup"},as={key:0,class:"title"},rs=_({__name:"VPMenuGroup",props:{text:{},items:{}},setup(n){return(e,t)=>(a(),u("div",ss,[e.text?(a(),u("p",as,I(e.text),1)):h("",!0),(a(!0),u(M,null,E(e.items,s=>(a(),u(M,null,["link"in s?(a(),$(se,{key:0,item:s},null,8,["item"])):h("",!0)],64))),256))]))}}),is=g(rs,[["__scopeId","data-v-48c802d0"]]),ls={class:"VPMenu"},cs={key:0,class:"items"},us=_({__name:"VPMenu",props:{items:{}},setup(n){return(e,t)=>(a(),u("div",ls,[e.items?(a(),u("div",cs,[(a(!0),u(M,null,E(e.items,s=>(a(),u(M,{key:JSON.stringify(s)},["link"in s?(a(),$(se,{key:0,item:s},null,8,["item"])):"component"in s?(a(),$(D(s.component),K({key:1,ref_for:!0},s.props),null,16)):(a(),$(is,{key:2,text:s.text,items:s.items},null,8,["text","items"]))],64))),128))])):h("",!0),c(e.$slots,"default",{},void 0,!0)]))}}),ds=g(us,[["__scopeId","data-v-7dd3104a"]]),vs=n=>(B("data-v-e5380155"),n=n(),H(),n),ps=["aria-expanded","aria-label"],fs={key:0,class:"text"},hs=["innerHTML"],_s=vs(()=>p("span",{class:"vpi-chevron-down text-icon"},null,-1)),ms={key:1,class:"vpi-more-horizontal icon"},bs={class:"menu"},ks=_({__name:"VPFlyout",props:{icon:{},button:{},label:{},items:{}},setup(n){const e=T(!1),t=T();xo({el:t,onBlur:s});function s(){e.value=!1}return(o,i)=>(a(),u("div",{class:"VPFlyout",ref_key:"el",ref:t,onMouseenter:i[1]||(i[1]=l=>e.value=!0),onMouseleave:i[2]||(i[2]=l=>e.value=!1)},[p("button",{type:"button",class:"button","aria-haspopup":"true","aria-expanded":e.value,"aria-label":o.label,onClick:i[0]||(i[0]=l=>e.value=!e.value)},[o.button||o.icon?(a(),u("span",fs,[o.icon?(a(),u("span",{key:0,class:N([o.icon,"option-icon"])},null,2)):h("",!0),o.button?(a(),u("span",{key:1,innerHTML:o.button},null,8,hs)):h("",!0),_s])):(a(),u("span",ms))],8,ps),p("div",bs,[k(ds,{items:o.items},{default:f(()=>[c(o.$slots,"default",{},void 0,!0)]),_:3},8,["items"])])],544))}}),ye=g(ks,[["__scopeId","data-v-e5380155"]]),$s=["href","aria-label","innerHTML"],gs=_({__name:"VPSocialLink",props:{icon:{},link:{},ariaLabel:{}},setup(n){const e=n,t=y(()=>typeof e.icon=="object"?e.icon.svg:``);return(s,o)=>(a(),u("a",{class:"VPSocialLink no-icon",href:s.link,"aria-label":s.ariaLabel??(typeof s.icon=="string"?s.icon:""),target:"_blank",rel:"noopener",innerHTML:t.value},null,8,$s))}}),ys=g(gs,[["__scopeId","data-v-717b8b75"]]),Ps={class:"VPSocialLinks"},Ss=_({__name:"VPSocialLinks",props:{links:{}},setup(n){return(e,t)=>(a(),u("div",Ps,[(a(!0),u(M,null,E(e.links,({link:s,icon:o,ariaLabel:i})=>(a(),$(ys,{key:s,icon:o,link:s,ariaLabel:i},null,8,["icon","link","ariaLabel"]))),128))]))}}),Pe=g(Ss,[["__scopeId","data-v-ee7a9424"]]),Vs={key:0,class:"group translations"},Ls={class:"trans-title"},Ts={key:1,class:"group"},ws={class:"item appearance"},Is={class:"label"},Ns={class:"appearance-action"},Ms={key:2,class:"group"},As={class:"item social-links"},Cs=_({__name:"VPNavBarExtra",setup(n){const{site:e,theme:t}=V(),{localeLinks:s,currentLang:o}=Q({correspondingLink:!0}),i=y(()=>s.value.length&&o.value.label||e.value.appearance||t.value.socialLinks);return(l,d)=>i.value?(a(),$(ye,{key:0,class:"VPNavBarExtra",label:"extra navigation"},{default:f(()=>[r(s).length&&r(o).label?(a(),u("div",Vs,[p("p",Ls,I(r(o).label),1),(a(!0),u(M,null,E(r(s),v=>(a(),$(se,{key:v.link,item:v},null,8,["item"]))),128))])):h("",!0),r(e).appearance&&r(e).appearance!=="force-dark"&&r(e).appearance!=="force-auto"?(a(),u("div",Ts,[p("div",ws,[p("p",Is,I(r(t).darkModeSwitchLabel||"Appearance"),1),p("div",Ns,[k($e)])])])):h("",!0),r(t).socialLinks?(a(),u("div",Ms,[p("div",As,[k(Pe,{class:"social-links-list",links:r(t).socialLinks},null,8,["links"])])])):h("",!0)]),_:1})):h("",!0)}}),Bs=g(Cs,[["__scopeId","data-v-925effce"]]),Hs=n=>(B("data-v-5dea55bf"),n=n(),H(),n),Es=["aria-expanded"],Ds=Hs(()=>p("span",{class:"container"},[p("span",{class:"top"}),p("span",{class:"middle"}),p("span",{class:"bottom"})],-1)),Fs=[Ds],Os=_({__name:"VPNavBarHamburger",props:{active:{type:Boolean}},emits:["click"],setup(n){return(e,t)=>(a(),u("button",{type:"button",class:N(["VPNavBarHamburger",{active:e.active}]),"aria-label":"mobile navigation","aria-expanded":e.active,"aria-controls":"VPNavScreen",onClick:t[0]||(t[0]=s=>e.$emit("click"))},Fs,10,Es))}}),js=g(Os,[["__scopeId","data-v-5dea55bf"]]),Us=["innerHTML"],Gs=_({__name:"VPNavBarMenuLink",props:{item:{}},setup(n){const{page:e}=V();return(t,s)=>(a(),$(F,{class:N({VPNavBarMenuLink:!0,active:r(q)(r(e).relativePath,t.item.activeMatch||t.item.link,!!t.item.activeMatch)}),href:t.item.link,noIcon:t.item.noIcon,target:t.item.target,rel:t.item.rel,tabindex:"0"},{default:f(()=>[p("span",{innerHTML:t.item.text},null,8,Us)]),_:1},8,["class","href","noIcon","target","rel"]))}}),zs=g(Gs,[["__scopeId","data-v-ed5ac1f6"]]),Ks=_({__name:"VPNavBarMenuGroup",props:{item:{}},setup(n){const e=n,{page:t}=V(),s=i=>"component"in i?!1:"link"in i?q(t.value.relativePath,i.link,!!e.item.activeMatch):i.items.some(s),o=y(()=>s(e.item));return(i,l)=>(a(),$(ye,{class:N({VPNavBarMenuGroup:!0,active:r(q)(r(t).relativePath,i.item.activeMatch,!!i.item.activeMatch)||o.value}),button:i.item.text,items:i.item.items},null,8,["class","button","items"]))}}),Rs=n=>(B("data-v-e6d46098"),n=n(),H(),n),qs={key:0,"aria-labelledby":"main-nav-aria-label",class:"VPNavBarMenu"},Ws=Rs(()=>p("span",{id:"main-nav-aria-label",class:"visually-hidden"}," Main Navigation ",-1)),Js=_({__name:"VPNavBarMenu",setup(n){const{theme:e}=V();return(t,s)=>r(e).nav?(a(),u("nav",qs,[Ws,(a(!0),u(M,null,E(r(e).nav,o=>(a(),u(M,{key:JSON.stringify(o)},["link"in o?(a(),$(zs,{key:0,item:o},null,8,["item"])):"component"in o?(a(),$(D(o.component),K({key:1,ref_for:!0},o.props),null,16)):(a(),$(Ks,{key:2,item:o},null,8,["item"]))],64))),128))])):h("",!0)}}),Ys=g(Js,[["__scopeId","data-v-e6d46098"]]);function Xs(n){const{localeIndex:e,theme:t}=V();function s(o){var A,C,w;const i=o.split("."),l=(A=t.value.search)==null?void 0:A.options,d=l&&typeof l=="object",v=d&&((w=(C=l.locales)==null?void 0:C[e.value])==null?void 0:w.translations)||null,m=d&&l.translations||null;let L=v,b=m,P=n;const S=i.pop();for(const G of i){let z=null;const J=P==null?void 0:P[G];J&&(z=P=J);const ae=b==null?void 0:b[G];ae&&(z=b=ae);const re=L==null?void 0:L[G];re&&(z=L=re),J||(P=z),ae||(b=z),re||(L=z)}return(L==null?void 0:L[S])??(b==null?void 0:b[S])??(P==null?void 0:P[S])??""}return s}const Qs=["aria-label"],Zs={class:"DocSearch-Button-Container"},xs=p("span",{class:"vp-icon DocSearch-Search-Icon"},null,-1),ea={class:"DocSearch-Button-Placeholder"},ta=p("span",{class:"DocSearch-Button-Keys"},[p("kbd",{class:"DocSearch-Button-Key"}),p("kbd",{class:"DocSearch-Button-Key"},"K")],-1),Se=_({__name:"VPNavBarSearchButton",setup(n){const t=Xs({button:{buttonText:"Search",buttonAriaLabel:"Search"}});return(s,o)=>(a(),u("button",{type:"button",class:"DocSearch DocSearch-Button","aria-label":r(t)("button.buttonAriaLabel")},[p("span",Zs,[xs,p("span",ea,I(r(t)("button.buttonText")),1)]),ta],8,Qs))}}),na={class:"VPNavBarSearch"},oa={id:"local-search"},sa={key:1,id:"docsearch"},aa=_({__name:"VPNavBarSearch",setup(n){const e=tt(()=>nt(()=>import("./VPLocalSearchBox.Bwg4A3k8.js"),__vite__mapDeps([0,1]))),t=()=>null,{theme:s}=V(),o=T(!1),i=T(!1);R(()=>{});function l(){o.value||(o.value=!0,setTimeout(d,16))}function d(){const b=new Event("keydown");b.key="k",b.metaKey=!0,window.dispatchEvent(b),setTimeout(()=>{document.querySelector(".DocSearch-Modal")||d()},16)}function v(b){const P=b.target,S=P.tagName;return P.isContentEditable||S==="INPUT"||S==="SELECT"||S==="TEXTAREA"}const m=T(!1);ce("k",b=>{(b.ctrlKey||b.metaKey)&&(b.preventDefault(),m.value=!0)}),ce("/",b=>{v(b)||(b.preventDefault(),m.value=!0)});const L="local";return(b,P)=>{var S;return a(),u("div",na,[r(L)==="local"?(a(),u(M,{key:0},[m.value?(a(),$(r(e),{key:0,onClose:P[0]||(P[0]=A=>m.value=!1)})):h("",!0),p("div",oa,[k(Se,{onClick:P[1]||(P[1]=A=>m.value=!0)})])],64)):r(L)==="algolia"?(a(),u(M,{key:1},[o.value?(a(),$(r(t),{key:0,algolia:((S=r(s).search)==null?void 0:S.options)??r(s).algolia,onVnodeBeforeMount:P[2]||(P[2]=A=>i.value=!0)},null,8,["algolia"])):h("",!0),i.value?h("",!0):(a(),u("div",sa,[k(Se,{onClick:l})]))],64)):h("",!0)])}}}),ra=_({__name:"VPNavBarSocialLinks",setup(n){const{theme:e}=V();return(t,s)=>r(e).socialLinks?(a(),$(Pe,{key:0,class:"VPNavBarSocialLinks",links:r(e).socialLinks},null,8,["links"])):h("",!0)}}),ia=g(ra,[["__scopeId","data-v-164c457f"]]),la=["href","rel","target"],ca={key:1},ua={key:2},da=_({__name:"VPNavBarTitle",setup(n){const{site:e,theme:t}=V(),{hasSidebar:s}=U(),{currentLang:o}=Q(),i=y(()=>{var v;return typeof t.value.logoLink=="string"?t.value.logoLink:(v=t.value.logoLink)==null?void 0:v.link}),l=y(()=>{var v;return typeof t.value.logoLink=="string"||(v=t.value.logoLink)==null?void 0:v.rel}),d=y(()=>{var v;return typeof t.value.logoLink=="string"||(v=t.value.logoLink)==null?void 0:v.target});return(v,m)=>(a(),u("div",{class:N(["VPNavBarTitle",{"has-sidebar":r(s)}])},[p("a",{class:"title",href:i.value??r(be)(r(o).link),rel:l.value,target:d.value},[c(v.$slots,"nav-bar-title-before",{},void 0,!0),r(t).logo?(a(),$(x,{key:0,class:"logo",image:r(t).logo},null,8,["image"])):h("",!0),r(t).siteTitle?(a(),u("span",ca,I(r(t).siteTitle),1)):r(t).siteTitle===void 0?(a(),u("span",ua,I(r(e).title),1)):h("",!0),c(v.$slots,"nav-bar-title-after",{},void 0,!0)],8,la)],2))}}),va=g(da,[["__scopeId","data-v-28a961f9"]]),pa={class:"items"},fa={class:"title"},ha=_({__name:"VPNavBarTranslations",setup(n){const{theme:e}=V(),{localeLinks:t,currentLang:s}=Q({correspondingLink:!0});return(o,i)=>r(t).length&&r(s).label?(a(),$(ye,{key:0,class:"VPNavBarTranslations",icon:"vpi-languages",label:r(e).langMenuLabel||"Change language"},{default:f(()=>[p("div",pa,[p("p",fa,I(r(s).label),1),(a(!0),u(M,null,E(r(t),l=>(a(),$(se,{key:l.link,item:l},null,8,["item"]))),128))])]),_:1},8,["label"])):h("",!0)}}),_a=g(ha,[["__scopeId","data-v-c80d9ad0"]]),ma=n=>(B("data-v-822684d1"),n=n(),H(),n),ba={class:"wrapper"},ka={class:"container"},$a={class:"title"},ga={class:"content"},ya={class:"content-body"},Pa=ma(()=>p("div",{class:"divider"},[p("div",{class:"divider-line"})],-1)),Sa=_({__name:"VPNavBar",props:{isScreenOpen:{type:Boolean}},emits:["toggle-screen"],setup(n){const e=n,{y:t}=Me(),{hasSidebar:s}=U(),{frontmatter:o}=V(),i=T({});return _e(()=>{i.value={"has-sidebar":s.value,home:o.value.layout==="home",top:t.value===0,"screen-open":e.isScreenOpen}}),(l,d)=>(a(),u("div",{class:N(["VPNavBar",i.value])},[p("div",ba,[p("div",ka,[p("div",$a,[k(va,null,{"nav-bar-title-before":f(()=>[c(l.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":f(()=>[c(l.$slots,"nav-bar-title-after",{},void 0,!0)]),_:3})]),p("div",ga,[p("div",ya,[c(l.$slots,"nav-bar-content-before",{},void 0,!0),k(aa,{class:"search"}),k(Ys,{class:"menu"}),k(_a,{class:"translations"}),k(Zo,{class:"appearance"}),k(ia,{class:"social-links"}),k(Bs,{class:"extra"}),c(l.$slots,"nav-bar-content-after",{},void 0,!0),k(js,{class:"hamburger",active:l.isScreenOpen,onClick:d[0]||(d[0]=v=>l.$emit("toggle-screen"))},null,8,["active"])])])])]),Pa],2))}}),Va=g(Sa,[["__scopeId","data-v-822684d1"]]),La={key:0,class:"VPNavScreenAppearance"},Ta={class:"text"},wa=_({__name:"VPNavScreenAppearance",setup(n){const{site:e,theme:t}=V();return(s,o)=>r(e).appearance&&r(e).appearance!=="force-dark"&&r(e).appearance!=="force-auto"?(a(),u("div",La,[p("p",Ta,I(r(t).darkModeSwitchLabel||"Appearance"),1),k($e)])):h("",!0)}}),Ia=g(wa,[["__scopeId","data-v-ffb44008"]]),Na=_({__name:"VPNavScreenMenuLink",props:{item:{}},setup(n){const e=Y("close-screen");return(t,s)=>(a(),$(F,{class:"VPNavScreenMenuLink",href:t.item.link,target:t.item.target,rel:t.item.rel,onClick:r(e),innerHTML:t.item.text},null,8,["href","target","rel","onClick","innerHTML"]))}}),Ma=g(Na,[["__scopeId","data-v-27d04aeb"]]),Aa=_({__name:"VPNavScreenMenuGroupLink",props:{item:{}},setup(n){const e=Y("close-screen");return(t,s)=>(a(),$(F,{class:"VPNavScreenMenuGroupLink",href:t.item.link,target:t.item.target,rel:t.item.rel,onClick:r(e)},{default:f(()=>[j(I(t.item.text),1)]),_:1},8,["href","target","rel","onClick"]))}}),Ue=g(Aa,[["__scopeId","data-v-7179dbb7"]]),Ca={class:"VPNavScreenMenuGroupSection"},Ba={key:0,class:"title"},Ha=_({__name:"VPNavScreenMenuGroupSection",props:{text:{},items:{}},setup(n){return(e,t)=>(a(),u("div",Ca,[e.text?(a(),u("p",Ba,I(e.text),1)):h("",!0),(a(!0),u(M,null,E(e.items,s=>(a(),$(Ue,{key:s.text,item:s},null,8,["item"]))),128))]))}}),Ea=g(Ha,[["__scopeId","data-v-4b8941ac"]]),Da=n=>(B("data-v-875057a5"),n=n(),H(),n),Fa=["aria-controls","aria-expanded"],Oa=["innerHTML"],ja=Da(()=>p("span",{class:"vpi-plus button-icon"},null,-1)),Ua=["id"],Ga={key:0,class:"item"},za={key:1,class:"item"},Ka={key:2,class:"group"},Ra=_({__name:"VPNavScreenMenuGroup",props:{text:{},items:{}},setup(n){const e=n,t=T(!1),s=y(()=>`NavScreenGroup-${e.text.replace(" ","-").toLowerCase()}`);function o(){t.value=!t.value}return(i,l)=>(a(),u("div",{class:N(["VPNavScreenMenuGroup",{open:t.value}])},[p("button",{class:"button","aria-controls":s.value,"aria-expanded":t.value,onClick:o},[p("span",{class:"button-text",innerHTML:i.text},null,8,Oa),ja],8,Fa),p("div",{id:s.value,class:"items"},[(a(!0),u(M,null,E(i.items,d=>(a(),u(M,{key:JSON.stringify(d)},["link"in d?(a(),u("div",Ga,[k(Ue,{item:d},null,8,["item"])])):"component"in d?(a(),u("div",za,[(a(),$(D(d.component),K({ref_for:!0},d.props,{"screen-menu":""}),null,16))])):(a(),u("div",Ka,[k(Ea,{text:d.text,items:d.items},null,8,["text","items"])]))],64))),128))],8,Ua)],2))}}),qa=g(Ra,[["__scopeId","data-v-875057a5"]]),Wa={key:0,class:"VPNavScreenMenu"},Ja=_({__name:"VPNavScreenMenu",setup(n){const{theme:e}=V();return(t,s)=>r(e).nav?(a(),u("nav",Wa,[(a(!0),u(M,null,E(r(e).nav,o=>(a(),u(M,{key:JSON.stringify(o)},["link"in o?(a(),$(Ma,{key:0,item:o},null,8,["item"])):"component"in o?(a(),$(D(o.component),K({key:1,ref_for:!0},o.props,{"screen-menu":""}),null,16)):(a(),$(qa,{key:2,text:o.text||"",items:o.items},null,8,["text","items"]))],64))),128))])):h("",!0)}}),Ya=_({__name:"VPNavScreenSocialLinks",setup(n){const{theme:e}=V();return(t,s)=>r(e).socialLinks?(a(),$(Pe,{key:0,class:"VPNavScreenSocialLinks",links:r(e).socialLinks},null,8,["links"])):h("",!0)}}),Ge=n=>(B("data-v-362991c2"),n=n(),H(),n),Xa=Ge(()=>p("span",{class:"vpi-languages icon lang"},null,-1)),Qa=Ge(()=>p("span",{class:"vpi-chevron-down icon chevron"},null,-1)),Za={class:"list"},xa=_({__name:"VPNavScreenTranslations",setup(n){const{localeLinks:e,currentLang:t}=Q({correspondingLink:!0}),s=T(!1);function o(){s.value=!s.value}return(i,l)=>r(e).length&&r(t).label?(a(),u("div",{key:0,class:N(["VPNavScreenTranslations",{open:s.value}])},[p("button",{class:"title",onClick:o},[Xa,j(" "+I(r(t).label)+" ",1),Qa]),p("ul",Za,[(a(!0),u(M,null,E(r(e),d=>(a(),u("li",{key:d.link,class:"item"},[k(F,{class:"link",href:d.link},{default:f(()=>[j(I(d.text),1)]),_:2},1032,["href"])]))),128))])],2)):h("",!0)}}),er=g(xa,[["__scopeId","data-v-362991c2"]]),tr={class:"container"},nr=_({__name:"VPNavScreen",props:{open:{type:Boolean}},setup(n){const e=T(null),t=Ae(oe?document.body:null);return(s,o)=>(a(),$(pe,{name:"fade",onEnter:o[0]||(o[0]=i=>t.value=!0),onAfterLeave:o[1]||(o[1]=i=>t.value=!1)},{default:f(()=>[s.open?(a(),u("div",{key:0,class:"VPNavScreen",ref_key:"screen",ref:e,id:"VPNavScreen"},[p("div",tr,[c(s.$slots,"nav-screen-content-before",{},void 0,!0),k(Ja,{class:"menu"}),k(er,{class:"translations"}),k(Ia,{class:"appearance"}),k(Ya,{class:"social-links"}),c(s.$slots,"nav-screen-content-after",{},void 0,!0)])],512)):h("",!0)]),_:3}))}}),or=g(nr,[["__scopeId","data-v-833aabba"]]),sr={key:0,class:"VPNav"},ar=_({__name:"VPNav",setup(n){const{isScreenOpen:e,closeScreen:t,toggleScreen:s}=jo(),{frontmatter:o}=V(),i=y(()=>o.value.navbar!==!1);return me("close-screen",t),ee(()=>{oe&&document.documentElement.classList.toggle("hide-nav",!i.value)}),(l,d)=>i.value?(a(),u("header",sr,[k(Va,{"is-screen-open":r(e),onToggleScreen:r(s)},{"nav-bar-title-before":f(()=>[c(l.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":f(()=>[c(l.$slots,"nav-bar-title-after",{},void 0,!0)]),"nav-bar-content-before":f(()=>[c(l.$slots,"nav-bar-content-before",{},void 0,!0)]),"nav-bar-content-after":f(()=>[c(l.$slots,"nav-bar-content-after",{},void 0,!0)]),_:3},8,["is-screen-open","onToggleScreen"]),k(or,{open:r(e)},{"nav-screen-content-before":f(()=>[c(l.$slots,"nav-screen-content-before",{},void 0,!0)]),"nav-screen-content-after":f(()=>[c(l.$slots,"nav-screen-content-after",{},void 0,!0)]),_:3},8,["open"])])):h("",!0)}}),rr=g(ar,[["__scopeId","data-v-f1e365da"]]),ze=n=>(B("data-v-196b2e5f"),n=n(),H(),n),ir=["role","tabindex"],lr=ze(()=>p("div",{class:"indicator"},null,-1)),cr=ze(()=>p("span",{class:"vpi-chevron-right caret-icon"},null,-1)),ur=[cr],dr={key:1,class:"items"},vr=_({__name:"VPSidebarItem",props:{item:{},depth:{}},setup(n){const e=n,{collapsed:t,collapsible:s,isLink:o,isActiveLink:i,hasActiveLink:l,hasChildren:d,toggle:v}=It(y(()=>e.item)),m=y(()=>d.value?"section":"div"),L=y(()=>o.value?"a":"div"),b=y(()=>d.value?e.depth+2===7?"p":`h${e.depth+2}`:"p"),P=y(()=>o.value?void 0:"button"),S=y(()=>[[`level-${e.depth}`],{collapsible:s.value},{collapsed:t.value},{"is-link":o.value},{"is-active":i.value},{"has-active":l.value}]);function A(w){"key"in w&&w.key!=="Enter"||!e.item.link&&v()}function C(){e.item.link&&v()}return(w,G)=>{const z=W("VPSidebarItem",!0);return a(),$(D(m.value),{class:N(["VPSidebarItem",S.value])},{default:f(()=>[w.item.text?(a(),u("div",K({key:0,class:"item",role:P.value},st(w.item.items?{click:A,keydown:A}:{},!0),{tabindex:w.item.items&&0}),[lr,w.item.link?(a(),$(F,{key:0,tag:L.value,class:"link",href:w.item.link,rel:w.item.rel,target:w.item.target},{default:f(()=>[(a(),$(D(b.value),{class:"text",innerHTML:w.item.text},null,8,["innerHTML"]))]),_:1},8,["tag","href","rel","target"])):(a(),$(D(b.value),{key:1,class:"text",innerHTML:w.item.text},null,8,["innerHTML"])),w.item.collapsed!=null&&w.item.items&&w.item.items.length?(a(),u("div",{key:2,class:"caret",role:"button","aria-label":"toggle section",onClick:C,onKeydown:ot(C,["enter"]),tabindex:"0"},ur,32)):h("",!0)],16,ir)):h("",!0),w.item.items&&w.item.items.length?(a(),u("div",dr,[w.depth<5?(a(!0),u(M,{key:0},E(w.item.items,J=>(a(),$(z,{key:J.text,item:J,depth:w.depth+1},null,8,["item","depth"]))),128)):h("",!0)])):h("",!0)]),_:1},8,["class"])}}}),pr=g(vr,[["__scopeId","data-v-196b2e5f"]]),fr=_({__name:"VPSidebarGroup",props:{items:{}},setup(n){const e=T(!0);let t=null;return R(()=>{t=setTimeout(()=>{t=null,e.value=!1},300)}),at(()=>{t!=null&&(clearTimeout(t),t=null)}),(s,o)=>(a(!0),u(M,null,E(s.items,i=>(a(),u("div",{key:i.text,class:N(["group",{"no-transition":e.value}])},[k(pr,{item:i,depth:0},null,8,["item"])],2))),128))}}),hr=g(fr,[["__scopeId","data-v-9e426adc"]]),Ke=n=>(B("data-v-18756405"),n=n(),H(),n),_r=Ke(()=>p("div",{class:"curtain"},null,-1)),mr={class:"nav",id:"VPSidebarNav","aria-labelledby":"sidebar-aria-label",tabindex:"-1"},br=Ke(()=>p("span",{class:"visually-hidden",id:"sidebar-aria-label"}," Sidebar Navigation ",-1)),kr=_({__name:"VPSidebar",props:{open:{type:Boolean}},setup(n){const{sidebarGroups:e,hasSidebar:t}=U(),s=n,o=T(null),i=Ae(oe?document.body:null);O([s,o],()=>{var d;s.open?(i.value=!0,(d=o.value)==null||d.focus()):i.value=!1},{immediate:!0,flush:"post"});const l=T(0);return O(e,()=>{l.value+=1},{deep:!0}),(d,v)=>r(t)?(a(),u("aside",{key:0,class:N(["VPSidebar",{open:d.open}]),ref_key:"navEl",ref:o,onClick:v[0]||(v[0]=rt(()=>{},["stop"]))},[_r,p("nav",mr,[br,c(d.$slots,"sidebar-nav-before",{},void 0,!0),(a(),$(hr,{items:r(e),key:l.value},null,8,["items"])),c(d.$slots,"sidebar-nav-after",{},void 0,!0)])],2)):h("",!0)}}),$r=g(kr,[["__scopeId","data-v-18756405"]]),gr=_({__name:"VPSkipLink",setup(n){const e=ne(),t=T();O(()=>e.path,()=>t.value.focus());function s({target:o}){const i=document.getElementById(decodeURIComponent(o.hash).slice(1));if(i){const l=()=>{i.removeAttribute("tabindex"),i.removeEventListener("blur",l)};i.setAttribute("tabindex","-1"),i.addEventListener("blur",l),i.focus(),window.scrollTo(0,0)}}return(o,i)=>(a(),u(M,null,[p("span",{ref_key:"backToTop",ref:t,tabindex:"-1"},null,512),p("a",{href:"#VPContent",class:"VPSkipLink visually-hidden",onClick:s}," Skip to content ")],64))}}),yr=g(gr,[["__scopeId","data-v-c3508ec8"]]),Pr=_({__name:"Layout",setup(n){const{isOpen:e,open:t,close:s}=U(),o=ne();O(()=>o.path,s),wt(e,s);const{frontmatter:i}=V(),l=Ce(),d=y(()=>!!l["home-hero-image"]);return me("hero-image-slot-exists",d),(v,m)=>{const L=W("Content");return r(i).layout!==!1?(a(),u("div",{key:0,class:N(["Layout",r(i).pageClass])},[c(v.$slots,"layout-top",{},void 0,!0),k(yr),k(pt,{class:"backdrop",show:r(e),onClick:r(s)},null,8,["show","onClick"]),k(rr,null,{"nav-bar-title-before":f(()=>[c(v.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":f(()=>[c(v.$slots,"nav-bar-title-after",{},void 0,!0)]),"nav-bar-content-before":f(()=>[c(v.$slots,"nav-bar-content-before",{},void 0,!0)]),"nav-bar-content-after":f(()=>[c(v.$slots,"nav-bar-content-after",{},void 0,!0)]),"nav-screen-content-before":f(()=>[c(v.$slots,"nav-screen-content-before",{},void 0,!0)]),"nav-screen-content-after":f(()=>[c(v.$slots,"nav-screen-content-after",{},void 0,!0)]),_:3}),k(Oo,{open:r(e),onOpenMenu:r(t)},null,8,["open","onOpenMenu"]),k($r,{open:r(e)},{"sidebar-nav-before":f(()=>[c(v.$slots,"sidebar-nav-before",{},void 0,!0)]),"sidebar-nav-after":f(()=>[c(v.$slots,"sidebar-nav-after",{},void 0,!0)]),_:3},8,["open"]),k(ko,null,{"page-top":f(()=>[c(v.$slots,"page-top",{},void 0,!0)]),"page-bottom":f(()=>[c(v.$slots,"page-bottom",{},void 0,!0)]),"not-found":f(()=>[c(v.$slots,"not-found",{},void 0,!0)]),"home-hero-before":f(()=>[c(v.$slots,"home-hero-before",{},void 0,!0)]),"home-hero-info-before":f(()=>[c(v.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":f(()=>[c(v.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":f(()=>[c(v.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":f(()=>[c(v.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":f(()=>[c(v.$slots,"home-hero-image",{},void 0,!0)]),"home-hero-after":f(()=>[c(v.$slots,"home-hero-after",{},void 0,!0)]),"home-features-before":f(()=>[c(v.$slots,"home-features-before",{},void 0,!0)]),"home-features-after":f(()=>[c(v.$slots,"home-features-after",{},void 0,!0)]),"doc-footer-before":f(()=>[c(v.$slots,"doc-footer-before",{},void 0,!0)]),"doc-before":f(()=>[c(v.$slots,"doc-before",{},void 0,!0)]),"doc-after":f(()=>[c(v.$slots,"doc-after",{},void 0,!0)]),"doc-top":f(()=>[c(v.$slots,"doc-top",{},void 0,!0)]),"doc-bottom":f(()=>[c(v.$slots,"doc-bottom",{},void 0,!0)]),"aside-top":f(()=>[c(v.$slots,"aside-top",{},void 0,!0)]),"aside-bottom":f(()=>[c(v.$slots,"aside-bottom",{},void 0,!0)]),"aside-outline-before":f(()=>[c(v.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":f(()=>[c(v.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":f(()=>[c(v.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":f(()=>[c(v.$slots,"aside-ads-after",{},void 0,!0)]),_:3}),k(So),c(v.$slots,"layout-bottom",{},void 0,!0)],2)):(a(),$(L,{key:1}))}}}),Sr=g(Pr,[["__scopeId","data-v-a9a9e638"]]),Ve={Layout:Sr,enhanceApp:({app:n})=>{n.component("Badge",ut)}},Vr=n=>{if(typeof document>"u")return{stabilizeScrollPosition:o=>async(...i)=>o(...i)};const e=document.documentElement;return{stabilizeScrollPosition:s=>async(...o)=>{const i=s(...o),l=n.value;if(!l)return i;const d=l.offsetTop-e.scrollTop;return await Ne(),e.scrollTop=l.offsetTop-d,i}}},Re="vitepress:tabSharedState",X=typeof localStorage<"u"?localStorage:null,qe="vitepress:tabsSharedState",Lr=()=>{const n=X==null?void 0:X.getItem(qe);if(n)try{return JSON.parse(n)}catch{}return{}},Tr=n=>{X&&X.setItem(qe,JSON.stringify(n))},wr=n=>{const e=it({});O(()=>e.content,(t,s)=>{t&&s&&Tr(t)},{deep:!0}),n.provide(Re,e)},Ir=(n,e)=>{const t=Y(Re);if(!t)throw new Error("[vitepress-plugin-tabs] TabsSharedState should be injected");R(()=>{t.content||(t.content=Lr())});const s=T(),o=y({get(){var v;const l=e.value,d=n.value;if(l){const m=(v=t.content)==null?void 0:v[l];if(m&&d.includes(m))return m}else{const m=s.value;if(m)return m}return d[0]},set(l){const d=e.value;d?t.content&&(t.content[d]=l):s.value=l}});return{selected:o,select:l=>{o.value=l}}};let Le=0;const Nr=()=>(Le++,""+Le);function Mr(){const n=Ce();return y(()=>{var s;const t=(s=n.default)==null?void 0:s.call(n);return t?t.filter(o=>typeof o.type=="object"&&"__name"in o.type&&o.type.__name==="PluginTabsTab"&&o.props).map(o=>{var i;return(i=o.props)==null?void 0:i.label}):[]})}const We="vitepress:tabSingleState",Ar=n=>{me(We,n)},Cr=()=>{const n=Y(We);if(!n)throw new Error("[vitepress-plugin-tabs] TabsSingleState should be injected");return n},Br={class:"plugin-tabs"},Hr=["id","aria-selected","aria-controls","tabindex","onClick"],Er=_({__name:"PluginTabs",props:{sharedStateKey:{}},setup(n){const e=n,t=Mr(),{selected:s,select:o}=Ir(t,lt(e,"sharedStateKey")),i=T(),{stabilizeScrollPosition:l}=Vr(i),d=l(o),v=T([]),m=b=>{var A;const P=t.value.indexOf(s.value);let S;b.key==="ArrowLeft"?S=P>=1?P-1:t.value.length-1:b.key==="ArrowRight"&&(S=P(a(),u("div",Br,[p("div",{ref_key:"tablist",ref:i,class:"plugin-tabs--tab-list",role:"tablist",onKeydown:m},[(a(!0),u(M,null,E(r(t),S=>(a(),u("button",{id:`tab-${S}-${r(L)}`,ref_for:!0,ref_key:"buttonRefs",ref:v,key:S,role:"tab",class:"plugin-tabs--tab","aria-selected":S===r(s),"aria-controls":`panel-${S}-${r(L)}`,tabindex:S===r(s)?0:-1,onClick:()=>r(d)(S)},I(S),9,Hr))),128))],544),c(b.$slots,"default")]))}}),Dr=["id","aria-labelledby"],Fr=_({__name:"PluginTabsTab",props:{label:{}},setup(n){const{uid:e,selected:t}=Cr();return(s,o)=>r(t)===s.label?(a(),u("div",{key:0,id:`panel-${s.label}-${r(e)}`,class:"plugin-tabs--content",role:"tabpanel",tabindex:"0","aria-labelledby":`tab-${s.label}-${r(e)}`},[c(s.$slots,"default",{},void 0,!0)],8,Dr)):h("",!0)}}),Or=g(Fr,[["__scopeId","data-v-9b0d03d2"]]),jr=n=>{wr(n),n.component("PluginTabs",Er),n.component("PluginTabsTab",Or)},Gr={extends:Ve,Layout(){return ct(Ve.Layout,null,{})},enhanceApp({app:n,router:e,siteData:t}){jr(n)}};export{Gr as R,Xs as c,V as u}; diff --git a/dev/assets/rfxpqtm.CVxd1wxn.png b/dev/assets/ewdyact.CVxd1wxn.png similarity index 100% rename from dev/assets/rfxpqtm.CVxd1wxn.png rename to dev/assets/ewdyact.CVxd1wxn.png diff --git a/dev/assets/aeouwcz.BAWTouNa.png b/dev/assets/fcectct.BAWTouNa.png similarity index 100% rename from dev/assets/aeouwcz.BAWTouNa.png rename to dev/assets/fcectct.BAWTouNa.png diff --git a/dev/assets/gbif_wflow.md.DZwnHjST.js b/dev/assets/gbif_wflow.md.9HR_27Fc.js similarity index 99% rename from dev/assets/gbif_wflow.md.DZwnHjST.js rename to dev/assets/gbif_wflow.md.9HR_27Fc.js index ab54a95f..4d21880d 100644 --- a/dev/assets/gbif_wflow.md.DZwnHjST.js +++ b/dev/assets/gbif_wflow.md.9HR_27Fc.js @@ -1,24 +1,24 @@ -import{_ as s,c as a,o as i,a7 as n}from"./chunks/framework.Dv3PRBLL.js";const p="/Rasters.jl/dev/assets/nsdrogc.BoCG39gX.png",y=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"gbif_wflow.md","filePath":"gbif_wflow.md","lastUpdated":null}'),t={name:"gbif_wflow.md"},l=n(`

Load occurrences for the Mountain Pygmy Possum using GBIF.jl

Load GBIF

julia
using Rasters, GBIF2
+import{_ as s,c as a,o as i,a7 as n}from"./chunks/framework.Dv3PRBLL.js";const p="/Rasters.jl/dev/assets/lzxrbbb.ChsmyNee.png",y=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"gbif_wflow.md","filePath":"gbif_wflow.md","lastUpdated":null}'),t={name:"gbif_wflow.md"},l=n(`

Load occurrences for the Mountain Pygmy Possum using GBIF.jl

Load GBIF

julia
using Rasters, GBIF2
 using RasterDataSources
 const RS = Rasters
Rasters
julia
records = GBIF2.occurrence_search("Burramys parvus"; limit=300)
300-element GBIF2.Table{GBIF2.Occurrence, JSON3.Array{JSON3.Object, Vector{UInt8}, SubArray{UInt64, 1, Vector{UInt64}, Tuple{UnitRange{Int64}}, true}}}┌──────────────────────────┬─────────┬─────────┬─────────┬──────────┬───────────
 │                 geometry │    year │   month │     day │  kingdom │   phylum ⋯
 │ Tuple{Float64, Float64}? │  Int64? │  Int64? │  Int64? │  String? │  String? ⋯
 ├──────────────────────────┼─────────┼─────────┼─────────┼──────────┼───────────
+│                  missing │ missing │ missing │ missing │ Animalia │ Chordata ⋯
 │                  missing │    2021 │       1 │       6 │ Animalia │ Chordata ⋯
 │      (148.333, -36.4333) │    2011 │      11 │      21 │ Animalia │ Chordata ⋯
 │      (148.396, -36.3818) │    2016 │      11 │      15 │ Animalia │ Chordata ⋯
 │                  missing │ missing │ missing │ missing │ Animalia │ Chordata ⋯
-│                  missing │ missing │ missing │ missing │ Animalia │ Chordata ⋯
 │      (148.391, -36.3036) │    2015 │      11 │      15 │ Animalia │ Chordata ⋯
 │                  missing │ missing │ missing │ missing │ Animalia │ Chordata ⋯
 │                  missing │ missing │ missing │ missing │ Animalia │ Chordata ⋯
-│                  missing │ missing │ missing │ missing │ Animalia │ Chordata ⋯
 │      (147.096, -36.9357) │    2020 │       2 │      10 │ Animalia │ Chordata ⋯
 │      (148.329, -36.4317) │    2016 │       1 │       3 │ Animalia │ Chordata ⋯
 │                  missing │ missing │ missing │ missing │ Animalia │ Chordata ⋯
 │                  missing │ missing │ missing │ missing │ Animalia │ Chordata ⋯
 │      (148.347, -36.5047) │    2012 │      11 │      22 │ Animalia │ Chordata ⋯
 │      (148.236, -36.5249) │    2012 │      11 │      23 │ Animalia │ Chordata ⋯
+│                  missing │ missing │ missing │ missing │ Animalia │ Chordata ⋯
 │            ⋮             │    ⋮    │    ⋮    │    ⋮    │    ⋮     │    ⋮     ⋱
 └──────────────────────────┴─────────┴─────────┴─────────┴──────────┴───────────
                                                  78 columns and 285 rows omitted

Extract coordinates

Extract the longitude/latitude value to a Vector of points (a Tuple counts as a (x, y) point in GeoInterface.jl):

julia
coords = [(r.decimalLongitude, r.decimalLatitude) for r in records if !ismissing(r.decimalLatitude)]
256-element Vector{Tuple{Float64, Float64}}:
diff --git a/dev/assets/gbif_wflow.md.DZwnHjST.lean.js b/dev/assets/gbif_wflow.md.9HR_27Fc.lean.js
similarity index 85%
rename from dev/assets/gbif_wflow.md.DZwnHjST.lean.js
rename to dev/assets/gbif_wflow.md.9HR_27Fc.lean.js
index 88601de1..62306757 100644
--- a/dev/assets/gbif_wflow.md.DZwnHjST.lean.js
+++ b/dev/assets/gbif_wflow.md.9HR_27Fc.lean.js
@@ -1 +1 @@
-import{_ as s,c as a,o as i,a7 as n}from"./chunks/framework.Dv3PRBLL.js";const p="/Rasters.jl/dev/assets/nsdrogc.BoCG39gX.png",y=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"gbif_wflow.md","filePath":"gbif_wflow.md","lastUpdated":null}'),t={name:"gbif_wflow.md"},l=n("",22),e=[l];function h(k,d,r,o,c,g){return i(),a("div",null,e)}const u=s(t,[["render",h]]);export{y as __pageData,u as default};
+import{_ as s,c as a,o as i,a7 as n}from"./chunks/framework.Dv3PRBLL.js";const p="/Rasters.jl/dev/assets/lzxrbbb.ChsmyNee.png",y=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"gbif_wflow.md","filePath":"gbif_wflow.md","lastUpdated":null}'),t={name:"gbif_wflow.md"},l=n("",22),e=[l];function h(k,d,r,o,c,g){return i(),a("div",null,e)}const u=s(t,[["render",h]]);export{y as __pageData,u as default};
diff --git a/dev/assets/get_started.md.tIGilf1H.js b/dev/assets/get_started.md.SnpE7mus.js
similarity index 85%
rename from dev/assets/get_started.md.tIGilf1H.js
rename to dev/assets/get_started.md.SnpE7mus.js
index d3f1e6d0..bb3f28a2 100644
--- a/dev/assets/get_started.md.tIGilf1H.js
+++ b/dev/assets/get_started.md.SnpE7mus.js
@@ -1,4 +1,4 @@
-import{_ as s,c as a,o as i,a7 as n}from"./chunks/framework.Dv3PRBLL.js";const e="/Rasters.jl/dev/assets/jyqmsma.DojgcnZi.png",y=JSON.parse('{"title":"Quick start","description":"","frontmatter":{},"headers":[],"relativePath":"get_started.md","filePath":"get_started.md","lastUpdated":null}'),t={name:"get_started.md"},p=n(`

Quick start

Install the package by typing:

julia
] 
+import{_ as s,c as a,o as i,a7 as n}from"./chunks/framework.Dv3PRBLL.js";const e="/Rasters.jl/dev/assets/rbyrlav.DojgcnZi.png",y=JSON.parse('{"title":"Quick start","description":"","frontmatter":{},"headers":[],"relativePath":"get_started.md","filePath":"get_started.md","lastUpdated":null}'),t={name:"get_started.md"},p=n(`

Quick start

Install the package by typing:

julia
] 
 add Rasters

then do

julia
using Rasters

Using Rasters to read GeoTiff or NetCDF files will output something similar to the following toy examples. This is possible because Rasters.jl extends DimensionalData.jl so that spatial data can be indexed using named dimensions like X, Y and Ti (time) and e.g. spatial coordinates.

julia
using Rasters, Dates
 
 lon, lat = X(25:1:30), Y(25:1:30)
@@ -14,13 +14,13 @@ import{_ as s,c as a,o as i,a7 as n}from"./chunks/framework.Dv3PRBLL.js";const e
 
 └──────────────────────────────────────────────────────────────────────────────┘
 [:, :, 1]
-  ↓ →  25          26          27          28         29         30
- 25     0.107567    0.331222    0.780556    0.442579   0.306762   0.898168
- 26     0.93739     0.454329    0.0661761   0.436025   0.817717   0.901968
- 27     0.594375    0.0923552   0.96631     0.340114   0.886321   0.831194
- 28     0.0265653   0.779093    0.318222    0.183067   0.569855   0.282703
- 29     0.218844    0.450851    0.76909     0.972067   0.167618   0.987735
- 30     0.927241    0.882252    0.168953    0.250943   0.548909   0.833945

Getting the lookup array from dimensions

julia
lon = lookup(ras, X) # if X is longitude
+  ↓ →  25         26          27          28          29         30
+ 25     0.265376   0.0162678   0.0632695   0.0107138   0.842182   0.972543
+ 26     0.863578   0.537349    0.807814    0.210115    0.980035   0.784503
+ 27     0.677411   0.724343    0.901614    0.60098     0.603891   0.817494
+ 28     0.853519   0.0842919   0.993704    0.215861    0.562503   0.398952
+ 29     0.735749   0.302071    0.980193    0.790512    0.760168   0.799606
+ 30     0.343577   0.936132    0.835874    0.0930747   0.865838   0.324826

Getting the lookup array from dimensions

julia
lon = lookup(ras, X) # if X is longitude
 lat = lookup(ras, Y) # if Y is latitude
Sampled{Int64} ForwardOrdered Regular Points
 wrapping: 25:1:30

Select by index

Selecting a time slice by index is done via

julia
ras[Ti(1)]
╭───────────────────────╮
 │ 6×6 Raster{Float64,2} │
@@ -31,13 +31,13 @@ import{_ as s,c as a,o as i,a7 as n}from"./chunks/framework.Dv3PRBLL.js";const e
   extent: Extent(X = (25, 30), Y = (25, 30))
 
 └───────────────────────────────────────────────────────────┘
-  ↓ →  25          26          27          28         29         30
- 25     0.107567    0.331222    0.780556    0.442579   0.306762   0.898168
- 26     0.93739     0.454329    0.0661761   0.436025   0.817717   0.901968
- 27     0.594375    0.0923552   0.96631     0.340114   0.886321   0.831194
- 28     0.0265653   0.779093    0.318222    0.183067   0.569855   0.282703
- 29     0.218844    0.450851    0.76909     0.972067   0.167618   0.987735
- 30     0.927241    0.882252    0.168953    0.250943   0.548909   0.833945

also

julia
ras[Ti=1]
╭───────────────────────╮
+  ↓ →  25         26          27          28          29         30
+ 25     0.265376   0.0162678   0.0632695   0.0107138   0.842182   0.972543
+ 26     0.863578   0.537349    0.807814    0.210115    0.980035   0.784503
+ 27     0.677411   0.724343    0.901614    0.60098     0.603891   0.817494
+ 28     0.853519   0.0842919   0.993704    0.215861    0.562503   0.398952
+ 29     0.735749   0.302071    0.980193    0.790512    0.760168   0.799606
+ 30     0.343577   0.936132    0.835874    0.0930747   0.865838   0.324826

also

julia
ras[Ti=1]
╭───────────────────────╮
 │ 6×6 Raster{Float64,2} │
 ├───────────────────────┴───────────────────────────── dims ┐
   ↓ X Sampled{Int64} 25:1:30 ForwardOrdered Regular Points,
@@ -46,13 +46,13 @@ import{_ as s,c as a,o as i,a7 as n}from"./chunks/framework.Dv3PRBLL.js";const e
   extent: Extent(X = (25, 30), Y = (25, 30))
 
 └───────────────────────────────────────────────────────────┘
-  ↓ →  25          26          27          28         29         30
- 25     0.107567    0.331222    0.780556    0.442579   0.306762   0.898168
- 26     0.93739     0.454329    0.0661761   0.436025   0.817717   0.901968
- 27     0.594375    0.0923552   0.96631     0.340114   0.886321   0.831194
- 28     0.0265653   0.779093    0.318222    0.183067   0.569855   0.282703
- 29     0.218844    0.450851    0.76909     0.972067   0.167618   0.987735
- 30     0.927241    0.882252    0.168953    0.250943   0.548909   0.833945

or and interval of indices using the syntax =a:b or (a:b)

julia
ras[Ti(1:10)]
╭──────────────────────────╮
+  ↓ →  25         26          27          28          29         30
+ 25     0.265376   0.0162678   0.0632695   0.0107138   0.842182   0.972543
+ 26     0.863578   0.537349    0.807814    0.210115    0.980035   0.784503
+ 27     0.677411   0.724343    0.901614    0.60098     0.603891   0.817494
+ 28     0.853519   0.0842919   0.993704    0.215861    0.562503   0.398952
+ 29     0.735749   0.302071    0.980193    0.790512    0.760168   0.799606
+ 30     0.343577   0.936132    0.835874    0.0930747   0.865838   0.324826

or and interval of indices using the syntax =a:b or (a:b)

julia
ras[Ti(1:10)]
╭──────────────────────────╮
 │ 6×6×10 Raster{Float64,3} │
 ├──────────────────────────┴───────────────────────────────────────────── dims ┐
   ↓ X  Sampled{Int64} 25:1:30 ForwardOrdered Regular Points,
@@ -63,13 +63,13 @@ import{_ as s,c as a,o as i,a7 as n}from"./chunks/framework.Dv3PRBLL.js";const e
 
 └──────────────────────────────────────────────────────────────────────────────┘
 [:, :, 1]
-  ↓ →  25          26          27          28         29         30
- 25     0.107567    0.331222    0.780556    0.442579   0.306762   0.898168
- 26     0.93739     0.454329    0.0661761   0.436025   0.817717   0.901968
- 27     0.594375    0.0923552   0.96631     0.340114   0.886321   0.831194
- 28     0.0265653   0.779093    0.318222    0.183067   0.569855   0.282703
- 29     0.218844    0.450851    0.76909     0.972067   0.167618   0.987735
- 30     0.927241    0.882252    0.168953    0.250943   0.548909   0.833945

Select by value

julia
ras[Ti=At(DateTime(2001))]
╭───────────────────────╮
+  ↓ →  25         26          27          28          29         30
+ 25     0.265376   0.0162678   0.0632695   0.0107138   0.842182   0.972543
+ 26     0.863578   0.537349    0.807814    0.210115    0.980035   0.784503
+ 27     0.677411   0.724343    0.901614    0.60098     0.603891   0.817494
+ 28     0.853519   0.0842919   0.993704    0.215861    0.562503   0.398952
+ 29     0.735749   0.302071    0.980193    0.790512    0.760168   0.799606
+ 30     0.343577   0.936132    0.835874    0.0930747   0.865838   0.324826

Select by value

julia
ras[Ti=At(DateTime(2001))]
╭───────────────────────╮
 │ 6×6 Raster{Float64,2} │
 ├───────────────────────┴───────────────────────────── dims ┐
   ↓ X Sampled{Int64} 25:1:30 ForwardOrdered Regular Points,
@@ -78,13 +78,13 @@ import{_ as s,c as a,o as i,a7 as n}from"./chunks/framework.Dv3PRBLL.js";const e
   extent: Extent(X = (25, 30), Y = (25, 30))
 
 └───────────────────────────────────────────────────────────┘
-  ↓ →  25          26          27          28         29         30
- 25     0.107567    0.331222    0.780556    0.442579   0.306762   0.898168
- 26     0.93739     0.454329    0.0661761   0.436025   0.817717   0.901968
- 27     0.594375    0.0923552   0.96631     0.340114   0.886321   0.831194
- 28     0.0265653   0.779093    0.318222    0.183067   0.569855   0.282703
- 29     0.218844    0.450851    0.76909     0.972067   0.167618   0.987735
- 30     0.927241    0.882252    0.168953    0.250943   0.548909   0.833945

More options are available, like Near, Contains and Where.

Dimensions

Rasters uses X, Y, and Z dimensions from DimensionalData to represent spatial directions like longitude, latitude and the vertical dimension, and subset data with them. Ti is used for time, and Band represent bands. Other dimensions can have arbitrary names, but will be treated generically. See DimensionalData for more details on how they work.

Lookup Arrays

These specify properties of the index associated with e.g. the X and Y dimension. Rasters.jl defines additional lookup arrays: Projected to handle dimensions with projections, and Mapped where the projection is mapped to another projection like EPSG(4326). Mapped is largely designed to handle NetCDF dimensions, especially with Explicit spans.

Subsetting an object

Regular getindex (e.g. A[1:100, :]) and view work on all objects just as with an Array. view is always lazy, and reads from disk are deferred until getindex is used. DimensionalData.jl Dimensions and Selectors are the other way to subset an object, making use of the objects index to find values at e.g. certain X/Y coordinates. The available selectors are listed here:

SelectorsDescription
At(x)get the index exactly matching the passed in value(s).
Near(x)get the closest index to the passed in value(s).
Where(f::Function)filter the array axis by a function of the dimension index values.
a..b/Between(a, b)get all indices between two values, excluding the high value.
Contains(x)get indices where the value x falls within an interval.

Info

  • Use the .. selector to take a view of madagascar:
julia
using Rasters, RasterDataSources
+  ↓ →  25         26          27          28          29         30
+ 25     0.265376   0.0162678   0.0632695   0.0107138   0.842182   0.972543
+ 26     0.863578   0.537349    0.807814    0.210115    0.980035   0.784503
+ 27     0.677411   0.724343    0.901614    0.60098     0.603891   0.817494
+ 28     0.853519   0.0842919   0.993704    0.215861    0.562503   0.398952
+ 29     0.735749   0.302071    0.980193    0.790512    0.760168   0.799606
+ 30     0.343577   0.936132    0.835874    0.0930747   0.865838   0.324826

More options are available, like Near, Contains and Where.

Dimensions

Rasters uses X, Y, and Z dimensions from DimensionalData to represent spatial directions like longitude, latitude and the vertical dimension, and subset data with them. Ti is used for time, and Band represent bands. Other dimensions can have arbitrary names, but will be treated generically. See DimensionalData for more details on how they work.

Lookup Arrays

These specify properties of the index associated with e.g. the X and Y dimension. Rasters.jl defines additional lookup arrays: Projected to handle dimensions with projections, and Mapped where the projection is mapped to another projection like EPSG(4326). Mapped is largely designed to handle NetCDF dimensions, especially with Explicit spans.

Subsetting an object

Regular getindex (e.g. A[1:100, :]) and view work on all objects just as with an Array. view is always lazy, and reads from disk are deferred until getindex is used. DimensionalData.jl Dimensions and Selectors are the other way to subset an object, making use of the objects index to find values at e.g. certain X/Y coordinates. The available selectors are listed here:

SelectorsDescription
At(x)get the index exactly matching the passed in value(s).
Near(x)get the closest index to the passed in value(s).
Where(f::Function)filter the array axis by a function of the dimension index values.
a..b/Between(a, b)get all indices between two values, excluding the high value.
Contains(x)get indices where the value x falls within an interval.

Info

  • Use the .. selector to take a view of madagascar:
julia
using Rasters, RasterDataSources
 const RS = Rasters
 using CairoMakie
 CairoMakie.activate!()
diff --git a/dev/assets/get_started.md.tIGilf1H.lean.js b/dev/assets/get_started.md.SnpE7mus.lean.js
similarity index 85%
rename from dev/assets/get_started.md.tIGilf1H.lean.js
rename to dev/assets/get_started.md.SnpE7mus.lean.js
index ab45d7af..806ba743 100644
--- a/dev/assets/get_started.md.tIGilf1H.lean.js
+++ b/dev/assets/get_started.md.SnpE7mus.lean.js
@@ -1 +1 @@
-import{_ as s,c as a,o as i,a7 as n}from"./chunks/framework.Dv3PRBLL.js";const e="/Rasters.jl/dev/assets/jyqmsma.DojgcnZi.png",y=JSON.parse('{"title":"Quick start","description":"","frontmatter":{},"headers":[],"relativePath":"get_started.md","filePath":"get_started.md","lastUpdated":null}'),t={name:"get_started.md"},p=n("",33),l=[p];function h(d,k,r,o,c,g){return i(),a("div",null,l)}const u=s(t,[["render",h]]);export{y as __pageData,u as default};
+import{_ as s,c as a,o as i,a7 as n}from"./chunks/framework.Dv3PRBLL.js";const e="/Rasters.jl/dev/assets/rbyrlav.DojgcnZi.png",y=JSON.parse('{"title":"Quick start","description":"","frontmatter":{},"headers":[],"relativePath":"get_started.md","filePath":"get_started.md","lastUpdated":null}'),t={name:"get_started.md"},p=n("",33),l=[p];function h(d,k,r,o,c,g){return i(),a("div",null,l)}const u=s(t,[["render",h]]);export{y as __pageData,u as default};
diff --git a/dev/assets/vdicges.azRNImXK.png b/dev/assets/lgboava.azRNImXK.png
similarity index 100%
rename from dev/assets/vdicges.azRNImXK.png
rename to dev/assets/lgboava.azRNImXK.png
diff --git a/dev/assets/lzxrbbb.ChsmyNee.png b/dev/assets/lzxrbbb.ChsmyNee.png
new file mode 100644
index 00000000..1f25a4dd
Binary files /dev/null and b/dev/assets/lzxrbbb.ChsmyNee.png differ
diff --git a/dev/assets/methods.md.BcuNAffj.js b/dev/assets/methods.md.BcuNAffj.js
new file mode 100644
index 00000000..8d663293
--- /dev/null
+++ b/dev/assets/methods.md.BcuNAffj.js
@@ -0,0 +1 @@
+import{_ as t,c as e,o as a,a7 as s}from"./chunks/framework.Dv3PRBLL.js";const y=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"methods.md","filePath":"methods.md","lastUpdated":null}'),o={name:"methods.md"},r=s('

Methods that change the resolution or extent of an object

Click through to the function documentation for more in-depth descriptions and examples.

MethodsDescription
aggregateaggregate data by the same or different amounts for each axis.
disaggregatesimilarly disaggregate data.
mosaicjoin rasters covering different extents into a single array or file.
cropshrink objects to specific dimension sizes or the extent of another object.
extendextend objects to specific dimension sizes or the extent of another object.
trimtrims areas of missing values for arrays and across stack layers.
resampleresample data to a different size and projection, or snap to another object.
warpuse gdalwarp on any object, e.g. a multidimensional NetCDF stack.

Methods that change an objects values

Info

Note that most regular Julia methods, such as replace, work as for a standard Array. These additional methods are commonly required in GIS applications.

MethodsDescription
classifyclassify values into categories.
maskmask an object by a polygon or Raster along X/Y, or other dimensions.
replace_missingreplace all missing values in an object and update missingval.

Point, polygon and table operation

MethodsDescription
rasterizerasterize points and geometries.
extractextract values from points or geometries.
zonalcalculate zonal statistics for an object masked by geometries.

Methods to load, write and modify data sources

MethodsDescription
modifyreplace the data in objects. Useful to e.g. move objects to/from a GPU.
readread data to memory if it is on disk.
read!read data to predefined memory.
openopen the underlying data for manually reading or writing.
writewrite objects to file.
',10),d=[r];function l(i,n,c,h,f,g){return a(),e("div",null,d)}const b=t(o,[["render",l]]);export{y as __pageData,b as default}; diff --git a/dev/assets/methods.md.CuOjAH5q.lean.js b/dev/assets/methods.md.BcuNAffj.lean.js similarity index 100% rename from dev/assets/methods.md.CuOjAH5q.lean.js rename to dev/assets/methods.md.BcuNAffj.lean.js diff --git a/dev/assets/methods.md.CuOjAH5q.js b/dev/assets/methods.md.CuOjAH5q.js deleted file mode 100644 index 1f6f503b..00000000 --- a/dev/assets/methods.md.CuOjAH5q.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as t,c as e,o as a,a7 as s}from"./chunks/framework.Dv3PRBLL.js";const y=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"methods.md","filePath":"methods.md","lastUpdated":null}'),o={name:"methods.md"},r=s('

Methods that change the resolution or extent of an object

Click through to the function documentation for more in-depth descriptions and examples.

MethodsDescription
aggregateaggregate data by the same or different amounts for each axis.
disaggregatesimilarly disaggregate data.
mosaicjoin rasters covering different extents into a single array or file.
cropshrink objects to specific dimension sizes or the extent of another object.
extendextend objects to specific dimension sizes or the extent of another object.
trimtrims areas of missing values for arrays and across stack layers.
resampleresample data to a different size and projection, or snap to another object.
warpuse gdalwarp on any object, e.g. a multidimensional NetCDF stack.

Methods that change an objects values

Info

Note that most regular Julia methods, such as replace, work as for a standard Array. These additional methods are commonly required in GIS applications.

MethodsDescription
classifyclassify values into categories.
maskmask an object by a polygon or Raster along X/Y, or other dimensions.
replace_missingreplace all missing values in an object and update missingval.

Point, polygon and table operation

MethodsDescription
rasterizerasterize points and geometries.
extractextract values from points or geometries.
zonalcalculate zonal statistics for an object masked by geometries.

Methods to load, write and modify data sources

MethodsDescription
modifyreplace the data in objects. Useful to e.g. move objects to/from a GPU.
readread data to memory if it is on disk.
read!read data to predefined memory.
openopen the underlying data for manually reading or writing.
writewrite objects to file.
',10),d=[r];function l(i,n,c,h,f,g){return a(),e("div",null,d)}const b=t(o,[["render",l]]);export{y as __pageData,b as default}; diff --git a/dev/assets/ixheexi.DfdaCHYv.png b/dev/assets/nsailbt.DfdaCHYv.png similarity index 100% rename from dev/assets/ixheexi.DfdaCHYv.png rename to dev/assets/nsailbt.DfdaCHYv.png diff --git a/dev/assets/nsdrogc.BoCG39gX.png b/dev/assets/nsdrogc.BoCG39gX.png deleted file mode 100644 index 18787eee..00000000 Binary files a/dev/assets/nsdrogc.BoCG39gX.png and /dev/null differ diff --git a/dev/assets/nz_crop_example.CeBIxUDy.png b/dev/assets/nz_crop_example.CeBIxUDy.png new file mode 100644 index 00000000..41a0304f Binary files /dev/null and b/dev/assets/nz_crop_example.CeBIxUDy.png differ diff --git a/dev/assets/ggqjdya.UbH0TtlO.png b/dev/assets/oqfircb.UbH0TtlO.png similarity index 100% rename from dev/assets/ggqjdya.UbH0TtlO.png rename to dev/assets/oqfircb.UbH0TtlO.png diff --git a/dev/assets/plot_makie.md.CEzx0hzo.js b/dev/assets/plot_makie.md.fgsSx48-.js similarity index 99% rename from dev/assets/plot_makie.md.CEzx0hzo.js rename to dev/assets/plot_makie.md.fgsSx48-.js index 77d18a2e..d1a9eb08 100644 --- a/dev/assets/plot_makie.md.CEzx0hzo.js +++ b/dev/assets/plot_makie.md.fgsSx48-.js @@ -1,4 +1,4 @@ -import{_ as s,c as i,o as a,a7 as t}from"./chunks/framework.Dv3PRBLL.js";const n="/Rasters.jl/dev/assets/vdicges.azRNImXK.png",e="/Rasters.jl/dev/assets/bvnmkgq.CpT1hxqD.png",l="/Rasters.jl/dev/assets/ixypvxn.BA5JQTEx.png",h="/Rasters.jl/dev/assets/ixheexi.DfdaCHYv.png",p="/Rasters.jl/dev/assets/aus_trim.BmJU99Z6.png",m=JSON.parse('{"title":"reset theme","description":"","frontmatter":{},"headers":[],"relativePath":"plot_makie.md","filePath":"plot_makie.md","lastUpdated":null}'),k={name:"plot_makie.md"},r=t(`

Plotting in Makie

Plotting in Makie works somewhat differently than Plots, since the recipe system is different. You can pass a 2-D raster to any surface-like function (heatmap, contour, contourf, or even surface for a 3D plot) with ease.

2-D rasters in Makie

julia
using CairoMakie, Makie
+import{_ as s,c as i,o as a,a7 as t}from"./chunks/framework.Dv3PRBLL.js";const n="/Rasters.jl/dev/assets/lgboava.azRNImXK.png",e="/Rasters.jl/dev/assets/qyhxgbq.CpT1hxqD.png",l="/Rasters.jl/dev/assets/qtqnzew.BA5JQTEx.png",h="/Rasters.jl/dev/assets/nsailbt.DfdaCHYv.png",p="/Rasters.jl/dev/assets/aus_trim.BmJU99Z6.png",m=JSON.parse('{"title":"reset theme","description":"","frontmatter":{},"headers":[],"relativePath":"plot_makie.md","filePath":"plot_makie.md","lastUpdated":null}'),k={name:"plot_makie.md"},r=t(`

Plotting in Makie

Plotting in Makie works somewhat differently than Plots, since the recipe system is different. You can pass a 2-D raster to any surface-like function (heatmap, contour, contourf, or even surface for a 3D plot) with ease.

2-D rasters in Makie

julia
using CairoMakie, Makie
 using Rasters, RasterDataSources, ArchGDAL
 A = Raster(WorldClim{BioClim}, 5) # this is a 3D raster, so is not accepted.
╭──────────────────────────────────╮
 │ 2160×1080 Raster{Float32,2} bio5 │
@@ -35,7 +35,7 @@ import{_ as s,c as i,o as a,a7 as t}from"./chunks/framework.Dv3PRBLL.js";const n
 ) 
 record(fig, "rplot.mp4", 1:12; framerate = 3) do i
     stack_obs[] = RasterStack(WorldClim{Climate}; month = i)
-end

<!– <video src="./rplot.mp4" controls="controls" autoplay="autoplay"></video> –>

julia
Makie.set_theme!() # reset theme
# Rasters.rplotFunction.
julia
Rasters.rplot([position::GridPosition], raster; kw...)

raster may be a Raster (of 2 or 3 dimensions) or a RasterStack whose underlying rasters are 2 dimensional, or 3-dimensional with a singleton (length-1) third dimension.

Keywords

  • plottype = Makie.Heatmap: The type of plot. Can be any Makie plot type which accepts a Raster; in practice, Heatmap, Contour, Contourf and Surface are the best bets.

  • axistype = Makie.Axis: The type of axis. This can be an Axis, Axis3, LScene, or even a GeoAxis from GeoMakie.jl.

  • X = XDim: The X dimension of the raster.

  • Y = YDim: The Y dimension of the raster.

  • Z = YDim: The Y dimension of the raster.

  • draw_colorbar = true: Whether to draw a colorbar for the axis or not.

  • colorbar_position = Makie.Right(): Indicates which side of the axis the colorbar should be placed on. Can be Makie.Top(), Makie.Bottom(), Makie.Left(), or Makie.Right().

  • colorbar_padding = Makie.automatic: The amount of padding between the colorbar and its axis. If automatic, then this is set to the width of the colorbar.

  • title = Makie.automatic: The titles of each plot. If automatic, these are set to the name of the band.

  • xlabel = Makie.automatic: The x-label for the axis. If automatic, set to the dimension name of the X-dimension of the raster.

  • ylabel = Makie.automatic: The y-label for the axis. If automatic, set to the dimension name of the Y-dimension of the raster.

  • colorbarlabel = "": Usually nothing, but here if you need it. Sets the label on the colorbar.

  • colormap = nothing: The colormap for the heatmap. This can be set to a vector of colormaps (symbols, strings, cgrads) if plotting a 3D raster or RasterStack.

  • colorrange = Makie.automatic: The colormap for the heatmap. This can be set to a vector of (low, high) if plotting a 3D raster or RasterStack.

  • nan_color = :transparent: The color which NaN values should take. Default to transparent.

source


Using vanilla Makie

julia
using Rasters, RasterDataSources

The data

julia
layers = (:evenness, :range, :contrast, :correlation)
+end

<!– <video src="./rplot.mp4" controls="controls" autoplay="autoplay"></video> –>

julia
Makie.set_theme!() # reset theme
# Rasters.rplotFunction.
julia
Rasters.rplot([position::GridPosition], raster; kw...)

raster may be a Raster (of 2 or 3 dimensions) or a RasterStack whose underlying rasters are 2 dimensional, or 3-dimensional with a singleton (length-1) third dimension.

Keywords

  • plottype = Makie.Heatmap: The type of plot. Can be any Makie plot type which accepts a Raster; in practice, Heatmap, Contour, Contourf and Surface are the best bets.

  • axistype = Makie.Axis: The type of axis. This can be an Axis, Axis3, LScene, or even a GeoAxis from GeoMakie.jl.

  • X = XDim: The X dimension of the raster.

  • Y = YDim: The Y dimension of the raster.

  • Z = YDim: The Y dimension of the raster.

  • draw_colorbar = true: Whether to draw a colorbar for the axis or not.

  • colorbar_position = Makie.Right(): Indicates which side of the axis the colorbar should be placed on. Can be Makie.Top(), Makie.Bottom(), Makie.Left(), or Makie.Right().

  • colorbar_padding = Makie.automatic: The amount of padding between the colorbar and its axis. If automatic, then this is set to the width of the colorbar.

  • title = Makie.automatic: The titles of each plot. If automatic, these are set to the name of the band.

  • xlabel = Makie.automatic: The x-label for the axis. If automatic, set to the dimension name of the X-dimension of the raster.

  • ylabel = Makie.automatic: The y-label for the axis. If automatic, set to the dimension name of the Y-dimension of the raster.

  • colorbarlabel = "": Usually nothing, but here if you need it. Sets the label on the colorbar.

  • colormap = nothing: The colormap for the heatmap. This can be set to a vector of colormaps (symbols, strings, cgrads) if plotting a 3D raster or RasterStack.

  • colorrange = Makie.automatic: The colormap for the heatmap. This can be set to a vector of (low, high) if plotting a 3D raster or RasterStack.

  • nan_color = :transparent: The color which NaN values should take. Default to transparent.

source


Using vanilla Makie

julia
using Rasters, RasterDataSources

The data

julia
layers = (:evenness, :range, :contrast, :correlation)
 st = RasterStack(EarthEnv{HabitatHeterogeneity}, layers)
 ausbounds = X(100 .. 160), Y(-50 .. -10) # Roughly cut out australia
 aus = st[ausbounds...] |> Rasters.trim
╭─────────────────────╮
diff --git a/dev/assets/plot_makie.md.CEzx0hzo.lean.js b/dev/assets/plot_makie.md.fgsSx48-.lean.js
similarity index 70%
rename from dev/assets/plot_makie.md.CEzx0hzo.lean.js
rename to dev/assets/plot_makie.md.fgsSx48-.lean.js
index 7a43e339..9f654c85 100644
--- a/dev/assets/plot_makie.md.CEzx0hzo.lean.js
+++ b/dev/assets/plot_makie.md.fgsSx48-.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a7 as t}from"./chunks/framework.Dv3PRBLL.js";const n="/Rasters.jl/dev/assets/vdicges.azRNImXK.png",e="/Rasters.jl/dev/assets/bvnmkgq.CpT1hxqD.png",l="/Rasters.jl/dev/assets/ixypvxn.BA5JQTEx.png",h="/Rasters.jl/dev/assets/ixheexi.DfdaCHYv.png",p="/Rasters.jl/dev/assets/aus_trim.BmJU99Z6.png",m=JSON.parse('{"title":"reset theme","description":"","frontmatter":{},"headers":[],"relativePath":"plot_makie.md","filePath":"plot_makie.md","lastUpdated":null}'),k={name:"plot_makie.md"},r=t("",38),d=[r];function o(E,g,c,y,u,F){return a(),i("div",null,d)}const b=s(k,[["render",o]]);export{m as __pageData,b as default};
+import{_ as s,c as i,o as a,a7 as t}from"./chunks/framework.Dv3PRBLL.js";const n="/Rasters.jl/dev/assets/lgboava.azRNImXK.png",e="/Rasters.jl/dev/assets/qyhxgbq.CpT1hxqD.png",l="/Rasters.jl/dev/assets/qtqnzew.BA5JQTEx.png",h="/Rasters.jl/dev/assets/nsailbt.DfdaCHYv.png",p="/Rasters.jl/dev/assets/aus_trim.BmJU99Z6.png",m=JSON.parse('{"title":"reset theme","description":"","frontmatter":{},"headers":[],"relativePath":"plot_makie.md","filePath":"plot_makie.md","lastUpdated":null}'),k={name:"plot_makie.md"},r=t("",38),d=[r];function o(E,g,c,y,u,F){return a(),i("div",null,d)}const b=s(k,[["render",o]]);export{m as __pageData,b as default};
diff --git a/dev/assets/plotting.md.cXR0_aKE.js b/dev/assets/plotting.md.rg9PaVkL.js
similarity index 99%
rename from dev/assets/plotting.md.cXR0_aKE.js
rename to dev/assets/plotting.md.rg9PaVkL.js
index fdb022f0..3d8a672a 100644
--- a/dev/assets/plotting.md.cXR0_aKE.js
+++ b/dev/assets/plotting.md.rg9PaVkL.js
@@ -1,4 +1,4 @@
-import{_ as s,c as a,o as i,a7 as n}from"./chunks/framework.Dv3PRBLL.js";const e="/Rasters.jl/dev/assets/aeouwcz.BAWTouNa.png",t="/Rasters.jl/dev/assets/fixlgim.BjE2G97N.png",p="/Rasters.jl/dev/assets/obszfqq.2YhfOv1i.png",l="/Rasters.jl/dev/assets/ggqjdya.UbH0TtlO.png",h="/Rasters.jl/dev/assets/jvmppob.BsE3Kr89.png",o="/Rasters.jl/dev/assets/rfxpqtm.CVxd1wxn.png",v=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"plotting.md","filePath":"plotting.md","lastUpdated":null}'),d={name:"plotting.md"},r=n(`

Plots, simple

Plots.jl and Makie.jl are fully supported by Rasters.jl, with recipes for plotting Raster and RasterStack provided. plot will plot a heatmap with axes matching dimension values. If mappedcrs is used, converted values will be shown on axes instead of the underlying crs values. contourf will similarly plot a filled contour plot.

Pixel resolution is limited to allow loading very large files quickly. max_res specifies the maximum pixel resolution to show on the longest axis of the array. It can be set manually to change the resolution (e.g. for large or high-quality plots):

julia
using Rasters, RasterDataSources, ArchGDAL, Plots
+import{_ as s,c as a,o as i,a7 as n}from"./chunks/framework.Dv3PRBLL.js";const e="/Rasters.jl/dev/assets/fcectct.BAWTouNa.png",t="/Rasters.jl/dev/assets/tzdmvxi.BjE2G97N.png",p="/Rasters.jl/dev/assets/bbemcbe.2YhfOv1i.png",l="/Rasters.jl/dev/assets/oqfircb.UbH0TtlO.png",h="/Rasters.jl/dev/assets/usyphqc.BsE3Kr89.png",o="/Rasters.jl/dev/assets/ewdyact.CVxd1wxn.png",v=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"plotting.md","filePath":"plotting.md","lastUpdated":null}'),d={name:"plotting.md"},r=n(`

Plots, simple

Plots.jl and Makie.jl are fully supported by Rasters.jl, with recipes for plotting Raster and RasterStack provided. plot will plot a heatmap with axes matching dimension values. If mappedcrs is used, converted values will be shown on axes instead of the underlying crs values. contourf will similarly plot a filled contour plot.

Pixel resolution is limited to allow loading very large files quickly. max_res specifies the maximum pixel resolution to show on the longest axis of the array. It can be set manually to change the resolution (e.g. for large or high-quality plots):

julia
using Rasters, RasterDataSources, ArchGDAL, Plots
 A = Raster(WorldClim{BioClim}, 5)
 plot(A; max_res=3000)

For Makie, plot functions in a similar way. plot will only accept two-dimensional rasters. You can invoke contour, contourf, heatmap, surface or any Makie plotting function which supports surface-like data on a 2D raster.

To obtain tiled plots for 3D rasters and RasterStacks, use the function Rasters.rplot([gridposition], raster; kw_args...). This is an unexported function, since we're not sure how the API will change going forward.

Makie, simple

julia
using CairoMakie
 CairoMakie.activate!(px_per_unit = 2)
diff --git a/dev/assets/plotting.md.cXR0_aKE.lean.js b/dev/assets/plotting.md.rg9PaVkL.lean.js
similarity index 52%
rename from dev/assets/plotting.md.cXR0_aKE.lean.js
rename to dev/assets/plotting.md.rg9PaVkL.lean.js
index 49b47aa2..aa3443b6 100644
--- a/dev/assets/plotting.md.cXR0_aKE.lean.js
+++ b/dev/assets/plotting.md.rg9PaVkL.lean.js
@@ -1 +1 @@
-import{_ as s,c as a,o as i,a7 as n}from"./chunks/framework.Dv3PRBLL.js";const e="/Rasters.jl/dev/assets/aeouwcz.BAWTouNa.png",t="/Rasters.jl/dev/assets/fixlgim.BjE2G97N.png",p="/Rasters.jl/dev/assets/obszfqq.2YhfOv1i.png",l="/Rasters.jl/dev/assets/ggqjdya.UbH0TtlO.png",h="/Rasters.jl/dev/assets/jvmppob.BsE3Kr89.png",o="/Rasters.jl/dev/assets/rfxpqtm.CVxd1wxn.png",v=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"plotting.md","filePath":"plotting.md","lastUpdated":null}'),d={name:"plotting.md"},r=n("",68),k=[r];function c(g,u,E,y,m,b){return i(),a("div",null,k)}const C=s(d,[["render",c]]);export{v as __pageData,C as default};
+import{_ as s,c as a,o as i,a7 as n}from"./chunks/framework.Dv3PRBLL.js";const e="/Rasters.jl/dev/assets/fcectct.BAWTouNa.png",t="/Rasters.jl/dev/assets/tzdmvxi.BjE2G97N.png",p="/Rasters.jl/dev/assets/bbemcbe.2YhfOv1i.png",l="/Rasters.jl/dev/assets/oqfircb.UbH0TtlO.png",h="/Rasters.jl/dev/assets/usyphqc.BsE3Kr89.png",o="/Rasters.jl/dev/assets/ewdyact.CVxd1wxn.png",v=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"plotting.md","filePath":"plotting.md","lastUpdated":null}'),d={name:"plotting.md"},r=n("",68),k=[r];function c(g,u,E,y,m,b){return i(),a("div",null,k)}const C=s(d,[["render",c]]);export{v as __pageData,C as default};
diff --git a/dev/assets/ixypvxn.BA5JQTEx.png b/dev/assets/qtqnzew.BA5JQTEx.png
similarity index 100%
rename from dev/assets/ixypvxn.BA5JQTEx.png
rename to dev/assets/qtqnzew.BA5JQTEx.png
diff --git a/dev/assets/bvnmkgq.CpT1hxqD.png b/dev/assets/qyhxgbq.CpT1hxqD.png
similarity index 100%
rename from dev/assets/bvnmkgq.CpT1hxqD.png
rename to dev/assets/qyhxgbq.CpT1hxqD.png
diff --git a/dev/assets/jyqmsma.DojgcnZi.png b/dev/assets/rbyrlav.DojgcnZi.png
similarity index 100%
rename from dev/assets/jyqmsma.DojgcnZi.png
rename to dev/assets/rbyrlav.DojgcnZi.png
diff --git a/dev/assets/fixlgim.BjE2G97N.png b/dev/assets/tzdmvxi.BjE2G97N.png
similarity index 100%
rename from dev/assets/fixlgim.BjE2G97N.png
rename to dev/assets/tzdmvxi.BjE2G97N.png
diff --git a/dev/assets/jvmppob.BsE3Kr89.png b/dev/assets/usyphqc.BsE3Kr89.png
similarity index 100%
rename from dev/assets/jvmppob.BsE3Kr89.png
rename to dev/assets/usyphqc.BsE3Kr89.png
diff --git a/dev/data_sources.html b/dev/data_sources.html
index 824ea240..70dffd86 100644
--- a/dev/data_sources.html
+++ b/dev/data_sources.html
@@ -8,9 +8,9 @@
     
     
     
-    
+    
     
-    
+    
     
     
     
@@ -22,7 +22,7 @@
 using RasterDataSources
 A = Raster(WorldClim{Climate}, :tavg; month=June)
 Makie.plot(A)

See the docs for Raster, RasterStack and RasterSeries, and the docs for RasterDataSources.getraster for syntax to specify various data sources.

- + \ No newline at end of file diff --git a/dev/gbif_wflow.html b/dev/gbif_wflow.html index a4264c8b..2e22d6d1 100644 --- a/dev/gbif_wflow.html +++ b/dev/gbif_wflow.html @@ -8,11 +8,11 @@ - + - + - + @@ -24,21 +24,21 @@ │ geometry │ year │ month │ day │ kingdom │ phylum ⋯ │ Tuple{Float64, Float64}? │ Int64? │ Int64? │ Int64? │ String? │ String? ⋯ ├──────────────────────────┼─────────┼─────────┼─────────┼──────────┼─────────── +│ missing │ missing │ missing │ missing │ Animalia │ Chordata ⋯ │ missing │ 2021 │ 1 │ 6 │ Animalia │ Chordata ⋯ │ (148.333, -36.4333) │ 2011 │ 11 │ 21 │ Animalia │ Chordata ⋯ │ (148.396, -36.3818) │ 2016 │ 11 │ 15 │ Animalia │ Chordata ⋯ │ missing │ missing │ missing │ missing │ Animalia │ Chordata ⋯ -│ missing │ missing │ missing │ missing │ Animalia │ Chordata ⋯ │ (148.391, -36.3036) │ 2015 │ 11 │ 15 │ Animalia │ Chordata ⋯ │ missing │ missing │ missing │ missing │ Animalia │ Chordata ⋯ │ missing │ missing │ missing │ missing │ Animalia │ Chordata ⋯ -│ missing │ missing │ missing │ missing │ Animalia │ Chordata ⋯ │ (147.096, -36.9357) │ 2020 │ 2 │ 10 │ Animalia │ Chordata ⋯ │ (148.329, -36.4317) │ 2016 │ 1 │ 3 │ Animalia │ Chordata ⋯ │ missing │ missing │ missing │ missing │ Animalia │ Chordata ⋯ │ missing │ missing │ missing │ missing │ Animalia │ Chordata ⋯ │ (148.347, -36.5047) │ 2012 │ 11 │ 22 │ Animalia │ Chordata ⋯ │ (148.236, -36.5249) │ 2012 │ 11 │ 23 │ Animalia │ Chordata ⋯ +│ missing │ missing │ missing │ missing │ Animalia │ Chordata ⋯ │ ⋮ │ ⋮ │ ⋮ │ ⋮ │ ⋮ │ ⋮ ⋱ └──────────────────────────┴─────────┴─────────┴─────────┴──────────┴─────────── 78 columns and 285 rows omitted

Extract coordinates

Extract the longitude/latitude value to a Vector of points (a Tuple counts as a (x, y) point in GeoInterface.jl):

julia
coords = [(r.decimalLongitude, r.decimalLatitude) for r in records if !ismissing(r.decimalLatitude)]
256-element Vector{Tuple{Float64, Float64}}:
@@ -80,12 +80,12 @@
 p = plot(se_aus);
 kw = (legend=:none, opacity=0.5, markershape=:cross, markercolor=:black)
 foreach(i -> scatter!(p, coords; subplot=i, kw...), 1:4)
-p

Then extract predictor variables and write to CSV.

julia
using CSV
+p

Then extract predictor variables and write to CSV.

julia
using CSV
 predictors = collect(extract(se_aus, coords))
 CSV.write("burramys_parvus_predictors.csv", predictors)
"burramys_parvus_predictors.csv"

Or convert them to a DataFrame:

julia
using DataFrames
 df = DataFrame(predictors)
 df[1:5,:]
- + \ No newline at end of file diff --git a/dev/get_started.html b/dev/get_started.html index 87df33a9..cc807377 100644 --- a/dev/get_started.html +++ b/dev/get_started.html @@ -8,11 +8,11 @@ - + - + - + @@ -34,13 +34,13 @@ └──────────────────────────────────────────────────────────────────────────────┘ [:, :, 1] - ↓ → 25 26 27 28 29 30 - 25 0.107567 0.331222 0.780556 0.442579 0.306762 0.898168 - 26 0.93739 0.454329 0.0661761 0.436025 0.817717 0.901968 - 27 0.594375 0.0923552 0.96631 0.340114 0.886321 0.831194 - 28 0.0265653 0.779093 0.318222 0.183067 0.569855 0.282703 - 29 0.218844 0.450851 0.76909 0.972067 0.167618 0.987735 - 30 0.927241 0.882252 0.168953 0.250943 0.548909 0.833945

Getting the lookup array from dimensions

julia
lon = lookup(ras, X) # if X is longitude
+  ↓ →  25         26          27          28          29         30
+ 25     0.265376   0.0162678   0.0632695   0.0107138   0.842182   0.972543
+ 26     0.863578   0.537349    0.807814    0.210115    0.980035   0.784503
+ 27     0.677411   0.724343    0.901614    0.60098     0.603891   0.817494
+ 28     0.853519   0.0842919   0.993704    0.215861    0.562503   0.398952
+ 29     0.735749   0.302071    0.980193    0.790512    0.760168   0.799606
+ 30     0.343577   0.936132    0.835874    0.0930747   0.865838   0.324826

Getting the lookup array from dimensions

julia
lon = lookup(ras, X) # if X is longitude
 lat = lookup(ras, Y) # if Y is latitude
Sampled{Int64} ForwardOrdered Regular Points
 wrapping: 25:1:30

Select by index

Selecting a time slice by index is done via

julia
ras[Ti(1)]
╭───────────────────────╮
 │ 6×6 Raster{Float64,2} │
@@ -51,13 +51,13 @@
   extent: Extent(X = (25, 30), Y = (25, 30))
 
 └───────────────────────────────────────────────────────────┘
-  ↓ →  25          26          27          28         29         30
- 25     0.107567    0.331222    0.780556    0.442579   0.306762   0.898168
- 26     0.93739     0.454329    0.0661761   0.436025   0.817717   0.901968
- 27     0.594375    0.0923552   0.96631     0.340114   0.886321   0.831194
- 28     0.0265653   0.779093    0.318222    0.183067   0.569855   0.282703
- 29     0.218844    0.450851    0.76909     0.972067   0.167618   0.987735
- 30     0.927241    0.882252    0.168953    0.250943   0.548909   0.833945

also

julia
ras[Ti=1]
╭───────────────────────╮
+  ↓ →  25         26          27          28          29         30
+ 25     0.265376   0.0162678   0.0632695   0.0107138   0.842182   0.972543
+ 26     0.863578   0.537349    0.807814    0.210115    0.980035   0.784503
+ 27     0.677411   0.724343    0.901614    0.60098     0.603891   0.817494
+ 28     0.853519   0.0842919   0.993704    0.215861    0.562503   0.398952
+ 29     0.735749   0.302071    0.980193    0.790512    0.760168   0.799606
+ 30     0.343577   0.936132    0.835874    0.0930747   0.865838   0.324826

also

julia
ras[Ti=1]
╭───────────────────────╮
 │ 6×6 Raster{Float64,2} │
 ├───────────────────────┴───────────────────────────── dims ┐
   ↓ X Sampled{Int64} 25:1:30 ForwardOrdered Regular Points,
@@ -66,13 +66,13 @@
   extent: Extent(X = (25, 30), Y = (25, 30))
 
 └───────────────────────────────────────────────────────────┘
-  ↓ →  25          26          27          28         29         30
- 25     0.107567    0.331222    0.780556    0.442579   0.306762   0.898168
- 26     0.93739     0.454329    0.0661761   0.436025   0.817717   0.901968
- 27     0.594375    0.0923552   0.96631     0.340114   0.886321   0.831194
- 28     0.0265653   0.779093    0.318222    0.183067   0.569855   0.282703
- 29     0.218844    0.450851    0.76909     0.972067   0.167618   0.987735
- 30     0.927241    0.882252    0.168953    0.250943   0.548909   0.833945

or and interval of indices using the syntax =a:b or (a:b)

julia
ras[Ti(1:10)]
╭──────────────────────────╮
+  ↓ →  25         26          27          28          29         30
+ 25     0.265376   0.0162678   0.0632695   0.0107138   0.842182   0.972543
+ 26     0.863578   0.537349    0.807814    0.210115    0.980035   0.784503
+ 27     0.677411   0.724343    0.901614    0.60098     0.603891   0.817494
+ 28     0.853519   0.0842919   0.993704    0.215861    0.562503   0.398952
+ 29     0.735749   0.302071    0.980193    0.790512    0.760168   0.799606
+ 30     0.343577   0.936132    0.835874    0.0930747   0.865838   0.324826

or and interval of indices using the syntax =a:b or (a:b)

julia
ras[Ti(1:10)]
╭──────────────────────────╮
 │ 6×6×10 Raster{Float64,3} │
 ├──────────────────────────┴───────────────────────────────────────────── dims ┐
   ↓ X  Sampled{Int64} 25:1:30 ForwardOrdered Regular Points,
@@ -83,13 +83,13 @@
 
 └──────────────────────────────────────────────────────────────────────────────┘
 [:, :, 1]
-  ↓ →  25          26          27          28         29         30
- 25     0.107567    0.331222    0.780556    0.442579   0.306762   0.898168
- 26     0.93739     0.454329    0.0661761   0.436025   0.817717   0.901968
- 27     0.594375    0.0923552   0.96631     0.340114   0.886321   0.831194
- 28     0.0265653   0.779093    0.318222    0.183067   0.569855   0.282703
- 29     0.218844    0.450851    0.76909     0.972067   0.167618   0.987735
- 30     0.927241    0.882252    0.168953    0.250943   0.548909   0.833945

Select by value

julia
ras[Ti=At(DateTime(2001))]
╭───────────────────────╮
+  ↓ →  25         26          27          28          29         30
+ 25     0.265376   0.0162678   0.0632695   0.0107138   0.842182   0.972543
+ 26     0.863578   0.537349    0.807814    0.210115    0.980035   0.784503
+ 27     0.677411   0.724343    0.901614    0.60098     0.603891   0.817494
+ 28     0.853519   0.0842919   0.993704    0.215861    0.562503   0.398952
+ 29     0.735749   0.302071    0.980193    0.790512    0.760168   0.799606
+ 30     0.343577   0.936132    0.835874    0.0930747   0.865838   0.324826

Select by value

julia
ras[Ti=At(DateTime(2001))]
╭───────────────────────╮
 │ 6×6 Raster{Float64,2} │
 ├───────────────────────┴───────────────────────────── dims ┐
   ↓ X Sampled{Int64} 25:1:30 ForwardOrdered Regular Points,
@@ -98,13 +98,13 @@
   extent: Extent(X = (25, 30), Y = (25, 30))
 
 └───────────────────────────────────────────────────────────┘
-  ↓ →  25          26          27          28         29         30
- 25     0.107567    0.331222    0.780556    0.442579   0.306762   0.898168
- 26     0.93739     0.454329    0.0661761   0.436025   0.817717   0.901968
- 27     0.594375    0.0923552   0.96631     0.340114   0.886321   0.831194
- 28     0.0265653   0.779093    0.318222    0.183067   0.569855   0.282703
- 29     0.218844    0.450851    0.76909     0.972067   0.167618   0.987735
- 30     0.927241    0.882252    0.168953    0.250943   0.548909   0.833945

More options are available, like Near, Contains and Where.

Dimensions

Rasters uses X, Y, and Z dimensions from DimensionalData to represent spatial directions like longitude, latitude and the vertical dimension, and subset data with them. Ti is used for time, and Band represent bands. Other dimensions can have arbitrary names, but will be treated generically. See DimensionalData for more details on how they work.

Lookup Arrays

These specify properties of the index associated with e.g. the X and Y dimension. Rasters.jl defines additional lookup arrays: Projected to handle dimensions with projections, and Mapped where the projection is mapped to another projection like EPSG(4326). Mapped is largely designed to handle NetCDF dimensions, especially with Explicit spans.

Subsetting an object

Regular getindex (e.g. A[1:100, :]) and view work on all objects just as with an Array. view is always lazy, and reads from disk are deferred until getindex is used. DimensionalData.jl Dimensions and Selectors are the other way to subset an object, making use of the objects index to find values at e.g. certain X/Y coordinates. The available selectors are listed here:

SelectorsDescription
At(x)get the index exactly matching the passed in value(s).
Near(x)get the closest index to the passed in value(s).
Where(f::Function)filter the array axis by a function of the dimension index values.
a..b/Between(a, b)get all indices between two values, excluding the high value.
Contains(x)get indices where the value x falls within an interval.

Info

  • Use the .. selector to take a view of madagascar:
julia
using Rasters, RasterDataSources
+  ↓ →  25         26          27          28          29         30
+ 25     0.265376   0.0162678   0.0632695   0.0107138   0.842182   0.972543
+ 26     0.863578   0.537349    0.807814    0.210115    0.980035   0.784503
+ 27     0.677411   0.724343    0.901614    0.60098     0.603891   0.817494
+ 28     0.853519   0.0842919   0.993704    0.215861    0.562503   0.398952
+ 29     0.735749   0.302071    0.980193    0.790512    0.760168   0.799606
+ 30     0.343577   0.936132    0.835874    0.0930747   0.865838   0.324826

More options are available, like Near, Contains and Where.

Dimensions

Rasters uses X, Y, and Z dimensions from DimensionalData to represent spatial directions like longitude, latitude and the vertical dimension, and subset data with them. Ti is used for time, and Band represent bands. Other dimensions can have arbitrary names, but will be treated generically. See DimensionalData for more details on how they work.

Lookup Arrays

These specify properties of the index associated with e.g. the X and Y dimension. Rasters.jl defines additional lookup arrays: Projected to handle dimensions with projections, and Mapped where the projection is mapped to another projection like EPSG(4326). Mapped is largely designed to handle NetCDF dimensions, especially with Explicit spans.

Subsetting an object

Regular getindex (e.g. A[1:100, :]) and view work on all objects just as with an Array. view is always lazy, and reads from disk are deferred until getindex is used. DimensionalData.jl Dimensions and Selectors are the other way to subset an object, making use of the objects index to find values at e.g. certain X/Y coordinates. The available selectors are listed here:

SelectorsDescription
At(x)get the index exactly matching the passed in value(s).
Near(x)get the closest index to the passed in value(s).
Where(f::Function)filter the array axis by a function of the dimension index values.
a..b/Between(a, b)get all indices between two values, excluding the high value.
Contains(x)get indices where the value x falls within an interval.

Info

  • Use the .. selector to take a view of madagascar:
julia
using Rasters, RasterDataSources
 const RS = Rasters
 using CairoMakie
 CairoMakie.activate!()
@@ -112,8 +112,8 @@
 A = Raster(WorldClim{BioClim}, 5)
 madagascar = view(A, X(43.25 .. 50.48), Y(-25.61 .. -12.04))
 # Note the space between .. -12
-Makie.plot(madagascar)

- +Makie.plot(madagascar)

+ \ No newline at end of file diff --git a/dev/hashmap.json b/dev/hashmap.json index 70f5b9f7..fd547fea 100644 --- a/dev/hashmap.json +++ b/dev/hashmap.json @@ -1 +1 @@ -{"api.md":"CTP_N2dr","array_operations.md":"H_Z4YZ1K","data_sources.md":"PUhz5gBd","gbif_wflow.md":"DZwnHjST","get_started.md":"tIGilf1H","index.md":"3meiJH8y","methods.md":"CuOjAH5q","plot_makie.md":"CEzx0hzo","plotting.md":"cXR0_aKE"} +{"api.md":"CXk68RKm","array_operations.md":"H_Z4YZ1K","data_sources.md":"PUhz5gBd","gbif_wflow.md":"9HR_27Fc","get_started.md":"SnpE7mus","index.md":"3meiJH8y","methods.md":"BcuNAffj","plot_makie.md":"fgsSx48-","plotting.md":"rg9PaVkL"} diff --git a/dev/index.html b/dev/index.html index e04a0e82..fe43d649 100644 --- a/dev/index.html +++ b/dev/index.html @@ -8,9 +8,9 @@ - + - + @@ -19,7 +19,7 @@
Skip to content

Rasters.jl

Manipulating rasterized spatial data

Rasters

Data-source abstraction

Rasters provides a standardised interface that allows many source data types to be used with identical syntax.

  • Scripts and packages building on Rasters.jl can treat Raster,

RasterStack, and RasterSeries as black boxes.

  • The data could hold GeoTiff or NetCDF files, Arrays in memory or CuArrays on the GPU - they will all behave in the same way.

  • RasterStack can be backed by a Netcdf or HDF5 file, or a NamedTuple of Raster holding .tif files, or all Raster in memory.

  • Users do not have to deal with the specifics of spatial file types.

  • Projected lookups with Cylindrical projections can by indexed using other Cylindrical projections

by setting the mappedcrs keyword on construction. You don't need to know the underlying projection, the conversion is handled automatically. This means lat/lon EPSG(4326) can be used seamlessly if you need that.

Installation

julia
] add Rasters

Packages extensions

Packages extensions and Rasters 0.8 and onwards

On Julia 1.9 we can put additional packages in extensions, so the code only loads when you load a specific package. Rasters.jl was always intended to work like this, and its finally possible. This reduced package using time from many seconds to well under a second.

But, it means you have to manually load packages you need for each backend or additional functionality.

For example, to use the GDAL backend, and download files, you now need to do:

julia
using Rasters, ArchGDAL, RasterDataSources

where previously it was just using Rasters.

Sources and packages needed:

  • :gdal: using ArchGDAL

  • :netcdf: using NCDatasets

  • :grd: built-in.

  • :smap: using HDF5

  • :grib: not yet finished.

Other functionality in extensions:

  • Raster data downloads, like Worldclim{Climate}: using RasterDataSources

  • Makie plots: using Makie

  • Coordinate transformations for gdal rasters: using CoordinateTransformations

Bugs and errors

Bugs, errors and making issues for Rasters.jl

Raster data is complicated and there are many places for subtle or not-so-subtle bugs to creep in.

We need bug reports to reduce how often they occur over time. But also, we need issues that are easy to reproduce or it isn't practically possible to fix them.

Because there are so many raster file types and variations of them, most of the time we need the exact file that caused your problem to know how to fix it, and be sure that we have actually fixed it when we are done. So fixing a Rasters.jl bug nearly always involves downloading some file and running some code that breaks with it (if you can trigger the bug without a file, that's great! but its not always possible).

To make an issue we can fix quickly (or at all) there are three key steps:

  1. Include the file in an accessible place on web without authentication or any other work on our part, so we can just get it and find your bug. You can put it on a file hosting platform (e.g. google drive, drop box, whatever you use) and share the url.

  2. Add a minimum working example to the issue template that first downloads the file, then runs the function that triggers the bug.

  3. Paste the complete stack trace of the error it produces, right to the bottom, into the issue template. Then we can be sure we reproduced the same problem.

Good issues are really appreciated, but they do take just a little extra effort with Rasters.jl because of this need for files.

- + \ No newline at end of file diff --git a/dev/methods.html b/dev/methods.html index f1f4af96..5b493110 100644 --- a/dev/methods.html +++ b/dev/methods.html @@ -8,18 +8,18 @@ - + - + - + -
Skip to content

Methods that change the resolution or extent of an object

Click through to the function documentation for more in-depth descriptions and examples.

MethodsDescription
aggregateaggregate data by the same or different amounts for each axis.
disaggregatesimilarly disaggregate data.
mosaicjoin rasters covering different extents into a single array or file.
cropshrink objects to specific dimension sizes or the extent of another object.
extendextend objects to specific dimension sizes or the extent of another object.
trimtrims areas of missing values for arrays and across stack layers.
resampleresample data to a different size and projection, or snap to another object.
warpuse gdalwarp on any object, e.g. a multidimensional NetCDF stack.

Methods that change an objects values

Info

Note that most regular Julia methods, such as replace, work as for a standard Array. These additional methods are commonly required in GIS applications.

MethodsDescription
classifyclassify values into categories.
maskmask an object by a polygon or Raster along X/Y, or other dimensions.
replace_missingreplace all missing values in an object and update missingval.

Point, polygon and table operation

MethodsDescription
rasterizerasterize points and geometries.
extractextract values from points or geometries.
zonalcalculate zonal statistics for an object masked by geometries.

Methods to load, write and modify data sources

MethodsDescription
modifyreplace the data in objects. Useful to e.g. move objects to/from a GPU.
readread data to memory if it is on disk.
read!read data to predefined memory.
openopen the underlying data for manually reading or writing.
writewrite objects to file.
- +
Skip to content

Methods that change the resolution or extent of an object

Click through to the function documentation for more in-depth descriptions and examples.

MethodsDescription
aggregateaggregate data by the same or different amounts for each axis.
disaggregatesimilarly disaggregate data.
mosaicjoin rasters covering different extents into a single array or file.
cropshrink objects to specific dimension sizes or the extent of another object.
extendextend objects to specific dimension sizes or the extent of another object.
trimtrims areas of missing values for arrays and across stack layers.
resampleresample data to a different size and projection, or snap to another object.
warpuse gdalwarp on any object, e.g. a multidimensional NetCDF stack.

Methods that change an objects values

Info

Note that most regular Julia methods, such as replace, work as for a standard Array. These additional methods are commonly required in GIS applications.

MethodsDescription
classifyclassify values into categories.
maskmask an object by a polygon or Raster along X/Y, or other dimensions.
replace_missingreplace all missing values in an object and update missingval.

Point, polygon and table operation

MethodsDescription
rasterizerasterize points and geometries.
extractextract values from points or geometries.
zonalcalculate zonal statistics for an object masked by geometries.

Methods to load, write and modify data sources

MethodsDescription
modifyreplace the data in objects. Useful to e.g. move objects to/from a GPU.
readread data to memory if it is on disk.
read!read data to predefined memory.
openopen the underlying data for manually reading or writing.
writewrite objects to file.
+ \ No newline at end of file diff --git a/dev/plot_makie.html b/dev/plot_makie.html index 634cc5d8..366ee74f 100644 --- a/dev/plot_makie.html +++ b/dev/plot_makie.html @@ -8,11 +8,11 @@ - + - + - + @@ -44,9 +44,9 @@ ax = Axis(fig[2, 1]; aspect = DataAspect()) contourf!(ax, A) # surface(fig[2, 2], A) # even a 3D plot works! # broken mutating method -fig

even a 3D plot works!

julia
surface(A)

3-D rasters in Makie

Warning

This interface is experimental, and unexported for that reason. It may break at any time!

Just as in Plots, 3D rasters are treated as a series of 2D rasters, which are tiled and plotted.

You can use Rasters.rplot to visualize 3D rasters or RasterStacks in this way. An example is below:

julia
stack = RasterStack(WorldClim{Climate}; month = 1)
-Rasters.rplot(stack; Axis = (aspect = DataAspect(),),)

You can pass any theming keywords in, which are interpreted by Makie appropriately.

The plots seem a little squished here. We provide a Makie theme which makes text a little smaller and has some other space-efficient attributes:

julia
Makie.set_theme!(Rasters.theme_rasters())
-Rasters.rplot(stack)

reset theme

julia
Makie.set_theme!()

Plotting with Observables, animations

Rasters.rplot should support Observable input out of the box, but the dimensions of that input must remain the same - i.e., the element names of a RasterStack must remain the same.

julia
Makie.set_theme!(Rasters.theme_rasters())
+fig

even a 3D plot works!

julia
surface(A)

3-D rasters in Makie

Warning

This interface is experimental, and unexported for that reason. It may break at any time!

Just as in Plots, 3D rasters are treated as a series of 2D rasters, which are tiled and plotted.

You can use Rasters.rplot to visualize 3D rasters or RasterStacks in this way. An example is below:

julia
stack = RasterStack(WorldClim{Climate}; month = 1)
+Rasters.rplot(stack; Axis = (aspect = DataAspect(),),)

You can pass any theming keywords in, which are interpreted by Makie appropriately.

The plots seem a little squished here. We provide a Makie theme which makes text a little smaller and has some other space-efficient attributes:

julia
Makie.set_theme!(Rasters.theme_rasters())
+Rasters.rplot(stack)

reset theme

julia
Makie.set_theme!()

Plotting with Observables, animations

Rasters.rplot should support Observable input out of the box, but the dimensions of that input must remain the same - i.e., the element names of a RasterStack must remain the same.

julia
Makie.set_theme!(Rasters.theme_rasters())
 # `stack` is the WorldClim climate data for January
 # observables not working here, same error as for contourf: ERROR: MethodError: no method matching typemax(::Type{ColorTypes.RGBA{Float32}})
 stack_obs = Observable(stack)
@@ -55,7 +55,7 @@
 ) 
 record(fig, "rplot.mp4", 1:12; framerate = 3) do i
     stack_obs[] = RasterStack(WorldClim{Climate}; month = i)
-end

<!– <video src="./rplot.mp4" controls="controls" autoplay="autoplay"></video> –>

julia
Makie.set_theme!() # reset theme
# Rasters.rplotFunction.
julia
Rasters.rplot([position::GridPosition], raster; kw...)

raster may be a Raster (of 2 or 3 dimensions) or a RasterStack whose underlying rasters are 2 dimensional, or 3-dimensional with a singleton (length-1) third dimension.

Keywords

  • plottype = Makie.Heatmap: The type of plot. Can be any Makie plot type which accepts a Raster; in practice, Heatmap, Contour, Contourf and Surface are the best bets.

  • axistype = Makie.Axis: The type of axis. This can be an Axis, Axis3, LScene, or even a GeoAxis from GeoMakie.jl.

  • X = XDim: The X dimension of the raster.

  • Y = YDim: The Y dimension of the raster.

  • Z = YDim: The Y dimension of the raster.

  • draw_colorbar = true: Whether to draw a colorbar for the axis or not.

  • colorbar_position = Makie.Right(): Indicates which side of the axis the colorbar should be placed on. Can be Makie.Top(), Makie.Bottom(), Makie.Left(), or Makie.Right().

  • colorbar_padding = Makie.automatic: The amount of padding between the colorbar and its axis. If automatic, then this is set to the width of the colorbar.

  • title = Makie.automatic: The titles of each plot. If automatic, these are set to the name of the band.

  • xlabel = Makie.automatic: The x-label for the axis. If automatic, set to the dimension name of the X-dimension of the raster.

  • ylabel = Makie.automatic: The y-label for the axis. If automatic, set to the dimension name of the Y-dimension of the raster.

  • colorbarlabel = "": Usually nothing, but here if you need it. Sets the label on the colorbar.

  • colormap = nothing: The colormap for the heatmap. This can be set to a vector of colormaps (symbols, strings, cgrads) if plotting a 3D raster or RasterStack.

  • colorrange = Makie.automatic: The colormap for the heatmap. This can be set to a vector of (low, high) if plotting a 3D raster or RasterStack.

  • nan_color = :transparent: The color which NaN values should take. Default to transparent.

source


Using vanilla Makie

julia
using Rasters, RasterDataSources

The data

julia
layers = (:evenness, :range, :contrast, :correlation)
+end

<!– <video src="./rplot.mp4" controls="controls" autoplay="autoplay"></video> –>

julia
Makie.set_theme!() # reset theme
# Rasters.rplotFunction.
julia
Rasters.rplot([position::GridPosition], raster; kw...)

raster may be a Raster (of 2 or 3 dimensions) or a RasterStack whose underlying rasters are 2 dimensional, or 3-dimensional with a singleton (length-1) third dimension.

Keywords

  • plottype = Makie.Heatmap: The type of plot. Can be any Makie plot type which accepts a Raster; in practice, Heatmap, Contour, Contourf and Surface are the best bets.

  • axistype = Makie.Axis: The type of axis. This can be an Axis, Axis3, LScene, or even a GeoAxis from GeoMakie.jl.

  • X = XDim: The X dimension of the raster.

  • Y = YDim: The Y dimension of the raster.

  • Z = YDim: The Y dimension of the raster.

  • draw_colorbar = true: Whether to draw a colorbar for the axis or not.

  • colorbar_position = Makie.Right(): Indicates which side of the axis the colorbar should be placed on. Can be Makie.Top(), Makie.Bottom(), Makie.Left(), or Makie.Right().

  • colorbar_padding = Makie.automatic: The amount of padding between the colorbar and its axis. If automatic, then this is set to the width of the colorbar.

  • title = Makie.automatic: The titles of each plot. If automatic, these are set to the name of the band.

  • xlabel = Makie.automatic: The x-label for the axis. If automatic, set to the dimension name of the X-dimension of the raster.

  • ylabel = Makie.automatic: The y-label for the axis. If automatic, set to the dimension name of the Y-dimension of the raster.

  • colorbarlabel = "": Usually nothing, but here if you need it. Sets the label on the colorbar.

  • colormap = nothing: The colormap for the heatmap. This can be set to a vector of colormaps (symbols, strings, cgrads) if plotting a 3D raster or RasterStack.

  • colorrange = Makie.automatic: The colormap for the heatmap. This can be set to a vector of (low, high) if plotting a 3D raster or RasterStack.

  • nan_color = :transparent: The color which NaN values should take. Default to transparent.

source


Using vanilla Makie

julia
using Rasters, RasterDataSources

The data

julia
layers = (:evenness, :range, :contrast, :correlation)
 st = RasterStack(EarthEnv{HabitatHeterogeneity}, layers)
 ausbounds = X(100 .. 160), Y(-50 .. -10) # Roughly cut out australia
 aus = st[ausbounds...] |> Rasters.trim
╭─────────────────────╮
@@ -97,7 +97,7 @@
     fig
 end
 save("aus_trim.png", current_figure());
CairoMakie.Screen{IMAGE}

- + \ No newline at end of file diff --git a/dev/plotting.html b/dev/plotting.html index 9a48836b..21f68fe6 100644 --- a/dev/plotting.html +++ b/dev/plotting.html @@ -8,11 +8,11 @@ - + - + - + @@ -20,11 +20,11 @@
Skip to content

Plots, simple

Plots.jl and Makie.jl are fully supported by Rasters.jl, with recipes for plotting Raster and RasterStack provided. plot will plot a heatmap with axes matching dimension values. If mappedcrs is used, converted values will be shown on axes instead of the underlying crs values. contourf will similarly plot a filled contour plot.

Pixel resolution is limited to allow loading very large files quickly. max_res specifies the maximum pixel resolution to show on the longest axis of the array. It can be set manually to change the resolution (e.g. for large or high-quality plots):

julia
using Rasters, RasterDataSources, ArchGDAL, Plots
 A = Raster(WorldClim{BioClim}, 5)
-plot(A; max_res=3000)

For Makie, plot functions in a similar way. plot will only accept two-dimensional rasters. You can invoke contour, contourf, heatmap, surface or any Makie plotting function which supports surface-like data on a 2D raster.

To obtain tiled plots for 3D rasters and RasterStacks, use the function Rasters.rplot([gridposition], raster; kw_args...). This is an unexported function, since we're not sure how the API will change going forward.

Makie, simple

julia
using CairoMakie
+plot(A; max_res=3000)

For Makie, plot functions in a similar way. plot will only accept two-dimensional rasters. You can invoke contour, contourf, heatmap, surface or any Makie plotting function which supports surface-like data on a 2D raster.

To obtain tiled plots for 3D rasters and RasterStacks, use the function Rasters.rplot([gridposition], raster; kw_args...). This is an unexported function, since we're not sure how the API will change going forward.

Makie, simple

julia
using CairoMakie
 CairoMakie.activate!(px_per_unit = 2)
 using Rasters, CairoMakie, RasterDataSources, ArchGDAL
 A = Raster(WorldClim{BioClim}, 5)
-Makie.plot(A)

Loading data

Our first example simply loads a file from disk and plots it.

This netcdf file only has one layer, if it has more we could use RasterStack instead.

julia
using Rasters, NCDatasets, Plots
+Makie.plot(A)

Loading data

Our first example simply loads a file from disk and plots it.

This netcdf file only has one layer, if it has more we could use RasterStack instead.

julia
using Rasters, NCDatasets, Plots
 using Downloads: download
 
 url = "https://www.unidata.ucar.edu/software/netcdf/examples/tos_O1_2001-2002.nc";
@@ -53,8 +53,8 @@
   mappedcrs: EPSG:4326
 └──────────────────────────────────────────────────────────────────────────────┘
 [:, :, 1]
- ⋮      ⋱

Objects with Dimensions other than X and Y will produce multi-pane plots. Here we plot every third month in the first year in one plot:

julia
A[Ti=1:3:12] |> plot

Now plot the ocean temperatures around the Americas in the first month of 2001. Notice we are using lat/lon coordinates and date/time instead of regular indices. The time dimension uses DateTime360Day, so we need to load CFTime.jl to index it with Near.

julia
using CFTime
-A[Ti(Near(DateTime360Day(2001, 01, 17))), Y(-60.0 .. 90.0), X(45.0 .. 190.0)] |> plot

Now get the mean over the timespan, then save it to disk, and plot it as a filled contour.

Other plot functions and sliced objects that have only one X/Y/Z dimension fall back to generic DimensionalData.jl plotting, which will still correctly label plot axes.

julia
using Statistics
+ ⋮      ⋱

Objects with Dimensions other than X and Y will produce multi-pane plots. Here we plot every third month in the first year in one plot:

julia
A[Ti=1:3:12] |> plot

Now plot the ocean temperatures around the Americas in the first month of 2001. Notice we are using lat/lon coordinates and date/time instead of regular indices. The time dimension uses DateTime360Day, so we need to load CFTime.jl to index it with Near.

julia
using CFTime
+A[Ti(Near(DateTime360Day(2001, 01, 17))), Y(-60.0 .. 90.0), X(45.0 .. 190.0)] |> plot

Now get the mean over the timespan, then save it to disk, and plot it as a filled contour.

Other plot functions and sliced objects that have only one X/Y/Z dimension fall back to generic DimensionalData.jl plotting, which will still correctly label plot axes.

julia
using Statistics
 # Take the mean
 mean_tos = mean(A; dims=Ti)
╭─────────────────────────────────────────────────╮
 │ 180×170×1 Raster{Union{Missing, Float32},3} tos │
@@ -81,7 +81,7 @@
 └──────────────────────────────────────────────────────────────────────────────┘
 [:, :, 1]
  ⋮      ⋱

Plot a contour plot

julia
using Plots
-Plots.contourf(mean_tos; dpi=300, size=(800, 400))

write to disk

Write the mean values to disk

julia
write("mean_tos.nc", mean_tos)
"mean_tos.nc"

Plotting recipes in DimensionalData.jl are the fallback for Rasters.jl when the object doesn't have 2 X/Y/Z dimensions, or a non-spatial plot command is used. So (as a random example) we could plot a transect of ocean surface temperature at 20 degree latitude :

julia
A[Y(Near(20.0)), Ti(1)] |> plot

Polygon masking, mosaic and plot

In this example we will mask the Scandinavian countries with border polygons, then mosaic together to make a single plot.

First, get the country boundary shape files using GADM.jl.

using Rasters, RasterDataSources, ArchGDAL, Shapefile, Plots, Dates, Downloads, NCDatasets

Download the shapefile

julia
using Downloads
+Plots.contourf(mean_tos; dpi=300, size=(800, 400))

write to disk

Write the mean values to disk

julia
write("mean_tos.nc", mean_tos)
"mean_tos.nc"

Plotting recipes in DimensionalData.jl are the fallback for Rasters.jl when the object doesn't have 2 X/Y/Z dimensions, or a non-spatial plot command is used. So (as a random example) we could plot a transect of ocean surface temperature at 20 degree latitude :

julia
A[Y(Near(20.0)), Ti(1)] |> plot

Polygon masking, mosaic and plot

In this example we will mask the Scandinavian countries with border polygons, then mosaic together to make a single plot.

First, get the country boundary shape files using GADM.jl.

using Rasters, RasterDataSources, ArchGDAL, Shapefile, Plots, Dates, Downloads, NCDatasets

Download the shapefile

julia
using Downloads
 using Shapefile
 shapefile_url = "https://github.com/nvkelso/natural-earth-vector/raw/master/10m_cultural/ne_10m_admin_0_countries.shp"
 shapefile_name = "boundary_lines.shp"
@@ -111,7 +111,7 @@
 borders!(p, sweden_border)
 p

And save to netcdf - a single multi-layered file, and tif, which will write a file for each stack layer.

@example
write("scandinavia.nc", scandinavia)
 write("scandinavia.tif", scandinavia)

Rasters.jl provides a range of other methods that are being added to over time. Where applicable these methods read and write lazily to and from disk-based arrays of common raster file types. These methods also work for entire RasterStacks and RasterSeries using the same syntax.

- + \ No newline at end of file