diff --git a/dev/404.html b/dev/404.html index 2c9bc84a..b7d364de 100644 --- a/dev/404.html +++ b/dev/404.html @@ -8,14 +8,14 @@ - +
- + \ No newline at end of file diff --git a/dev/api/addreadrm.html b/dev/api/addreadrm.html index 16c728a7..e71b7ee1 100644 --- a/dev/api/addreadrm.html +++ b/dev/api/addreadrm.html @@ -8,11 +8,11 @@ - + - + - + @@ -20,26 +20,26 @@
Skip to content

API for Adding, Reading and Removing GeoRegions

GeoRegions.GeoRegion Method
julia
GeoRegion(
     geoID :: AbstractString;
     path  :: AbstractString = homedir()
-) -> geo :: GeoRegion

Extracts information of the GeoRegion with the ID geoID. If no GeoRegion with this ID exists, an error is thrown.

Arguments

  • geoID : The ID that will be used to identify the GeoRegion. If the ID is not valid (i.e. not being used), then an error will be thrown.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the user's home directory homedir()

Returns

  • geo : A GeoRegion

source

GeoRegions.add Function
julia
add(
+) -> geo :: GeoRegion

Extracts information of the GeoRegion with the ID geoID. If no GeoRegion with this ID exists, an error is thrown.

Arguments

  • geoID : The ID that will be used to identify the GeoRegion. If the ID is not valid (i.e. not being used), then an error will be thrown.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the user's home directory homedir()

Returns

  • geo : A GeoRegion

source

GeoRegions.add Function
julia
add(
     geo  :: GeoRegion;
     path :: AbstractString = dirname(geo.path),
     verbose :: Bool = true
-) -> nothing

Saves information on the GeoRegion geo to a directory specified by path.

Arguments

  • geo : The GeoRegion to be saved into the custom lists in path

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the local package variable geodir

  • verbose : Verbose logging for ease of monitoring? Default is true

source

GeoRegions.overwrite Function
julia
overwrite(
+) -> nothing

Saves information on the GeoRegion geo to a directory specified by path.

Arguments

  • geo : The GeoRegion to be saved into the custom lists in path

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the local package variable geodir

  • verbose : Verbose logging for ease of monitoring? Default is true

source

GeoRegions.overwrite Function
julia
overwrite(
     geo  :: GeoRegion;
     path :: AbstractString = dirname(geo.path),
     verbose :: Bool = true
-) -> nothing

Overwrites preexisting information associated with the ID geo.ID in path, with new information from the GeoRegion specified by geo

Arguments

  • geo : The GeoRegion to be saved into the custom lists in path, overwriting any preexisting information associated with the ID geo.ID.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the local package variable geodir

  • verbose : Verbose logging for ease of monitoring? Default is true

source

Base.Filesystem.rm Function
julia
rm(
+) -> nothing

Overwrites preexisting information associated with the ID geo.ID in path, with new information from the GeoRegion specified by geo

Arguments

  • geo : The GeoRegion to be saved into the custom lists in path, overwriting any preexisting information associated with the ID geo.ID.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the local package variable geodir

  • verbose : Verbose logging for ease of monitoring? Default is true

source

Base.Filesystem.rm Function
julia
rm(
     geo  :: GeoRegion;
     path :: AbstractString = geodir
-)

Removes the GeoRegion geo from the custom lists specified in path. The GeoRegion must have exactly the same properties as the one in the custom list

Arguments

  • geo : The GeoRegion to be removed from the custom lists in path

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the local package variable geodir

source

GeoRegions.isID Function
julia
isID(
+)

Removes the GeoRegion geo from the custom lists specified in path. The GeoRegion must have exactly the same properties as the one in the custom list

Arguments

  • geo : The GeoRegion to be removed from the custom lists in path

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the local package variable geodir

source

GeoRegions.isID Function
julia
isID(
     geoID :: AbstractString;
     path  :: AbstractString = homedir(),
     throw :: Bool = true
-) -> tf :: Bool

Checks if there is a GeoRegion, that exists in the custom lists defined in path, with the ID geoID.

Arguments

  • geoID : The keyword ID that will be used to identify the GeoRegion. If the ID is not valid (i.e. not being used), then an error will be thrown.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the current directory pwd()

  • throw : If true, then throws an error if geoID is not a valid GeoRegion identifier instead of returning the Boolean tf

Returns

  • tf : True / False

source

GeoRegions.rmID Function
julia
rmID(
+) -> tf :: Bool

Checks if there is a GeoRegion, that exists in the custom lists defined in path, with the ID geoID.

Arguments

  • geoID : The keyword ID that will be used to identify the GeoRegion. If the ID is not valid (i.e. not being used), then an error will be thrown.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the current directory pwd()

  • throw : If true, then throws an error if geoID is not a valid GeoRegion identifier instead of returning the Boolean tf

Returns

  • tf : True / False

source

GeoRegions.rmID Function
julia
rmID(
     geoID :: AbstractString;
     path  :: AbstractString = geodir
-)

Removes any GeoRegion associated with the ID geoID. ID must be exact.

Arguments

  • geoID : The keyword ID that will be used to identify the GeoRegion. If the ID is not valid (i.e. not being used), then an error will be thrown.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the home directory homedir()

source

- +)

Removes any GeoRegion associated with the ID geoID. ID must be exact.

Arguments

Keyword Arguments

source

+ \ No newline at end of file diff --git a/dev/api/create.html b/dev/api/create.html index a9e4e3bb..2049de16 100644 --- a/dev/api/create.html +++ b/dev/api/create.html @@ -8,11 +8,11 @@ - + - + - + @@ -27,7 +27,7 @@ verbose :: Bool = true, ST = String, FT = Float64 -) -> geo :: RectRegion{ST,FT}

Creates a rectilinear GeoRegion.

Arguments

Keyword Arguments

Returns

source

GeoRegions.TiltRegion Method
julia
TiltRegion(
+) -> geo :: RectRegion{ST,FT}

Creates a rectilinear GeoRegion.

Arguments

Keyword Arguments

Returns

source

GeoRegions.TiltRegion Method
julia
TiltRegion(
     ID   :: AbstractString,
     pID  :: AbstractString,
     name :: AbstractString,
@@ -41,7 +41,7 @@
     verbose :: Bool = true,
     ST = String,
     FT = Float64
-) -> geo :: TiltRegion{ST,FT}

Creates a tilted rectangular GeoRegion.

Arguments

Keyword Arguments

Returns

source

GeoRegions.PolyRegion Method
julia
PolyRegion(
+) -> geo :: TiltRegion{ST,FT}

Creates a tilted rectangular GeoRegion.

Arguments

Keyword Arguments

Returns

source

GeoRegions.PolyRegion Method
julia
PolyRegion(
     ID   :: AbstractString,
     pID  :: AbstractString,
     name :: AbstractString,
@@ -53,8 +53,8 @@
     verbose :: Bool = true,
     ST = String,
     FT = Float64
-) -> geo :: PolyRegion{ST,FT}

Creates a polygonal GeoRegion.

Arguments

Keyword Arguments

Returns

source

- +) -> geo :: PolyRegion{ST,FT}

Creates a polygonal GeoRegion.

Arguments

Keyword Arguments

Returns

source

+ \ No newline at end of file diff --git a/dev/api/isin.html b/dev/api/isin.html index 9bd8926b..4b1a81ed 100644 --- a/dev/api/isin.html +++ b/dev/api/isin.html @@ -8,11 +8,11 @@ - + - + - + @@ -21,22 +21,22 @@ point :: Point2{<:Real}, geo :: GeoRegion; throw :: Bool = false -) -> Bool

Check if a geographical point point is within a GeoRegion defined by geo.

Arguments

Keyword Arguments

source

Base.in Method
julia
in(
+) -> Bool

Check if a geographical point point is within a GeoRegion defined by geo.

Arguments

Keyword Arguments

source

Base.in Method
julia
in(
     cgeo  :: GeoRegion,
     geo   :: GeoRegion;
     n     :: Int = 100,
     throw :: Bool = false
-) -> Bool

Check if a child GeoRegion defined by cgeo is within a RectRegion geo.

Arguments

Keyword Arguments

source

GeoRegions.on Method
julia
on(
+) -> Bool

Check if a child GeoRegion defined by cgeo is within a RectRegion geo.

Arguments

Keyword Arguments

source

GeoRegions.on Method
julia
on(
     point  :: Point2{<:Real},
     geo    :: GeoRegion;
     throw  :: Bool = false
-) -> Bool

Check if a geographical point point is on the boundary of a shape of a GeoRegion defined by geo.

Arguments

Keyword Arguments

source

GeoRegions.on Method
julia
on(
+) -> Bool

Check if a geographical point point is on the boundary of a shape of a GeoRegion defined by geo.

Arguments

Keyword Arguments

source

GeoRegions.on Method
julia
on(
     geo1  :: GeoRegion,
     geo2  :: GeoRegion;
     n     :: Int = 100,
     throw :: Bool = false
-) -> Bool

Check if a child GeoRegion defined by cgeo is the same as a RectRegion geo.

Arguments

Keyword Arguments

source

- +) -> Bool

Check if a child GeoRegion defined by cgeo is the same as a RectRegion geo.

Arguments

Keyword Arguments

source

+ \ No newline at end of file diff --git a/dev/api/project.html b/dev/api/project.html index 0cbdd481..b072bb61 100644 --- a/dev/api/project.html +++ b/dev/api/project.html @@ -8,11 +8,11 @@ - + - + - + @@ -20,12 +20,12 @@
Skip to content

API for Project-Handling in GeoRegions.jl

GeoRegions.setupGeoRegions Function
julia
setupGeoRegions(;
     path :: AbstractString = pwd(),
     overwrite :: Bool = false
-) -> nothing

Setup the directory specified by path with files for custom GeoRegions. If overwrite = true, then any preexisting files are overwritten

Keyword Arguments

  • path : The path where the template list of custom GeoRegions will be copied to. Defaults to the current working directory pwd().

  • overwrite : If template files exist in this folder, overwrite?

source

GeoRegions.deleteGeoRegions Function
julia
deleteGeoRegions(;
+) -> nothing

Setup the directory specified by path with files for custom GeoRegions. If overwrite = true, then any preexisting files are overwritten

Keyword Arguments

  • path : The path where the template list of custom GeoRegions will be copied to. Defaults to the current working directory pwd().

  • overwrite : If template files exist in this folder, overwrite?

source

GeoRegions.deleteGeoRegions Function
julia
deleteGeoRegions(;
     path :: AbstractString = pwd()
-) -> nothing

Reset all the files containing GeoRegion information back to the default.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the current working directory pwd()

source

GeoRegions.tableGeoRegions Method
julia
tableGeoRegions(
+) -> nothing

Reset all the files containing GeoRegion information back to the default.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the current working directory pwd()

source

GeoRegions.tableGeoRegions Method
julia
tableGeoRegions(
     fname :: AbstractString
-) -> nothing

Display all available GeoRegions in tabular format listed in the file fname.

Arguments

  • fname : Specifies the name + path of the file containing GeoRegion information

source

- +) -> nothing

Display all available GeoRegions in tabular format listed in the file fname.

Arguments

source

+ \ No newline at end of file diff --git a/dev/api/properties.html b/dev/api/properties.html index eb992f9c..14e0c914 100644 --- a/dev/api/properties.html +++ b/dev/api/properties.html @@ -8,11 +8,11 @@ - + - + - + @@ -20,8 +20,8 @@
Skip to content

API for Different GeoRegion Properties

GeoRegions.coordinates Function
julia
coordinates(
     geo :: GeoRegion;
     n :: Int = 1
-) -> lon :: Vector{<:Real}, lat :: Vector{<:Real}

For a given GeoRegion, create longitude and latitude vectors of the shape.

Arguments

  • geo : A GeoRegion

  • n : The number of segments on each side of the shape (a vertex counts as half a point)

Returns

  • lon : A vector of longitude points for the shape of the GeoRegion

  • lat : A vector of latitude points for the shape of the GeoRegion

source

- +) -> lon :: Vector{<:Real}, lat :: Vector{<:Real}

For a given GeoRegion, create longitude and latitude vectors of the shape.

Arguments

Returns

source

+ \ No newline at end of file diff --git a/dev/api/tables.html b/dev/api/tables.html index 232374d6..cdf0e5f8 100644 --- a/dev/api/tables.html +++ b/dev/api/tables.html @@ -8,11 +8,11 @@ - + - + - + @@ -23,19 +23,19 @@ custom :: Bool = true, warn :: Bool = true, crop :: Bool = false -) -> nothing

Display all available GeoRegions in tabular format. Keyword Arguments =================

source

GeoRegions.tableRectRegions Function
julia
tableRectRegions(;
+) -> nothing

Display all available GeoRegions in tabular format. Keyword Arguments =================

source

GeoRegions.tableRectRegions Function
julia
tableRectRegions(;
     path :: AbstractString = homedir(),
     custom :: Bool = true,
     giorgi :: Bool = false
-) -> nothing

Display all available RectRegions in tabular format.

Keyword Arguments

source

GeoRegions.tableTiltRegions Function
julia
tableTiltRegions(;
+) -> nothing

Display all available RectRegions in tabular format.

Keyword Arguments

source

GeoRegions.tableTiltRegions Function
julia
tableTiltRegions(;
     path :: AbstractString = homedir()
-) -> nothing

Display all available TiltRegions in tabular format.

Keyword Arguments

source

GeoRegions.tablePolyRegions Function
julia
tablePolyRegions(;
+) -> nothing

Display all available TiltRegions in tabular format.

Keyword Arguments

source

GeoRegions.tablePolyRegions Function
julia
tablePolyRegions(;
     path :: AbstractString = homedir(),
     custom :: Bool = true,
     srex :: Bool = false,
     ar6  :: Bool = false
-) -> nothing

Display all available PolyRegions in tabular format.

Keyword Arguments

source

- +) -> nothing

Display all available PolyRegions in tabular format.

Keyword Arguments

source

+ \ No newline at end of file diff --git a/dev/assets/api_addreadrm.md.BSyxw_3R.js b/dev/assets/api_addreadrm.md.smOJ_khf.js similarity index 93% rename from dev/assets/api_addreadrm.md.BSyxw_3R.js rename to dev/assets/api_addreadrm.md.smOJ_khf.js index e1e960cc..354f680d 100644 --- a/dev/assets/api_addreadrm.md.BSyxw_3R.js +++ b/dev/assets/api_addreadrm.md.smOJ_khf.js @@ -1,22 +1,22 @@ -import{_ as o,c as l,j as i,a as e,G as a,a5 as n,B as h,o as p}from"./chunks/framework.JKTEW8jd.js";const D=JSON.parse('{"title":"API for Adding, Reading and Removing GeoRegions","description":"","frontmatter":{},"headers":[],"relativePath":"api/addreadrm.md","filePath":"api/addreadrm.md","lastUpdated":null}'),r={name:"api/addreadrm.md"},d={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},k={class:"jldocstring custom-block",open:""},c={class:"jldocstring custom-block",open:""},E={class:"jldocstring custom-block",open:""},u={class:"jldocstring custom-block",open:""};function y(b,s,m,f,F,R){const t=h("Badge");return p(),l("div",null,[s[18]||(s[18]=i("h1",{id:"API-for-Adding,-Reading-and-Removing-GeoRegions",tabindex:"-1"},[e("API for Adding, Reading and Removing GeoRegions "),i("a",{class:"header-anchor",href:"#API-for-Adding,-Reading-and-Removing-GeoRegions","aria-label":'Permalink to "API for Adding, Reading and Removing GeoRegions {#API-for-Adding,-Reading-and-Removing-GeoRegions}"'},"​")],-1)),i("details",d,[i("summary",null,[s[0]||(s[0]=i("a",{id:"GeoRegions.GeoRegion-Tuple{AbstractString}",href:"#GeoRegions.GeoRegion-Tuple{AbstractString}"},[i("span",{class:"jlbinding"},"GeoRegions.GeoRegion")],-1)),s[1]||(s[1]=e()),a(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[2]||(s[2]=n(`
julia
GeoRegion(
+import{_ as o,c as l,j as i,a as e,G as t,a5 as n,B as h,o as p}from"./chunks/framework.JKTEW8jd.js";const D=JSON.parse('{"title":"API for Adding, Reading and Removing GeoRegions","description":"","frontmatter":{},"headers":[],"relativePath":"api/addreadrm.md","filePath":"api/addreadrm.md","lastUpdated":null}'),r={name:"api/addreadrm.md"},d={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},k={class:"jldocstring custom-block",open:""},c={class:"jldocstring custom-block",open:""},E={class:"jldocstring custom-block",open:""},u={class:"jldocstring custom-block",open:""};function y(b,s,m,F,f,R){const a=h("Badge");return p(),l("div",null,[s[18]||(s[18]=i("h1",{id:"API-for-Adding,-Reading-and-Removing-GeoRegions",tabindex:"-1"},[e("API for Adding, Reading and Removing GeoRegions "),i("a",{class:"header-anchor",href:"#API-for-Adding,-Reading-and-Removing-GeoRegions","aria-label":'Permalink to "API for Adding, Reading and Removing GeoRegions {#API-for-Adding,-Reading-and-Removing-GeoRegions}"'},"​")],-1)),i("details",d,[i("summary",null,[s[0]||(s[0]=i("a",{id:"GeoRegions.GeoRegion-Tuple{AbstractString}",href:"#GeoRegions.GeoRegion-Tuple{AbstractString}"},[i("span",{class:"jlbinding"},"GeoRegions.GeoRegion")],-1)),s[1]||(s[1]=e()),t(a,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[2]||(s[2]=n(`
julia
GeoRegion(
     geoID :: AbstractString;
     path  :: AbstractString = homedir()
-) -> geo :: GeoRegion

Extracts information of the GeoRegion with the ID geoID. If no GeoRegion with this ID exists, an error is thrown.

Arguments

  • geoID : The ID that will be used to identify the GeoRegion. If the ID is not valid (i.e. not being used), then an error will be thrown.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the user's home directory homedir()

Returns

  • geo : A GeoRegion

source

`,9))]),i("details",g,[i("summary",null,[s[3]||(s[3]=i("a",{id:"GeoRegions.add",href:"#GeoRegions.add"},[i("span",{class:"jlbinding"},"GeoRegions.add")],-1)),s[4]||(s[4]=e()),a(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[5]||(s[5]=n(`
julia
add(
+) -> geo :: GeoRegion

Extracts information of the GeoRegion with the ID geoID. If no GeoRegion with this ID exists, an error is thrown.

Arguments

  • geoID : The ID that will be used to identify the GeoRegion. If the ID is not valid (i.e. not being used), then an error will be thrown.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the user's home directory homedir()

Returns

  • geo : A GeoRegion

source

`,9))]),i("details",g,[i("summary",null,[s[3]||(s[3]=i("a",{id:"GeoRegions.add",href:"#GeoRegions.add"},[i("span",{class:"jlbinding"},"GeoRegions.add")],-1)),s[4]||(s[4]=e()),t(a,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[5]||(s[5]=n(`
julia
add(
     geo  :: GeoRegion;
     path :: AbstractString = dirname(geo.path),
     verbose :: Bool = true
-) -> nothing

Saves information on the GeoRegion geo to a directory specified by path.

Arguments

  • geo : The GeoRegion to be saved into the custom lists in path

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the local package variable geodir

  • verbose : Verbose logging for ease of monitoring? Default is true

source

`,7))]),i("details",k,[i("summary",null,[s[6]||(s[6]=i("a",{id:"GeoRegions.overwrite",href:"#GeoRegions.overwrite"},[i("span",{class:"jlbinding"},"GeoRegions.overwrite")],-1)),s[7]||(s[7]=e()),a(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[8]||(s[8]=n(`
julia
overwrite(
+) -> nothing

Saves information on the GeoRegion geo to a directory specified by path.

Arguments

  • geo : The GeoRegion to be saved into the custom lists in path

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the local package variable geodir

  • verbose : Verbose logging for ease of monitoring? Default is true

source

`,7))]),i("details",k,[i("summary",null,[s[6]||(s[6]=i("a",{id:"GeoRegions.overwrite",href:"#GeoRegions.overwrite"},[i("span",{class:"jlbinding"},"GeoRegions.overwrite")],-1)),s[7]||(s[7]=e()),t(a,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[8]||(s[8]=n(`
julia
overwrite(
     geo  :: GeoRegion;
     path :: AbstractString = dirname(geo.path),
     verbose :: Bool = true
-) -> nothing

Overwrites preexisting information associated with the ID geo.ID in path, with new information from the GeoRegion specified by geo

Arguments

  • geo : The GeoRegion to be saved into the custom lists in path, overwriting any preexisting information associated with the ID geo.ID.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the local package variable geodir

  • verbose : Verbose logging for ease of monitoring? Default is true

source

`,7))]),i("details",c,[i("summary",null,[s[9]||(s[9]=i("a",{id:"Base.Filesystem.rm",href:"#Base.Filesystem.rm"},[i("span",{class:"jlbinding"},"Base.Filesystem.rm")],-1)),s[10]||(s[10]=e()),a(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[11]||(s[11]=n(`
julia
rm(
+) -> nothing

Overwrites preexisting information associated with the ID geo.ID in path, with new information from the GeoRegion specified by geo

Arguments

  • geo : The GeoRegion to be saved into the custom lists in path, overwriting any preexisting information associated with the ID geo.ID.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the local package variable geodir

  • verbose : Verbose logging for ease of monitoring? Default is true

source

`,7))]),i("details",c,[i("summary",null,[s[9]||(s[9]=i("a",{id:"Base.Filesystem.rm",href:"#Base.Filesystem.rm"},[i("span",{class:"jlbinding"},"Base.Filesystem.rm")],-1)),s[10]||(s[10]=e()),t(a,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[11]||(s[11]=n(`
julia
rm(
     geo  :: GeoRegion;
     path :: AbstractString = geodir
-)

Removes the GeoRegion geo from the custom lists specified in path. The GeoRegion must have exactly the same properties as the one in the custom list

Arguments

  • geo : The GeoRegion to be removed from the custom lists in path

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the local package variable geodir

source

`,7))]),i("details",E,[i("summary",null,[s[12]||(s[12]=i("a",{id:"GeoRegions.isID",href:"#GeoRegions.isID"},[i("span",{class:"jlbinding"},"GeoRegions.isID")],-1)),s[13]||(s[13]=e()),a(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[14]||(s[14]=n(`
julia
isID(
+)

Removes the GeoRegion geo from the custom lists specified in path. The GeoRegion must have exactly the same properties as the one in the custom list

Arguments

  • geo : The GeoRegion to be removed from the custom lists in path

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the local package variable geodir

source

`,7))]),i("details",E,[i("summary",null,[s[12]||(s[12]=i("a",{id:"GeoRegions.isID",href:"#GeoRegions.isID"},[i("span",{class:"jlbinding"},"GeoRegions.isID")],-1)),s[13]||(s[13]=e()),t(a,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[14]||(s[14]=n(`
julia
isID(
     geoID :: AbstractString;
     path  :: AbstractString = homedir(),
     throw :: Bool = true
-) -> tf :: Bool

Checks if there is a GeoRegion, that exists in the custom lists defined in path, with the ID geoID.

Arguments

  • geoID : The keyword ID that will be used to identify the GeoRegion. If the ID is not valid (i.e. not being used), then an error will be thrown.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the current directory pwd()

  • throw : If true, then throws an error if geoID is not a valid GeoRegion identifier instead of returning the Boolean tf

Returns

  • tf : True / False

source

`,9))]),i("details",u,[i("summary",null,[s[15]||(s[15]=i("a",{id:"GeoRegions.rmID",href:"#GeoRegions.rmID"},[i("span",{class:"jlbinding"},"GeoRegions.rmID")],-1)),s[16]||(s[16]=e()),a(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[17]||(s[17]=n(`
julia
rmID(
+) -> tf :: Bool

Checks if there is a GeoRegion, that exists in the custom lists defined in path, with the ID geoID.

Arguments

  • geoID : The keyword ID that will be used to identify the GeoRegion. If the ID is not valid (i.e. not being used), then an error will be thrown.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the current directory pwd()

  • throw : If true, then throws an error if geoID is not a valid GeoRegion identifier instead of returning the Boolean tf

Returns

  • tf : True / False

source

`,9))]),i("details",u,[i("summary",null,[s[15]||(s[15]=i("a",{id:"GeoRegions.rmID",href:"#GeoRegions.rmID"},[i("span",{class:"jlbinding"},"GeoRegions.rmID")],-1)),s[16]||(s[16]=e()),t(a,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[17]||(s[17]=n(`
julia
rmID(
     geoID :: AbstractString;
     path  :: AbstractString = geodir
-)

Removes any GeoRegion associated with the ID geoID. ID must be exact.

Arguments

  • geoID : The keyword ID that will be used to identify the GeoRegion. If the ID is not valid (i.e. not being used), then an error will be thrown.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the home directory homedir()

source

`,7))])])}const v=o(r,[["render",y]]);export{D as __pageData,v as default}; +)

Removes any GeoRegion associated with the ID geoID. ID must be exact.

Arguments

Keyword Arguments

source

`,7))])])}const v=o(r,[["render",y]]);export{D as __pageData,v as default}; diff --git a/dev/assets/api_addreadrm.md.BSyxw_3R.lean.js b/dev/assets/api_addreadrm.md.smOJ_khf.lean.js similarity index 93% rename from dev/assets/api_addreadrm.md.BSyxw_3R.lean.js rename to dev/assets/api_addreadrm.md.smOJ_khf.lean.js index e1e960cc..354f680d 100644 --- a/dev/assets/api_addreadrm.md.BSyxw_3R.lean.js +++ b/dev/assets/api_addreadrm.md.smOJ_khf.lean.js @@ -1,22 +1,22 @@ -import{_ as o,c as l,j as i,a as e,G as a,a5 as n,B as h,o as p}from"./chunks/framework.JKTEW8jd.js";const D=JSON.parse('{"title":"API for Adding, Reading and Removing GeoRegions","description":"","frontmatter":{},"headers":[],"relativePath":"api/addreadrm.md","filePath":"api/addreadrm.md","lastUpdated":null}'),r={name:"api/addreadrm.md"},d={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},k={class:"jldocstring custom-block",open:""},c={class:"jldocstring custom-block",open:""},E={class:"jldocstring custom-block",open:""},u={class:"jldocstring custom-block",open:""};function y(b,s,m,f,F,R){const t=h("Badge");return p(),l("div",null,[s[18]||(s[18]=i("h1",{id:"API-for-Adding,-Reading-and-Removing-GeoRegions",tabindex:"-1"},[e("API for Adding, Reading and Removing GeoRegions "),i("a",{class:"header-anchor",href:"#API-for-Adding,-Reading-and-Removing-GeoRegions","aria-label":'Permalink to "API for Adding, Reading and Removing GeoRegions {#API-for-Adding,-Reading-and-Removing-GeoRegions}"'},"​")],-1)),i("details",d,[i("summary",null,[s[0]||(s[0]=i("a",{id:"GeoRegions.GeoRegion-Tuple{AbstractString}",href:"#GeoRegions.GeoRegion-Tuple{AbstractString}"},[i("span",{class:"jlbinding"},"GeoRegions.GeoRegion")],-1)),s[1]||(s[1]=e()),a(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[2]||(s[2]=n(`
julia
GeoRegion(
+import{_ as o,c as l,j as i,a as e,G as t,a5 as n,B as h,o as p}from"./chunks/framework.JKTEW8jd.js";const D=JSON.parse('{"title":"API for Adding, Reading and Removing GeoRegions","description":"","frontmatter":{},"headers":[],"relativePath":"api/addreadrm.md","filePath":"api/addreadrm.md","lastUpdated":null}'),r={name:"api/addreadrm.md"},d={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},k={class:"jldocstring custom-block",open:""},c={class:"jldocstring custom-block",open:""},E={class:"jldocstring custom-block",open:""},u={class:"jldocstring custom-block",open:""};function y(b,s,m,F,f,R){const a=h("Badge");return p(),l("div",null,[s[18]||(s[18]=i("h1",{id:"API-for-Adding,-Reading-and-Removing-GeoRegions",tabindex:"-1"},[e("API for Adding, Reading and Removing GeoRegions "),i("a",{class:"header-anchor",href:"#API-for-Adding,-Reading-and-Removing-GeoRegions","aria-label":'Permalink to "API for Adding, Reading and Removing GeoRegions {#API-for-Adding,-Reading-and-Removing-GeoRegions}"'},"​")],-1)),i("details",d,[i("summary",null,[s[0]||(s[0]=i("a",{id:"GeoRegions.GeoRegion-Tuple{AbstractString}",href:"#GeoRegions.GeoRegion-Tuple{AbstractString}"},[i("span",{class:"jlbinding"},"GeoRegions.GeoRegion")],-1)),s[1]||(s[1]=e()),t(a,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[2]||(s[2]=n(`
julia
GeoRegion(
     geoID :: AbstractString;
     path  :: AbstractString = homedir()
-) -> geo :: GeoRegion

Extracts information of the GeoRegion with the ID geoID. If no GeoRegion with this ID exists, an error is thrown.

Arguments

  • geoID : The ID that will be used to identify the GeoRegion. If the ID is not valid (i.e. not being used), then an error will be thrown.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the user's home directory homedir()

Returns

  • geo : A GeoRegion

source

`,9))]),i("details",g,[i("summary",null,[s[3]||(s[3]=i("a",{id:"GeoRegions.add",href:"#GeoRegions.add"},[i("span",{class:"jlbinding"},"GeoRegions.add")],-1)),s[4]||(s[4]=e()),a(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[5]||(s[5]=n(`
julia
add(
+) -> geo :: GeoRegion

Extracts information of the GeoRegion with the ID geoID. If no GeoRegion with this ID exists, an error is thrown.

Arguments

  • geoID : The ID that will be used to identify the GeoRegion. If the ID is not valid (i.e. not being used), then an error will be thrown.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the user's home directory homedir()

Returns

  • geo : A GeoRegion

source

`,9))]),i("details",g,[i("summary",null,[s[3]||(s[3]=i("a",{id:"GeoRegions.add",href:"#GeoRegions.add"},[i("span",{class:"jlbinding"},"GeoRegions.add")],-1)),s[4]||(s[4]=e()),t(a,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[5]||(s[5]=n(`
julia
add(
     geo  :: GeoRegion;
     path :: AbstractString = dirname(geo.path),
     verbose :: Bool = true
-) -> nothing

Saves information on the GeoRegion geo to a directory specified by path.

Arguments

  • geo : The GeoRegion to be saved into the custom lists in path

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the local package variable geodir

  • verbose : Verbose logging for ease of monitoring? Default is true

source

`,7))]),i("details",k,[i("summary",null,[s[6]||(s[6]=i("a",{id:"GeoRegions.overwrite",href:"#GeoRegions.overwrite"},[i("span",{class:"jlbinding"},"GeoRegions.overwrite")],-1)),s[7]||(s[7]=e()),a(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[8]||(s[8]=n(`
julia
overwrite(
+) -> nothing

Saves information on the GeoRegion geo to a directory specified by path.

Arguments

  • geo : The GeoRegion to be saved into the custom lists in path

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the local package variable geodir

  • verbose : Verbose logging for ease of monitoring? Default is true

source

`,7))]),i("details",k,[i("summary",null,[s[6]||(s[6]=i("a",{id:"GeoRegions.overwrite",href:"#GeoRegions.overwrite"},[i("span",{class:"jlbinding"},"GeoRegions.overwrite")],-1)),s[7]||(s[7]=e()),t(a,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[8]||(s[8]=n(`
julia
overwrite(
     geo  :: GeoRegion;
     path :: AbstractString = dirname(geo.path),
     verbose :: Bool = true
-) -> nothing

Overwrites preexisting information associated with the ID geo.ID in path, with new information from the GeoRegion specified by geo

Arguments

  • geo : The GeoRegion to be saved into the custom lists in path, overwriting any preexisting information associated with the ID geo.ID.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the local package variable geodir

  • verbose : Verbose logging for ease of monitoring? Default is true

source

`,7))]),i("details",c,[i("summary",null,[s[9]||(s[9]=i("a",{id:"Base.Filesystem.rm",href:"#Base.Filesystem.rm"},[i("span",{class:"jlbinding"},"Base.Filesystem.rm")],-1)),s[10]||(s[10]=e()),a(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[11]||(s[11]=n(`
julia
rm(
+) -> nothing

Overwrites preexisting information associated with the ID geo.ID in path, with new information from the GeoRegion specified by geo

Arguments

  • geo : The GeoRegion to be saved into the custom lists in path, overwriting any preexisting information associated with the ID geo.ID.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the local package variable geodir

  • verbose : Verbose logging for ease of monitoring? Default is true

source

`,7))]),i("details",c,[i("summary",null,[s[9]||(s[9]=i("a",{id:"Base.Filesystem.rm",href:"#Base.Filesystem.rm"},[i("span",{class:"jlbinding"},"Base.Filesystem.rm")],-1)),s[10]||(s[10]=e()),t(a,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[11]||(s[11]=n(`
julia
rm(
     geo  :: GeoRegion;
     path :: AbstractString = geodir
-)

Removes the GeoRegion geo from the custom lists specified in path. The GeoRegion must have exactly the same properties as the one in the custom list

Arguments

  • geo : The GeoRegion to be removed from the custom lists in path

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the local package variable geodir

source

`,7))]),i("details",E,[i("summary",null,[s[12]||(s[12]=i("a",{id:"GeoRegions.isID",href:"#GeoRegions.isID"},[i("span",{class:"jlbinding"},"GeoRegions.isID")],-1)),s[13]||(s[13]=e()),a(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[14]||(s[14]=n(`
julia
isID(
+)

Removes the GeoRegion geo from the custom lists specified in path. The GeoRegion must have exactly the same properties as the one in the custom list

Arguments

  • geo : The GeoRegion to be removed from the custom lists in path

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the local package variable geodir

source

`,7))]),i("details",E,[i("summary",null,[s[12]||(s[12]=i("a",{id:"GeoRegions.isID",href:"#GeoRegions.isID"},[i("span",{class:"jlbinding"},"GeoRegions.isID")],-1)),s[13]||(s[13]=e()),t(a,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[14]||(s[14]=n(`
julia
isID(
     geoID :: AbstractString;
     path  :: AbstractString = homedir(),
     throw :: Bool = true
-) -> tf :: Bool

Checks if there is a GeoRegion, that exists in the custom lists defined in path, with the ID geoID.

Arguments

  • geoID : The keyword ID that will be used to identify the GeoRegion. If the ID is not valid (i.e. not being used), then an error will be thrown.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the current directory pwd()

  • throw : If true, then throws an error if geoID is not a valid GeoRegion identifier instead of returning the Boolean tf

Returns

  • tf : True / False

source

`,9))]),i("details",u,[i("summary",null,[s[15]||(s[15]=i("a",{id:"GeoRegions.rmID",href:"#GeoRegions.rmID"},[i("span",{class:"jlbinding"},"GeoRegions.rmID")],-1)),s[16]||(s[16]=e()),a(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[17]||(s[17]=n(`
julia
rmID(
+) -> tf :: Bool

Checks if there is a GeoRegion, that exists in the custom lists defined in path, with the ID geoID.

Arguments

  • geoID : The keyword ID that will be used to identify the GeoRegion. If the ID is not valid (i.e. not being used), then an error will be thrown.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the current directory pwd()

  • throw : If true, then throws an error if geoID is not a valid GeoRegion identifier instead of returning the Boolean tf

Returns

  • tf : True / False

source

`,9))]),i("details",u,[i("summary",null,[s[15]||(s[15]=i("a",{id:"GeoRegions.rmID",href:"#GeoRegions.rmID"},[i("span",{class:"jlbinding"},"GeoRegions.rmID")],-1)),s[16]||(s[16]=e()),t(a,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[17]||(s[17]=n(`
julia
rmID(
     geoID :: AbstractString;
     path  :: AbstractString = geodir
-)

Removes any GeoRegion associated with the ID geoID. ID must be exact.

Arguments

  • geoID : The keyword ID that will be used to identify the GeoRegion. If the ID is not valid (i.e. not being used), then an error will be thrown.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the home directory homedir()

source

`,7))])])}const v=o(r,[["render",y]]);export{D as __pageData,v as default}; +)

Removes any GeoRegion associated with the ID geoID. ID must be exact.

Arguments

Keyword Arguments

source

`,7))])])}const v=o(r,[["render",y]]);export{D as __pageData,v as default}; diff --git a/dev/assets/api_create.md.CIHPETEx.js b/dev/assets/api_create.md.COWiMQle.js similarity index 97% rename from dev/assets/api_create.md.CIHPETEx.js rename to dev/assets/api_create.md.COWiMQle.js index c056fa46..f39c9e69 100644 --- a/dev/assets/api_create.md.CIHPETEx.js +++ b/dev/assets/api_create.md.COWiMQle.js @@ -1,4 +1,4 @@ -import{_ as l,c as h,j as i,a,G as n,a5 as t,B as p,o as k}from"./chunks/framework.JKTEW8jd.js";const C=JSON.parse('{"title":"API for Creating GeoRegions","description":"","frontmatter":{},"headers":[],"relativePath":"api/create.md","filePath":"api/create.md","lastUpdated":null}'),o={name:"api/create.md"},r={class:"jldocstring custom-block",open:""},d={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""};function E(c,s,y,F,u,b){const e=p("Badge");return k(),h("div",null,[s[9]||(s[9]=i("h1",{id:"API-for-Creating-GeoRegions",tabindex:"-1"},[a("API for Creating GeoRegions "),i("a",{class:"header-anchor",href:"#API-for-Creating-GeoRegions","aria-label":'Permalink to "API for Creating GeoRegions {#API-for-Creating-GeoRegions}"'},"​")],-1)),i("details",r,[i("summary",null,[s[0]||(s[0]=i("a",{id:"GeoRegions.RectRegion-Tuple{AbstractString, AbstractString, AbstractString, Vector{<:Real}}",href:"#GeoRegions.RectRegion-Tuple{AbstractString, AbstractString, AbstractString, Vector{<:Real}}"},[i("span",{class:"jlbinding"},"GeoRegions.RectRegion")],-1)),s[1]||(s[1]=a()),n(e,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[2]||(s[2]=t(`
julia
RectRegion(
+import{_ as l,c as h,j as i,a,G as n,a5 as t,B as p,o as k}from"./chunks/framework.JKTEW8jd.js";const f=JSON.parse('{"title":"API for Creating GeoRegions","description":"","frontmatter":{},"headers":[],"relativePath":"api/create.md","filePath":"api/create.md","lastUpdated":null}'),o={name:"api/create.md"},r={class:"jldocstring custom-block",open:""},d={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""};function E(c,s,y,F,u,b){const e=p("Badge");return k(),h("div",null,[s[9]||(s[9]=i("h1",{id:"API-for-Creating-GeoRegions",tabindex:"-1"},[a("API for Creating GeoRegions "),i("a",{class:"header-anchor",href:"#API-for-Creating-GeoRegions","aria-label":'Permalink to "API for Creating GeoRegions {#API-for-Creating-GeoRegions}"'},"​")],-1)),i("details",r,[i("summary",null,[s[0]||(s[0]=i("a",{id:"GeoRegions.RectRegion-Tuple{AbstractString, AbstractString, AbstractString, Vector{<:Real}}",href:"#GeoRegions.RectRegion-Tuple{AbstractString, AbstractString, AbstractString, Vector{<:Real}}"},[i("span",{class:"jlbinding"},"GeoRegions.RectRegion")],-1)),s[1]||(s[1]=a()),n(e,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[2]||(s[2]=t(`
julia
RectRegion(
     ID    :: AbstractString,
     pID   :: AbstractString,
     name  :: AbstractString,
@@ -8,7 +8,7 @@ import{_ as l,c as h,j as i,a,G as n,a5 as t,B as p,o as k}from"./chunks/framewo
     verbose :: Bool = true,
     ST = String,
     FT = Float64
-) -> geo :: RectRegion{ST,FT}

Creates a rectilinear GeoRegion.

Arguments

  • ID : The keyword ID that will be used to identify the GeoRegion. If the ID is already in use, then an error will be thrown.

  • pID : The ID of the parent GeoRegion where information can be extracted from

  • name : A name for the GeoRegion (meta information, can be used in Logging)

  • bound : The [N,S,E,W] coordinates defining the region

Keyword Arguments

  • save : If true, save the GeoRegion into the list of custom GeoRegions in the path specified by path.

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the user's home directory homedir()

  • verbose : Verbose logging for ease of monitoring? Default is true

Returns

  • geo : A rectilinear GeoRegion

source

`,9))]),i("details",d,[i("summary",null,[s[3]||(s[3]=i("a",{id:"GeoRegions.TiltRegion-Tuple{AbstractString, AbstractString, AbstractString, Vararg{Real, 5}}",href:"#GeoRegions.TiltRegion-Tuple{AbstractString, AbstractString, AbstractString, Vararg{Real, 5}}"},[i("span",{class:"jlbinding"},"GeoRegions.TiltRegion")],-1)),s[4]||(s[4]=a()),n(e,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[5]||(s[5]=t(`
julia
TiltRegion(
+) -> geo :: RectRegion{ST,FT}

Creates a rectilinear GeoRegion.

Arguments

  • ID : The keyword ID that will be used to identify the GeoRegion. If the ID is already in use, then an error will be thrown.

  • pID : The ID of the parent GeoRegion where information can be extracted from

  • name : A name for the GeoRegion (meta information, can be used in Logging)

  • bound : The [N,S,E,W] coordinates defining the region

Keyword Arguments

  • save : If true, save the GeoRegion into the list of custom GeoRegions in the path specified by path.

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the user's home directory homedir()

  • verbose : Verbose logging for ease of monitoring? Default is true

Returns

  • geo : A rectilinear GeoRegion

source

`,9))]),i("details",d,[i("summary",null,[s[3]||(s[3]=i("a",{id:"GeoRegions.TiltRegion-Tuple{AbstractString, AbstractString, AbstractString, Vararg{Real, 5}}",href:"#GeoRegions.TiltRegion-Tuple{AbstractString, AbstractString, AbstractString, Vararg{Real, 5}}"},[i("span",{class:"jlbinding"},"GeoRegions.TiltRegion")],-1)),s[4]||(s[4]=a()),n(e,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[5]||(s[5]=t(`
julia
TiltRegion(
     ID   :: AbstractString,
     pID  :: AbstractString,
     name :: AbstractString,
@@ -22,7 +22,7 @@ import{_ as l,c as h,j as i,a,G as n,a5 as t,B as p,o as k}from"./chunks/framewo
     verbose :: Bool = true,
     ST = String,
     FT = Float64
-) -> geo :: TiltRegion{ST,FT}

Creates a tilted rectangular GeoRegion.

Arguments

  • ID : The keyword ID that will be used to identify the GeoRegion. If the ID is already in use, then an error will be thrown.

  • pID : The ID of the parent GeoRegion where information can be extracted from

  • name : A name for the GeoRegion (meta information, can be used in Logging)

  • X : Longitude coordinate of region centre

  • Y : Latitude coordinate of region centre

  • ΔX : Half-width in longitude coordinates (before tilting)

  • ΔY : Half-width in latitude coordinates (before tilting)

  • θ : Tilt of rectangular region in degrees

Keyword Arguments

  • save : If true, save the GeoRegion into the list of custom GeoRegions in the path specified by path.

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the user's home directory homedir()

  • verbose : Verbose logging for ease of monitoring? Default is true

Returns

  • geo : A tilted rectangular GeoRegion

source

`,9))]),i("details",g,[i("summary",null,[s[6]||(s[6]=i("a",{id:"GeoRegions.PolyRegion-Tuple{AbstractString, AbstractString, AbstractString, Vector{<:Real}, Vector{<:Real}}",href:"#GeoRegions.PolyRegion-Tuple{AbstractString, AbstractString, AbstractString, Vector{<:Real}, Vector{<:Real}}"},[i("span",{class:"jlbinding"},"GeoRegions.PolyRegion")],-1)),s[7]||(s[7]=a()),n(e,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[8]||(s[8]=t(`
julia
PolyRegion(
+) -> geo :: TiltRegion{ST,FT}

Creates a tilted rectangular GeoRegion.

Arguments

  • ID : The keyword ID that will be used to identify the GeoRegion. If the ID is already in use, then an error will be thrown.

  • pID : The ID of the parent GeoRegion where information can be extracted from

  • name : A name for the GeoRegion (meta information, can be used in Logging)

  • X : Longitude coordinate of region centre

  • Y : Latitude coordinate of region centre

  • ΔX : Half-width in longitude coordinates (before tilting)

  • ΔY : Half-width in latitude coordinates (before tilting)

  • θ : Tilt of rectangular region in degrees

Keyword Arguments

  • save : If true, save the GeoRegion into the list of custom GeoRegions in the path specified by path.

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the user's home directory homedir()

  • verbose : Verbose logging for ease of monitoring? Default is true

Returns

  • geo : A tilted rectangular GeoRegion

source

`,9))]),i("details",g,[i("summary",null,[s[6]||(s[6]=i("a",{id:"GeoRegions.PolyRegion-Tuple{AbstractString, AbstractString, AbstractString, Vector{<:Real}, Vector{<:Real}}",href:"#GeoRegions.PolyRegion-Tuple{AbstractString, AbstractString, AbstractString, Vector{<:Real}, Vector{<:Real}}"},[i("span",{class:"jlbinding"},"GeoRegions.PolyRegion")],-1)),s[7]||(s[7]=a()),n(e,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[8]||(s[8]=t(`
julia
PolyRegion(
     ID   :: AbstractString,
     pID  :: AbstractString,
     name :: AbstractString,
@@ -34,4 +34,4 @@ import{_ as l,c as h,j as i,a,G as n,a5 as t,B as p,o as k}from"./chunks/framewo
     verbose :: Bool = true,
     ST = String,
     FT = Float64
-) -> geo :: PolyRegion{ST,FT}

Creates a polygonal GeoRegion.

Arguments

  • ID : The keyword ID that will be used to identify the GeoRegion. If the ID is already in use, then an error will be thrown.

  • pID : The ID of the parent GeoRegion where information can be extracted from.

  • name : A name for the GeoRegion (meta information, can be used in Logging).

  • lon : A vector containing the longitude points.

  • lat : A vector containing the latitude points.

Keyword Arguments

  • join : If true, if the first and last coordinate points do not match, append the first coordinate again to close the shape.

  • save : If true, save the GeoRegion into the list of custom GeoRegions in the path specified by path.

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the user's home directory homedir()

  • verbose : If true, verbose logging for ease of monitoring.

Returns

  • geo : A polygonal GeoRegion

source

`,9))])])}const A=l(o,[["render",E]]);export{C as __pageData,A as default}; +) -> geo :: PolyRegion{ST,FT}

Creates a polygonal GeoRegion.

Arguments

Keyword Arguments

Returns

source

`,9))])])}const A=l(o,[["render",E]]);export{f as __pageData,A as default}; diff --git a/dev/assets/api_create.md.CIHPETEx.lean.js b/dev/assets/api_create.md.COWiMQle.lean.js similarity index 97% rename from dev/assets/api_create.md.CIHPETEx.lean.js rename to dev/assets/api_create.md.COWiMQle.lean.js index c056fa46..f39c9e69 100644 --- a/dev/assets/api_create.md.CIHPETEx.lean.js +++ b/dev/assets/api_create.md.COWiMQle.lean.js @@ -1,4 +1,4 @@ -import{_ as l,c as h,j as i,a,G as n,a5 as t,B as p,o as k}from"./chunks/framework.JKTEW8jd.js";const C=JSON.parse('{"title":"API for Creating GeoRegions","description":"","frontmatter":{},"headers":[],"relativePath":"api/create.md","filePath":"api/create.md","lastUpdated":null}'),o={name:"api/create.md"},r={class:"jldocstring custom-block",open:""},d={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""};function E(c,s,y,F,u,b){const e=p("Badge");return k(),h("div",null,[s[9]||(s[9]=i("h1",{id:"API-for-Creating-GeoRegions",tabindex:"-1"},[a("API for Creating GeoRegions "),i("a",{class:"header-anchor",href:"#API-for-Creating-GeoRegions","aria-label":'Permalink to "API for Creating GeoRegions {#API-for-Creating-GeoRegions}"'},"​")],-1)),i("details",r,[i("summary",null,[s[0]||(s[0]=i("a",{id:"GeoRegions.RectRegion-Tuple{AbstractString, AbstractString, AbstractString, Vector{<:Real}}",href:"#GeoRegions.RectRegion-Tuple{AbstractString, AbstractString, AbstractString, Vector{<:Real}}"},[i("span",{class:"jlbinding"},"GeoRegions.RectRegion")],-1)),s[1]||(s[1]=a()),n(e,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[2]||(s[2]=t(`
julia
RectRegion(
+import{_ as l,c as h,j as i,a,G as n,a5 as t,B as p,o as k}from"./chunks/framework.JKTEW8jd.js";const f=JSON.parse('{"title":"API for Creating GeoRegions","description":"","frontmatter":{},"headers":[],"relativePath":"api/create.md","filePath":"api/create.md","lastUpdated":null}'),o={name:"api/create.md"},r={class:"jldocstring custom-block",open:""},d={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""};function E(c,s,y,F,u,b){const e=p("Badge");return k(),h("div",null,[s[9]||(s[9]=i("h1",{id:"API-for-Creating-GeoRegions",tabindex:"-1"},[a("API for Creating GeoRegions "),i("a",{class:"header-anchor",href:"#API-for-Creating-GeoRegions","aria-label":'Permalink to "API for Creating GeoRegions {#API-for-Creating-GeoRegions}"'},"​")],-1)),i("details",r,[i("summary",null,[s[0]||(s[0]=i("a",{id:"GeoRegions.RectRegion-Tuple{AbstractString, AbstractString, AbstractString, Vector{<:Real}}",href:"#GeoRegions.RectRegion-Tuple{AbstractString, AbstractString, AbstractString, Vector{<:Real}}"},[i("span",{class:"jlbinding"},"GeoRegions.RectRegion")],-1)),s[1]||(s[1]=a()),n(e,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[2]||(s[2]=t(`
julia
RectRegion(
     ID    :: AbstractString,
     pID   :: AbstractString,
     name  :: AbstractString,
@@ -8,7 +8,7 @@ import{_ as l,c as h,j as i,a,G as n,a5 as t,B as p,o as k}from"./chunks/framewo
     verbose :: Bool = true,
     ST = String,
     FT = Float64
-) -> geo :: RectRegion{ST,FT}

Creates a rectilinear GeoRegion.

Arguments

  • ID : The keyword ID that will be used to identify the GeoRegion. If the ID is already in use, then an error will be thrown.

  • pID : The ID of the parent GeoRegion where information can be extracted from

  • name : A name for the GeoRegion (meta information, can be used in Logging)

  • bound : The [N,S,E,W] coordinates defining the region

Keyword Arguments

  • save : If true, save the GeoRegion into the list of custom GeoRegions in the path specified by path.

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the user's home directory homedir()

  • verbose : Verbose logging for ease of monitoring? Default is true

Returns

  • geo : A rectilinear GeoRegion

source

`,9))]),i("details",d,[i("summary",null,[s[3]||(s[3]=i("a",{id:"GeoRegions.TiltRegion-Tuple{AbstractString, AbstractString, AbstractString, Vararg{Real, 5}}",href:"#GeoRegions.TiltRegion-Tuple{AbstractString, AbstractString, AbstractString, Vararg{Real, 5}}"},[i("span",{class:"jlbinding"},"GeoRegions.TiltRegion")],-1)),s[4]||(s[4]=a()),n(e,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[5]||(s[5]=t(`
julia
TiltRegion(
+) -> geo :: RectRegion{ST,FT}

Creates a rectilinear GeoRegion.

Arguments

  • ID : The keyword ID that will be used to identify the GeoRegion. If the ID is already in use, then an error will be thrown.

  • pID : The ID of the parent GeoRegion where information can be extracted from

  • name : A name for the GeoRegion (meta information, can be used in Logging)

  • bound : The [N,S,E,W] coordinates defining the region

Keyword Arguments

  • save : If true, save the GeoRegion into the list of custom GeoRegions in the path specified by path.

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the user's home directory homedir()

  • verbose : Verbose logging for ease of monitoring? Default is true

Returns

  • geo : A rectilinear GeoRegion

source

`,9))]),i("details",d,[i("summary",null,[s[3]||(s[3]=i("a",{id:"GeoRegions.TiltRegion-Tuple{AbstractString, AbstractString, AbstractString, Vararg{Real, 5}}",href:"#GeoRegions.TiltRegion-Tuple{AbstractString, AbstractString, AbstractString, Vararg{Real, 5}}"},[i("span",{class:"jlbinding"},"GeoRegions.TiltRegion")],-1)),s[4]||(s[4]=a()),n(e,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[5]||(s[5]=t(`
julia
TiltRegion(
     ID   :: AbstractString,
     pID  :: AbstractString,
     name :: AbstractString,
@@ -22,7 +22,7 @@ import{_ as l,c as h,j as i,a,G as n,a5 as t,B as p,o as k}from"./chunks/framewo
     verbose :: Bool = true,
     ST = String,
     FT = Float64
-) -> geo :: TiltRegion{ST,FT}

Creates a tilted rectangular GeoRegion.

Arguments

  • ID : The keyword ID that will be used to identify the GeoRegion. If the ID is already in use, then an error will be thrown.

  • pID : The ID of the parent GeoRegion where information can be extracted from

  • name : A name for the GeoRegion (meta information, can be used in Logging)

  • X : Longitude coordinate of region centre

  • Y : Latitude coordinate of region centre

  • ΔX : Half-width in longitude coordinates (before tilting)

  • ΔY : Half-width in latitude coordinates (before tilting)

  • θ : Tilt of rectangular region in degrees

Keyword Arguments

  • save : If true, save the GeoRegion into the list of custom GeoRegions in the path specified by path.

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the user's home directory homedir()

  • verbose : Verbose logging for ease of monitoring? Default is true

Returns

  • geo : A tilted rectangular GeoRegion

source

`,9))]),i("details",g,[i("summary",null,[s[6]||(s[6]=i("a",{id:"GeoRegions.PolyRegion-Tuple{AbstractString, AbstractString, AbstractString, Vector{<:Real}, Vector{<:Real}}",href:"#GeoRegions.PolyRegion-Tuple{AbstractString, AbstractString, AbstractString, Vector{<:Real}, Vector{<:Real}}"},[i("span",{class:"jlbinding"},"GeoRegions.PolyRegion")],-1)),s[7]||(s[7]=a()),n(e,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[8]||(s[8]=t(`
julia
PolyRegion(
+) -> geo :: TiltRegion{ST,FT}

Creates a tilted rectangular GeoRegion.

Arguments

  • ID : The keyword ID that will be used to identify the GeoRegion. If the ID is already in use, then an error will be thrown.

  • pID : The ID of the parent GeoRegion where information can be extracted from

  • name : A name for the GeoRegion (meta information, can be used in Logging)

  • X : Longitude coordinate of region centre

  • Y : Latitude coordinate of region centre

  • ΔX : Half-width in longitude coordinates (before tilting)

  • ΔY : Half-width in latitude coordinates (before tilting)

  • θ : Tilt of rectangular region in degrees

Keyword Arguments

  • save : If true, save the GeoRegion into the list of custom GeoRegions in the path specified by path.

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the user's home directory homedir()

  • verbose : Verbose logging for ease of monitoring? Default is true

Returns

  • geo : A tilted rectangular GeoRegion

source

`,9))]),i("details",g,[i("summary",null,[s[6]||(s[6]=i("a",{id:"GeoRegions.PolyRegion-Tuple{AbstractString, AbstractString, AbstractString, Vector{<:Real}, Vector{<:Real}}",href:"#GeoRegions.PolyRegion-Tuple{AbstractString, AbstractString, AbstractString, Vector{<:Real}, Vector{<:Real}}"},[i("span",{class:"jlbinding"},"GeoRegions.PolyRegion")],-1)),s[7]||(s[7]=a()),n(e,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[8]||(s[8]=t(`
julia
PolyRegion(
     ID   :: AbstractString,
     pID  :: AbstractString,
     name :: AbstractString,
@@ -34,4 +34,4 @@ import{_ as l,c as h,j as i,a,G as n,a5 as t,B as p,o as k}from"./chunks/framewo
     verbose :: Bool = true,
     ST = String,
     FT = Float64
-) -> geo :: PolyRegion{ST,FT}

Creates a polygonal GeoRegion.

Arguments

  • ID : The keyword ID that will be used to identify the GeoRegion. If the ID is already in use, then an error will be thrown.

  • pID : The ID of the parent GeoRegion where information can be extracted from.

  • name : A name for the GeoRegion (meta information, can be used in Logging).

  • lon : A vector containing the longitude points.

  • lat : A vector containing the latitude points.

Keyword Arguments

  • join : If true, if the first and last coordinate points do not match, append the first coordinate again to close the shape.

  • save : If true, save the GeoRegion into the list of custom GeoRegions in the path specified by path.

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the user's home directory homedir()

  • verbose : If true, verbose logging for ease of monitoring.

Returns

  • geo : A polygonal GeoRegion

source

`,9))])])}const A=l(o,[["render",E]]);export{C as __pageData,A as default}; +) -> geo :: PolyRegion{ST,FT}

Creates a polygonal GeoRegion.

Arguments

Keyword Arguments

Returns

source

`,9))])])}const A=l(o,[["render",E]]);export{f as __pageData,A as default}; diff --git a/dev/assets/api_isin.md.7FsrXMWg.js b/dev/assets/api_isin.md.TYgWP7mT.js similarity index 96% rename from dev/assets/api_isin.md.7FsrXMWg.js rename to dev/assets/api_isin.md.TYgWP7mT.js index c0f9dfb9..1e2036c0 100644 --- a/dev/assets/api_isin.md.7FsrXMWg.js +++ b/dev/assets/api_isin.md.TYgWP7mT.js @@ -1,19 +1,19 @@ -import{_ as t,c as l,j as i,a as e,G as a,a5 as o,B as p,o as h}from"./chunks/framework.JKTEW8jd.js";const C=JSON.parse('{"title":"API for Is it in/on a GeoRegion?","description":"","frontmatter":{},"headers":[],"relativePath":"api/isin.md","filePath":"api/isin.md","lastUpdated":null}'),d={name:"api/isin.md"},k={class:"jldocstring custom-block",open:""},r={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},c={class:"jldocstring custom-block",open:""};function E(y,s,u,b,f,F){const n=p("Badge");return h(),l("div",null,[s[12]||(s[12]=i("h1",{id:"API-for-Is-it-in/on-a-GeoRegion?",tabindex:"-1"},[e("API for Is it in/on a GeoRegion? "),i("a",{class:"header-anchor",href:"#API-for-Is-it-in/on-a-GeoRegion?","aria-label":'Permalink to "API for Is it in/on a GeoRegion? {#API-for-Is-it-in/on-a-GeoRegion?}"'},"​")],-1)),i("details",k,[i("summary",null,[s[0]||(s[0]=i("a",{id:"Base.in-Tuple{Point2{<:Real}, GeoRegion}",href:"#Base.in-Tuple{Point2{<:Real}, GeoRegion}"},[i("span",{class:"jlbinding"},"Base.in")],-1)),s[1]||(s[1]=e()),a(n,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[2]||(s[2]=o(`
julia
in(
+import{_ as t,c as l,j as i,a as e,G as a,a5 as o,B as p,o as h}from"./chunks/framework.JKTEW8jd.js";const C=JSON.parse('{"title":"API for Is it in/on a GeoRegion?","description":"","frontmatter":{},"headers":[],"relativePath":"api/isin.md","filePath":"api/isin.md","lastUpdated":null}'),d={name:"api/isin.md"},k={class:"jldocstring custom-block",open:""},r={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},c={class:"jldocstring custom-block",open:""};function E(y,s,u,b,F,f){const n=p("Badge");return h(),l("div",null,[s[12]||(s[12]=i("h1",{id:"API-for-Is-it-in/on-a-GeoRegion?",tabindex:"-1"},[e("API for Is it in/on a GeoRegion? "),i("a",{class:"header-anchor",href:"#API-for-Is-it-in/on-a-GeoRegion?","aria-label":'Permalink to "API for Is it in/on a GeoRegion? {#API-for-Is-it-in/on-a-GeoRegion?}"'},"​")],-1)),i("details",k,[i("summary",null,[s[0]||(s[0]=i("a",{id:"Base.in-Tuple{Point2{<:Real}, GeoRegion}",href:"#Base.in-Tuple{Point2{<:Real}, GeoRegion}"},[i("span",{class:"jlbinding"},"Base.in")],-1)),s[1]||(s[1]=e()),a(n,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[2]||(s[2]=o(`
julia
in(
     point  :: Point2{<:Real},
     geo    :: GeoRegion;
     throw  :: Bool = false
-) -> Bool

Check if a geographical point point is within a GeoRegion defined by geo.

Arguments

  • point : A geographical point of Type Point. Pass Point(plon,plat), where plon and plat are the longitude and latitudes of the point.

  • geo : The GeoRegion struct container

Keyword Arguments

  • throw : If true, then if point is not within geo, an error is thrown and the program stops running.

source

`,7))]),i("details",r,[i("summary",null,[s[3]||(s[3]=i("a",{id:"Base.in-Tuple{GeoRegion, GeoRegion}",href:"#Base.in-Tuple{GeoRegion, GeoRegion}"},[i("span",{class:"jlbinding"},"Base.in")],-1)),s[4]||(s[4]=e()),a(n,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[5]||(s[5]=o(`
julia
in(
+) -> Bool

Check if a geographical point point is within a GeoRegion defined by geo.

Arguments

  • point : A geographical point of Type Point. Pass Point(plon,plat), where plon and plat are the longitude and latitudes of the point.

  • geo : The GeoRegion struct container

Keyword Arguments

  • throw : If true, then if point is not within geo, an error is thrown and the program stops running.

source

`,7))]),i("details",r,[i("summary",null,[s[3]||(s[3]=i("a",{id:"Base.in-Tuple{GeoRegion, GeoRegion}",href:"#Base.in-Tuple{GeoRegion, GeoRegion}"},[i("span",{class:"jlbinding"},"Base.in")],-1)),s[4]||(s[4]=e()),a(n,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[5]||(s[5]=o(`
julia
in(
     cgeo  :: GeoRegion,
     geo   :: GeoRegion;
     n     :: Int = 100,
     throw :: Bool = false
-) -> Bool

Check if a child GeoRegion defined by cgeo is within a RectRegion geo.

Arguments

  • cgeo : A GeoRegion that we postulate to be a "child", or a subset of the GeoRegion defined by geo

  • geo : A GeoRegion that we postulate to be a "parent", or containing the GeoRegion defined by cgeo

Keyword Arguments

  • throw : If true, then if cgeo is not within geo, an error is thrown and the program stops running

source

`,7))]),i("details",g,[i("summary",null,[s[6]||(s[6]=i("a",{id:"GeoRegions.on-Tuple{Point2{<:Real}, GeoRegion}",href:"#GeoRegions.on-Tuple{Point2{<:Real}, GeoRegion}"},[i("span",{class:"jlbinding"},"GeoRegions.on")],-1)),s[7]||(s[7]=e()),a(n,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[8]||(s[8]=o(`
julia
on(
+) -> Bool

Check if a child GeoRegion defined by cgeo is within a RectRegion geo.

Arguments

  • cgeo : A GeoRegion that we postulate to be a "child", or a subset of the GeoRegion defined by geo

  • geo : A GeoRegion that we postulate to be a "parent", or containing the GeoRegion defined by cgeo

Keyword Arguments

  • throw : If true, then if cgeo is not within geo, an error is thrown and the program stops running

source

`,7))]),i("details",g,[i("summary",null,[s[6]||(s[6]=i("a",{id:"GeoRegions.on-Tuple{Point2{<:Real}, GeoRegion}",href:"#GeoRegions.on-Tuple{Point2{<:Real}, GeoRegion}"},[i("span",{class:"jlbinding"},"GeoRegions.on")],-1)),s[7]||(s[7]=e()),a(n,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[8]||(s[8]=o(`
julia
on(
     point  :: Point2{<:Real},
     geo    :: GeoRegion;
     throw  :: Bool = false
-) -> Bool

Check if a geographical point point is on the boundary of a shape of a GeoRegion defined by geo.

Arguments

  • point : A geographical point of Type Point. Pass Point(plon,plat), where plon and plat are the longitude and latitudes of the point.

  • geo : The GeoRegion struct container

Keyword Arguments

  • throw : If true, then if point is not within geo, an error is thrown and the program stops running.

source

`,7))]),i("details",c,[i("summary",null,[s[9]||(s[9]=i("a",{id:"GeoRegions.on-Tuple{GeoRegion, GeoRegion}",href:"#GeoRegions.on-Tuple{GeoRegion, GeoRegion}"},[i("span",{class:"jlbinding"},"GeoRegions.on")],-1)),s[10]||(s[10]=e()),a(n,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[11]||(s[11]=o(`
julia
on(
+) -> Bool

Check if a geographical point point is on the boundary of a shape of a GeoRegion defined by geo.

Arguments

  • point : A geographical point of Type Point. Pass Point(plon,plat), where plon and plat are the longitude and latitudes of the point.

  • geo : The GeoRegion struct container

Keyword Arguments

  • throw : If true, then if point is not within geo, an error is thrown and the program stops running.

source

`,7))]),i("details",c,[i("summary",null,[s[9]||(s[9]=i("a",{id:"GeoRegions.on-Tuple{GeoRegion, GeoRegion}",href:"#GeoRegions.on-Tuple{GeoRegion, GeoRegion}"},[i("span",{class:"jlbinding"},"GeoRegions.on")],-1)),s[10]||(s[10]=e()),a(n,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[11]||(s[11]=o(`
julia
on(
     geo1  :: GeoRegion,
     geo2  :: GeoRegion;
     n     :: Int = 100,
     throw :: Bool = false
-) -> Bool

Check if a child GeoRegion defined by cgeo is the same as a RectRegion geo.

Arguments

  • cgeo : A GeoRegion that we postulate to be a "child", or a subset of the GeoRegion defined by geo

  • geo : A GeoRegion that we postulate to be a "parent", or containing the GeoRegion defined by cgeo

Keyword Arguments

  • throw : If true, then if cgeo is not within geo, an error is thrown and the program stops running

source

`,7))])])}const m=t(d,[["render",E]]);export{C as __pageData,m as default}; +) -> Bool

Check if a child GeoRegion defined by cgeo is the same as a RectRegion geo.

Arguments

Keyword Arguments

source

`,7))])])}const m=t(d,[["render",E]]);export{C as __pageData,m as default}; diff --git a/dev/assets/api_isin.md.7FsrXMWg.lean.js b/dev/assets/api_isin.md.TYgWP7mT.lean.js similarity index 96% rename from dev/assets/api_isin.md.7FsrXMWg.lean.js rename to dev/assets/api_isin.md.TYgWP7mT.lean.js index c0f9dfb9..1e2036c0 100644 --- a/dev/assets/api_isin.md.7FsrXMWg.lean.js +++ b/dev/assets/api_isin.md.TYgWP7mT.lean.js @@ -1,19 +1,19 @@ -import{_ as t,c as l,j as i,a as e,G as a,a5 as o,B as p,o as h}from"./chunks/framework.JKTEW8jd.js";const C=JSON.parse('{"title":"API for Is it in/on a GeoRegion?","description":"","frontmatter":{},"headers":[],"relativePath":"api/isin.md","filePath":"api/isin.md","lastUpdated":null}'),d={name:"api/isin.md"},k={class:"jldocstring custom-block",open:""},r={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},c={class:"jldocstring custom-block",open:""};function E(y,s,u,b,f,F){const n=p("Badge");return h(),l("div",null,[s[12]||(s[12]=i("h1",{id:"API-for-Is-it-in/on-a-GeoRegion?",tabindex:"-1"},[e("API for Is it in/on a GeoRegion? "),i("a",{class:"header-anchor",href:"#API-for-Is-it-in/on-a-GeoRegion?","aria-label":'Permalink to "API for Is it in/on a GeoRegion? {#API-for-Is-it-in/on-a-GeoRegion?}"'},"​")],-1)),i("details",k,[i("summary",null,[s[0]||(s[0]=i("a",{id:"Base.in-Tuple{Point2{<:Real}, GeoRegion}",href:"#Base.in-Tuple{Point2{<:Real}, GeoRegion}"},[i("span",{class:"jlbinding"},"Base.in")],-1)),s[1]||(s[1]=e()),a(n,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[2]||(s[2]=o(`
julia
in(
+import{_ as t,c as l,j as i,a as e,G as a,a5 as o,B as p,o as h}from"./chunks/framework.JKTEW8jd.js";const C=JSON.parse('{"title":"API for Is it in/on a GeoRegion?","description":"","frontmatter":{},"headers":[],"relativePath":"api/isin.md","filePath":"api/isin.md","lastUpdated":null}'),d={name:"api/isin.md"},k={class:"jldocstring custom-block",open:""},r={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},c={class:"jldocstring custom-block",open:""};function E(y,s,u,b,F,f){const n=p("Badge");return h(),l("div",null,[s[12]||(s[12]=i("h1",{id:"API-for-Is-it-in/on-a-GeoRegion?",tabindex:"-1"},[e("API for Is it in/on a GeoRegion? "),i("a",{class:"header-anchor",href:"#API-for-Is-it-in/on-a-GeoRegion?","aria-label":'Permalink to "API for Is it in/on a GeoRegion? {#API-for-Is-it-in/on-a-GeoRegion?}"'},"​")],-1)),i("details",k,[i("summary",null,[s[0]||(s[0]=i("a",{id:"Base.in-Tuple{Point2{<:Real}, GeoRegion}",href:"#Base.in-Tuple{Point2{<:Real}, GeoRegion}"},[i("span",{class:"jlbinding"},"Base.in")],-1)),s[1]||(s[1]=e()),a(n,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[2]||(s[2]=o(`
julia
in(
     point  :: Point2{<:Real},
     geo    :: GeoRegion;
     throw  :: Bool = false
-) -> Bool

Check if a geographical point point is within a GeoRegion defined by geo.

Arguments

  • point : A geographical point of Type Point. Pass Point(plon,plat), where plon and plat are the longitude and latitudes of the point.

  • geo : The GeoRegion struct container

Keyword Arguments

  • throw : If true, then if point is not within geo, an error is thrown and the program stops running.

source

`,7))]),i("details",r,[i("summary",null,[s[3]||(s[3]=i("a",{id:"Base.in-Tuple{GeoRegion, GeoRegion}",href:"#Base.in-Tuple{GeoRegion, GeoRegion}"},[i("span",{class:"jlbinding"},"Base.in")],-1)),s[4]||(s[4]=e()),a(n,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[5]||(s[5]=o(`
julia
in(
+) -> Bool

Check if a geographical point point is within a GeoRegion defined by geo.

Arguments

  • point : A geographical point of Type Point. Pass Point(plon,plat), where plon and plat are the longitude and latitudes of the point.

  • geo : The GeoRegion struct container

Keyword Arguments

  • throw : If true, then if point is not within geo, an error is thrown and the program stops running.

source

`,7))]),i("details",r,[i("summary",null,[s[3]||(s[3]=i("a",{id:"Base.in-Tuple{GeoRegion, GeoRegion}",href:"#Base.in-Tuple{GeoRegion, GeoRegion}"},[i("span",{class:"jlbinding"},"Base.in")],-1)),s[4]||(s[4]=e()),a(n,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[5]||(s[5]=o(`
julia
in(
     cgeo  :: GeoRegion,
     geo   :: GeoRegion;
     n     :: Int = 100,
     throw :: Bool = false
-) -> Bool

Check if a child GeoRegion defined by cgeo is within a RectRegion geo.

Arguments

  • cgeo : A GeoRegion that we postulate to be a "child", or a subset of the GeoRegion defined by geo

  • geo : A GeoRegion that we postulate to be a "parent", or containing the GeoRegion defined by cgeo

Keyword Arguments

  • throw : If true, then if cgeo is not within geo, an error is thrown and the program stops running

source

`,7))]),i("details",g,[i("summary",null,[s[6]||(s[6]=i("a",{id:"GeoRegions.on-Tuple{Point2{<:Real}, GeoRegion}",href:"#GeoRegions.on-Tuple{Point2{<:Real}, GeoRegion}"},[i("span",{class:"jlbinding"},"GeoRegions.on")],-1)),s[7]||(s[7]=e()),a(n,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[8]||(s[8]=o(`
julia
on(
+) -> Bool

Check if a child GeoRegion defined by cgeo is within a RectRegion geo.

Arguments

  • cgeo : A GeoRegion that we postulate to be a "child", or a subset of the GeoRegion defined by geo

  • geo : A GeoRegion that we postulate to be a "parent", or containing the GeoRegion defined by cgeo

Keyword Arguments

  • throw : If true, then if cgeo is not within geo, an error is thrown and the program stops running

source

`,7))]),i("details",g,[i("summary",null,[s[6]||(s[6]=i("a",{id:"GeoRegions.on-Tuple{Point2{<:Real}, GeoRegion}",href:"#GeoRegions.on-Tuple{Point2{<:Real}, GeoRegion}"},[i("span",{class:"jlbinding"},"GeoRegions.on")],-1)),s[7]||(s[7]=e()),a(n,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[8]||(s[8]=o(`
julia
on(
     point  :: Point2{<:Real},
     geo    :: GeoRegion;
     throw  :: Bool = false
-) -> Bool

Check if a geographical point point is on the boundary of a shape of a GeoRegion defined by geo.

Arguments

  • point : A geographical point of Type Point. Pass Point(plon,plat), where plon and plat are the longitude and latitudes of the point.

  • geo : The GeoRegion struct container

Keyword Arguments

  • throw : If true, then if point is not within geo, an error is thrown and the program stops running.

source

`,7))]),i("details",c,[i("summary",null,[s[9]||(s[9]=i("a",{id:"GeoRegions.on-Tuple{GeoRegion, GeoRegion}",href:"#GeoRegions.on-Tuple{GeoRegion, GeoRegion}"},[i("span",{class:"jlbinding"},"GeoRegions.on")],-1)),s[10]||(s[10]=e()),a(n,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[11]||(s[11]=o(`
julia
on(
+) -> Bool

Check if a geographical point point is on the boundary of a shape of a GeoRegion defined by geo.

Arguments

  • point : A geographical point of Type Point. Pass Point(plon,plat), where plon and plat are the longitude and latitudes of the point.

  • geo : The GeoRegion struct container

Keyword Arguments

  • throw : If true, then if point is not within geo, an error is thrown and the program stops running.

source

`,7))]),i("details",c,[i("summary",null,[s[9]||(s[9]=i("a",{id:"GeoRegions.on-Tuple{GeoRegion, GeoRegion}",href:"#GeoRegions.on-Tuple{GeoRegion, GeoRegion}"},[i("span",{class:"jlbinding"},"GeoRegions.on")],-1)),s[10]||(s[10]=e()),a(n,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[11]||(s[11]=o(`
julia
on(
     geo1  :: GeoRegion,
     geo2  :: GeoRegion;
     n     :: Int = 100,
     throw :: Bool = false
-) -> Bool

Check if a child GeoRegion defined by cgeo is the same as a RectRegion geo.

Arguments

  • cgeo : A GeoRegion that we postulate to be a "child", or a subset of the GeoRegion defined by geo

  • geo : A GeoRegion that we postulate to be a "parent", or containing the GeoRegion defined by cgeo

Keyword Arguments

  • throw : If true, then if cgeo is not within geo, an error is thrown and the program stops running

source

`,7))])])}const m=t(d,[["render",E]]);export{C as __pageData,m as default}; +) -> Bool

Check if a child GeoRegion defined by cgeo is the same as a RectRegion geo.

Arguments

Keyword Arguments

source

`,7))])])}const m=t(d,[["render",E]]);export{C as __pageData,m as default}; diff --git a/dev/assets/api_project.md.BQUL8STL.js b/dev/assets/api_project.md.DIgEzLo7.js similarity index 87% rename from dev/assets/api_project.md.BQUL8STL.js rename to dev/assets/api_project.md.DIgEzLo7.js index 34c11a06..054e1038 100644 --- a/dev/assets/api_project.md.BQUL8STL.js +++ b/dev/assets/api_project.md.DIgEzLo7.js @@ -1,8 +1,8 @@ -import{_ as o,c as l,j as e,a as i,G as n,a5 as a,B as p,o as r}from"./chunks/framework.JKTEW8jd.js";const j=JSON.parse('{"title":"API for Project-Handling in GeoRegions.jl","description":"","frontmatter":{},"headers":[],"relativePath":"api/project.md","filePath":"api/project.md","lastUpdated":null}'),h={name:"api/project.md"},d={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},k={class:"jldocstring custom-block",open:""};function c(u,s,b,f,y,E){const t=p("Badge");return r(),l("div",null,[s[9]||(s[9]=e("h1",{id:"API-for-Project-Handling-in-GeoRegions.jl",tabindex:"-1"},[i("API for Project-Handling in GeoRegions.jl "),e("a",{class:"header-anchor",href:"#API-for-Project-Handling-in-GeoRegions.jl","aria-label":'Permalink to "API for Project-Handling in GeoRegions.jl {#API-for-Project-Handling-in-GeoRegions.jl}"'},"​")],-1)),e("details",d,[e("summary",null,[s[0]||(s[0]=e("a",{id:"GeoRegions.setupGeoRegions",href:"#GeoRegions.setupGeoRegions"},[e("span",{class:"jlbinding"},"GeoRegions.setupGeoRegions")],-1)),s[1]||(s[1]=i()),n(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[2]||(s[2]=a(`
julia
setupGeoRegions(;
+import{_ as o,c as l,j as e,a as i,G as a,a5 as n,B as p,o as r}from"./chunks/framework.JKTEW8jd.js";const j=JSON.parse('{"title":"API for Project-Handling in GeoRegions.jl","description":"","frontmatter":{},"headers":[],"relativePath":"api/project.md","filePath":"api/project.md","lastUpdated":null}'),h={name:"api/project.md"},d={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},k={class:"jldocstring custom-block",open:""};function c(u,s,b,y,f,E){const t=p("Badge");return r(),l("div",null,[s[9]||(s[9]=e("h1",{id:"API-for-Project-Handling-in-GeoRegions.jl",tabindex:"-1"},[i("API for Project-Handling in GeoRegions.jl "),e("a",{class:"header-anchor",href:"#API-for-Project-Handling-in-GeoRegions.jl","aria-label":'Permalink to "API for Project-Handling in GeoRegions.jl {#API-for-Project-Handling-in-GeoRegions.jl}"'},"​")],-1)),e("details",d,[e("summary",null,[s[0]||(s[0]=e("a",{id:"GeoRegions.setupGeoRegions",href:"#GeoRegions.setupGeoRegions"},[e("span",{class:"jlbinding"},"GeoRegions.setupGeoRegions")],-1)),s[1]||(s[1]=i()),a(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[2]||(s[2]=n(`
julia
setupGeoRegions(;
     path :: AbstractString = pwd(),
     overwrite :: Bool = false
-) -> nothing

Setup the directory specified by path with files for custom GeoRegions. If overwrite = true, then any preexisting files are overwritten

Keyword Arguments

  • path : The path where the template list of custom GeoRegions will be copied to. Defaults to the current working directory pwd().

  • overwrite : If template files exist in this folder, overwrite?

source

`,5))]),e("details",g,[e("summary",null,[s[3]||(s[3]=e("a",{id:"GeoRegions.deleteGeoRegions",href:"#GeoRegions.deleteGeoRegions"},[e("span",{class:"jlbinding"},"GeoRegions.deleteGeoRegions")],-1)),s[4]||(s[4]=i()),n(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[5]||(s[5]=a(`
julia
deleteGeoRegions(;
+) -> nothing

Setup the directory specified by path with files for custom GeoRegions. If overwrite = true, then any preexisting files are overwritten

Keyword Arguments

  • path : The path where the template list of custom GeoRegions will be copied to. Defaults to the current working directory pwd().

  • overwrite : If template files exist in this folder, overwrite?

source

`,5))]),e("details",g,[e("summary",null,[s[3]||(s[3]=e("a",{id:"GeoRegions.deleteGeoRegions",href:"#GeoRegions.deleteGeoRegions"},[e("span",{class:"jlbinding"},"GeoRegions.deleteGeoRegions")],-1)),s[4]||(s[4]=i()),a(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[5]||(s[5]=n(`
julia
deleteGeoRegions(;
     path :: AbstractString = pwd()
-) -> nothing

Reset all the files containing GeoRegion information back to the default.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the current working directory pwd()

source

`,5))]),e("details",k,[e("summary",null,[s[6]||(s[6]=e("a",{id:"GeoRegions.tableGeoRegions-Tuple{AbstractString}",href:"#GeoRegions.tableGeoRegions-Tuple{AbstractString}"},[e("span",{class:"jlbinding"},"GeoRegions.tableGeoRegions")],-1)),s[7]||(s[7]=i()),n(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[8]||(s[8]=a(`
julia
tableGeoRegions(
+) -> nothing

Reset all the files containing GeoRegion information back to the default.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the current working directory pwd()

source

`,5))]),e("details",k,[e("summary",null,[s[6]||(s[6]=e("a",{id:"GeoRegions.tableGeoRegions-Tuple{AbstractString}",href:"#GeoRegions.tableGeoRegions-Tuple{AbstractString}"},[e("span",{class:"jlbinding"},"GeoRegions.tableGeoRegions")],-1)),s[7]||(s[7]=i()),a(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[8]||(s[8]=n(`
julia
tableGeoRegions(
     fname :: AbstractString
-) -> nothing

Display all available GeoRegions in tabular format listed in the file fname.

Arguments

  • fname : Specifies the name + path of the file containing GeoRegion information

source

`,5))])])}const F=o(h,[["render",c]]);export{j as __pageData,F as default}; +) -> nothing

Display all available GeoRegions in tabular format listed in the file fname.

Arguments

source

`,5))])])}const F=o(h,[["render",c]]);export{j as __pageData,F as default}; diff --git a/dev/assets/api_project.md.BQUL8STL.lean.js b/dev/assets/api_project.md.DIgEzLo7.lean.js similarity index 87% rename from dev/assets/api_project.md.BQUL8STL.lean.js rename to dev/assets/api_project.md.DIgEzLo7.lean.js index 34c11a06..054e1038 100644 --- a/dev/assets/api_project.md.BQUL8STL.lean.js +++ b/dev/assets/api_project.md.DIgEzLo7.lean.js @@ -1,8 +1,8 @@ -import{_ as o,c as l,j as e,a as i,G as n,a5 as a,B as p,o as r}from"./chunks/framework.JKTEW8jd.js";const j=JSON.parse('{"title":"API for Project-Handling in GeoRegions.jl","description":"","frontmatter":{},"headers":[],"relativePath":"api/project.md","filePath":"api/project.md","lastUpdated":null}'),h={name:"api/project.md"},d={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},k={class:"jldocstring custom-block",open:""};function c(u,s,b,f,y,E){const t=p("Badge");return r(),l("div",null,[s[9]||(s[9]=e("h1",{id:"API-for-Project-Handling-in-GeoRegions.jl",tabindex:"-1"},[i("API for Project-Handling in GeoRegions.jl "),e("a",{class:"header-anchor",href:"#API-for-Project-Handling-in-GeoRegions.jl","aria-label":'Permalink to "API for Project-Handling in GeoRegions.jl {#API-for-Project-Handling-in-GeoRegions.jl}"'},"​")],-1)),e("details",d,[e("summary",null,[s[0]||(s[0]=e("a",{id:"GeoRegions.setupGeoRegions",href:"#GeoRegions.setupGeoRegions"},[e("span",{class:"jlbinding"},"GeoRegions.setupGeoRegions")],-1)),s[1]||(s[1]=i()),n(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[2]||(s[2]=a(`
julia
setupGeoRegions(;
+import{_ as o,c as l,j as e,a as i,G as a,a5 as n,B as p,o as r}from"./chunks/framework.JKTEW8jd.js";const j=JSON.parse('{"title":"API for Project-Handling in GeoRegions.jl","description":"","frontmatter":{},"headers":[],"relativePath":"api/project.md","filePath":"api/project.md","lastUpdated":null}'),h={name:"api/project.md"},d={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},k={class:"jldocstring custom-block",open:""};function c(u,s,b,y,f,E){const t=p("Badge");return r(),l("div",null,[s[9]||(s[9]=e("h1",{id:"API-for-Project-Handling-in-GeoRegions.jl",tabindex:"-1"},[i("API for Project-Handling in GeoRegions.jl "),e("a",{class:"header-anchor",href:"#API-for-Project-Handling-in-GeoRegions.jl","aria-label":'Permalink to "API for Project-Handling in GeoRegions.jl {#API-for-Project-Handling-in-GeoRegions.jl}"'},"​")],-1)),e("details",d,[e("summary",null,[s[0]||(s[0]=e("a",{id:"GeoRegions.setupGeoRegions",href:"#GeoRegions.setupGeoRegions"},[e("span",{class:"jlbinding"},"GeoRegions.setupGeoRegions")],-1)),s[1]||(s[1]=i()),a(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[2]||(s[2]=n(`
julia
setupGeoRegions(;
     path :: AbstractString = pwd(),
     overwrite :: Bool = false
-) -> nothing

Setup the directory specified by path with files for custom GeoRegions. If overwrite = true, then any preexisting files are overwritten

Keyword Arguments

  • path : The path where the template list of custom GeoRegions will be copied to. Defaults to the current working directory pwd().

  • overwrite : If template files exist in this folder, overwrite?

source

`,5))]),e("details",g,[e("summary",null,[s[3]||(s[3]=e("a",{id:"GeoRegions.deleteGeoRegions",href:"#GeoRegions.deleteGeoRegions"},[e("span",{class:"jlbinding"},"GeoRegions.deleteGeoRegions")],-1)),s[4]||(s[4]=i()),n(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[5]||(s[5]=a(`
julia
deleteGeoRegions(;
+) -> nothing

Setup the directory specified by path with files for custom GeoRegions. If overwrite = true, then any preexisting files are overwritten

Keyword Arguments

  • path : The path where the template list of custom GeoRegions will be copied to. Defaults to the current working directory pwd().

  • overwrite : If template files exist in this folder, overwrite?

source

`,5))]),e("details",g,[e("summary",null,[s[3]||(s[3]=e("a",{id:"GeoRegions.deleteGeoRegions",href:"#GeoRegions.deleteGeoRegions"},[e("span",{class:"jlbinding"},"GeoRegions.deleteGeoRegions")],-1)),s[4]||(s[4]=i()),a(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[5]||(s[5]=n(`
julia
deleteGeoRegions(;
     path :: AbstractString = pwd()
-) -> nothing

Reset all the files containing GeoRegion information back to the default.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the current working directory pwd()

source

`,5))]),e("details",k,[e("summary",null,[s[6]||(s[6]=e("a",{id:"GeoRegions.tableGeoRegions-Tuple{AbstractString}",href:"#GeoRegions.tableGeoRegions-Tuple{AbstractString}"},[e("span",{class:"jlbinding"},"GeoRegions.tableGeoRegions")],-1)),s[7]||(s[7]=i()),n(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[8]||(s[8]=a(`
julia
tableGeoRegions(
+) -> nothing

Reset all the files containing GeoRegion information back to the default.

Keyword Arguments

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the current working directory pwd()

source

`,5))]),e("details",k,[e("summary",null,[s[6]||(s[6]=e("a",{id:"GeoRegions.tableGeoRegions-Tuple{AbstractString}",href:"#GeoRegions.tableGeoRegions-Tuple{AbstractString}"},[e("span",{class:"jlbinding"},"GeoRegions.tableGeoRegions")],-1)),s[7]||(s[7]=i()),a(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[8]||(s[8]=n(`
julia
tableGeoRegions(
     fname :: AbstractString
-) -> nothing

Display all available GeoRegions in tabular format listed in the file fname.

Arguments

  • fname : Specifies the name + path of the file containing GeoRegion information

source

`,5))])])}const F=o(h,[["render",c]]);export{j as __pageData,F as default}; +) -> nothing

Display all available GeoRegions in tabular format listed in the file fname.

Arguments

source

`,5))])])}const F=o(h,[["render",c]]);export{j as __pageData,F as default}; diff --git a/dev/assets/api_properties.md.DC0qlyXB.js b/dev/assets/api_properties.md.D89Fq5u-.js similarity index 89% rename from dev/assets/api_properties.md.DC0qlyXB.js rename to dev/assets/api_properties.md.D89Fq5u-.js index fb59d3a7..75a37cce 100644 --- a/dev/assets/api_properties.md.DC0qlyXB.js +++ b/dev/assets/api_properties.md.D89Fq5u-.js @@ -1,4 +1,4 @@ -import{_ as a,c as n,j as s,a as i,G as o,a5 as r,B as l,o as p}from"./chunks/framework.JKTEW8jd.js";const m=JSON.parse('{"title":"API for Different GeoRegion Properties","description":"","frontmatter":{},"headers":[],"relativePath":"api/properties.md","filePath":"api/properties.md","lastUpdated":null}'),h={name:"api/properties.md"},d={class:"jldocstring custom-block",open:""};function k(g,e,c,f,u,E){const t=l("Badge");return p(),n("div",null,[e[3]||(e[3]=s("h1",{id:"API-for-Different-GeoRegion-Properties",tabindex:"-1"},[i("API for Different GeoRegion Properties "),s("a",{class:"header-anchor",href:"#API-for-Different-GeoRegion-Properties","aria-label":'Permalink to "API for Different GeoRegion Properties {#API-for-Different-GeoRegion-Properties}"'},"​")],-1)),s("details",d,[s("summary",null,[e[0]||(e[0]=s("a",{id:"GeoRegions.coordinates",href:"#GeoRegions.coordinates"},[s("span",{class:"jlbinding"},"GeoRegions.coordinates")],-1)),e[1]||(e[1]=i()),o(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),e[2]||(e[2]=r(`
julia
coordinates(
+import{_ as t,c as n,j as s,a as i,G as o,a5 as r,B as l,o as p}from"./chunks/framework.JKTEW8jd.js";const m=JSON.parse('{"title":"API for Different GeoRegion Properties","description":"","frontmatter":{},"headers":[],"relativePath":"api/properties.md","filePath":"api/properties.md","lastUpdated":null}'),h={name:"api/properties.md"},d={class:"jldocstring custom-block",open:""};function k(g,e,c,f,u,E){const a=l("Badge");return p(),n("div",null,[e[3]||(e[3]=s("h1",{id:"API-for-Different-GeoRegion-Properties",tabindex:"-1"},[i("API for Different GeoRegion Properties "),s("a",{class:"header-anchor",href:"#API-for-Different-GeoRegion-Properties","aria-label":'Permalink to "API for Different GeoRegion Properties {#API-for-Different-GeoRegion-Properties}"'},"​")],-1)),s("details",d,[s("summary",null,[e[0]||(e[0]=s("a",{id:"GeoRegions.coordinates",href:"#GeoRegions.coordinates"},[s("span",{class:"jlbinding"},"GeoRegions.coordinates")],-1)),e[1]||(e[1]=i()),o(a,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),e[2]||(e[2]=r(`
julia
coordinates(
     geo :: GeoRegion;
     n :: Int = 1
-) -> lon :: Vector{<:Real}, lat :: Vector{<:Real}

For a given GeoRegion, create longitude and latitude vectors of the shape.

Arguments

  • geo : A GeoRegion

  • n : The number of segments on each side of the shape (a vertex counts as half a point)

Returns

  • lon : A vector of longitude points for the shape of the GeoRegion

  • lat : A vector of latitude points for the shape of the GeoRegion

source

`,7))])])}const F=a(h,[["render",k]]);export{m as __pageData,F as default}; +) -> lon :: Vector{<:Real}, lat :: Vector{<:Real}

For a given GeoRegion, create longitude and latitude vectors of the shape.

Arguments

Returns

source

`,7))])])}const F=t(h,[["render",k]]);export{m as __pageData,F as default}; diff --git a/dev/assets/api_properties.md.DC0qlyXB.lean.js b/dev/assets/api_properties.md.D89Fq5u-.lean.js similarity index 89% rename from dev/assets/api_properties.md.DC0qlyXB.lean.js rename to dev/assets/api_properties.md.D89Fq5u-.lean.js index fb59d3a7..75a37cce 100644 --- a/dev/assets/api_properties.md.DC0qlyXB.lean.js +++ b/dev/assets/api_properties.md.D89Fq5u-.lean.js @@ -1,4 +1,4 @@ -import{_ as a,c as n,j as s,a as i,G as o,a5 as r,B as l,o as p}from"./chunks/framework.JKTEW8jd.js";const m=JSON.parse('{"title":"API for Different GeoRegion Properties","description":"","frontmatter":{},"headers":[],"relativePath":"api/properties.md","filePath":"api/properties.md","lastUpdated":null}'),h={name:"api/properties.md"},d={class:"jldocstring custom-block",open:""};function k(g,e,c,f,u,E){const t=l("Badge");return p(),n("div",null,[e[3]||(e[3]=s("h1",{id:"API-for-Different-GeoRegion-Properties",tabindex:"-1"},[i("API for Different GeoRegion Properties "),s("a",{class:"header-anchor",href:"#API-for-Different-GeoRegion-Properties","aria-label":'Permalink to "API for Different GeoRegion Properties {#API-for-Different-GeoRegion-Properties}"'},"​")],-1)),s("details",d,[s("summary",null,[e[0]||(e[0]=s("a",{id:"GeoRegions.coordinates",href:"#GeoRegions.coordinates"},[s("span",{class:"jlbinding"},"GeoRegions.coordinates")],-1)),e[1]||(e[1]=i()),o(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),e[2]||(e[2]=r(`
julia
coordinates(
+import{_ as t,c as n,j as s,a as i,G as o,a5 as r,B as l,o as p}from"./chunks/framework.JKTEW8jd.js";const m=JSON.parse('{"title":"API for Different GeoRegion Properties","description":"","frontmatter":{},"headers":[],"relativePath":"api/properties.md","filePath":"api/properties.md","lastUpdated":null}'),h={name:"api/properties.md"},d={class:"jldocstring custom-block",open:""};function k(g,e,c,f,u,E){const a=l("Badge");return p(),n("div",null,[e[3]||(e[3]=s("h1",{id:"API-for-Different-GeoRegion-Properties",tabindex:"-1"},[i("API for Different GeoRegion Properties "),s("a",{class:"header-anchor",href:"#API-for-Different-GeoRegion-Properties","aria-label":'Permalink to "API for Different GeoRegion Properties {#API-for-Different-GeoRegion-Properties}"'},"​")],-1)),s("details",d,[s("summary",null,[e[0]||(e[0]=s("a",{id:"GeoRegions.coordinates",href:"#GeoRegions.coordinates"},[s("span",{class:"jlbinding"},"GeoRegions.coordinates")],-1)),e[1]||(e[1]=i()),o(a,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),e[2]||(e[2]=r(`
julia
coordinates(
     geo :: GeoRegion;
     n :: Int = 1
-) -> lon :: Vector{<:Real}, lat :: Vector{<:Real}

For a given GeoRegion, create longitude and latitude vectors of the shape.

Arguments

  • geo : A GeoRegion

  • n : The number of segments on each side of the shape (a vertex counts as half a point)

Returns

  • lon : A vector of longitude points for the shape of the GeoRegion

  • lat : A vector of latitude points for the shape of the GeoRegion

source

`,7))])])}const F=a(h,[["render",k]]);export{m as __pageData,F as default}; +) -> lon :: Vector{<:Real}, lat :: Vector{<:Real}

For a given GeoRegion, create longitude and latitude vectors of the shape.

Arguments

Returns

source

`,7))])])}const F=t(h,[["render",k]]);export{m as __pageData,F as default}; diff --git a/dev/assets/api_tables.md.Ddsch_94.js b/dev/assets/api_tables.md.DXf0ixUa.js similarity index 95% rename from dev/assets/api_tables.md.Ddsch_94.js rename to dev/assets/api_tables.md.DXf0ixUa.js index b8e2f2ab..20c1282b 100644 --- a/dev/assets/api_tables.md.Ddsch_94.js +++ b/dev/assets/api_tables.md.DXf0ixUa.js @@ -1,18 +1,18 @@ -import{_ as n,c as p,j as i,a as e,G as l,a5 as t,B as o,o as h}from"./chunks/framework.JKTEW8jd.js";const m=JSON.parse('{"title":"API for Tables in GeoRegions.jl","description":"","frontmatter":{},"headers":[],"relativePath":"api/tables.md","filePath":"api/tables.md","lastUpdated":null}'),k={name:"api/tables.md"},r={class:"jldocstring custom-block",open:""},d={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},c={class:"jldocstring custom-block",open:""};function y(E,s,u,b,F,f){const a=o("Badge");return h(),p("div",null,[s[12]||(s[12]=i("h1",{id:"API-for-Tables-in-GeoRegions.jl",tabindex:"-1"},[e("API for Tables in GeoRegions.jl "),i("a",{class:"header-anchor",href:"#API-for-Tables-in-GeoRegions.jl","aria-label":'Permalink to "API for Tables in GeoRegions.jl {#API-for-Tables-in-GeoRegions.jl}"'},"​")],-1)),i("details",r,[i("summary",null,[s[0]||(s[0]=i("a",{id:"GeoRegions.tableGeoRegions-Tuple{}",href:"#GeoRegions.tableGeoRegions-Tuple{}"},[i("span",{class:"jlbinding"},"GeoRegions.tableGeoRegions")],-1)),s[1]||(s[1]=e()),l(a,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[2]||(s[2]=t(`
julia
tableGeoRegions(;
+import{_ as n,c as p,j as i,a as e,G as l,a5 as t,B as o,o as h}from"./chunks/framework.JKTEW8jd.js";const m=JSON.parse('{"title":"API for Tables in GeoRegions.jl","description":"","frontmatter":{},"headers":[],"relativePath":"api/tables.md","filePath":"api/tables.md","lastUpdated":null}'),k={name:"api/tables.md"},d={class:"jldocstring custom-block",open:""},r={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},c={class:"jldocstring custom-block",open:""};function y(E,s,u,b,F,f){const a=o("Badge");return h(),p("div",null,[s[12]||(s[12]=i("h1",{id:"API-for-Tables-in-GeoRegions.jl",tabindex:"-1"},[e("API for Tables in GeoRegions.jl "),i("a",{class:"header-anchor",href:"#API-for-Tables-in-GeoRegions.jl","aria-label":'Permalink to "API for Tables in GeoRegions.jl {#API-for-Tables-in-GeoRegions.jl}"'},"​")],-1)),i("details",d,[i("summary",null,[s[0]||(s[0]=i("a",{id:"GeoRegions.tableGeoRegions-Tuple{}",href:"#GeoRegions.tableGeoRegions-Tuple{}"},[i("span",{class:"jlbinding"},"GeoRegions.tableGeoRegions")],-1)),s[1]||(s[1]=e()),l(a,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[2]||(s[2]=t(`
julia
tableGeoRegions(;
     path :: AbstractString = homedir(),
     predefined :: Bool = true,
     custom     :: Bool = true,
     warn :: Bool = true,
     crop :: Bool = false
-) -> nothing

Display all available GeoRegions in tabular format. Keyword Arguments =================

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the user's home directory homedir()

  • predefined : If true, predefined Giorgi, SREX and IPPC AR6 list of GeoRegions will be displayed.

  • custom : If true, custom, user-defined list of GeoRegions will be displayed.

  • warn : If true, display warnings if custom files do not exist

  • crop : If true, will crop the vertical extent of the table, default is false

source

`,4))]),i("details",d,[i("summary",null,[s[3]||(s[3]=i("a",{id:"GeoRegions.tableRectRegions",href:"#GeoRegions.tableRectRegions"},[i("span",{class:"jlbinding"},"GeoRegions.tableRectRegions")],-1)),s[4]||(s[4]=e()),l(a,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[5]||(s[5]=t(`
julia
tableRectRegions(;
+) -> nothing

Display all available GeoRegions in tabular format. Keyword Arguments =================

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the user's home directory homedir()

  • predefined : If true, predefined Giorgi, SREX and IPPC AR6 list of GeoRegions will be displayed.

  • custom : If true, custom, user-defined list of GeoRegions will be displayed.

  • warn : If true, display warnings if custom files do not exist

  • crop : If true, will crop the vertical extent of the table, default is false

source

`,4))]),i("details",r,[i("summary",null,[s[3]||(s[3]=i("a",{id:"GeoRegions.tableRectRegions",href:"#GeoRegions.tableRectRegions"},[i("span",{class:"jlbinding"},"GeoRegions.tableRectRegions")],-1)),s[4]||(s[4]=e()),l(a,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[5]||(s[5]=t(`
julia
tableRectRegions(;
     path :: AbstractString = homedir(),
     custom :: Bool = true,
     giorgi :: Bool = false
-) -> nothing

Display all available RectRegions in tabular format.

Keyword Arguments

  • path : The path where the list of custom RectRegions will be retrieved from. Defaults to the user's home directory homedir()

  • custom : If true, display custom user-defined RectRegions. Default is true

  • giorgi : If true, display GF predefined RectRegions. Default is true

source

`,5))]),i("details",g,[i("summary",null,[s[6]||(s[6]=i("a",{id:"GeoRegions.tableTiltRegions",href:"#GeoRegions.tableTiltRegions"},[i("span",{class:"jlbinding"},"GeoRegions.tableTiltRegions")],-1)),s[7]||(s[7]=e()),l(a,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[8]||(s[8]=t(`
julia
tableTiltRegions(;
+) -> nothing

Display all available RectRegions in tabular format.

Keyword Arguments

  • path : The path where the list of custom RectRegions will be retrieved from. Defaults to the user's home directory homedir()

  • custom : If true, display custom user-defined RectRegions. Default is true

  • giorgi : If true, display GF predefined RectRegions. Default is true

source

`,5))]),i("details",g,[i("summary",null,[s[6]||(s[6]=i("a",{id:"GeoRegions.tableTiltRegions",href:"#GeoRegions.tableTiltRegions"},[i("span",{class:"jlbinding"},"GeoRegions.tableTiltRegions")],-1)),s[7]||(s[7]=e()),l(a,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[8]||(s[8]=t(`
julia
tableTiltRegions(;
     path :: AbstractString = homedir()
-) -> nothing

Display all available TiltRegions in tabular format.

Keyword Arguments

  • path : The path where the list of custom TiltRegions will be retrieved from. Defaults to the user's home directory homedir()

source

`,5))]),i("details",c,[i("summary",null,[s[9]||(s[9]=i("a",{id:"GeoRegions.tablePolyRegions",href:"#GeoRegions.tablePolyRegions"},[i("span",{class:"jlbinding"},"GeoRegions.tablePolyRegions")],-1)),s[10]||(s[10]=e()),l(a,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[11]||(s[11]=t(`
julia
tablePolyRegions(;
+) -> nothing

Display all available TiltRegions in tabular format.

Keyword Arguments

  • path : The path where the list of custom TiltRegions will be retrieved from. Defaults to the user's home directory homedir()

source

`,5))]),i("details",c,[i("summary",null,[s[9]||(s[9]=i("a",{id:"GeoRegions.tablePolyRegions",href:"#GeoRegions.tablePolyRegions"},[i("span",{class:"jlbinding"},"GeoRegions.tablePolyRegions")],-1)),s[10]||(s[10]=e()),l(a,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[11]||(s[11]=t(`
julia
tablePolyRegions(;
     path :: AbstractString = homedir(),
     custom :: Bool = true,
     srex :: Bool = false,
     ar6  :: Bool = false
-) -> nothing

Display all available PolyRegions in tabular format.

Keyword Arguments

  • path : The path where the list of custom PolyRegions will be retrieved from. Defaults to the user's home directory homedir()

  • custom : If true, display custom user-defined PolyRegions. Default is true

  • srex : If true, display SREX predefined PolyRegions. Default is true

  • ar6 : If true, display IPCC AR6 predefined PolyRegions. Default is true

source

`,5))])])}const R=n(k,[["render",y]]);export{m as __pageData,R as default}; +) -> nothing

Display all available PolyRegions in tabular format.

Keyword Arguments

source

`,5))])])}const R=n(k,[["render",y]]);export{m as __pageData,R as default}; diff --git a/dev/assets/api_tables.md.Ddsch_94.lean.js b/dev/assets/api_tables.md.DXf0ixUa.lean.js similarity index 95% rename from dev/assets/api_tables.md.Ddsch_94.lean.js rename to dev/assets/api_tables.md.DXf0ixUa.lean.js index b8e2f2ab..20c1282b 100644 --- a/dev/assets/api_tables.md.Ddsch_94.lean.js +++ b/dev/assets/api_tables.md.DXf0ixUa.lean.js @@ -1,18 +1,18 @@ -import{_ as n,c as p,j as i,a as e,G as l,a5 as t,B as o,o as h}from"./chunks/framework.JKTEW8jd.js";const m=JSON.parse('{"title":"API for Tables in GeoRegions.jl","description":"","frontmatter":{},"headers":[],"relativePath":"api/tables.md","filePath":"api/tables.md","lastUpdated":null}'),k={name:"api/tables.md"},r={class:"jldocstring custom-block",open:""},d={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},c={class:"jldocstring custom-block",open:""};function y(E,s,u,b,F,f){const a=o("Badge");return h(),p("div",null,[s[12]||(s[12]=i("h1",{id:"API-for-Tables-in-GeoRegions.jl",tabindex:"-1"},[e("API for Tables in GeoRegions.jl "),i("a",{class:"header-anchor",href:"#API-for-Tables-in-GeoRegions.jl","aria-label":'Permalink to "API for Tables in GeoRegions.jl {#API-for-Tables-in-GeoRegions.jl}"'},"​")],-1)),i("details",r,[i("summary",null,[s[0]||(s[0]=i("a",{id:"GeoRegions.tableGeoRegions-Tuple{}",href:"#GeoRegions.tableGeoRegions-Tuple{}"},[i("span",{class:"jlbinding"},"GeoRegions.tableGeoRegions")],-1)),s[1]||(s[1]=e()),l(a,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[2]||(s[2]=t(`
julia
tableGeoRegions(;
+import{_ as n,c as p,j as i,a as e,G as l,a5 as t,B as o,o as h}from"./chunks/framework.JKTEW8jd.js";const m=JSON.parse('{"title":"API for Tables in GeoRegions.jl","description":"","frontmatter":{},"headers":[],"relativePath":"api/tables.md","filePath":"api/tables.md","lastUpdated":null}'),k={name:"api/tables.md"},d={class:"jldocstring custom-block",open:""},r={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},c={class:"jldocstring custom-block",open:""};function y(E,s,u,b,F,f){const a=o("Badge");return h(),p("div",null,[s[12]||(s[12]=i("h1",{id:"API-for-Tables-in-GeoRegions.jl",tabindex:"-1"},[e("API for Tables in GeoRegions.jl "),i("a",{class:"header-anchor",href:"#API-for-Tables-in-GeoRegions.jl","aria-label":'Permalink to "API for Tables in GeoRegions.jl {#API-for-Tables-in-GeoRegions.jl}"'},"​")],-1)),i("details",d,[i("summary",null,[s[0]||(s[0]=i("a",{id:"GeoRegions.tableGeoRegions-Tuple{}",href:"#GeoRegions.tableGeoRegions-Tuple{}"},[i("span",{class:"jlbinding"},"GeoRegions.tableGeoRegions")],-1)),s[1]||(s[1]=e()),l(a,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[2]||(s[2]=t(`
julia
tableGeoRegions(;
     path :: AbstractString = homedir(),
     predefined :: Bool = true,
     custom     :: Bool = true,
     warn :: Bool = true,
     crop :: Bool = false
-) -> nothing

Display all available GeoRegions in tabular format. Keyword Arguments =================

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the user's home directory homedir()

  • predefined : If true, predefined Giorgi, SREX and IPPC AR6 list of GeoRegions will be displayed.

  • custom : If true, custom, user-defined list of GeoRegions will be displayed.

  • warn : If true, display warnings if custom files do not exist

  • crop : If true, will crop the vertical extent of the table, default is false

source

`,4))]),i("details",d,[i("summary",null,[s[3]||(s[3]=i("a",{id:"GeoRegions.tableRectRegions",href:"#GeoRegions.tableRectRegions"},[i("span",{class:"jlbinding"},"GeoRegions.tableRectRegions")],-1)),s[4]||(s[4]=e()),l(a,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[5]||(s[5]=t(`
julia
tableRectRegions(;
+) -> nothing

Display all available GeoRegions in tabular format. Keyword Arguments =================

  • path : The path where the list of custom GeoRegions will be retrieved from. Defaults to the user's home directory homedir()

  • predefined : If true, predefined Giorgi, SREX and IPPC AR6 list of GeoRegions will be displayed.

  • custom : If true, custom, user-defined list of GeoRegions will be displayed.

  • warn : If true, display warnings if custom files do not exist

  • crop : If true, will crop the vertical extent of the table, default is false

source

`,4))]),i("details",r,[i("summary",null,[s[3]||(s[3]=i("a",{id:"GeoRegions.tableRectRegions",href:"#GeoRegions.tableRectRegions"},[i("span",{class:"jlbinding"},"GeoRegions.tableRectRegions")],-1)),s[4]||(s[4]=e()),l(a,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[5]||(s[5]=t(`
julia
tableRectRegions(;
     path :: AbstractString = homedir(),
     custom :: Bool = true,
     giorgi :: Bool = false
-) -> nothing

Display all available RectRegions in tabular format.

Keyword Arguments

  • path : The path where the list of custom RectRegions will be retrieved from. Defaults to the user's home directory homedir()

  • custom : If true, display custom user-defined RectRegions. Default is true

  • giorgi : If true, display GF predefined RectRegions. Default is true

source

`,5))]),i("details",g,[i("summary",null,[s[6]||(s[6]=i("a",{id:"GeoRegions.tableTiltRegions",href:"#GeoRegions.tableTiltRegions"},[i("span",{class:"jlbinding"},"GeoRegions.tableTiltRegions")],-1)),s[7]||(s[7]=e()),l(a,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[8]||(s[8]=t(`
julia
tableTiltRegions(;
+) -> nothing

Display all available RectRegions in tabular format.

Keyword Arguments

  • path : The path where the list of custom RectRegions will be retrieved from. Defaults to the user's home directory homedir()

  • custom : If true, display custom user-defined RectRegions. Default is true

  • giorgi : If true, display GF predefined RectRegions. Default is true

source

`,5))]),i("details",g,[i("summary",null,[s[6]||(s[6]=i("a",{id:"GeoRegions.tableTiltRegions",href:"#GeoRegions.tableTiltRegions"},[i("span",{class:"jlbinding"},"GeoRegions.tableTiltRegions")],-1)),s[7]||(s[7]=e()),l(a,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[8]||(s[8]=t(`
julia
tableTiltRegions(;
     path :: AbstractString = homedir()
-) -> nothing

Display all available TiltRegions in tabular format.

Keyword Arguments

  • path : The path where the list of custom TiltRegions will be retrieved from. Defaults to the user's home directory homedir()

source

`,5))]),i("details",c,[i("summary",null,[s[9]||(s[9]=i("a",{id:"GeoRegions.tablePolyRegions",href:"#GeoRegions.tablePolyRegions"},[i("span",{class:"jlbinding"},"GeoRegions.tablePolyRegions")],-1)),s[10]||(s[10]=e()),l(a,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[11]||(s[11]=t(`
julia
tablePolyRegions(;
+) -> nothing

Display all available TiltRegions in tabular format.

Keyword Arguments

  • path : The path where the list of custom TiltRegions will be retrieved from. Defaults to the user's home directory homedir()

source

`,5))]),i("details",c,[i("summary",null,[s[9]||(s[9]=i("a",{id:"GeoRegions.tablePolyRegions",href:"#GeoRegions.tablePolyRegions"},[i("span",{class:"jlbinding"},"GeoRegions.tablePolyRegions")],-1)),s[10]||(s[10]=e()),l(a,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[11]||(s[11]=t(`
julia
tablePolyRegions(;
     path :: AbstractString = homedir(),
     custom :: Bool = true,
     srex :: Bool = false,
     ar6  :: Bool = false
-) -> nothing

Display all available PolyRegions in tabular format.

Keyword Arguments

  • path : The path where the list of custom PolyRegions will be retrieved from. Defaults to the user's home directory homedir()

  • custom : If true, display custom user-defined PolyRegions. Default is true

  • srex : If true, display SREX predefined PolyRegions. Default is true

  • ar6 : If true, display IPCC AR6 predefined PolyRegions. Default is true

source

`,5))])])}const R=n(k,[["render",y]]);export{m as __pageData,R as default}; +) -> nothing

Display all available PolyRegions in tabular format.

Keyword Arguments

source

`,5))])])}const R=n(k,[["render",y]]);export{m as __pageData,R as default}; diff --git a/dev/assets/app.DaUyaPBq.js b/dev/assets/app.BOuNE0YG.js similarity index 95% rename from dev/assets/app.DaUyaPBq.js rename to dev/assets/app.BOuNE0YG.js index 6c14f875..9ed94572 100644 --- a/dev/assets/app.DaUyaPBq.js +++ b/dev/assets/app.BOuNE0YG.js @@ -1 +1 @@ -import{R as p}from"./chunks/theme.B3BJMEH-.js";import{R as o,a6 as u,a7 as c,a8 as l,a9 as f,aa as d,ab as m,ac as h,ad as g,ae as A,af as v,d as P,u as R,v as w,s as y,ag as C,ah as b,ai as E,a4 as S}from"./chunks/framework.JKTEW8jd.js";function i(e){if(e.extends){const a=i(e.extends);return{...a,...e,async enhanceApp(t){a.enhanceApp&&await a.enhanceApp(t),e.enhanceApp&&await e.enhanceApp(t)}}}return e}const s=i(p),T=P({name:"VitePressApp",setup(){const{site:e,lang:a,dir:t}=R();return w(()=>{y(()=>{document.documentElement.lang=a.value,document.documentElement.dir=t.value})}),e.value.router.prefetchLinks&&C(),b(),E(),s.setup&&s.setup(),()=>S(s.Layout)}});async function D(){globalThis.__VITEPRESS__=!0;const e=j(),a=_();a.provide(c,e);const t=l(e.route);return a.provide(f,t),a.component("Content",d),a.component("ClientOnly",m),Object.defineProperties(a.config.globalProperties,{$frontmatter:{get(){return t.frontmatter.value}},$params:{get(){return t.page.value.params}}}),s.enhanceApp&&await s.enhanceApp({app:a,router:e,siteData:h}),{app:a,router:e,data:t}}function _(){return g(T)}function j(){let e=o,a;return A(t=>{let n=v(t),r=null;return n&&(e&&(a=n),(e||a===n)&&(n=n.replace(/\.js$/,".lean.js")),r=import(n)),o&&(e=!1),r},s.NotFound)}o&&D().then(({app:e,router:a,data:t})=>{a.go().then(()=>{u(a.route,t.site),e.mount("#app")})});export{D as createApp}; +import{R as p}from"./chunks/theme.DptDGCLo.js";import{R as o,a6 as u,a7 as c,a8 as l,a9 as f,aa as d,ab as m,ac as h,ad as g,ae as A,af as v,d as P,u as R,v as w,s as y,ag as C,ah as b,ai as E,a4 as S}from"./chunks/framework.JKTEW8jd.js";function i(e){if(e.extends){const a=i(e.extends);return{...a,...e,async enhanceApp(t){a.enhanceApp&&await a.enhanceApp(t),e.enhanceApp&&await e.enhanceApp(t)}}}return e}const s=i(p),T=P({name:"VitePressApp",setup(){const{site:e,lang:a,dir:t}=R();return w(()=>{y(()=>{document.documentElement.lang=a.value,document.documentElement.dir=t.value})}),e.value.router.prefetchLinks&&C(),b(),E(),s.setup&&s.setup(),()=>S(s.Layout)}});async function D(){globalThis.__VITEPRESS__=!0;const e=j(),a=_();a.provide(c,e);const t=l(e.route);return a.provide(f,t),a.component("Content",d),a.component("ClientOnly",m),Object.defineProperties(a.config.globalProperties,{$frontmatter:{get(){return t.frontmatter.value}},$params:{get(){return t.page.value.params}}}),s.enhanceApp&&await s.enhanceApp({app:a,router:e,siteData:h}),{app:a,router:e,data:t}}function _(){return g(T)}function j(){let e=o,a;return A(t=>{let n=v(t),r=null;return n&&(e&&(a=n),(e||a===n)&&(n=n.replace(/\.js$/,".lean.js")),r=import(n)),o&&(e=!1),r},s.NotFound)}o&&D().then(({app:e,router:a,data:t})=>{a.go().then(()=>{u(a.route,t.site),e.mount("#app")})});export{D as createApp}; diff --git a/dev/assets/chunks/@localSearchIndexroot.Bw9U40YT.js b/dev/assets/chunks/@localSearchIndexroot.Bw9U40YT.js new file mode 100644 index 00000000..54490a1b --- /dev/null +++ b/dev/assets/chunks/@localSearchIndexroot.Bw9U40YT.js @@ -0,0 +1 @@ +const e='{"documentCount":52,"nextId":52,"documentIds":{"0":"/GeoRegions.jl/dev/api/addreadrm#API-for-Adding,-Reading-and-Removing-GeoRegions","1":"/GeoRegions.jl/dev/api/create#API-for-Creating-GeoRegions","2":"/GeoRegions.jl/dev/api/isin#API-for-Is-it-in/on-a-GeoRegion?","3":"/GeoRegions.jl/dev/api/project#API-for-Project-Handling-in-GeoRegions.jl","4":"/GeoRegions.jl/dev/api/properties#API-for-Different-GeoRegion-Properties","5":"/GeoRegions.jl/dev/api/tables#API-for-Tables-in-GeoRegions.jl","6":"/GeoRegions.jl/dev/basics/create#Creating-Custom-GeoRegions","7":"/GeoRegions.jl/dev/basics/create#Defining-New-RectRegions","8":"/GeoRegions.jl/dev/basics/create#Defining-New-PolyRegions","9":"/GeoRegions.jl/dev/basics/create#Defining-New-TiltRegions","10":"/GeoRegions.jl/dev/basics/properties/isequal#Comparing-GeoRegions","11":"/GeoRegions.jl/dev/basics/properties/isequal#1.-Are-two-GeoRegions-Equivalent","12":"/GeoRegions.jl/dev/basics/properties/isin#Is-it-in-a-GeoRegion?","13":"/GeoRegions.jl/dev/basics/properties/isin#Is-a-Point-in-a-GeoRegion?","14":"/GeoRegions.jl/dev/basics/properties/isin#Is-a-GeoRegion-inside-a-GeoRegion?","15":"/GeoRegions.jl/dev/basics/properties/shape#The-Shape-of-a-GeoRegion","16":"/GeoRegions.jl/dev/basics/properties/shape#Retrieving-the-coordinates-of-a-GeoRegion","17":"/GeoRegions.jl/dev/basics/read/listall#Default-List-of-Predefined-GeoRegions","18":"/GeoRegions.jl/dev/basics/read/listall#GeoRegions.jl\'s-default-region-is-the-Globe","19":"/GeoRegions.jl/dev/basics/read/listall#Giorgi-and-Francisco-[2000]","20":"/GeoRegions.jl/dev/basics/read/listall#SREX-Regions-from-Seneviratne-et-al.-[2012]","21":"/GeoRegions.jl/dev/basics/read/listall#IPCC-AR6-Regions-from-Iturbide-et-al.,-[2020]","22":"/GeoRegions.jl/dev/basics/read/overview#Reading-Predefined-GeoRegions","23":"/GeoRegions.jl/dev/basics/read/predefined#Predefined-GeoRegions-in-GeoRegions.jl","24":"/GeoRegions.jl/dev/basics/read/predefined#Adapted-from-Giorgi-and-Francisco-[2000]","25":"/GeoRegions.jl/dev/basics/read/predefined#SREX-Regions-adapted-from-Seneviratne-et-al.-[2012]","26":"/GeoRegions.jl/dev/basics/read/predefined#AR6-Regions-adapted-from-Iturbide-et-al.,-[2020]","27":"/GeoRegions.jl/dev/georegions#What-is-a-GeoRegion?","28":"/GeoRegions.jl/dev/georegions#Types-of-GeoRegions","29":"/GeoRegions.jl/dev/georegions#rectregions","30":"/GeoRegions.jl/dev/georegions#tiltregions","31":"/GeoRegions.jl/dev/georegions#polyregions","32":"/GeoRegions.jl/dev/basics/read/tables#Tabular-Listings-of-GeoRegions","33":"/GeoRegions.jl/dev/basics/read/tables#More-specific-lists-of-GeoRegions","34":"/GeoRegions.jl/dev/basics/read/tables#Use-Case-Examples","35":"/GeoRegions.jl/dev/#Installation-Instructions","36":"/GeoRegions.jl/dev/#Getting-help","37":"/GeoRegions.jl/dev/tutorials/files#Reading-in-a-file-with-a-list-of-Custom-GeoRegion","38":"/GeoRegions.jl/dev/tutorials/files#Listing-GeoRegions-inside-Custom-Files","39":"/GeoRegions.jl/dev/tutorials/addreadrm#Manipulation-of-User-Defined-GeoRegions.jl-for-your-Project","40":"/GeoRegions.jl/dev/tutorials/addreadrm#1.-Adding-custom-GeoRegions-to-your-Project","41":"/GeoRegions.jl/dev/tutorials/addreadrm#2.-Check-if-GeoRegions-have-been-added","42":"/GeoRegions.jl/dev/tutorials/addreadrm#3.-Reading-and-Retrieving-GeoRegions-for-your-Project","43":"/GeoRegions.jl/dev/tutorials/addreadrm#4.-Overwriting-Information-for-a-Previously-Defined-GeoRegion","44":"/GeoRegions.jl/dev/tutorials/addreadrm#5.-Removing-a-custom-GeoRegions-from-your-Project","45":"/GeoRegions.jl/dev/tutorials/addreadrm#5.1-Removing-a-GeoRegion-that-has-been-loaded","46":"/GeoRegions.jl/dev/tutorials/addreadrm#5.2-Removing-a-GeoRegion-based-on-its-ID","47":"/GeoRegions.jl/dev/tutorials/addreadrm#6.-Removing-a-the-custom-GeoRegions-lists-from-your-Project","48":"/GeoRegions.jl/dev/tutorials/projects#GeoRegions.jl-for-your-Research-Project","49":"/GeoRegions.jl/dev/tutorials/projects#1.-Setup-GeoRegions.jl-for-your-Project","50":"/GeoRegions.jl/dev/tutorials/projects#2.-Listing-out-the-custom-GeoRegions-for-your-Project","51":"/GeoRegions.jl/dev/tutorials/projects#3.-Removing-a-the-custom-GeoRegions-list-from-your-Project"},"fieldIds":{"title":0,"titles":1,"text":2},"fieldLength":{"0":[7,1,122],"1":[4,1,129],"2":[9,1,77],"3":[7,1,71],"4":[5,1,45],"5":[6,1,78],"6":[3,1,53],"7":[3,3,90],"8":[3,3,98],"9":[3,3,97],"10":[2,1,14],"11":[5,2,20],"12":[6,1,76],"13":[6,6,158],"14":[5,6,141],"15":[5,1,97],"16":[6,5,114],"17":[5,1,5],"18":[9,5,22],"19":[5,5,127],"20":[8,5,178],"21":[9,5,233],"22":[3,1,92],"23":[4,1,10],"24":[7,4,79],"25":[9,4,86],"26":[9,4,85],"27":[5,1,88],"28":[3,5,29],"29":[1,7,22],"30":[1,7,68],"31":[1,7,23],"32":[4,1,84],"33":[5,4,49],"34":[3,4,314],"35":[2,1,69],"36":[2,1,36],"37":[9,1,1],"38":[5,9,22],"39":[9,1,27],"40":[7,9,154],"41":[7,9,131],"42":[8,9,75],"43":[8,9,114],"44":[8,9,39],"45":[9,14,54],"46":[9,14,68],"47":[10,9,125],"48":[6,1,80],"49":[7,6,97],"50":[9,6,99],"51":[10,6,85]},"averageFieldLength":[5.788461538461539,4.288461538461537,83.65384615384612],"storedFields":{"0":{"title":"API for Adding, Reading and Removing GeoRegions","titles":[]},"1":{"title":"API for Creating GeoRegions","titles":[]},"2":{"title":"API for Is it in/on a GeoRegion?","titles":[]},"3":{"title":"API for Project-Handling in GeoRegions.jl","titles":[]},"4":{"title":"API for Different GeoRegion Properties","titles":[]},"5":{"title":"API for Tables in GeoRegions.jl","titles":[]},"6":{"title":"Creating Custom GeoRegions","titles":[]},"7":{"title":"Defining New RectRegions","titles":["Creating Custom GeoRegions"]},"8":{"title":"Defining New PolyRegions","titles":["Creating Custom GeoRegions"]},"9":{"title":"Defining New TiltRegions","titles":["Creating Custom GeoRegions"]},"10":{"title":"Comparing GeoRegions","titles":[]},"11":{"title":"1. Are two GeoRegions Equivalent","titles":["Comparing GeoRegions"]},"12":{"title":"Is it in a GeoRegion?","titles":[]},"13":{"title":"Is a Point in a GeoRegion?","titles":["Is it in a GeoRegion?"]},"14":{"title":"Is a GeoRegion inside a GeoRegion?","titles":["Is it in a GeoRegion?"]},"15":{"title":"The Shape of a GeoRegion","titles":[]},"16":{"title":"Retrieving the coordinates of a GeoRegion","titles":["The Shape of a GeoRegion"]},"17":{"title":"Default List of Predefined GeoRegions","titles":[]},"18":{"title":"GeoRegions.jl's default region is the Globe","titles":["Default List of Predefined GeoRegions"]},"19":{"title":"Giorgi & Francisco [2000]","titles":["Default List of Predefined GeoRegions"]},"20":{"title":"SREX Regions from Seneviratne et al. [2012]","titles":["Default List of Predefined GeoRegions"]},"21":{"title":"IPCC AR6 Regions from Iturbide et al., [2020]","titles":["Default List of Predefined GeoRegions"]},"22":{"title":"Reading Predefined GeoRegions","titles":[]},"23":{"title":"Predefined GeoRegions in GeoRegions.jl","titles":[]},"24":{"title":"Adapted from Giorgi & Francisco [2000]","titles":["Predefined GeoRegions in GeoRegions.jl"]},"25":{"title":"SREX Regions adapted from Seneviratne et al. [2012]","titles":["Predefined GeoRegions in GeoRegions.jl"]},"26":{"title":"AR6 Regions adapted from Iturbide et al., [2020]","titles":["Predefined GeoRegions in GeoRegions.jl"]},"27":{"title":"What is a GeoRegion?","titles":[]},"28":{"title":"Types of GeoRegions","titles":["What is a GeoRegion?"]},"29":{"title":"RectRegions","titles":["What is a GeoRegion?","Types of GeoRegions"]},"30":{"title":"TiltRegions","titles":["What is a GeoRegion?","Types of GeoRegions"]},"31":{"title":"PolyRegions","titles":["What is a GeoRegion?","Types of GeoRegions"]},"32":{"title":"Tabular Listings of GeoRegions","titles":[]},"33":{"title":"More specific lists of GeoRegions","titles":["Tabular Listings of GeoRegions"]},"34":{"title":"Use Case Examples","titles":["Tabular Listings of GeoRegions"]},"35":{"title":"Installation Instructions","titles":[]},"36":{"title":"Getting help","titles":[]},"37":{"title":"Reading in a file with a list of Custom GeoRegion","titles":[]},"38":{"title":"Listing GeoRegions inside Custom Files","titles":["Reading in a file with a list of Custom GeoRegion"]},"39":{"title":"Manipulation of User-Defined GeoRegions.jl for your Project","titles":[]},"40":{"title":"1. Adding custom GeoRegions to your Project","titles":["Manipulation of User-Defined GeoRegions.jl for your Project"]},"41":{"title":"2. Check if GeoRegions have been added","titles":["Manipulation of User-Defined GeoRegions.jl for your Project"]},"42":{"title":"3. Reading and Retrieving GeoRegions for your Project","titles":["Manipulation of User-Defined GeoRegions.jl for your Project"]},"43":{"title":"4. Overwriting Information for a Previously Defined GeoRegion","titles":["Manipulation of User-Defined GeoRegions.jl for your Project"]},"44":{"title":"5. Removing a custom GeoRegions from your Project","titles":["Manipulation of User-Defined GeoRegions.jl for your Project"]},"45":{"title":"5.1 Removing a GeoRegion that has been loaded","titles":["Manipulation of User-Defined GeoRegions.jl for your Project","5. Removing a custom GeoRegions from your Project"]},"46":{"title":"5.2 Removing a GeoRegion based on its ID","titles":["Manipulation of User-Defined GeoRegions.jl for your Project","5. Removing a custom GeoRegions from your Project"]},"47":{"title":"6. Removing a the custom GeoRegions lists from your Project","titles":["Manipulation of User-Defined GeoRegions.jl for your Project"]},"48":{"title":"GeoRegions.jl for your Research Project","titles":[]},"49":{"title":"1. Setup GeoRegions.jl for your Project","titles":["GeoRegions.jl for your Research Project"]},"50":{"title":"2. Listing out the custom GeoRegions for your Project","titles":["GeoRegions.jl for your Research Project"]},"51":{"title":"3. Removing a the custom GeoRegions list from your Project","titles":["GeoRegions.jl for your Research Project"]}},"dirtCount":0,"index":[["⋮",{"2":{"41":6}}],["$path",{"2":{"40":3}}],["questions",{"2":{"36":2}}],["quot",{"2":{"2":8,"22":2,"32":4,"34":2,"40":4,"49":2}}],["~",{"2":{"34":3,"47":1,"49":3,"51":1}}],["└",{"2":{"34":3,"47":1,"49":3,"51":1}}],["`",{"2":{"34":3}}],["`setupgeoregions",{"2":{"34":3}}],["┌",{"2":{"34":3,"47":1,"49":3,"51":1}}],["unless",{"2":{"50":1}}],["universally",{"2":{"48":1}}],["update",{"2":{"35":3}}],["ultimate",{"2":{"33":1}}],["us",{"2":{"9":1,"12":1,"13":2,"14":2,"15":1,"41":1}}],["using",{"2":{"7":1,"8":2,"9":1,"12":2,"13":1,"15":2,"16":2,"22":1,"27":1,"32":1,"35":2,"36":1,"38":1,"41":2,"48":2,"50":1}}],["uses",{"2":{"22":1}}],["use",{"0":{"34":1},"2":{"1":3,"6":1,"11":1,"12":2,"32":1,"34":3,"36":1,"40":1,"43":1,"45":1,"46":1,"47":1,"49":2}}],["user",{"0":{"39":1},"1":{"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1},"2":{"0":1,"1":3,"5":7,"32":5,"41":1,"42":1,"47":1,"48":2,"49":2,"50":2}}],["used",{"2":{"0":6,"1":6,"43":1}}],["zealand",{"2":{"21":1,"34":2}}],["≥v2",{"2":{"28":1}}],["≥v6",{"2":{"28":1}}],["≥",{"2":{"24":1,"25":1,"26":1}}],["≥2",{"2":{"20":1,"21":1,"25":1,"26":1}}],["≥1",{"2":{"19":1,"24":1}}],["≧",{"2":{"20":1,"21":1}}],["961",{"2":{"51":1}}],["948",{"2":{"49":3}}],["990",{"2":{"43":1}}],["99",{"2":{"41":1}}],["93",{"2":{"21":3,"34":6}}],["9",{"2":{"16":2,"21":1,"34":2}}],["95",{"2":{"14":1,"20":1,"34":2}}],["98",{"2":{"14":1}}],["90",{"2":{"7":2,"14":6,"18":2,"19":3,"20":4,"21":10,"22":7,"27":2,"34":30,"41":2,"43":5,"50":2}}],["861",{"2":{"47":1}}],["83",{"2":{"21":2,"34":4}}],["82",{"2":{"20":1,"21":2,"34":6}}],["81",{"2":{"15":2,"21":1,"34":2}}],["85",{"2":{"14":1,"19":2,"20":4,"21":2,"25":4,"34":16,"41":1}}],["80",{"2":{"14":3}}],["8",{"2":{"13":3,"14":1,"16":2,"20":2,"21":8,"34":20}}],["766",{"2":{"46":1}}],["76",{"2":{"21":1,"34":2}}],["793",{"2":{"46":1}}],["79",{"2":{"20":1,"21":3,"34":8}}],["77",{"2":{"15":1,"21":1,"34":2}}],["72",{"2":{"15":2,"20":2,"21":5,"34":14}}],["70",{"2":{"14":1,"20":1,"21":1,"34":4}}],["75",{"2":{"14":1,"19":4,"20":4,"21":5,"34":26,"41":2}}],["7",{"2":{"13":4,"20":3,"21":11,"34":28}}],["699",{"2":{"45":1}}],["62",{"2":{"21":2,"34":4}}],["64",{"2":{"21":1,"34":2}}],["67",{"2":{"20":1,"34":2}}],["679491924311229",{"2":{"9":3,"47":3}}],["66",{"2":{"20":1,"21":1,"34":4}}],["61",{"2":{"20":1,"21":1,"34":4}}],["682",{"2":{"40":1}}],["68",{"2":{"20":1,"34":2}}],["65",{"2":{"19":2,"21":6,"34":16}}],["60",{"2":{"14":2,"19":2,"20":7,"21":4,"34":26,"40":5,"41":3}}],["6",{"0":{"47":1},"2":{"13":3,"15":3,"20":4,"21":7,"25":3,"34":22}}],["63",{"2":{"9":2,"47":2}}],["46",{"2":{"21":3,"34":6}}],["42",{"2":{"21":1,"34":2}}],["48",{"2":{"20":1,"21":1,"34":4}}],["446",{"2":{"43":1}}],["44",{"2":{"14":1,"40":1,"43":1}}],["4",{"0":{"43":1},"2":{"14":6,"20":7,"21":3,"34":20}}],["45",{"2":{"13":1,"14":4,"19":1,"20":2,"21":9,"26":3,"34":24,"41":1,"43":1,"45":1,"46":2,"47":1,"49":3,"51":1}}],["43",{"2":{"9":4,"14":1,"47":4,"49":3}}],["47",{"2":{"9":2,"21":1,"34":2,"47":2}}],["400",{"2":{"16":1}}],["401",{"2":{"16":2}}],["40",{"2":{"8":6,"14":2,"19":4,"20":6,"21":8,"34":36,"40":5,"41":3}}],["53",{"2":{"21":3,"34":6}}],["56",{"2":{"20":2,"21":6,"34":16}}],["52",{"2":{"15":1,"20":3,"34":6}}],["58",{"2":{"15":1,"21":1,"34":2}}],["55",{"2":{"14":1,"19":2,"21":1,"34":6,"41":1}}],["5",{"0":{"44":1,"45":1,"46":1},"1":{"45":1,"46":1},"2":{"9":2,"13":5,"14":4,"15":1,"19":1,"20":8,"21":12,"26":4,"34":42,"47":2}}],["50",{"2":{"7":4,"8":4,"9":2,"13":3,"14":2,"15":4,"16":1,"19":10,"20":12,"21":13,"25":4,"34":70,"40":1,"41":7,"42":3,"43":5,"47":2}}],["226",{"2":{"34":1}}],["291",{"2":{"34":1}}],["268",{"2":{"21":1,"34":2}}],["26",{"2":{"21":1,"34":2}}],["27t18",{"2":{"40":1,"43":2,"45":1,"46":2,"47":1,"49":3,"51":1}}],["276",{"2":{"21":1,"34":2}}],["27",{"2":{"21":4,"34":8}}],["275",{"2":{"19":3,"34":6,"41":3}}],["210",{"2":{"20":2,"34":4}}],["285",{"2":{"21":1,"34":2}}],["28",{"2":{"20":3,"25":3,"34":6}}],["280",{"2":{"19":2,"34":4,"41":2}}],["240",{"2":{"19":1,"34":2,"41":1}}],["255",{"2":{"19":4,"34":8,"41":4}}],["25",{"2":{"14":1,"19":2,"20":7,"21":6,"24":3,"26":1,"34":30,"41":2}}],["230",{"2":{"19":1,"20":1,"34":4,"41":1}}],["23",{"2":{"9":1,"21":2,"34":4,"47":1}}],["2",{"0":{"41":1,"46":1,"50":1},"2":{"7":1,"8":1,"9":3,"12":1,"13":3,"14":6,"15":2,"16":2,"20":2,"21":7,"22":1,"24":1,"25":1,"26":1,"34":14,"40":1,"42":1,"43":5,"47":3}}],["2024",{"2":{"40":1,"43":2,"45":1,"46":2,"47":1,"49":3,"51":1}}],["2020",{"0":{"21":1,"26":1},"2":{"21":1,"26":2}}],["2012",{"0":{"20":1,"25":1},"2":{"20":1,"25":2}}],["2000",{"0":{"19":1,"24":1},"2":{"19":1,"24":2}}],["20",{"2":{"7":4,"8":9,"9":2,"13":3,"14":9,"19":9,"20":7,"21":8,"24":8,"34":48,"40":6,"41":8,"42":5,"43":8,"47":2}}],["09",{"2":{"40":1,"43":2,"45":1,"46":2,"47":1,"49":3,"51":1}}],["0",{"2":{"7":14,"8":14,"9":5,"13":21,"14":7,"15":18,"18":5,"19":89,"20":117,"21":203,"22":18,"24":14,"25":11,"26":16,"27":2,"34":808,"40":15,"41":66,"42":23,"43":29,"47":5,"50":5}}],["31",{"2":{"21":1,"34":2}}],["38",{"2":{"21":1,"34":2}}],["36",{"2":{"21":5,"34":10}}],["360º",{"2":{"13":1}}],["360",{"2":{"7":2,"13":1,"14":1,"18":1,"19":1,"20":1,"21":1,"22":3,"27":1,"34":4,"41":1,"50":1}}],["33",{"2":{"21":3,"34":6}}],["330",{"2":{"14":2,"19":1,"34":2,"41":1}}],["350",{"2":{"19":1,"34":2,"41":1}}],["35",{"2":{"14":1,"19":1,"20":1,"34":4}}],["355",{"2":{"14":1}}],["3",{"0":{"42":1,"51":1},"2":{"14":5,"19":1,"20":3,"21":5,"24":1,"25":1,"26":1,"34":12}}],["320",{"2":{"14":1,"19":1,"34":2,"41":1}}],["32050807568877",{"2":{"9":4,"47":4}}],["325",{"2":{"14":2}}],["32",{"2":{"14":1,"21":1,"34":2,"40":1,"43":2,"45":1,"46":2,"47":1,"49":3,"51":1}}],["34",{"2":{"13":3,"20":1,"21":2,"34":6}}],["340",{"2":{"13":2}}],["37",{"2":{"9":2,"21":2,"26":2,"34":4,"47":2}}],["300",{"2":{"14":2,"19":1,"34":2,"41":1}}],["30127018922193",{"2":{"9":7,"47":7}}],["30",{"2":{"7":5,"8":11,"9":2,"13":1,"14":5,"19":8,"20":7,"21":6,"34":42,"41":4,"47":2}}],["39",{"0":{"18":1},"2":{"0":1,"1":3,"5":4,"20":1,"34":2,"35":1,"42":2,"44":2,"47":1}}],["≤v6",{"2":{"48":1}}],["≤",{"2":{"7":4}}],["getting",{"0":{"36":1}}],["get",{"2":{"35":1,"36":1,"49":1}}],["generally",{"2":{"27":1,"35":1}}],["geometry",{"2":{"30":1}}],["geometrybasics",{"2":{"12":1}}],["geoplottingdata",{"2":{"12":1,"15":1}}],["geographic",{"2":{"12":1,"14":1}}],["geographical",{"2":{"2":4,"27":2}}],["geo2",{"2":{"2":1}}],["geo1",{"2":{"2":1}}],["geodir",{"2":{"0":5}}],["geo",{"2":{"0":15,"1":6,"2":17,"4":2,"13":5,"14":17,"16":2,"22":1,"40":2,"43":3,"45":1}}],["geoid",{"2":{"0":10}}],["georegion",{"0":{"2":1,"4":1,"12":1,"13":1,"14":2,"15":1,"16":1,"27":1,"37":1,"43":1,"45":1,"46":1},"1":{"13":1,"14":1,"16":1,"28":1,"29":1,"30":1,"31":1,"38":1},"2":{"0":21,"1":18,"2":20,"3":2,"4":5,"6":3,"7":1,"8":1,"13":7,"14":5,"15":3,"16":1,"22":7,"24":1,"25":1,"26":1,"27":11,"29":1,"30":2,"31":1,"33":3,"34":1,"40":4,"42":1,"43":9,"44":2,"45":3,"46":4,"47":1,"48":2,"51":1}}],["georegions",{"0":{"0":1,"1":1,"3":1,"5":1,"6":1,"10":1,"11":1,"17":1,"18":1,"22":1,"23":2,"28":1,"32":1,"33":1,"38":1,"39":1,"40":1,"41":1,"42":1,"44":1,"47":1,"48":1,"49":1,"50":1,"51":1},"1":{"7":1,"8":1,"9":1,"11":1,"18":1,"19":1,"20":1,"21":1,"24":2,"25":2,"26":2,"29":1,"30":1,"31":1,"33":1,"34":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":2,"46":2,"47":1,"49":1,"50":1,"51":1},"2":{"0":11,"1":9,"2":2,"3":7,"4":1,"5":8,"6":2,"7":1,"8":1,"9":1,"10":1,"11":1,"12":3,"13":2,"14":2,"15":1,"17":1,"19":3,"20":3,"21":3,"22":5,"23":2,"24":5,"25":5,"26":5,"27":3,"28":6,"29":1,"30":1,"31":1,"32":8,"33":3,"34":17,"35":5,"36":1,"38":1,"39":2,"40":4,"41":1,"42":2,"43":2,"45":1,"46":4,"47":10,"48":6,"49":30,"50":5,"51":9}}],["global",{"2":{"18":1,"19":1,"20":1,"21":1,"27":2,"34":4,"41":1,"50":1}}],["globe",{"0":{"18":1},"2":{"18":1,"19":1,"20":1,"21":1,"22":2,"34":4,"41":1,"50":1}}],["glb",{"2":{"7":3,"8":2,"9":3,"13":1,"14":5,"15":1,"18":2,"19":23,"20":35,"21":60,"22":5,"24":1,"25":1,"26":1,"27":2,"33":3,"34":233,"40":3,"41":17,"42":1,"43":3,"46":1,"47":2,"50":2}}],["go",{"2":{"15":1,"24":1,"25":1,"26":1}}],["grl",{"2":{"19":1,"34":2,"41":1}}],["greenland",{"2":{"19":1,"20":1,"21":1,"34":6,"41":1}}],["green",{"2":{"14":2}}],["grid",{"2":{"8":1,"29":1,"30":1,"31":1}}],["grants",{"2":{"8":1}}],["gt",{"2":{"7":2,"19":1,"27":1,"49":1}}],["gf",{"2":{"5":1,"19":23,"24":5,"34":42,"41":13,"46":1,"48":1}}],["github",{"2":{"35":1}}],["githubusercontent",{"2":{"12":1,"15":1}}],["gic",{"2":{"21":1,"34":2}}],["giorgi=true",{"2":{"19":1}}],["giorgi",{"0":{"19":1,"24":1},"2":{"5":3,"19":22,"24":2,"33":1,"34":42,"41":13}}],["given",{"2":{"4":1,"13":1,"19":1,"20":1,"21":1,"22":1,"24":1,"25":1,"26":1,"27":1,"32":1}}],["132",{"2":{"21":2,"26":2,"34":4}}],["130",{"2":{"15":1,"20":1,"21":3,"34":8}}],["19",{"2":{"21":3,"26":4,"34":6}}],["192",{"2":{"21":1,"34":2}}],["14",{"2":{"21":3,"34":6,"40":4,"41":1}}],["145",{"2":{"19":1,"20":1,"21":2,"34":8}}],["143",{"2":{"15":1}}],["160",{"2":{"47":1,"51":1}}],["166",{"2":{"34":1}}],["16",{"2":{"21":1,"34":2}}],["165",{"2":{"19":1,"34":2}}],["168",{"2":{"15":3,"20":1,"21":1,"34":4}}],["117",{"2":{"21":1,"26":1,"34":2}}],["118",{"2":{"20":1,"34":2}}],["11",{"2":{"20":5,"34":10}}],["110",{"2":{"14":4,"19":1,"20":2,"21":4,"34":14,"41":1}}],["115",{"2":{"14":1}}],["152",{"2":{"21":1,"26":2,"34":2}}],["155",{"2":{"19":1,"20":5,"21":6,"34":24,"41":1}}],["15",{"2":{"13":1,"14":3,"19":5,"20":4,"21":4,"24":3,"34":26,"41":3}}],["122",{"2":{"21":1,"34":2}}],["125",{"2":{"15":1}}],["129",{"2":{"15":1}}],["120",{"2":{"14":3}}],["12",{"2":{"9":1,"14":1,"21":4,"34":8,"47":1}}],["108",{"2":{"26":1}}],["104",{"2":{"21":1,"34":2}}],["105",{"2":{"14":1,"15":4,"20":4,"21":4,"25":3,"34":16}}],["10",{"2":{"7":5,"8":4,"9":2,"13":4,"14":6,"19":6,"20":7,"21":18,"34":62,"35":3,"40":3,"41":4,"42":6,"43":9,"47":2}}],["100",{"2":{"2":2,"14":3,"19":3,"20":3,"21":3,"26":4,"34":18,"40":1,"41":1,"42":3}}],["180",{"2":{"7":1,"13":2,"14":2,"19":2,"20":6,"21":9,"27":1,"34":34,"41":1}}],["1",{"0":{"11":1,"40":1,"45":1,"49":1},"2":{"4":1,"12":1,"13":2,"14":7,"15":1,"16":4,"19":3,"20":2,"21":1,"24":2,"32":1,"34":6,"40":1}}],["+2",{"2":{"13":2,"16":2}}],["+",{"2":{"3":1,"16":2}}],["just",{"2":{"40":1,"51":1}}],["julialon",{"2":{"42":1}}],["juliaply",{"2":{"42":1,"43":1}}],["juliapolyregion",{"2":{"1":1,"8":1,"31":1}}],["julia",{"2":{"35":5}}],["juliausing",{"2":{"17":1,"22":1,"24":1,"25":1,"26":1,"34":4,"39":1,"49":1}}],["julianlon",{"2":{"16":1}}],["juliageo",{"2":{"15":1,"22":1,"40":2}}],["juliageoregion",{"2":{"0":1,"27":1}}],["juliaa",{"2":{"13":1}}],["juliaadd",{"2":{"0":1}}],["julia>",{"2":{"7":1,"8":1,"9":1,"43":1}}],["juliajulia>",{"2":{"7":1,"8":1,"9":1,"35":1,"43":1,"46":1,"47":1}}],["juliacoordinates",{"2":{"4":1}}],["juliatablepolyregions",{"2":{"5":1,"20":1,"21":1}}],["juliatabletiltregions",{"2":{"5":1}}],["juliatablerectregions",{"2":{"5":1,"19":1,"33":1}}],["juliatablegeoregions",{"2":{"3":1,"5":1,"18":1,"32":1,"41":1,"50":2}}],["juliatiltregion",{"2":{"1":1,"9":1,"30":1,"47":1}}],["juliadeletegeoregions",{"2":{"3":1,"47":1,"51":1}}],["juliasetupgeoregions",{"2":{"3":1,"49":1}}],["juliaon",{"2":{"2":2}}],["juliaoverwrite",{"2":{"0":1,"43":1}}],["juliaisfile",{"2":{"49":1,"51":1}}],["juliaisid",{"2":{"0":1,"41":1}}],["juliain",{"2":{"2":2,"13":2}}],["juliarectregion",{"2":{"1":1,"6":1,"7":1,"29":1,"40":1}}],["juliarmid",{"2":{"0":1,"46":1}}],["juliarm",{"2":{"0":1,"45":1}}],["jl",{"0":{"3":1,"5":1,"18":1,"23":1,"39":1,"48":1,"49":1},"1":{"24":1,"25":1,"26":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1,"49":1,"50":1,"51":1},"2":{"9":1,"12":4,"13":2,"22":2,"23":1,"24":1,"25":1,"26":1,"27":1,"28":2,"32":1,"34":10,"35":1,"36":1,"40":2,"43":2,"45":1,"46":3,"47":7,"48":2,"49":24,"51":7}}],["joinpath",{"2":{"32":1,"39":1,"40":1,"49":3,"51":3}}],["join",{"2":{"1":2}}],["θ",{"2":{"1":2,"9":2,"30":2,"47":1}}],["δy",{"2":{"1":2,"9":2,"30":2,"47":1}}],["δx",{"2":{"1":2,"9":2,"30":2,"47":1}}],["yes",{"2":{"41":1}}],["yet",{"2":{"22":1,"40":1}}],["your",{"0":{"39":1,"40":1,"42":1,"44":1,"47":1,"48":1,"49":1,"50":1,"51":1},"1":{"40":1,"41":1,"42":1,"43":1,"44":1,"45":2,"46":2,"47":1,"49":1,"50":1,"51":1},"2":{"49":1,"51":1}}],["you",{"2":{"7":1,"8":1,"11":1,"12":1,"22":1,"32":1,"35":3,"36":2,"39":1,"40":4,"43":2,"44":2,"46":1,"47":2,"50":1,"51":3}}],["y",{"2":{"1":2,"9":2,"30":2,"47":1}}],["x",{"2":{"1":2,"9":2,"30":2,"47":1}}],["x3c",{"2":{"1":3,"2":2,"4":2,"29":1,"30":1,"31":1}}],["cgi",{"2":{"20":1,"34":2}}],["cgeo",{"2":{"2":9}}],["certain",{"2":{"44":1}}],["ceu",{"2":{"20":1,"34":2}}],["central",{"2":{"19":3,"20":4,"21":8,"25":1,"34":30,"41":2}}],["centre",{"2":{"1":2,"30":3}}],["cna",{"2":{"19":1,"20":1,"21":1,"25":3,"34":6,"41":1}}],["clear",{"2":{"51":1}}],["clat",{"2":{"12":1,"13":1,"14":1,"15":1,"16":1}}],["clockwise",{"2":{"30":2}}],["clon",{"2":{"12":1,"13":1,"14":1,"15":1,"16":1}}],["closed",{"2":{"8":1}}],["close",{"2":{"1":1,"16":2}}],["cst",{"2":{"12":2,"15":2}}],["cause",{"2":{"48":1}}],["cau",{"2":{"21":1,"34":2}}],["caf",{"2":{"21":1,"34":2}}],["caribbean",{"2":{"20":1,"21":1,"34":4}}],["car",{"2":{"20":1,"21":1,"34":4}}],["cas",{"2":{"19":1,"20":1,"34":4}}],["case",{"0":{"34":1},"2":{"13":1,"14":1}}],["cam",{"2":{"19":1,"20":1,"34":4,"41":1}}],["calling",{"2":{"34":1}}],["called",{"2":{"32":1}}],["call",{"2":{"19":1,"20":1,"21":1,"24":1,"25":1,"26":1}}],["calculate",{"2":{"13":1}}],["cairomakie",{"2":{"12":1,"15":1}}],["cannot",{"2":{"43":2,"46":2,"47":1}}],["canada",{"2":{"20":2,"34":4}}],["can",{"2":{"1":6,"8":1,"11":1,"13":1,"14":1,"16":1,"22":1,"32":2,"35":2,"38":1,"40":3,"41":3,"42":1,"43":1,"47":1,"48":2,"50":1,"51":2}}],["c",{"2":{"6":1,"13":7}}],["crop=true",{"2":{"41":1}}],["crop",{"2":{"5":3}}],["created",{"2":{"40":1}}],["create",{"2":{"4":1,"6":1,"50":2}}],["creates",{"2":{"1":3}}],["creating",{"0":{"1":1,"6":1},"1":{"7":1,"8":1,"9":1}}],["choose",{"2":{"32":1}}],["child",{"2":{"2":4}}],["check",{"0":{"41":1},"2":{"2":4,"11":1,"12":2,"41":1,"45":1}}],["checks",{"2":{"0":1}}],["copy",{"2":{"34":3,"49":2}}],["copied",{"2":{"3":1}}],["correctly",{"2":{"16":1}}],["corroborate",{"2":{"13":1}}],["color=",{"2":{"13":1,"14":6,"16":1}}],["coast",{"2":{"12":5,"15":5,"20":1,"34":2}}],["coastline",{"2":{"12":1,"15":1}}],["come",{"2":{"48":1}}],["completely",{"2":{"51":1}}],["complicated",{"2":{"40":1}}],["comparing",{"0":{"10":1},"1":{"11":1}}],["comments",{"2":{"36":1}}],["comments=true",{"2":{"12":1,"15":1}}],["command",{"2":{"35":1}}],["common",{"2":{"30":1}}],["com",{"2":{"12":1,"15":1}}],["confirm",{"2":{"41":1}}],["considered",{"2":{"27":1}}],["consider",{"2":{"14":1}}],["constructed",{"2":{"10":1}}],["construct",{"2":{"7":1,"8":1,"9":1}}],["constraints",{"2":{"7":2}}],["concern",{"2":{"13":1}}],["contain",{"2":{"27":1,"30":1}}],["container",{"2":{"2":2}}],["containing",{"2":{"1":2,"2":2,"3":2,"30":1}}],["counts",{"2":{"4":1}}],["coordinate",{"2":{"1":4,"16":2,"30":2}}],["coordinates",{"0":{"16":1},"2":{"1":3,"4":1,"13":6,"14":5,"16":4,"27":1,"30":3,"31":1,"42":1}}],["currently",{"2":{"7":1,"8":1}}],["current",{"2":{"0":1,"3":2,"50":1,"51":1}}],["customized",{"2":{"32":1}}],["custom=false",{"2":{"18":1,"19":1,"20":1,"21":1}}],["custom",{"0":{"6":1,"37":1,"38":1,"40":1,"44":1,"47":1,"50":1,"51":1},"1":{"7":1,"8":1,"9":1,"38":1,"45":1,"46":1},"2":{"0":12,"1":6,"3":3,"5":14,"22":1,"32":1,"33":2,"34":6,"40":3,"41":1,"47":3,"49":1,"50":3,"51":2}}],["https",{"2":{"12":1,"15":1}}],["how",{"2":{"32":1,"36":1}}],["however",{"2":{"13":1,"16":1,"48":1}}],["hovmoller",{"2":{"9":1}}],["home",{"2":{"0":2,"1":3,"5":4,"34":6,"47":1,"49":6,"51":1}}],["homedir",{"2":{"0":4,"1":3,"5":8,"48":1}}],["heavy",{"2":{"40":1}}],["header",{"2":{"8":1}}],["help",{"0":{"36":1}}],["height=750",{"2":{"13":1,"14":1,"16":1}}],["here",{"2":{"7":1,"8":1,"9":1,"13":2,"14":2,"16":1,"22":2,"24":1,"25":1,"26":1,"32":1,"34":4,"40":2,"41":1,"42":1,"43":1,"45":1,"46":1,"49":1,"50":1,"51":1}}],["has",{"0":{"45":1},"2":{"7":1,"8":1,"9":1,"13":1,"15":1,"22":1,"24":1,"25":1,"26":1,"40":1,"42":1,"43":4,"45":1,"47":1}}],["handling",{"0":{"3":1}}],["half",{"2":{"1":2,"4":1,"30":2}}],["have",{"0":{"41":1},"2":{"0":1,"6":1,"10":2,"16":1,"36":1,"40":1,"41":2,"42":1,"46":1,"47":1,"48":2,"50":2}}],["mkpath",{"2":{"39":1}}],["mdg",{"2":{"21":1,"34":2}}],["means",{"2":{"48":1}}],["meant",{"2":{"48":1}}],["method",{"2":{"45":1,"46":1}}],["meta",{"2":{"1":3}}],["me",{"2":{"35":1,"36":1}}],["mexico",{"2":{"20":1,"34":2}}],["mediterranean",{"2":{"19":1,"20":1,"21":1,"34":6,"41":1}}],["med",{"2":{"19":1,"20":1,"21":1,"34":6,"41":1}}],["minimum",{"2":{"13":4,"16":4}}],["may",{"2":{"35":1}}],["make",{"2":{"35":1}}],["manually",{"2":{"40":1}}],["manipulation",{"0":{"39":1},"1":{"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1}}],["manager",{"2":{"35":1}}],["manner",{"2":{"33":1}}],["many",{"2":{"16":1,"20":1,"25":1}}],["madagascar",{"2":{"21":1,"34":2}}],["maps",{"2":{"16":1}}],["map",{"2":{"14":1,"16":1}}],["markersize=20",{"2":{"13":2}}],["maximum",{"2":{"13":4,"16":4}}],["main",{"2":{"12":1,"15":1,"35":2}}],["match",{"2":{"1":1}}],["modify",{"2":{"40":1}}],["modification",{"2":{"40":1}}],["modulelog",{"2":{"34":3}}],["monsoon",{"2":{"21":1,"34":2}}],["monitoring",{"2":{"0":2,"1":3}}],["more",{"0":{"33":1},"2":{"9":1,"22":1,"32":1}}],["most",{"2":{"7":1,"8":1,"22":3,"40":1,"50":1}}],["must",{"2":{"0":2,"8":2,"27":1}}],["right",{"2":{"50":1}}],["rows",{"2":{"41":1}}],["ropes",{"2":{"39":1}}],["rotation",{"2":{"30":1}}],["rotated",{"2":{"9":1}}],["rfe",{"2":{"21":1,"34":2}}],["runner",{"2":{"34":6,"47":1,"49":6,"51":1}}],["running",{"2":{"2":4}}],["russia",{"2":{"21":2,"34":4}}],["rar",{"2":{"21":1,"34":2}}],["raw",{"2":{"12":1,"15":1}}],["rmid",{"2":{"0":1,"46":1}}],["rm",{"2":{"0":1,"45":1}}],["require",{"2":{"48":1}}],["relevant",{"2":{"50":1}}],["release",{"2":{"35":2}}],["reload",{"2":{"43":1}}],["replacing",{"2":{"51":1}}],["replace",{"2":{"43":1,"44":1}}],["repository",{"2":{"35":1}}],["refer",{"2":{"32":1}}],["red",{"2":{"14":2}}],["reexported",{"2":{"12":1}}],["registry",{"2":{"35":1}}],["regions",{"0":{"20":1,"21":1,"25":1,"26":1},"2":{"27":1,"48":1}}],["regiongrids",{"2":{"9":1}}],["region",{"0":{"18":1},"2":{"1":4,"7":5,"8":4,"9":7,"12":3,"13":2,"14":7,"15":2,"22":2,"24":2,"25":2,"26":2,"27":1,"29":1,"30":4,"31":1,"33":1,"40":2,"42":2,"43":4,"47":2}}],["regardless",{"2":{"6":1}}],["research",{"0":{"48":1},"1":{"49":1,"50":1,"51":1}}],["reset",{"2":{"3":1}}],["resize",{"2":{"13":1,"14":1,"16":1}}],["resl",{"2":{"12":1,"15":1}}],["respectively",{"2":{"8":1,"49":1}}],["respective",{"2":{"6":3,"9":1,"32":1,"40":1}}],["recommended",{"2":{"40":1}}],["recall",{"2":{"6":1}}],["rectlist",{"2":{"34":1,"40":1,"41":1,"49":4,"50":1,"51":2}}],["rectangle",{"2":{"7":3,"9":1}}],["rectangular",{"2":{"1":3,"9":1,"28":1,"29":1,"30":2}}],["rectilinear",{"2":{"1":2,"7":1,"8":1,"9":1,"20":1,"22":1,"24":1,"25":1,"27":1,"28":1,"29":1,"30":1,"31":1,"40":1,"47":1}}],["rectregions",{"0":{"7":1,"29":1},"2":{"5":4,"6":1,"49":1}}],["rectregion",{"2":{"1":2,"2":2,"6":1,"7":3,"8":1,"14":2,"18":1,"19":23,"20":1,"21":1,"24":1,"28":1,"29":1,"34":46,"40":3,"41":16,"46":1,"50":1}}],["reason",{"2":{"44":1}}],["read",{"2":{"22":1}}],["readdlm",{"2":{"12":1,"15":1}}],["reading",{"0":{"0":1,"22":1,"37":1,"42":1},"1":{"38":1},"2":{"22":1}}],["realize",{"2":{"48":1}}],["realized",{"2":{"44":1}}],["really",{"2":{"44":1}}],["real",{"2":{"1":8,"2":2,"4":2}}],["remove",{"2":{"45":1,"46":2,"47":2}}],["removed",{"2":{"0":1,"46":1}}],["removes",{"2":{"0":2}}],["removing",{"0":{"0":1,"44":1,"45":1,"46":1,"47":1,"51":1},"1":{"45":1,"46":1},"2":{"39":1,"45":1,"46":1,"47":1,"51":1}}],["retrieve",{"2":{"16":1,"22":2,"42":1,"47":1}}],["retrieved",{"2":{"0":6,"1":3,"3":1,"5":4,"38":1,"47":1}}],["retrieving",{"0":{"16":1,"42":1},"2":{"39":1,"42":1,"48":1}}],["return",{"2":{"34":1}}],["returning",{"2":{"0":1}}],["returns",{"2":{"0":2,"1":3,"4":1}}],["npo",{"2":{"21":1,"34":2}}],["nz",{"2":{"21":1,"34":2}}],["nsa",{"2":{"21":1,"34":2}}],["nws",{"2":{"21":1,"34":2}}],["nwn",{"2":{"15":3,"21":1,"34":2}}],["nca",{"2":{"21":1,"34":2}}],["ntp",{"2":{"20":1,"34":2}}],["nlon",{"2":{"16":1}}],["nlat",{"2":{"16":1}}],["n=50",{"2":{"16":1}}],["nao",{"2":{"21":1,"34":2}}],["nau",{"2":{"20":1,"21":1,"34":4}}],["nas",{"2":{"19":1,"20":1,"34":4}}],["natural",{"2":{"14":1}}],["natgeo",{"2":{"12":1,"15":1}}],["named",{"2":{"43":1}}],["name",{"2":{"1":9,"3":1,"6":5,"7":4,"8":3,"9":4,"13":2,"15":2,"18":1,"19":1,"20":1,"21":1,"22":2,"24":2,"25":2,"26":2,"27":2,"34":4,"40":6,"41":1,"42":2,"43":4,"47":2,"50":1}}],["necessary",{"2":{"35":1,"49":1}}],["neaf",{"2":{"21":1,"34":2}}],["nes",{"2":{"21":1,"34":2}}],["nen",{"2":{"21":1,"34":2}}],["neb",{"2":{"20":1,"34":2}}],["neu",{"2":{"19":1,"20":1,"21":1,"34":6,"41":1}}],["need",{"2":{"7":1,"43":1,"44":1}}],["newzealand",{"2":{"20":1,"34":2}}],["new",{"0":{"7":1,"8":1,"9":1},"2":{"0":1,"6":1,"21":1,"34":2,"35":1,"40":1,"44":1,"51":1}}],["number",{"2":{"4":1,"16":2}}],["n",{"2":{"1":1,"2":2,"4":2,"7":6,"8":1,"9":1,"13":1,"15":1,"16":2,"18":1,"19":1,"20":2,"21":1,"22":1,"24":1,"25":1,"26":1,"27":1,"29":1,"34":6,"40":1,"41":1,"42":1,"43":2,"47":1,"50":1}}],["non",{"2":{"27":1}}],["now",{"2":{"10":1,"13":2,"14":2,"15":1,"41":1,"42":1,"44":1,"45":2,"47":1,"50":1}}],["northeast",{"2":{"20":1,"21":2,"34":6}}],["northern",{"2":{"19":1,"21":7,"34":16,"41":1}}],["northwest",{"2":{"15":2,"20":1,"21":2,"34":6}}],["north",{"2":{"7":1,"15":2,"19":4,"20":5,"21":5,"25":1,"27":1,"34":28,"41":3}}],["note",{"2":{"13":1,"50":1}}],["nothing",{"2":{"0":2,"3":3,"5":4,"12":1,"15":1,"50":1}}],["not",{"2":{"0":7,"1":1,"2":4,"5":1,"13":1,"14":1,"34":3,"40":3,"45":1,"46":1,"49":1,"50":1}}],["no",{"2":{"0":1,"13":1,"34":2,"43":1,"50":1}}],["pkg>",{"2":{"35":3}}],["permanently",{"2":{"47":1,"51":1}}],["perform",{"2":{"12":1}}],["peninsular",{"2":{"21":1,"34":2}}],["ply",{"2":{"42":1,"45":1}}],["please",{"2":{"36":2,"43":1}}],["plotted",{"2":{"16":1}}],["plotting",{"2":{"16":2}}],["plot",{"2":{"14":1,"16":1}}],["plon",{"2":{"2":4}}],["plateau",{"2":{"20":1,"21":1,"34":4}}],["plat",{"2":{"2":4}}],["possible",{"2":{"32":1,"33":1,"38":1,"40":1}}],["postulate",{"2":{"2":4}}],["point2",{"2":{"2":2,"27":1}}],["point",{"0":{"13":1},"2":{"2":18,"4":1,"7":1,"8":1,"9":1,"12":4,"13":14,"15":1,"22":1,"24":1,"25":1,"26":1,"35":1,"40":1,"42":1,"43":2,"47":1}}],["points",{"2":{"1":3,"4":2,"12":1,"13":2,"16":4}}],["polylist",{"2":{"34":1,"40":2,"41":1,"49":4,"50":1,"51":1}}],["polygonops",{"2":{"12":1}}],["polygon",{"2":{"8":1,"16":2}}],["polygonal",{"2":{"1":2,"8":3,"13":1,"15":1,"25":1,"26":1,"28":1,"31":1,"42":1,"43":2}}],["polyregions",{"0":{"8":1,"31":1},"2":{"5":5,"6":1,"49":1}}],["polyregion",{"2":{"1":2,"6":2,"8":2,"14":5,"20":34,"21":59,"25":1,"26":1,"28":1,"31":1,"34":182,"40":4,"41":2,"42":2,"43":4,"46":1}}],["pid",{"2":{"1":6,"6":4,"7":3,"8":2,"9":3,"13":1,"15":1,"22":1,"24":1,"25":1,"26":1,"27":2,"40":5,"42":1,"43":2,"47":1}}],["pwd",{"2":{"0":1,"1":3,"3":4,"39":2,"40":2,"41":3,"42":1,"43":3,"45":2,"46":2,"47":3,"49":3,"50":1,"51":5}}],["present",{"2":{"50":1}}],["pressing",{"2":{"35":1}}],["previous",{"2":{"48":1}}],["previously",{"0":{"43":1}}],["pretty",{"2":{"40":1}}],["pre",{"2":{"30":1}}],["prefix",{"2":{"19":1,"20":1,"21":1,"24":1,"25":1,"26":1}}],["predefined=false",{"2":{"18":1,"50":1}}],["predefined",{"0":{"17":1,"22":1,"23":1},"1":{"18":1,"19":1,"20":1,"21":1,"24":1,"25":1,"26":1},"2":{"5":6,"15":1,"22":1,"23":1,"24":1,"25":1,"26":1,"32":3,"34":2,"46":2,"48":1,"50":1}}],["preexisting",{"2":{"0":2,"3":1,"43":1,"49":1}}],["problems",{"2":{"48":1}}],["prompt",{"2":{"35":1}}],["process",{"2":{"15":1}}],["projects",{"2":{"47":1,"48":1}}],["projections",{"2":{"16":1}}],["projection",{"2":{"16":2}}],["project",{"0":{"3":1,"39":1,"40":1,"42":1,"44":1,"47":1,"48":1,"49":1,"50":1,"51":1},"1":{"40":1,"41":1,"42":1,"43":1,"44":1,"45":2,"46":2,"47":1,"49":1,"50":1,"51":1},"2":{"32":2,"39":1,"43":2,"47":2,"48":6,"49":3,"50":1,"51":2}}],["program",{"2":{"2":4}}],["properties",{"0":{"4":1},"2":{"0":1,"7":1,"8":1,"9":1,"13":1,"15":1,"22":2,"24":1,"25":1,"26":1,"32":1,"40":1,"42":1,"43":2,"47":1}}],["patch",{"2":{"35":1}}],["path=pwd",{"2":{"49":2,"50":1}}],["path=joinpath",{"2":{"39":1,"40":2,"41":3,"42":1,"43":3,"45":2,"46":2,"47":3}}],["paths",{"2":{"32":1}}],["path",{"2":{"0":27,"1":15,"3":8,"5":12,"32":2,"40":9,"43":1,"48":3,"49":2,"50":2,"51":2}}],["particular",{"2":{"44":1,"48":1}}],["part",{"2":{"32":1,"48":1}}],["parent",{"2":{"1":3,"2":2,"6":1,"7":1,"8":1,"9":1,"13":1,"15":1,"18":1,"19":1,"20":1,"21":1,"22":1,"24":1,"25":1,"26":1,"27":2,"33":1,"34":4,"40":1,"41":1,"42":1,"43":2,"47":1,"50":1}}],["pacific",{"2":{"20":3,"21":3,"34":12}}],["package",{"2":{"0":3,"12":2,"35":1,"48":1}}],["paper",{"2":{"19":1,"20":1,"21":1,"24":1,"25":1,"26":1}}],["pass",{"2":{"2":2}}],["lifting",{"2":{"40":1}}],["linewidth=5",{"2":{"13":1,"14":5,"16":1}}],["linewidth=3",{"2":{"13":1,"14":1,"16":1}}],["lines",{"2":{"13":2,"14":6,"16":2}}],["limits=",{"2":{"13":1,"14":1,"16":1}}],["listing",{"0":{"38":1,"50":1},"2":{"33":1}}],["listings",{"0":{"32":1},"1":{"33":1,"34":1}}],["listed",{"2":{"3":1,"22":1,"41":1}}],["lists",{"0":{"33":1,"47":1},"2":{"0":5,"32":1,"34":3,"40":4,"47":1,"51":1}}],["list",{"0":{"17":1,"37":1,"51":1},"1":{"18":1,"19":1,"20":1,"21":1,"38":1},"2":{"0":7,"1":6,"3":2,"5":6,"24":1,"25":1,"26":1,"32":4,"33":1,"38":1,"40":1,"43":1,"46":1,"50":1}}],["letter",{"2":{"19":1,"20":1,"21":1,"24":1,"25":1,"26":1}}],["let",{"2":{"13":2,"14":2,"15":1,"40":1,"41":1,"42":2,"47":1}}],["length",{"2":{"8":2,"16":2}}],["lt",{"2":{"7":1,"27":1,"49":1}}],["larger",{"2":{"32":1}}],["layout",{"2":{"13":1,"14":1,"16":1}}],["last",{"2":{"1":1}}],["latest",{"2":{"35":3}}],["lat",{"2":{"1":2,"4":2,"8":4,"16":2,"30":1,"31":2,"42":1}}],["latitudes",{"2":{"2":2}}],["latitude",{"2":{"1":3,"4":2,"8":2,"16":1,"30":3}}],["lost",{"2":{"47":1,"51":1}}],["loaded",{"0":{"45":1},"2":{"45":1}}],["load",{"2":{"15":1}}],["longer",{"2":{"43":1}}],["longitude",{"2":{"1":3,"2":2,"4":2,"8":2,"13":1,"16":1,"30":3}}],["lon",{"2":{"1":2,"4":2,"8":4,"16":2,"30":1,"31":2}}],["logging",{"2":{"0":2,"1":6}}],["local",{"2":{"0":3}}],["over",{"2":{"49":2}}],["overwritten",{"2":{"3":1,"49":1}}],["overwriting",{"0":{"43":1},"2":{"0":1,"49":3}}],["overwrite=true",{"2":{"17":1,"49":1}}],["overwrites",{"2":{"0":1}}],["overwrite",{"2":{"0":1,"3":4,"43":2,"49":2}}],["omitted",{"2":{"41":1}}],["open",{"2":{"36":1}}],["other",{"2":{"14":2,"33":1}}],["obvious",{"2":{"13":1}}],["obtain",{"2":{"9":1}}],["ocean",{"2":{"13":2,"20":1,"21":10,"34":22}}],["out",{"0":{"50":1},"2":{"7":1,"8":1,"36":1}}],["original",{"2":{"49":3}}],["order",{"2":{"6":1,"7":1,"16":1,"43":1,"49":1}}],["or",{"2":{"2":4,"11":1,"12":1,"32":1,"35":1,"36":1,"40":1,"44":1,"46":3,"51":1}}],["once",{"2":{"43":1}}],["only",{"2":{"19":1,"20":1,"21":1,"24":1,"25":1,"26":1,"32":1,"34":1}}],["one",{"2":{"0":1}}],["on",{"0":{"2":1,"46":1},"2":{"0":1,"2":3,"4":1,"7":2,"8":1,"14":1,"15":1,"16":3,"22":1,"29":1,"30":1,"31":1,"32":1,"42":2,"46":1,"48":1}}],["often",{"2":{"12":1}}],["of",{"0":{"15":1,"16":1,"17":1,"28":1,"32":1,"33":1,"37":1,"39":1},"1":{"16":1,"18":1,"19":1,"20":1,"21":1,"29":1,"30":1,"31":1,"33":1,"34":1,"38":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1},"2":{"0":10,"1":15,"2":8,"3":3,"4":7,"5":7,"6":5,"7":1,"8":5,"9":2,"10":1,"13":7,"15":2,"16":5,"20":1,"21":1,"22":5,"23":1,"24":1,"25":2,"26":1,"27":8,"28":2,"30":6,"31":1,"32":2,"33":3,"34":2,"35":2,"39":2,"40":2,"42":1,"43":2,"44":1,"48":4,"49":1,"50":3,"51":1}}],["branch",{"2":{"35":1}}],["brazil",{"2":{"20":1,"34":2}}],["build",{"2":{"47":1,"49":3,"51":1}}],["bugs",{"2":{"35":1}}],["but",{"2":{"13":1,"14":1}}],["big",{"2":{"14":10}}],["black",{"2":{"13":1,"14":1,"16":1}}],["blue",{"2":{"13":1,"14":1}}],["b",{"2":{"6":1,"13":5,"14":4}}],["bay",{"2":{"21":1,"34":2}}],["basis",{"2":{"48":1}}],["basic",{"2":{"22":2,"32":1}}],["basically",{"2":{"9":1}}],["basin",{"2":{"19":2,"34":4,"41":2}}],["based",{"0":{"46":1},"2":{"46":1}}],["base",{"2":{"0":1,"2":2}}],["back",{"2":{"3":1}}],["both",{"2":{"30":1,"32":1}}],["bob",{"2":{"21":1,"34":2}}],["box",{"2":{"13":1}}],["bounding",{"2":{"13":1}}],["bounds",{"2":{"7":3,"8":1,"9":1,"13":5,"15":1,"18":1,"19":1,"20":1,"21":1,"22":1,"24":1,"25":1,"26":1,"34":4,"40":1,"41":1,"42":1,"43":2,"47":1,"50":1}}],["boundaries",{"2":{"7":1,"27":1,"29":1}}],["boundary",{"2":{"2":1}}],["bound",{"2":{"1":2,"27":1}}],["boolean",{"2":{"0":1}}],["bool",{"2":{"0":4,"1":7,"2":8,"3":1,"5":9,"27":2}}],["by",{"2":{"0":2,"1":3,"2":8,"3":1,"12":1,"13":2,"14":1,"16":2,"27":4,"28":3,"29":1,"30":1,"31":1,"32":2,"35":1,"40":1,"48":1}}],["best",{"2":{"49":1}}],["besides",{"2":{"33":1}}],["been",{"0":{"41":1,"45":1},"2":{"41":1,"43":2,"45":1,"46":1,"50":1}}],["because",{"2":{"33":1,"50":1}}],["between",{"2":{"28":1}}],["bengal",{"2":{"21":1,"34":2}}],["below",{"2":{"6":1,"13":2,"14":1,"16":1}}],["before",{"2":{"1":2,"30":2}}],["being",{"2":{"0":3}}],["be",{"2":{"0":16,"1":15,"2":4,"3":2,"5":6,"8":2,"14":1,"27":3,"32":1,"33":1,"35":1,"38":1,"40":1,"41":1,"43":1,"46":1,"47":2,"48":3,"49":1,"50":1,"51":1}}],["v7",{"2":{"48":1}}],["v2",{"2":{"25":1,"26":1}}],["v1",{"2":{"24":1,"35":3}}],["ve",{"2":{"44":1}}],["version",{"2":{"28":1,"35":3,"48":1}}],["versions",{"2":{"19":1,"20":1,"21":1,"24":1,"25":1,"26":1,"35":1}}],["verify",{"2":{"14":1}}],["very",{"2":{"13":1}}],["vertices",{"2":{"16":1,"31":1}}],["vertical",{"2":{"5":1}}],["vertex",{"2":{"4":1}}],["verbose",{"2":{"0":6,"1":9}}],["vectors",{"2":{"4":1,"8":4}}],["vector",{"2":{"1":5,"4":4,"27":2,"30":1}}],["variety",{"2":{"33":1}}],["variable",{"2":{"0":3,"40":1,"48":1}}],["valid",{"2":{"0":4,"27":1,"46":1}}],["during",{"2":{"16":1}}],["data",{"2":{"12":1}}],["diagrams",{"2":{"9":1}}],["differentiate",{"2":{"28":1}}],["different",{"0":{"4":1},"2":{"6":1,"10":2,"16":1,"28":1,"33":1,"48":2}}],["displayed",{"2":{"5":2}}],["display",{"2":{"3":1,"5":10}}],["directly",{"2":{"40":1,"51":1}}],["directories",{"2":{"32":1}}],["directory",{"2":{"0":4,"1":3,"3":3,"5":4,"40":3,"43":1,"48":2,"49":1,"50":1,"51":1}}],["direction",{"2":{"30":1}}],["directions",{"2":{"30":1}}],["dirname",{"2":{"0":2}}],["docs",{"2":{"47":1,"49":3,"51":1}}],["documentation",{"2":{"32":1}}],["don",{"2":{"44":1}}],["does",{"2":{"34":3,"45":1}}],["download",{"2":{"12":1,"15":1}}],["domains",{"2":{"19":1,"20":1,"21":1,"24":1,"25":1,"26":1}}],["domain",{"2":{"8":1,"27":1}}],["do",{"2":{"1":1,"5":1,"7":1,"40":4,"44":1,"45":1,"46":1,"51":1}}],["depot",{"2":{"32":1,"40":1}}],["detect",{"2":{"13":1}}],["determine",{"2":{"12":1,"14":1}}],["deleted",{"2":{"47":1}}],["delete",{"2":{"44":1,"51":1}}],["deletegeoregions",{"2":{"3":1,"47":1,"51":2}}],["delimitedfiles",{"2":{"12":1,"15":1}}],["denoted",{"2":{"28":3}}],["denote",{"2":{"12":1}}],["dealing",{"2":{"12":1}}],["degrees",{"2":{"1":1,"30":2}}],["define",{"2":{"7":1,"13":1,"16":1}}],["defined",{"0":{"39":1,"43":1},"1":{"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1},"2":{"0":1,"2":8,"5":3,"13":1,"14":2,"16":1,"19":3,"20":3,"21":3,"24":3,"25":3,"26":3,"29":1,"30":1,"31":1,"32":4,"40":1,"41":1,"42":1,"43":1,"47":1,"48":2,"49":2,"50":2}}],["defining",{"0":{"7":1,"8":1,"9":1},"2":{"1":1,"10":1,"27":2}}],["default",{"0":{"17":1,"18":1},"1":{"18":1,"19":1,"20":1,"21":1},"2":{"0":2,"1":2,"3":1,"5":6,"16":1,"22":1,"27":2,"32":1,"40":2,"48":1,"51":2}}],["defaults",{"2":{"0":6,"1":3,"3":2,"5":4}}],["spans",{"2":{"22":1}}],["spo",{"2":{"21":1,"34":2}}],["specify",{"2":{"7":1,"8":1,"16":2,"40":2,"50":1}}],["specifically",{"2":{"48":1,"49":1}}],["specification",{"2":{"8":1,"9":1,"48":2}}],["specific",{"0":{"33":1},"2":{"6":1,"32":1}}],["specifies",{"2":{"3":1}}],["specified",{"2":{"0":3,"1":3,"3":1,"27":1,"38":1,"40":1,"50":1}}],["sws",{"2":{"21":1,"34":2}}],["sca",{"2":{"21":1,"34":2}}],["scatter",{"2":{"13":2}}],["src",{"2":{"34":3,"47":1,"49":6,"51":1}}],["srx",{"2":{"20":35,"25":5,"34":66,"46":1}}],["srex=false",{"2":{"21":1}}],["srex=true",{"2":{"20":1}}],["srex",{"0":{"20":1,"25":1},"2":{"5":4,"20":33,"33":1,"34":66,"48":1}}],["ssa",{"2":{"19":1,"20":1,"21":1,"34":6,"41":1}}],["some",{"2":{"33":1,"41":1,"44":1}}],["soon",{"2":{"35":1}}],["soo",{"2":{"21":1,"34":2}}],["so",{"2":{"16":1,"34":1,"40":1,"42":1,"48":1,"50":1}}],["southwest",{"2":{"21":1,"34":2}}],["southeastern",{"2":{"20":1,"34":2}}],["southeast",{"2":{"19":1,"20":1,"21":2,"34":8}}],["southern",{"2":{"19":2,"20":2,"21":8,"34":24,"41":1}}],["south",{"2":{"7":1,"19":2,"20":5,"21":10,"27":1,"34":34,"41":1}}],["source",{"2":{"0":6,"1":3,"2":4,"3":3,"4":1,"5":4,"27":1,"29":1,"30":1,"31":1}}],["smaller",{"2":{"14":1}}],["shared",{"2":{"48":1}}],["shape",{"0":{"15":1},"1":{"16":1},"2":{"1":1,"2":1,"4":4,"7":2,"8":3,"9":2,"13":2,"15":3,"16":3,"22":2,"24":2,"25":2,"26":2,"27":2,"40":2,"42":3,"43":4,"47":2}}],["shown",{"2":{"50":1}}],["show",{"2":{"39":1}}],["should",{"2":{"27":1,"40":1,"48":1}}],["shifted",{"2":{"13":1}}],["similar",{"2":{"48":1}}],["simultaneously",{"2":{"40":1}}],["simply",{"2":{"13":1}}],["sio",{"2":{"21":1,"34":2}}],["siberia",{"2":{"21":2,"34":4}}],["since",{"2":{"14":1,"35":1}}],["sides",{"2":{"16":1}}],["side",{"2":{"4":1,"16":2}}],["slon",{"2":{"13":5,"14":10,"16":4}}],["slat",{"2":{"13":6,"14":10,"16":4}}],["suggestions",{"2":{"36":1}}],["supertype",{"2":{"27":1}}],["suppose",{"2":{"10":1}}],["subtypes",{"2":{"33":1}}],["subregion",{"2":{"27":1}}],["subset",{"2":{"2":2,"27":1,"33":1}}],["such",{"2":{"13":1}}],["second",{"2":{"46":1}}],["section",{"2":{"15":1,"22":1}}],["sections",{"2":{"6":1}}],["setting",{"2":{"32":1}}],["set",{"2":{"23":1,"43":1,"50":1}}],["sets",{"2":{"22":1}}],["setup",{"0":{"49":1},"2":{"3":1,"15":1,"32":1}}],["setupgeoregions",{"2":{"3":1,"17":1,"38":1,"39":1,"49":2}}],["ses",{"2":{"21":1,"34":2}}],["seneviratne",{"0":{"20":1,"25":1},"2":{"20":1,"25":2}}],["seaf",{"2":{"21":1,"34":2}}],["sea",{"2":{"19":1,"20":1,"21":2,"34":8}}],["several",{"2":{"10":1,"22":1,"28":1}}],["see",{"2":{"7":1,"8":1,"9":1,"13":4,"14":3,"16":1,"22":2,"24":1,"25":1,"26":1,"34":4,"40":2,"41":3,"42":2,"43":2,"45":2,"46":1,"47":1,"49":1,"50":1,"51":2}}],["seen",{"2":{"6":1}}],["segments",{"2":{"4":1,"16":2}}],["stored",{"2":{"49":1}}],["store",{"2":{"49":1}}],["stops",{"2":{"2":4}}],["started",{"2":{"49":1}}],["state",{"2":{"8":1}}],["still",{"2":{"48":1}}],["stp",{"2":{"20":1,"34":2}}],["straightforward",{"2":{"7":1}}],["struct",{"2":{"2":2}}],["string",{"2":{"1":3,"22":1,"27":3,"46":1}}],["st",{"2":{"1":6}}],["say",{"2":{"51":1}}],["saving",{"2":{"32":1}}],["save=true",{"2":{"40":1}}],["save",{"2":{"1":9,"40":8,"41":2,"42":1,"43":4,"47":2}}],["saved",{"2":{"0":2,"32":1,"40":3,"42":1,"43":1,"47":1,"48":1,"50":1,"51":1}}],["saves",{"2":{"0":1}}],["sao",{"2":{"21":1,"34":2}}],["sau",{"2":{"20":1,"21":1,"34":4}}],["sas",{"2":{"19":1,"20":1,"21":1,"34":6}}],["sahara",{"2":{"19":1,"20":1,"21":1,"34":6}}],["sah",{"2":{"19":1,"20":1,"21":1,"34":6}}],["saf",{"2":{"19":1,"20":1,"34":4}}],["sam",{"2":{"21":1,"34":2}}],["sample",{"2":{"7":1,"8":1,"9":1}}],["same",{"2":{"0":1,"2":1,"6":1,"8":2,"11":1,"43":1}}],["s",{"0":{"18":1},"2":{"0":1,"1":4,"5":4,"7":6,"8":1,"9":1,"13":1,"15":1,"18":1,"19":1,"20":1,"21":1,"22":1,"24":1,"25":1,"26":1,"27":1,"29":1,"34":4,"40":1,"41":1,"42":3,"43":2,"47":2,"50":1}}],["feel",{"2":{"36":2}}],["features",{"2":{"35":1}}],["full",{"2":{"22":1,"24":1,"25":1,"26":1,"27":1,"32":1}}],["functionality",{"2":{"22":2,"32":1}}],["function",{"2":{"12":1,"13":1,"16":1,"22":2,"32":1,"38":1,"41":1,"45":1,"46":1}}],["functions",{"2":{"6":2,"11":1}}],["far",{"2":{"21":1,"34":2}}],["false",{"2":{"0":1,"1":3,"2":4,"3":1,"5":5,"7":1,"8":1,"9":1,"13":2,"15":1,"22":1,"24":1,"25":1,"26":1,"32":3,"33":5,"40":1,"42":1,"43":2,"47":2,"50":1,"51":3}}],["free",{"2":{"36":2}}],["francisco",{"0":{"19":1,"24":1},"2":{"19":1,"24":2}}],["frame",{"2":{"13":1}}],["from",{"0":{"20":1,"21":1,"24":1,"25":1,"26":1,"44":1,"47":1,"51":1},"1":{"45":1,"46":1},"2":{"0":9,"1":6,"3":1,"5":4,"12":1,"19":1,"20":1,"21":1,"24":2,"25":2,"26":2,"47":2,"51":1}}],["float",{"2":{"27":1,"30":6}}],["float64",{"2":{"1":3,"7":1,"8":1,"9":1,"13":1,"15":1,"22":1,"24":1,"25":1,"26":1,"40":1,"42":1,"43":2,"47":1}}],["flexibility",{"2":{"8":1}}],["fname",{"2":{"3":3}}],["follows",{"2":{"40":1,"50":1}}],["following",{"2":{"7":2,"8":1,"9":1,"13":1,"15":1,"22":1,"24":1,"25":1,"26":1,"27":1,"30":1,"40":1,"42":1,"43":2,"47":1,"49":1}}],["folder",{"2":{"3":1}}],["format",{"2":{"3":1,"5":4}}],["for",{"0":{"0":1,"1":1,"2":1,"3":1,"4":1,"5":1,"39":1,"42":1,"43":1,"48":1,"49":1,"50":1},"1":{"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1,"49":1,"50":1,"51":1},"2":{"0":2,"1":6,"3":1,"4":3,"8":2,"9":1,"14":2,"15":1,"22":3,"27":3,"32":4,"35":1,"38":1,"39":1,"40":2,"43":1,"44":1,"47":1,"48":4,"50":2,"51":1}}],["fix",{"2":{"35":1}}],["find",{"2":{"35":1}}],["field",{"2":{"30":1}}],["fields",{"2":{"27":1,"30":1}}],["figure",{"2":{"13":1,"14":1,"16":1,"36":1}}],["fig",{"2":{"13":4,"14":4,"16":4}}],["file",{"0":{"37":1},"1":{"38":1},"2":{"3":2,"18":1,"19":1,"20":1,"21":1,"34":7,"38":1,"41":1,"49":3,"50":1}}],["files",{"0":{"38":1},"2":{"3":4,"5":1,"32":1,"38":1,"40":1,"41":1,"47":2,"49":6,"50":1,"51":3}}],["filesystem",{"2":{"0":1}}],["first",{"2":{"1":2,"6":1,"45":1,"50":2}}],["ft",{"2":{"1":6}}],["writes",{"2":{"40":3}}],["wca",{"2":{"21":1,"34":2}}],["wce",{"2":{"21":1,"34":2}}],["wsb",{"2":{"21":1,"34":2}}],["wsaf",{"2":{"21":1,"34":2}}],["wsa",{"2":{"20":1,"34":2}}],["wna",{"2":{"19":1,"20":1,"21":1,"34":6,"41":1}}],["work",{"2":{"34":3,"47":2,"49":9,"51":2}}],["workspace",{"2":{"40":1,"45":1}}],["works",{"2":{"16":1,"48":1}}],["working",{"2":{"3":2,"35":1}}],["wong",{"2":{"12":1,"15":1}}],["while",{"2":{"40":1}}],["which",{"2":{"12":1,"13":1,"22":1,"27":1,"32":1,"40":2,"49":1}}],["whole",{"2":{"22":1}}],["wholly",{"2":{"14":1}}],["what",{"0":{"27":1},"1":{"28":1,"29":1,"30":1,"31":1},"2":{"13":1}}],["when",{"2":{"12":1,"27":1,"40":1}}],["where",{"2":{"0":6,"1":6,"2":2,"3":2,"5":4,"16":1,"30":1}}],["waiting",{"2":{"35":1}}],["wan",{"2":{"21":1,"34":2}}],["want",{"2":{"11":1,"35":1,"44":1,"51":1}}],["was",{"2":{"20":1,"34":2}}],["waf",{"2":{"19":1,"20":1,"21":1,"24":3,"34":6,"41":1}}],["way",{"2":{"12":1,"49":1}}],["ways",{"2":{"10":1,"44":1}}],["warning",{"2":{"34":3,"47":1,"49":3,"50":1,"51":1}}],["warnings",{"2":{"5":1}}],["warn=false",{"2":{"34":1}}],["warn",{"2":{"5":2,"50":1}}],["were",{"2":{"48":1}}],["western",{"2":{"19":2,"21":5,"24":1,"34":14,"41":2}}],["west",{"2":{"7":1,"20":4,"21":2,"27":1,"34":12}}],["we",{"2":{"2":4,"6":1,"8":1,"10":2,"11":1,"12":2,"13":4,"14":2,"15":2,"16":5,"28":1,"39":1,"40":2,"41":4,"42":2,"43":3,"44":1,"45":3,"46":1,"47":2,"48":2,"50":3,"51":1}}],["w",{"2":{"1":1,"7":7,"8":1,"9":1,"13":1,"15":1,"18":1,"19":1,"20":2,"21":1,"22":1,"24":1,"25":1,"26":1,"27":2,"29":1,"34":6,"40":1,"41":1,"42":1,"43":2,"47":1,"50":1}}],["wio",{"2":{"20":1,"34":2}}],["wish",{"2":{"12":1,"40":1}}],["width=750",{"2":{"13":1,"14":1,"16":1}}],["width",{"2":{"1":2,"30":3}}],["will",{"2":{"0":12,"1":9,"3":2,"5":7,"30":1,"32":1,"33":3,"34":1,"39":1,"40":1,"47":2,"48":2,"49":4,"50":1,"51":1}}],["without",{"2":{"35":1}}],["within",{"2":{"2":6,"13":3,"14":1}}],["with",{"0":{"37":1},"1":{"38":1},"2":{"0":7,"3":1,"7":2,"8":2,"9":2,"12":2,"13":1,"14":1,"33":1,"43":7,"44":2,"46":1,"49":3,"51":1}}],["keywords",{"2":{"32":1}}],["keyword",{"2":{"0":8,"1":6,"2":4,"3":2,"5":4,"16":1,"40":2,"48":1,"49":1,"50":1}}],["tutorials",{"2":{"47":1,"49":3,"51":1}}],["tutorial",{"2":{"39":1}}],["t",{"2":{"35":1,"44":1}}],["talks",{"2":{"22":1}}],["tablepolyregions",{"2":{"5":1,"33":2,"34":1}}],["tabletiltregions",{"2":{"5":1,"33":2,"34":2}}],["tablerectregions",{"2":{"5":1,"33":1,"34":1}}],["table",{"2":{"5":1,"33":1,"50":2}}],["tables",{"0":{"5":1},"2":{"34":3}}],["tablegeoregions",{"2":{"3":1,"5":1,"32":4,"34":1,"41":1,"50":1}}],["tabular",{"0":{"32":1},"1":{"33":1,"34":1},"2":{"3":1,"5":4}}],["tibetian",{"2":{"21":1,"34":2}}],["tibetan",{"2":{"20":1,"34":2}}],["tibet",{"2":{"19":1,"34":2}}],["tib",{"2":{"19":1,"20":1,"21":1,"34":6}}],["tiltlist",{"2":{"34":1,"40":1,"49":4,"50":1,"51":1}}],["tiltgrid",{"2":{"9":1}}],["tilt",{"2":{"1":1,"9":3,"30":2,"47":1}}],["tilting",{"2":{"1":2,"30":2}}],["tilted",{"2":{"1":2,"9":2,"28":1,"30":1,"47":1}}],["tiltregions",{"0":{"9":1,"30":1},"2":{"5":2,"6":1,"30":1,"34":2,"49":1}}],["tiltregion",{"2":{"1":2,"6":2,"9":4,"14":1,"28":1,"30":1,"40":1,"46":1,"47":2}}],["tst",{"2":{"47":4}}],["tsr",{"2":{"40":3,"41":2,"46":4}}],["tsp",{"2":{"40":2,"41":2,"42":3,"43":10,"45":3}}],["ts4",{"2":{"14":5}}],["ts3",{"2":{"14":4}}],["ts2",{"2":{"14":5}}],["ts1",{"2":{"14":5}}],["txt",{"2":{"12":1,"15":1,"18":1,"19":22,"20":34,"21":59,"34":231,"40":4,"41":16,"49":12,"50":4,"51":4}}],["ttr",{"2":{"9":4}}],["tpr",{"2":{"8":4}}],["two",{"0":{"11":1},"2":{"8":1,"10":1,"11":1,"44":1}}],["terms",{"2":{"8":1}}],["test",{"2":{"7":3,"8":2,"9":3,"13":1,"14":4,"39":2,"40":5,"41":5,"42":2,"43":6,"45":2,"46":2,"47":7}}],["templates",{"2":{"34":3}}],["template",{"2":{"3":2,"38":1}}],["try",{"2":{"42":1}}],["trying",{"2":{"36":1}}],["tropical",{"2":{"20":2,"34":4}}],["trivial",{"2":{"13":1}}],["trr",{"2":{"7":4}}],["true",{"2":{"0":7,"1":11,"2":4,"3":1,"5":19,"7":1,"8":1,"9":1,"13":3,"15":1,"22":1,"24":1,"25":1,"26":1,"32":3,"33":5,"40":5,"41":2,"42":1,"43":2,"47":1,"49":4}}],["types",{"0":{"28":1},"1":{"29":1,"30":1,"31":1},"2":{"6":2,"7":1,"8":1,"14":1,"27":3,"28":1,"30":1}}],["type",{"2":{"2":2,"6":1,"12":2,"14":1,"18":1,"19":2,"20":2,"21":2,"22":1,"24":1,"25":1,"26":1,"27":5,"28":3,"30":6,"34":4,"41":1,"50":1}}],["tf",{"2":{"0":3}}],["touch",{"2":{"36":1}}],["to",{"0":{"40":1},"2":{"0":13,"1":7,"2":4,"3":4,"5":4,"6":1,"7":2,"9":1,"11":1,"12":5,"13":5,"14":2,"16":5,"19":2,"20":2,"21":2,"22":1,"24":3,"25":3,"26":3,"27":1,"30":2,"32":6,"33":1,"34":6,"35":5,"36":4,"38":1,"40":10,"41":1,"43":3,"44":2,"45":2,"46":3,"47":1,"48":2,"49":4,"50":3,"51":1}}],["those",{"2":{"50":1}}],["though",{"2":{"20":1,"25":1,"50":1}}],["through",{"2":{"15":1}}],["throw=false",{"2":{"47":1}}],["throws",{"2":{"0":1}}],["throw",{"2":{"0":2,"2":8}}],["thrown",{"2":{"0":4,"1":3,"2":4}}],["three",{"2":{"6":2,"7":1,"8":1}}],["that",{"0":{"45":1},"2":{"0":4,"1":3,"2":4,"6":1,"7":1,"9":2,"11":1,"13":6,"14":2,"16":2,"22":1,"40":1,"41":2,"42":1,"43":1,"44":1,"45":2,"46":1,"48":4,"49":1,"50":1}}],["this",{"2":{"0":1,"3":1,"12":2,"13":3,"14":2,"15":1,"16":1,"19":1,"20":1,"21":1,"22":1,"24":1,"25":1,"26":1,"35":1,"39":1,"40":1,"42":1,"43":4,"45":1,"46":2,"48":2,"49":1}}],["they",{"2":{"41":1,"47":1,"49":1}}],["them",{"2":{"14":1,"20":1,"25":1,"32":1,"51":1}}],["these",{"2":{"6":1,"38":1,"42":1,"47":1,"49":1,"51":1}}],["their",{"2":{"6":1,"32":2,"41":1,"47":1}}],["therefore",{"2":{"16":2,"43":1,"48":1}}],["there",{"2":{"0":1,"6":1,"16":2,"22":1,"23":1,"34":1,"44":1,"50":1}}],["then",{"2":{"0":4,"1":3,"2":4,"3":1,"51":1}}],["the",{"0":{"15":1,"16":1,"18":1,"47":1,"50":1,"51":1},"1":{"16":1},"2":{"0":49,"1":43,"2":16,"3":12,"4":7,"5":14,"6":6,"7":10,"8":11,"9":6,"11":2,"12":4,"13":18,"14":6,"15":5,"16":16,"19":3,"20":3,"21":3,"22":14,"24":6,"25":6,"26":6,"27":14,"28":3,"30":13,"31":1,"32":2,"33":5,"34":8,"35":9,"38":3,"39":2,"40":17,"41":4,"42":6,"43":15,"44":1,"45":6,"46":5,"47":7,"48":6,"49":5,"50":6,"51":4}}],["empty",{"2":{"34":3}}],["eio",{"2":{"21":1,"34":2}}],["epo",{"2":{"21":1,"34":2}}],["eca",{"2":{"21":1,"34":2}}],["especially",{"2":{"40":1}}],["essence",{"2":{"27":1}}],["esb",{"2":{"21":1,"34":2}}],["esaf",{"2":{"21":1,"34":2}}],["eeu",{"2":{"21":1,"34":2}}],["even",{"2":{"20":1,"25":1,"50":1}}],["etc",{"2":{"36":1}}],["etp",{"2":{"20":1,"34":2}}],["et",{"0":{"20":1,"21":1,"25":1,"26":1},"2":{"20":1,"21":1,"25":2,"26":2}}],["europe",{"2":{"19":1,"20":3,"21":3,"34":14,"41":1}}],["entail",{"2":{"48":1}}],["ena",{"2":{"19":1,"20":1,"21":1,"34":6,"41":1}}],["ensure",{"2":{"16":1}}],["eye",{"2":{"13":1,"14":1}}],["equirectangular",{"2":{"16":1}}],["equivalent",{"0":{"11":1}}],["equivalence",{"2":{"10":1}}],["equatorial",{"2":{"13":2,"21":3,"34":6}}],["ean",{"2":{"21":1,"34":2}}],["eau",{"2":{"21":1,"34":2}}],["eaf",{"2":{"19":1,"20":1,"34":4,"41":1}}],["eao",{"2":{"13":4,"21":1,"34":2}}],["eas",{"2":{"19":1,"20":1,"21":1,"26":3,"34":6}}],["easy",{"2":{"12":1,"13":1}}],["easily",{"2":{"9":1,"12":1}}],["eastern",{"2":{"19":2,"20":1,"21":6,"34":18,"41":2}}],["east",{"2":{"7":1,"19":1,"20":3,"21":5,"26":1,"27":1,"34":18}}],["ease",{"2":{"0":2,"1":3}}],["each",{"2":{"4":1,"6":1,"16":1}}],["e",{"2":{"0":3,"1":1,"7":7,"8":1,"9":1,"13":1,"15":1,"18":1,"19":1,"20":1,"21":1,"22":1,"24":1,"25":1,"26":1,"27":2,"29":1,"34":4,"40":1,"41":1,"42":1,"43":2,"47":1,"50":1}}],["error",{"2":{"0":5,"1":3,"2":4,"43":1,"46":1}}],["explicitly",{"2":{"48":1}}],["exampleisid",{"2":{"45":1}}],["examplein",{"2":{"14":1}}],["examples",{"0":{"34":1}}],["exampleslon",{"2":{"13":1}}],["examplelon",{"2":{"16":1}}],["examplegeo",{"2":{"14":1}}],["exampleusing",{"2":{"12":1,"15":1}}],["example",{"2":{"7":1,"8":1,"9":1,"13":1,"15":1,"16":1,"22":1,"40":1,"50":1}}],["exact",{"2":{"0":1}}],["exactly",{"2":{"0":1,"11":1}}],["extension",{"2":{"14":1}}],["extent",{"2":{"5":1}}],["extracting",{"2":{"15":1}}],["extracted",{"2":{"1":3}}],["extracts",{"2":{"0":1}}],["exist",{"2":{"3":1,"5":1,"34":3,"49":1,"50":1}}],["exists",{"2":{"0":2,"45":1,"51":1}}],["important",{"2":{"22":1}}],["iceland",{"2":{"20":1,"21":1,"34":4}}],["ipcc",{"0":{"21":1},"2":{"5":1}}],["ippc",{"2":{"5":1}}],["iturbide",{"0":{"21":1,"26":1},"2":{"21":1,"26":2}}],["itself",{"2":{"27":1}}],["its",{"0":{"46":1},"2":{"9":1,"22":1,"29":1,"30":1,"31":1,"46":1}}],["it",{"0":{"2":1,"12":1},"1":{"13":1,"14":1},"2":{"8":1,"13":5,"32":2,"33":2,"36":1,"38":1,"40":4,"44":2,"45":1}}],["info",{"2":{"40":1,"43":1,"45":1,"46":1}}],["information",{"0":{"43":1},"2":{"0":5,"1":6,"3":2,"15":1,"22":1,"39":1,"40":2,"42":2,"43":2,"44":2,"47":2,"51":1}}],["indian",{"2":{"20":1,"21":2,"34":6}}],["indeed",{"2":{"14":1}}],["installed",{"2":{"35":1}}],["installation",{"0":{"35":1}}],["instructions",{"0":{"35":1}}],["instead",{"2":{"0":1,"40":1}}],["inside",{"0":{"14":1,"38":1},"2":{"12":2,"13":1}}],["inputs",{"2":{"6":2}}],["interested",{"2":{"36":1}}],["interest",{"2":{"9":1,"27":1}}],["int",{"2":{"2":2,"4":1}}],["into",{"2":{"0":2,"1":3,"32":1,"40":1,"43":2,"45":1,"47":1,"51":1}}],["in",{"0":{"2":1,"3":1,"5":1,"12":1,"13":1,"23":1,"37":1},"1":{"13":1,"14":1,"24":1,"25":1,"26":1,"38":1},"2":{"0":8,"1":12,"2":2,"3":3,"5":4,"6":2,"7":1,"8":2,"9":1,"13":7,"14":5,"15":1,"16":2,"19":3,"20":3,"21":3,"22":1,"23":1,"24":3,"25":3,"26":3,"27":1,"28":4,"30":7,"32":1,"33":2,"34":4,"35":1,"36":2,"38":1,"39":1,"40":3,"43":2,"46":1,"48":2,"49":5}}],["i",{"2":{"0":3,"35":2}}],["isfile",{"2":{"49":2,"51":2}}],["issue",{"2":{"36":1}}],["isn",{"2":{"35":1}}],["islands",{"2":{"20":1,"34":2}}],["isingeoregion",{"2":{"12":1}}],["isid",{"2":{"0":1,"41":2,"46":1,"47":1}}],["isequal",{"2":{"11":1}}],["is360",{"2":{"7":1,"8":1,"9":1,"13":1,"15":1,"22":1,"24":1,"25":1,"26":1,"27":1,"40":1,"42":1,"43":2,"47":1}}],["is180",{"2":{"7":1,"8":1,"9":1,"13":1,"15":1,"22":1,"24":1,"25":1,"26":1,"27":1,"40":1,"42":1,"43":2,"47":1}}],["is",{"0":{"2":1,"12":1,"13":1,"14":1,"18":1,"27":1},"1":{"13":1,"14":1,"28":1,"29":1,"30":1,"31":1},"2":{"0":8,"1":5,"2":12,"5":6,"7":2,"9":3,"12":3,"13":11,"14":3,"16":3,"22":4,"27":4,"32":2,"33":2,"38":1,"40":7,"45":1,"46":2,"48":1,"49":1,"50":2,"51":2}}],["if",{"0":{"41":1},"2":{"0":7,"1":9,"2":12,"3":2,"5":10,"11":1,"12":2,"13":3,"14":1,"16":1,"35":1,"36":2,"40":2,"41":2,"42":1,"45":1,"47":2,"48":1,"49":1,"50":1,"51":1}}],["ids",{"2":{"19":1,"20":1,"21":1,"24":1,"25":1,"26":1,"41":1}}],["identified",{"2":{"27":2}}],["identifiers",{"2":{"48":1}}],["identifier",{"2":{"0":1,"27":2,"43":1,"46":2}}],["identify",{"2":{"0":3,"1":3}}],["id",{"0":{"46":1},"2":{"0":15,"1":15,"6":6,"7":5,"8":4,"9":5,"13":3,"15":3,"18":1,"19":1,"20":1,"21":1,"22":7,"24":3,"25":3,"26":3,"27":3,"34":4,"40":7,"41":1,"42":3,"43":12,"44":1,"46":1,"47":3,"48":1,"50":1}}],[">",{"2":{"0":4,"1":3,"2":4,"3":3,"4":1,"5":4}}],["==",{"2":{"11":1}}],["=================",{"2":{"5":1}}],["=",{"2":{"0":9,"1":16,"2":6,"3":4,"4":1,"5":13,"12":3,"13":8,"14":12,"15":4,"16":7,"22":3,"32":2,"33":5,"40":11,"42":2,"43":4,"49":2,"50":2}}],["automatically",{"2":{"40":1}}],["australia",{"2":{"19":1,"20":2,"21":4,"34":14,"41":1}}],["aus",{"2":{"19":1,"34":2,"41":1}}],["accessed",{"2":{"35":1}}],["africa",{"2":{"19":3,"20":3,"21":6,"24":1,"34":24,"41":2}}],["advanced",{"2":{"22":1}}],["adapted",{"0":{"24":1,"25":1,"26":1},"2":{"19":1,"20":1,"21":1,"24":1,"25":1,"26":1}}],["added",{"0":{"41":1},"2":{"41":2,"50":1}}],["additional",{"2":{"32":1}}],["addition",{"2":{"30":1,"41":1}}],["adding",{"0":{"0":1,"40":1},"2":{"39":1,"40":1,"43":1}}],["add",{"2":{"0":1,"19":1,"20":1,"21":1,"24":1,"25":1,"26":1,"35":3,"40":4,"43":2,"46":1}}],["amazon",{"2":{"19":1,"20":1,"34":4,"41":1}}],["amz",{"2":{"19":1,"20":1,"34":4,"41":1}}],["amp",{"0":{"19":1,"24":1},"2":{"19":1,"24":2}}],["american",{"2":{"21":1,"34":2}}],["america",{"2":{"15":2,"19":5,"20":6,"21":13,"25":1,"34":48,"41":5}}],["above",{"2":{"48":1}}],["abovementioned",{"2":{"42":1}}],["about",{"2":{"13":1,"22":1}}],["abstract",{"2":{"27":1,"30":1}}],["abstractstring",{"2":{"0":9,"1":12,"3":3,"5":4}}],["able",{"2":{"13":1,"16":1}}],["axis",{"2":{"13":1,"14":1,"16":1}}],["ax",{"2":{"13":5,"14":7,"16":3}}],["atlantic",{"2":{"13":2,"21":3,"34":6}}],["at",{"2":{"13":3}}],["available",{"2":{"3":1,"5":4,"7":1,"8":1,"28":3,"32":1,"33":1,"48":1}}],["alternatively",{"2":{"41":1}}],["although",{"2":{"35":1}}],["al",{"0":{"20":1,"21":1,"25":1,"26":1},"2":{"20":1,"21":1,"25":2,"26":2}}],["alaska",{"2":{"19":1,"20":1,"34":4,"41":1}}],["ala",{"2":{"19":1,"20":1,"34":4,"41":1}}],["also",{"2":{"12":1,"13":1,"27":1,"30":1,"32":1,"33":1,"40":1}}],["always",{"2":{"6":1,"33":3,"50":2}}],["allows",{"2":{"9":1,"12":2}}],["all",{"2":{"3":2,"5":4,"7":2,"8":1,"19":2,"20":2,"21":2,"24":2,"25":2,"26":2,"27":1,"28":1,"30":1,"32":1,"33":2,"47":3,"48":2,"49":1,"50":1,"51":1}}],["already",{"2":{"1":3,"43":1,"45":1,"49":1}}],["ars",{"2":{"21":1,"34":2}}],["aro",{"2":{"21":1,"34":2}}],["arabian",{"2":{"21":2,"34":4}}],["arp",{"2":{"21":1,"34":2}}],["arctic",{"2":{"20":1,"21":2,"34":6}}],["arc",{"2":{"20":1,"34":2}}],["argument",{"2":{"16":1,"40":1}}],["arguments",{"2":{"0":12,"1":6,"2":8,"3":3,"4":1,"5":4,"32":1}}],["arbitrary",{"2":{"14":2}}],["ar6=true",{"2":{"21":1}}],["ar6=false",{"2":{"20":1}}],["ar6",{"0":{"21":1,"26":1},"2":{"5":4,"13":4,"15":4,"21":118,"26":5,"33":1,"34":232,"46":1,"48":1}}],["are",{"0":{"11":1},"2":{"2":2,"3":1,"6":2,"7":1,"11":1,"13":3,"14":2,"16":3,"19":2,"20":3,"21":2,"22":1,"23":1,"24":2,"25":3,"26":2,"28":3,"34":1,"36":2,"44":1,"50":3}}],["again",{"2":{"1":1}}],["appear",{"2":{"33":2}}],["append",{"2":{"1":1}}],["api",{"0":{"0":1,"1":1,"2":1,"3":1,"4":1,"5":1},"2":{"7":1,"8":1,"9":1,"13":1,"14":1,"16":1,"22":2,"32":1,"34":4,"40":2,"41":1,"42":1,"43":1,"45":1,"46":1,"49":1,"50":1,"51":1}}],["assume",{"2":{"48":1}}],["associate",{"2":{"44":1}}],["associated",{"2":{"0":3,"43":3}}],["association",{"2":{"43":1}}],["ask",{"2":{"36":1}}],["asia",{"2":{"19":5,"20":6,"21":5,"26":1,"34":32}}],["aspect",{"2":{"13":2,"16":2}}],["as",{"2":{"0":1,"2":1,"4":1,"6":1,"7":2,"8":1,"9":2,"12":1,"13":1,"14":2,"19":1,"20":1,"21":1,"24":1,"25":1,"26":1,"32":1,"35":2,"40":2,"48":1,"50":1}}],["a",{"0":{"2":1,"12":1,"13":2,"14":2,"15":1,"16":1,"27":1,"37":2,"43":1,"44":1,"45":1,"46":1,"47":1,"51":1},"1":{"13":1,"14":1,"16":1,"28":1,"29":1,"30":1,"31":1,"38":2,"45":1,"46":1},"2":{"0":4,"1":11,"2":21,"4":6,"6":1,"8":1,"9":4,"12":3,"13":8,"14":4,"15":1,"16":1,"22":4,"23":1,"27":14,"29":2,"30":8,"31":2,"32":3,"33":2,"35":1,"39":1,"40":2,"43":1,"44":4,"45":1,"46":2,"48":5,"50":4}}],["angle",{"2":{"30":2}}],["antarctica",{"2":{"20":1,"21":2,"34":6}}],["ant",{"2":{"20":1,"34":2}}],["another",{"2":{"12":1,"14":1,"43":5}}],["anymore",{"2":{"44":1}}],["anyway",{"2":{"13":1}}],["any",{"2":{"0":2,"3":1,"8":1,"14":1,"36":1,"49":1,"50":1}}],["an",{"2":{"0":5,"1":3,"2":4,"7":1,"9":1,"12":1,"13":1,"14":1,"27":1,"36":1,"43":1,"46":1}}],["and",{"0":{"0":1,"42":1},"2":{"1":1,"2":8,"4":1,"5":1,"6":2,"7":2,"8":5,"9":2,"13":1,"14":6,"16":2,"21":1,"22":2,"27":1,"30":1,"32":3,"33":1,"34":5,"35":1,"36":1,"39":1,"41":1,"43":1,"44":1,"45":2,"47":2,"48":2,"49":1,"50":2,"51":1}}]],"serializationVersion":2}';export{e as default}; diff --git a/dev/assets/chunks/@localSearchIndexroot.CKfK4LtC.js b/dev/assets/chunks/@localSearchIndexroot.CKfK4LtC.js deleted file mode 100644 index ba8081d7..00000000 --- a/dev/assets/chunks/@localSearchIndexroot.CKfK4LtC.js +++ /dev/null @@ -1 +0,0 @@ -const e='{"documentCount":52,"nextId":52,"documentIds":{"0":"/GeoRegions.jl/dev/api/addreadrm#API-for-Adding,-Reading-and-Removing-GeoRegions","1":"/GeoRegions.jl/dev/api/create#API-for-Creating-GeoRegions","2":"/GeoRegions.jl/dev/api/isin#API-for-Is-it-in/on-a-GeoRegion?","3":"/GeoRegions.jl/dev/api/project#API-for-Project-Handling-in-GeoRegions.jl","4":"/GeoRegions.jl/dev/api/properties#API-for-Different-GeoRegion-Properties","5":"/GeoRegions.jl/dev/api/tables#API-for-Tables-in-GeoRegions.jl","6":"/GeoRegions.jl/dev/basics/create#Creating-Custom-GeoRegions","7":"/GeoRegions.jl/dev/basics/create#Defining-New-RectRegions","8":"/GeoRegions.jl/dev/basics/create#Defining-New-PolyRegions","9":"/GeoRegions.jl/dev/basics/create#Defining-New-TiltRegions","10":"/GeoRegions.jl/dev/basics/properties/isequal#Comparing-GeoRegions","11":"/GeoRegions.jl/dev/basics/properties/isequal#1.-Are-two-GeoRegions-Equivalent","12":"/GeoRegions.jl/dev/basics/properties/isin#Is-it-in-a-GeoRegion?","13":"/GeoRegions.jl/dev/basics/properties/isin#Is-a-Point-in-a-GeoRegion?","14":"/GeoRegions.jl/dev/basics/properties/isin#Is-a-GeoRegion-inside-a-GeoRegion?","15":"/GeoRegions.jl/dev/basics/properties/shape#The-Shape-of-a-GeoRegion","16":"/GeoRegions.jl/dev/basics/properties/shape#Retrieving-the-coordinates-of-a-GeoRegion","17":"/GeoRegions.jl/dev/basics/read/listall#Default-List-of-Predefined-GeoRegions","18":"/GeoRegions.jl/dev/basics/read/listall#GeoRegions.jl\'s-default-region-is-the-Globe","19":"/GeoRegions.jl/dev/basics/read/listall#Giorgi-and-Francisco-[2000]","20":"/GeoRegions.jl/dev/basics/read/listall#SREX-Regions-from-Seneviratne-et-al.-[2012]","21":"/GeoRegions.jl/dev/basics/read/listall#IPCC-AR6-Regions-from-Iturbide-et-al.,-[2020]","22":"/GeoRegions.jl/dev/basics/read/overview#Reading-Predefined-GeoRegions","23":"/GeoRegions.jl/dev/basics/read/tables#Tabular-Listings-of-GeoRegions","24":"/GeoRegions.jl/dev/basics/read/tables#More-specific-lists-of-GeoRegions","25":"/GeoRegions.jl/dev/basics/read/tables#Use-Case-Examples","26":"/GeoRegions.jl/dev/basics/read/predefined#Predefined-GeoRegions-in-GeoRegions.jl","27":"/GeoRegions.jl/dev/basics/read/predefined#Adapted-from-Giorgi-and-Francisco-[2000]","28":"/GeoRegions.jl/dev/basics/read/predefined#SREX-Regions-adapted-from-Seneviratne-et-al.-[2012]","29":"/GeoRegions.jl/dev/basics/read/predefined#AR6-Regions-adapted-from-Iturbide-et-al.,-[2020]","30":"/GeoRegions.jl/dev/georegions#What-is-a-GeoRegion?","31":"/GeoRegions.jl/dev/georegions#Types-of-GeoRegions","32":"/GeoRegions.jl/dev/georegions#rectregions","33":"/GeoRegions.jl/dev/georegions#tiltregions","34":"/GeoRegions.jl/dev/georegions#polyregions","35":"/GeoRegions.jl/dev/#Installation-Instructions","36":"/GeoRegions.jl/dev/#Getting-help","37":"/GeoRegions.jl/dev/tutorials/addreadrm#Manipulation-of-User-Defined-GeoRegions.jl-for-your-Project","38":"/GeoRegions.jl/dev/tutorials/addreadrm#1.-Adding-custom-GeoRegions-to-your-Project","39":"/GeoRegions.jl/dev/tutorials/addreadrm#2.-Check-if-GeoRegions-have-been-added","40":"/GeoRegions.jl/dev/tutorials/addreadrm#3.-Reading-and-Retrieving-GeoRegions-for-your-Project","41":"/GeoRegions.jl/dev/tutorials/addreadrm#4.-Overwriting-Information-for-a-Previously-Defined-GeoRegion","42":"/GeoRegions.jl/dev/tutorials/addreadrm#5.-Removing-a-custom-GeoRegions-from-your-Project","43":"/GeoRegions.jl/dev/tutorials/addreadrm#5.1-Removing-a-GeoRegion-that-has-been-loaded","44":"/GeoRegions.jl/dev/tutorials/addreadrm#5.2-Removing-a-GeoRegion-based-on-its-ID","45":"/GeoRegions.jl/dev/tutorials/addreadrm#6.-Removing-a-the-custom-GeoRegions-lists-from-your-Project","46":"/GeoRegions.jl/dev/tutorials/files#Reading-in-a-file-with-a-list-of-Custom-GeoRegion","47":"/GeoRegions.jl/dev/tutorials/files#Listing-GeoRegions-inside-Custom-Files","48":"/GeoRegions.jl/dev/tutorials/projects#GeoRegions.jl-for-your-Research-Project","49":"/GeoRegions.jl/dev/tutorials/projects#1.-Setup-GeoRegions.jl-for-your-Project","50":"/GeoRegions.jl/dev/tutorials/projects#2.-Listing-out-the-custom-GeoRegions-for-your-Project","51":"/GeoRegions.jl/dev/tutorials/projects#3.-Removing-a-the-custom-GeoRegions-list-from-your-Project"},"fieldIds":{"title":0,"titles":1,"text":2},"fieldLength":{"0":[7,1,122],"1":[4,1,129],"2":[9,1,77],"3":[7,1,71],"4":[5,1,45],"5":[6,1,78],"6":[3,1,53],"7":[3,3,90],"8":[3,3,98],"9":[3,3,97],"10":[2,1,14],"11":[5,2,20],"12":[6,1,76],"13":[6,6,158],"14":[5,6,141],"15":[5,1,97],"16":[6,5,114],"17":[5,1,5],"18":[9,5,22],"19":[5,5,127],"20":[8,5,178],"21":[9,5,233],"22":[3,1,92],"23":[4,1,84],"24":[5,4,49],"25":[3,4,314],"26":[4,1,10],"27":[7,4,79],"28":[9,4,86],"29":[9,4,85],"30":[5,1,88],"31":[3,5,29],"32":[1,7,22],"33":[1,7,68],"34":[1,7,23],"35":[2,1,69],"36":[2,1,36],"37":[9,1,27],"38":[7,9,154],"39":[7,9,131],"40":[8,9,75],"41":[8,9,113],"42":[8,9,39],"43":[9,14,54],"44":[9,14,68],"45":[10,9,138],"46":[9,1,1],"47":[5,9,22],"48":[6,1,80],"49":[7,6,97],"50":[9,6,99],"51":[10,6,85]},"averageFieldLength":[5.788461538461538,4.288461538461537,83.88461538461539],"storedFields":{"0":{"title":"API for Adding, Reading and Removing GeoRegions","titles":[]},"1":{"title":"API for Creating GeoRegions","titles":[]},"2":{"title":"API for Is it in/on a GeoRegion?","titles":[]},"3":{"title":"API for Project-Handling in GeoRegions.jl","titles":[]},"4":{"title":"API for Different GeoRegion Properties","titles":[]},"5":{"title":"API for Tables in GeoRegions.jl","titles":[]},"6":{"title":"Creating Custom GeoRegions","titles":[]},"7":{"title":"Defining New RectRegions","titles":["Creating Custom GeoRegions"]},"8":{"title":"Defining New PolyRegions","titles":["Creating Custom GeoRegions"]},"9":{"title":"Defining New TiltRegions","titles":["Creating Custom GeoRegions"]},"10":{"title":"Comparing GeoRegions","titles":[]},"11":{"title":"1. Are two GeoRegions Equivalent","titles":["Comparing GeoRegions"]},"12":{"title":"Is it in a GeoRegion?","titles":[]},"13":{"title":"Is a Point in a GeoRegion?","titles":["Is it in a GeoRegion?"]},"14":{"title":"Is a GeoRegion inside a GeoRegion?","titles":["Is it in a GeoRegion?"]},"15":{"title":"The Shape of a GeoRegion","titles":[]},"16":{"title":"Retrieving the coordinates of a GeoRegion","titles":["The Shape of a GeoRegion"]},"17":{"title":"Default List of Predefined GeoRegions","titles":[]},"18":{"title":"GeoRegions.jl's default region is the Globe","titles":["Default List of Predefined GeoRegions"]},"19":{"title":"Giorgi & Francisco [2000]","titles":["Default List of Predefined GeoRegions"]},"20":{"title":"SREX Regions from Seneviratne et al. [2012]","titles":["Default List of Predefined GeoRegions"]},"21":{"title":"IPCC AR6 Regions from Iturbide et al., [2020]","titles":["Default List of Predefined GeoRegions"]},"22":{"title":"Reading Predefined GeoRegions","titles":[]},"23":{"title":"Tabular Listings of GeoRegions","titles":[]},"24":{"title":"More specific lists of GeoRegions","titles":["Tabular Listings of GeoRegions"]},"25":{"title":"Use Case Examples","titles":["Tabular Listings of GeoRegions"]},"26":{"title":"Predefined GeoRegions in GeoRegions.jl","titles":[]},"27":{"title":"Adapted from Giorgi & Francisco [2000]","titles":["Predefined GeoRegions in GeoRegions.jl"]},"28":{"title":"SREX Regions adapted from Seneviratne et al. [2012]","titles":["Predefined GeoRegions in GeoRegions.jl"]},"29":{"title":"AR6 Regions adapted from Iturbide et al., [2020]","titles":["Predefined GeoRegions in GeoRegions.jl"]},"30":{"title":"What is a GeoRegion?","titles":[]},"31":{"title":"Types of GeoRegions","titles":["What is a GeoRegion?"]},"32":{"title":"RectRegions","titles":["What is a GeoRegion?","Types of GeoRegions"]},"33":{"title":"TiltRegions","titles":["What is a GeoRegion?","Types of GeoRegions"]},"34":{"title":"PolyRegions","titles":["What is a GeoRegion?","Types of GeoRegions"]},"35":{"title":"Installation Instructions","titles":[]},"36":{"title":"Getting help","titles":[]},"37":{"title":"Manipulation of User-Defined GeoRegions.jl for your Project","titles":[]},"38":{"title":"1. Adding custom GeoRegions to your Project","titles":["Manipulation of User-Defined GeoRegions.jl for your Project"]},"39":{"title":"2. Check if GeoRegions have been added","titles":["Manipulation of User-Defined GeoRegions.jl for your Project"]},"40":{"title":"3. Reading and Retrieving GeoRegions for your Project","titles":["Manipulation of User-Defined GeoRegions.jl for your Project"]},"41":{"title":"4. Overwriting Information for a Previously Defined GeoRegion","titles":["Manipulation of User-Defined GeoRegions.jl for your Project"]},"42":{"title":"5. Removing a custom GeoRegions from your Project","titles":["Manipulation of User-Defined GeoRegions.jl for your Project"]},"43":{"title":"5.1 Removing a GeoRegion that has been loaded","titles":["Manipulation of User-Defined GeoRegions.jl for your Project","5. Removing a custom GeoRegions from your Project"]},"44":{"title":"5.2 Removing a GeoRegion based on its ID","titles":["Manipulation of User-Defined GeoRegions.jl for your Project","5. Removing a custom GeoRegions from your Project"]},"45":{"title":"6. Removing a the custom GeoRegions lists from your Project","titles":["Manipulation of User-Defined GeoRegions.jl for your Project"]},"46":{"title":"Reading in a file with a list of Custom GeoRegion","titles":[]},"47":{"title":"Listing GeoRegions inside Custom Files","titles":["Reading in a file with a list of Custom GeoRegion"]},"48":{"title":"GeoRegions.jl for your Research Project","titles":[]},"49":{"title":"1. Setup GeoRegions.jl for your Project","titles":["GeoRegions.jl for your Research Project"]},"50":{"title":"2. Listing out the custom GeoRegions for your Project","titles":["GeoRegions.jl for your Research Project"]},"51":{"title":"3. Removing a the custom GeoRegions list from your Project","titles":["GeoRegions.jl for your Research Project"]}},"dirtCount":0,"index":[["⋮",{"2":{"39":6}}],["$path",{"2":{"38":3}}],["questions",{"2":{"36":2}}],["quot",{"2":{"2":8,"22":2,"23":4,"25":2,"38":4,"49":2}}],["~",{"2":{"25":3,"45":2,"49":3,"51":1}}],["└",{"2":{"25":3,"45":2,"49":3,"51":1}}],["`",{"2":{"25":3}}],["`setupgeoregions",{"2":{"25":3}}],["┌",{"2":{"25":3,"45":2,"49":3,"51":1}}],["unless",{"2":{"50":1}}],["universally",{"2":{"48":1}}],["update",{"2":{"35":3}}],["ultimate",{"2":{"24":1}}],["us",{"2":{"9":1,"12":1,"13":2,"14":2,"15":1,"39":1}}],["using",{"2":{"7":1,"8":2,"9":1,"12":2,"13":1,"15":2,"16":2,"22":1,"23":1,"30":1,"35":2,"36":1,"39":2,"47":1,"48":2,"50":1}}],["uses",{"2":{"22":1}}],["use",{"0":{"25":1},"2":{"1":3,"6":1,"11":1,"12":2,"23":1,"25":3,"36":1,"38":1,"41":1,"43":1,"44":1,"45":2,"49":2}}],["user",{"0":{"37":1},"1":{"38":1,"39":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1},"2":{"0":1,"1":3,"5":7,"23":5,"39":1,"40":1,"45":1,"48":2,"49":2,"50":2}}],["used",{"2":{"0":6,"1":6,"41":1}}],["zealand",{"2":{"21":1,"25":2}}],["≥v2",{"2":{"31":1}}],["≥v6",{"2":{"31":1}}],["≥",{"2":{"27":1,"28":1,"29":1}}],["≥2",{"2":{"20":1,"21":1,"28":1,"29":1}}],["≥1",{"2":{"19":1,"27":1}}],["≧",{"2":{"20":1,"21":1}}],["969",{"2":{"44":1}}],["99",{"2":{"39":1}}],["939",{"2":{"44":1}}],["93",{"2":{"21":3,"25":6}}],["9",{"2":{"16":2,"21":1,"25":2}}],["95",{"2":{"14":1,"20":1,"25":2}}],["98",{"2":{"14":1}}],["90",{"2":{"7":2,"14":6,"18":2,"19":3,"20":4,"21":10,"22":7,"25":30,"30":2,"39":2,"41":5,"50":2}}],["872",{"2":{"43":1}}],["871",{"2":{"38":1}}],["83",{"2":{"21":2,"25":4}}],["82",{"2":{"20":1,"21":2,"25":6}}],["81",{"2":{"15":2,"21":1,"25":2}}],["85",{"2":{"14":1,"19":2,"20":4,"21":2,"25":16,"28":4,"39":1}}],["80",{"2":{"14":3}}],["8",{"2":{"13":3,"14":1,"16":2,"20":2,"21":8,"25":20}}],["76",{"2":{"21":1,"25":2}}],["79",{"2":{"20":1,"21":3,"25":8}}],["77",{"2":{"15":1,"21":1,"25":2}}],["72",{"2":{"15":2,"20":2,"21":5,"25":14}}],["70",{"2":{"14":1,"20":1,"21":1,"25":4}}],["75",{"2":{"14":1,"19":4,"20":4,"21":5,"25":26,"39":2}}],["7",{"2":{"13":4,"20":3,"21":11,"25":28}}],["623",{"2":{"41":1}}],["62",{"2":{"21":2,"25":4}}],["64",{"2":{"21":1,"25":2}}],["67",{"2":{"20":1,"25":2}}],["679491924311229",{"2":{"9":3,"45":3}}],["66",{"2":{"20":1,"21":1,"25":4}}],["61",{"2":{"20":1,"21":1,"25":4}}],["68",{"2":{"20":1,"25":2}}],["65",{"2":{"19":2,"21":6,"25":16}}],["60",{"2":{"14":2,"19":2,"20":7,"21":4,"25":26,"38":5,"39":3}}],["6",{"0":{"45":1},"2":{"13":3,"15":3,"20":4,"21":7,"25":22,"28":3}}],["63",{"2":{"9":2,"45":2}}],["46",{"2":{"21":3,"25":6}}],["42",{"2":{"21":1,"25":2,"38":1}}],["48",{"2":{"20":1,"21":1,"25":4}}],["44",{"2":{"14":1,"45":2,"49":3,"51":1}}],["4",{"0":{"41":1},"2":{"14":6,"20":7,"21":3,"25":20}}],["45",{"2":{"13":1,"14":4,"19":1,"20":2,"21":9,"25":24,"29":3,"39":1}}],["43",{"2":{"9":4,"14":1,"41":2,"43":1,"44":2,"45":4,"49":3}}],["47",{"2":{"9":2,"21":1,"25":2,"45":2}}],["400",{"2":{"16":1}}],["401",{"2":{"16":2}}],["40",{"2":{"8":6,"14":2,"19":4,"20":6,"21":8,"25":36,"38":5,"39":3}}],["53",{"2":{"21":3,"25":6}}],["56",{"2":{"20":2,"21":6,"25":16}}],["52",{"2":{"15":1,"20":3,"25":6}}],["58",{"2":{"15":1,"21":1,"25":2}}],["55",{"2":{"14":1,"19":2,"21":1,"25":6,"39":1}}],["5",{"0":{"42":1,"43":1,"44":1},"1":{"43":1,"44":1},"2":{"9":2,"13":5,"14":4,"15":1,"19":1,"20":8,"21":12,"25":42,"29":4,"45":2}}],["50",{"2":{"7":4,"8":4,"9":2,"13":3,"14":2,"15":4,"16":1,"19":10,"20":12,"21":13,"25":70,"28":4,"38":1,"39":7,"40":3,"41":5,"45":2}}],["29",{"2":{"38":1,"41":2,"43":1,"44":2,"45":2,"49":3,"51":1}}],["291",{"2":{"25":1}}],["226",{"2":{"25":1}}],["268",{"2":{"21":1,"25":2}}],["26",{"2":{"21":1,"25":2}}],["27t18",{"2":{"38":1,"41":2,"43":1,"44":2,"45":2,"49":3,"51":1}}],["276",{"2":{"21":1,"25":2}}],["27",{"2":{"21":4,"25":8}}],["275",{"2":{"19":3,"25":6,"39":3}}],["210",{"2":{"20":2,"25":4}}],["285",{"2":{"21":1,"25":2}}],["28",{"2":{"20":3,"25":6,"28":3}}],["280",{"2":{"19":2,"25":4,"39":2}}],["240",{"2":{"19":1,"25":2,"39":1}}],["255",{"2":{"19":4,"25":8,"39":4}}],["25",{"2":{"14":1,"19":2,"20":7,"21":6,"25":30,"27":3,"29":1,"39":2}}],["230",{"2":{"19":1,"20":1,"25":4,"39":1}}],["23",{"2":{"9":1,"21":2,"25":4,"45":1}}],["2",{"0":{"39":1,"44":1,"50":1},"2":{"7":1,"8":1,"9":3,"12":1,"13":3,"14":6,"15":2,"16":2,"20":2,"21":7,"22":1,"25":14,"27":1,"28":1,"29":1,"38":1,"40":1,"41":5,"45":3}}],["2024",{"2":{"38":1,"41":2,"43":1,"44":2,"45":2,"49":3,"51":1}}],["2020",{"0":{"21":1,"29":1},"2":{"21":1,"29":2}}],["2012",{"0":{"20":1,"28":1},"2":{"20":1,"28":2}}],["2000",{"0":{"19":1,"27":1},"2":{"19":1,"27":2}}],["20",{"2":{"7":4,"8":9,"9":2,"13":3,"14":9,"19":9,"20":7,"21":8,"25":48,"27":8,"38":6,"39":8,"40":5,"41":8,"45":2}}],["050",{"2":{"45":1}}],["042",{"2":{"45":1}}],["09",{"2":{"38":1,"41":2,"43":1,"44":2,"45":2,"49":3,"51":1}}],["0",{"2":{"7":14,"8":14,"9":5,"13":21,"14":7,"15":18,"18":5,"19":89,"20":117,"21":203,"22":18,"25":808,"27":14,"28":11,"29":16,"30":2,"38":15,"39":66,"40":23,"41":29,"45":5,"50":5}}],["31",{"2":{"21":1,"25":2}}],["38",{"2":{"21":1,"25":2}}],["368",{"2":{"45":1}}],["36",{"2":{"21":5,"25":10}}],["360º",{"2":{"13":1}}],["360",{"2":{"7":2,"13":1,"14":1,"18":1,"19":1,"20":1,"21":1,"22":3,"25":4,"30":1,"39":1,"50":1}}],["33",{"2":{"21":3,"25":6}}],["330",{"2":{"14":2,"19":1,"25":2,"39":1}}],["350",{"2":{"19":1,"25":2,"39":1}}],["35",{"2":{"14":1,"19":1,"20":1,"25":4}}],["355",{"2":{"14":1}}],["3",{"0":{"40":1,"51":1},"2":{"14":5,"19":1,"20":3,"21":5,"25":12,"27":1,"28":1,"29":1}}],["320",{"2":{"14":1,"19":1,"25":2,"39":1}}],["32050807568877",{"2":{"9":4,"45":4}}],["325",{"2":{"14":2}}],["32",{"2":{"14":1,"21":1,"25":2}}],["34",{"2":{"13":3,"20":1,"21":2,"25":6}}],["340",{"2":{"13":2}}],["37",{"2":{"9":2,"21":2,"25":4,"29":2,"45":2}}],["300",{"2":{"14":2,"19":1,"25":2,"39":1}}],["30127018922193",{"2":{"9":7,"45":7}}],["30",{"2":{"7":5,"8":11,"9":2,"13":1,"14":5,"19":8,"20":7,"21":6,"25":42,"39":4,"45":2}}],["39",{"0":{"18":1},"2":{"0":1,"1":3,"5":4,"20":1,"25":2,"35":1,"40":2,"42":2,"45":1}}],["≤v6",{"2":{"48":1}}],["≤",{"2":{"7":4}}],["getting",{"0":{"36":1}}],["get",{"2":{"35":1,"36":1,"49":1}}],["generally",{"2":{"30":1,"35":1}}],["geometry",{"2":{"33":1}}],["geometrybasics",{"2":{"12":1}}],["geoplottingdata",{"2":{"12":1,"15":1}}],["geographic",{"2":{"12":1,"14":1}}],["geographical",{"2":{"2":4,"30":2}}],["geo2",{"2":{"2":1}}],["geo1",{"2":{"2":1}}],["geodir",{"2":{"0":5}}],["geo",{"2":{"0":15,"1":6,"2":17,"4":2,"13":5,"14":17,"16":2,"22":1,"38":2,"41":3,"43":1}}],["geoid",{"2":{"0":10}}],["georegion",{"0":{"2":1,"4":1,"12":1,"13":1,"14":2,"15":1,"16":1,"30":1,"41":1,"43":1,"44":1,"46":1},"1":{"13":1,"14":1,"16":1,"31":1,"32":1,"33":1,"34":1,"47":1},"2":{"0":21,"1":18,"2":20,"3":2,"4":5,"6":3,"7":1,"8":1,"13":7,"14":5,"15":3,"16":1,"22":7,"24":3,"25":1,"27":1,"28":1,"29":1,"30":11,"32":1,"33":2,"34":1,"38":4,"40":1,"41":9,"42":2,"43":3,"44":4,"45":3,"48":2,"51":1}}],["georegions",{"0":{"0":1,"1":1,"3":1,"5":1,"6":1,"10":1,"11":1,"17":1,"18":1,"22":1,"23":1,"24":1,"26":2,"31":1,"37":1,"38":1,"39":1,"40":1,"42":1,"45":1,"47":1,"48":1,"49":1,"50":1,"51":1},"1":{"7":1,"8":1,"9":1,"11":1,"18":1,"19":1,"20":1,"21":1,"24":1,"25":1,"27":2,"28":2,"29":2,"32":1,"33":1,"34":1,"38":1,"39":1,"40":1,"41":1,"42":1,"43":2,"44":2,"45":1,"49":1,"50":1,"51":1},"2":{"0":11,"1":9,"2":2,"3":7,"4":1,"5":8,"6":2,"7":1,"8":1,"9":1,"10":1,"11":1,"12":3,"13":2,"14":2,"15":1,"17":1,"19":3,"20":3,"21":3,"22":5,"23":8,"24":3,"25":17,"26":2,"27":5,"28":5,"29":5,"30":3,"31":6,"32":1,"33":1,"34":1,"35":5,"36":1,"37":2,"38":4,"39":1,"40":2,"41":2,"43":1,"44":4,"45":15,"47":1,"48":6,"49":30,"50":5,"51":9}}],["global",{"2":{"18":1,"19":1,"20":1,"21":1,"25":4,"30":2,"39":1,"50":1}}],["globe",{"0":{"18":1},"2":{"18":1,"19":1,"20":1,"21":1,"22":2,"25":4,"39":1,"50":1}}],["glb",{"2":{"7":3,"8":2,"9":3,"13":1,"14":5,"15":1,"18":2,"19":23,"20":35,"21":60,"22":5,"24":3,"25":233,"27":1,"28":1,"29":1,"30":2,"38":3,"39":17,"40":1,"41":3,"44":1,"45":2,"50":2}}],["go",{"2":{"15":1,"27":1,"28":1,"29":1}}],["grl",{"2":{"19":1,"25":2,"39":1}}],["greenland",{"2":{"19":1,"20":1,"21":1,"25":6,"39":1}}],["green",{"2":{"14":2}}],["grid",{"2":{"8":1,"32":1,"33":1,"34":1}}],["grants",{"2":{"8":1}}],["gt",{"2":{"7":2,"19":1,"30":1,"49":1}}],["gf",{"2":{"5":1,"19":23,"25":42,"27":5,"39":13,"44":1,"48":1}}],["github",{"2":{"35":1}}],["githubusercontent",{"2":{"12":1,"15":1}}],["gic",{"2":{"21":1,"25":2}}],["giorgi=true",{"2":{"19":1}}],["giorgi",{"0":{"19":1,"27":1},"2":{"5":3,"19":22,"24":1,"25":42,"27":2,"39":13}}],["given",{"2":{"4":1,"13":1,"19":1,"20":1,"21":1,"22":1,"23":1,"27":1,"28":1,"29":1,"30":1}}],["132",{"2":{"21":2,"25":4,"29":2}}],["130",{"2":{"15":1,"20":1,"21":3,"25":8}}],["19",{"2":{"21":3,"25":6,"29":4}}],["192",{"2":{"21":1,"25":2}}],["141",{"2":{"51":1}}],["14",{"2":{"21":3,"25":6,"38":4,"39":1}}],["145",{"2":{"19":1,"20":1,"21":2,"25":8}}],["143",{"2":{"15":1}}],["160",{"2":{"45":1,"51":1}}],["169",{"2":{"41":1}}],["166",{"2":{"25":1}}],["16",{"2":{"21":1,"25":2}}],["165",{"2":{"19":1,"25":2}}],["168",{"2":{"15":3,"20":1,"21":1,"25":4}}],["117",{"2":{"21":1,"25":2,"29":1}}],["118",{"2":{"20":1,"25":2}}],["11",{"2":{"20":5,"25":10}}],["110",{"2":{"14":4,"19":1,"20":2,"21":4,"25":14,"39":1}}],["115",{"2":{"14":1}}],["152",{"2":{"21":1,"25":2,"29":2}}],["155",{"2":{"19":1,"20":5,"21":6,"25":24,"39":1}}],["15",{"2":{"13":1,"14":3,"19":5,"20":4,"21":4,"25":26,"27":3,"39":3}}],["122",{"2":{"21":1,"25":2}}],["125",{"2":{"15":1}}],["129",{"2":{"15":1,"49":3}}],["120",{"2":{"14":3}}],["12",{"2":{"9":1,"14":1,"21":4,"25":8,"45":1}}],["108",{"2":{"29":1}}],["104",{"2":{"21":1,"25":2}}],["105",{"2":{"14":1,"15":4,"20":4,"21":4,"25":16,"28":3}}],["10",{"2":{"7":5,"8":4,"9":2,"13":4,"14":6,"19":6,"20":7,"21":18,"25":62,"35":3,"38":3,"39":4,"40":6,"41":9,"45":2}}],["100",{"2":{"2":2,"14":3,"19":3,"20":3,"21":3,"25":18,"29":4,"38":1,"39":1,"40":3}}],["180",{"2":{"7":1,"13":2,"14":2,"19":2,"20":6,"21":9,"25":34,"30":1,"39":1}}],["1",{"0":{"11":1,"38":1,"43":1,"49":1},"2":{"4":1,"12":1,"13":2,"14":7,"15":1,"16":4,"19":3,"20":2,"21":1,"23":1,"25":6,"27":2,"38":1}}],["+2",{"2":{"13":2,"16":2}}],["+",{"2":{"3":1,"16":2}}],["just",{"2":{"38":1,"51":1}}],["julialon",{"2":{"40":1}}],["juliaply",{"2":{"40":1,"41":1}}],["juliapolyregion",{"2":{"1":1,"8":1,"34":1}}],["julia",{"2":{"35":5}}],["juliausing",{"2":{"17":1,"22":1,"25":4,"27":1,"28":1,"29":1,"37":1,"49":1}}],["julianlon",{"2":{"16":1}}],["juliageo",{"2":{"15":1,"22":1,"38":2}}],["juliageoregion",{"2":{"0":1,"30":1}}],["juliaa",{"2":{"13":1}}],["juliaadd",{"2":{"0":1}}],["julia>",{"2":{"7":1,"8":1,"9":1,"41":1}}],["juliajulia>",{"2":{"7":1,"8":1,"9":1,"35":1,"41":1,"44":1,"45":1}}],["juliacoordinates",{"2":{"4":1}}],["juliatablepolyregions",{"2":{"5":1,"20":1,"21":1}}],["juliatabletiltregions",{"2":{"5":1}}],["juliatablerectregions",{"2":{"5":1,"19":1,"24":1}}],["juliatablegeoregions",{"2":{"3":1,"5":1,"18":1,"23":1,"39":1,"50":2}}],["juliatiltregion",{"2":{"1":1,"9":1,"33":1,"45":1}}],["juliadeletegeoregions",{"2":{"3":1,"45":1,"51":1}}],["juliasetupgeoregions",{"2":{"3":1,"49":1}}],["juliaon",{"2":{"2":2}}],["juliaoverwrite",{"2":{"0":1,"41":1}}],["juliaisfile",{"2":{"49":1,"51":1}}],["juliaisid",{"2":{"0":1,"39":1}}],["juliain",{"2":{"2":2,"13":2}}],["juliarectregion",{"2":{"1":1,"6":1,"7":1,"32":1,"38":1}}],["juliarmid",{"2":{"0":1,"44":1}}],["juliarm",{"2":{"0":1,"43":1}}],["jl",{"0":{"3":1,"5":1,"18":1,"26":1,"37":1,"48":1,"49":1},"1":{"27":1,"28":1,"29":1,"38":1,"39":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"49":1,"50":1,"51":1},"2":{"9":1,"12":4,"13":2,"22":2,"23":1,"25":10,"26":1,"27":1,"28":1,"29":1,"30":1,"31":2,"35":1,"36":1,"38":2,"41":2,"43":1,"44":3,"45":11,"48":2,"49":24,"51":7}}],["joinpath",{"2":{"23":1,"37":1,"38":1,"49":3,"51":3}}],["join",{"2":{"1":2}}],["θ",{"2":{"1":2,"9":2,"33":2,"45":1}}],["δy",{"2":{"1":2,"9":2,"33":2,"45":1}}],["δx",{"2":{"1":2,"9":2,"33":2,"45":1}}],["yes",{"2":{"39":1}}],["yet",{"2":{"22":1,"38":1}}],["your",{"0":{"37":1,"38":1,"40":1,"42":1,"45":1,"48":1,"49":1,"50":1,"51":1},"1":{"38":1,"39":1,"40":1,"41":1,"42":1,"43":2,"44":2,"45":1,"49":1,"50":1,"51":1},"2":{"49":1,"51":1}}],["you",{"2":{"7":1,"8":1,"11":1,"12":1,"22":1,"23":1,"35":3,"36":2,"37":1,"38":4,"41":2,"42":2,"44":1,"45":2,"50":1,"51":3}}],["y",{"2":{"1":2,"9":2,"33":2,"45":1}}],["x",{"2":{"1":2,"9":2,"33":2,"45":1}}],["x3c",{"2":{"1":3,"2":2,"4":2,"32":1,"33":1,"34":1}}],["cgi",{"2":{"20":1,"25":2}}],["cgeo",{"2":{"2":9}}],["certain",{"2":{"42":1}}],["ceu",{"2":{"20":1,"25":2}}],["central",{"2":{"19":3,"20":4,"21":8,"25":30,"28":1,"39":2}}],["centre",{"2":{"1":2,"33":3}}],["cna",{"2":{"19":1,"20":1,"21":1,"25":6,"28":3,"39":1}}],["clear",{"2":{"51":1}}],["clat",{"2":{"12":1,"13":1,"14":1,"15":1,"16":1}}],["clockwise",{"2":{"33":2}}],["clon",{"2":{"12":1,"13":1,"14":1,"15":1,"16":1}}],["closed",{"2":{"8":1}}],["close",{"2":{"1":1,"16":2}}],["cst",{"2":{"12":2,"15":2}}],["cause",{"2":{"48":1}}],["cau",{"2":{"21":1,"25":2}}],["caf",{"2":{"21":1,"25":2}}],["caribbean",{"2":{"20":1,"21":1,"25":4}}],["car",{"2":{"20":1,"21":1,"25":4}}],["cas",{"2":{"19":1,"20":1,"25":4}}],["case",{"0":{"25":1},"2":{"13":1,"14":1}}],["cam",{"2":{"19":1,"20":1,"25":4,"39":1}}],["calling",{"2":{"25":1}}],["called",{"2":{"23":1}}],["call",{"2":{"19":1,"20":1,"21":1,"27":1,"28":1,"29":1}}],["calculate",{"2":{"13":1}}],["cairomakie",{"2":{"12":1,"15":1}}],["cannot",{"2":{"41":2,"44":2,"45":1}}],["canada",{"2":{"20":2,"25":4}}],["can",{"2":{"1":6,"8":1,"11":1,"13":1,"14":1,"16":1,"22":1,"23":2,"35":2,"38":3,"39":3,"40":1,"41":1,"45":1,"47":1,"48":2,"50":1,"51":2}}],["c",{"2":{"6":1,"13":7}}],["crop=true",{"2":{"39":1}}],["crop",{"2":{"5":3}}],["created",{"2":{"38":1}}],["create",{"2":{"4":1,"6":1,"50":2}}],["creates",{"2":{"1":3}}],["creating",{"0":{"1":1,"6":1},"1":{"7":1,"8":1,"9":1}}],["choose",{"2":{"23":1}}],["child",{"2":{"2":4}}],["check",{"0":{"39":1},"2":{"2":4,"11":1,"12":2,"39":1,"43":1}}],["checks",{"2":{"0":1}}],["copy",{"2":{"25":3,"49":2}}],["copied",{"2":{"3":1}}],["correctly",{"2":{"16":1}}],["corroborate",{"2":{"13":1}}],["color=",{"2":{"13":1,"14":6,"16":1}}],["coast",{"2":{"12":5,"15":5,"20":1,"25":2}}],["coastline",{"2":{"12":1,"15":1}}],["come",{"2":{"48":1}}],["completely",{"2":{"51":1}}],["complicated",{"2":{"38":1}}],["comparing",{"0":{"10":1},"1":{"11":1}}],["comments",{"2":{"36":1}}],["comments=true",{"2":{"12":1,"15":1}}],["command",{"2":{"35":1}}],["common",{"2":{"33":1}}],["com",{"2":{"12":1,"15":1}}],["confirm",{"2":{"39":1}}],["considered",{"2":{"30":1}}],["consider",{"2":{"14":1}}],["constructed",{"2":{"10":1}}],["construct",{"2":{"7":1,"8":1,"9":1}}],["constraints",{"2":{"7":2}}],["concern",{"2":{"13":1}}],["contain",{"2":{"30":1,"33":1}}],["container",{"2":{"2":2}}],["containing",{"2":{"1":2,"2":2,"3":2,"33":1}}],["counts",{"2":{"4":1}}],["coordinate",{"2":{"1":4,"16":2,"33":2}}],["coordinates",{"0":{"16":1},"2":{"1":3,"4":1,"13":6,"14":5,"16":4,"30":1,"33":3,"34":1,"40":1}}],["currently",{"2":{"7":1,"8":1}}],["current",{"2":{"0":1,"3":2,"50":1,"51":1}}],["customized",{"2":{"23":1}}],["custom=false",{"2":{"18":1,"19":1,"20":1,"21":1}}],["custom",{"0":{"6":1,"38":1,"42":1,"45":1,"46":1,"47":1,"50":1,"51":1},"1":{"7":1,"8":1,"9":1,"43":1,"44":1,"47":1},"2":{"0":12,"1":6,"3":3,"5":14,"22":1,"23":1,"24":2,"25":6,"38":3,"39":1,"45":3,"49":1,"50":3,"51":2}}],["https",{"2":{"12":1,"15":1}}],["how",{"2":{"23":1,"36":1}}],["however",{"2":{"13":1,"16":1,"48":1}}],["hovmoller",{"2":{"9":1}}],["home",{"2":{"0":2,"1":3,"5":4,"25":6,"45":1,"49":6,"51":1}}],["homedir",{"2":{"0":4,"1":3,"5":8,"48":1}}],["heavy",{"2":{"38":1}}],["header",{"2":{"8":1}}],["help",{"0":{"36":1}}],["height=750",{"2":{"13":1,"14":1,"16":1}}],["here",{"2":{"7":1,"8":1,"9":1,"13":2,"14":2,"16":1,"22":2,"23":1,"25":4,"27":1,"28":1,"29":1,"38":2,"39":1,"40":1,"41":1,"43":1,"44":1,"49":1,"50":1,"51":1}}],["has",{"0":{"43":1},"2":{"7":1,"8":1,"9":1,"13":1,"15":1,"22":1,"27":1,"28":1,"29":1,"38":1,"40":1,"41":4,"43":1,"45":1}}],["handling",{"0":{"3":1}}],["half",{"2":{"1":2,"4":1,"33":2}}],["have",{"0":{"39":1},"2":{"0":1,"6":1,"10":2,"16":1,"36":1,"38":1,"39":2,"40":1,"44":1,"45":1,"48":2,"50":2}}],["mkpath",{"2":{"37":1}}],["mdg",{"2":{"21":1,"25":2}}],["means",{"2":{"48":1}}],["meant",{"2":{"48":1}}],["method",{"2":{"43":1,"44":1}}],["meta",{"2":{"1":3}}],["me",{"2":{"35":1,"36":1}}],["mexico",{"2":{"20":1,"25":2}}],["mediterranean",{"2":{"19":1,"20":1,"21":1,"25":6,"39":1}}],["med",{"2":{"19":1,"20":1,"21":1,"25":6,"39":1}}],["minimum",{"2":{"13":4,"16":4}}],["may",{"2":{"35":1}}],["make",{"2":{"35":1}}],["manually",{"2":{"38":1}}],["manipulation",{"0":{"37":1},"1":{"38":1,"39":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1}}],["manager",{"2":{"35":1}}],["manner",{"2":{"24":1}}],["many",{"2":{"16":1,"20":1,"28":1}}],["madagascar",{"2":{"21":1,"25":2}}],["maps",{"2":{"16":1}}],["map",{"2":{"14":1,"16":1}}],["markersize=20",{"2":{"13":2}}],["maximum",{"2":{"13":4,"16":4}}],["main",{"2":{"12":1,"15":1,"35":2}}],["match",{"2":{"1":1}}],["modify",{"2":{"38":1}}],["modification",{"2":{"38":1}}],["modulelog",{"2":{"25":3}}],["monsoon",{"2":{"21":1,"25":2}}],["monitoring",{"2":{"0":2,"1":3}}],["more",{"0":{"24":1},"2":{"9":1,"22":1,"23":1}}],["most",{"2":{"7":1,"8":1,"22":3,"38":1,"50":1}}],["must",{"2":{"0":2,"8":2,"30":1}}],["right",{"2":{"50":1}}],["rows",{"2":{"39":1}}],["ropes",{"2":{"37":1}}],["rotation",{"2":{"33":1}}],["rotated",{"2":{"9":1}}],["rfe",{"2":{"21":1,"25":2}}],["runner",{"2":{"25":6,"45":1,"49":6,"51":1}}],["running",{"2":{"2":4}}],["russia",{"2":{"21":2,"25":4}}],["rar",{"2":{"21":1,"25":2}}],["raw",{"2":{"12":1,"15":1}}],["rmid",{"2":{"0":1,"44":1}}],["rm",{"2":{"0":1,"43":1}}],["require",{"2":{"48":1}}],["relevant",{"2":{"50":1}}],["release",{"2":{"35":2}}],["reload",{"2":{"41":1}}],["replacing",{"2":{"51":1}}],["replace",{"2":{"41":1,"42":1}}],["repository",{"2":{"35":1}}],["refer",{"2":{"23":1}}],["red",{"2":{"14":2}}],["reexported",{"2":{"12":1}}],["registry",{"2":{"35":1}}],["regions",{"0":{"20":1,"21":1,"28":1,"29":1},"2":{"30":1,"48":1}}],["regiongrids",{"2":{"9":1}}],["region",{"0":{"18":1},"2":{"1":4,"7":5,"8":4,"9":7,"12":3,"13":2,"14":7,"15":2,"22":2,"24":1,"27":2,"28":2,"29":2,"30":1,"32":1,"33":4,"34":1,"38":2,"40":2,"41":4,"45":2}}],["regardless",{"2":{"6":1}}],["research",{"0":{"48":1},"1":{"49":1,"50":1,"51":1}}],["reset",{"2":{"3":1}}],["resize",{"2":{"13":1,"14":1,"16":1}}],["resl",{"2":{"12":1,"15":1}}],["respectively",{"2":{"8":1,"49":1}}],["respective",{"2":{"6":3,"9":1,"23":1,"38":1}}],["recommended",{"2":{"38":1}}],["recall",{"2":{"6":1}}],["rectlist",{"2":{"25":1,"38":1,"39":1,"49":4,"50":1,"51":2}}],["rectangle",{"2":{"7":3,"9":1}}],["rectangular",{"2":{"1":3,"9":1,"31":1,"32":1,"33":2}}],["rectilinear",{"2":{"1":2,"7":1,"8":1,"9":1,"20":1,"22":1,"27":1,"28":1,"30":1,"31":1,"32":1,"33":1,"34":1,"38":1,"45":1}}],["rectregions",{"0":{"7":1,"32":1},"2":{"5":4,"6":1,"49":1}}],["rectregion",{"2":{"1":2,"2":2,"6":1,"7":3,"8":1,"14":2,"18":1,"19":23,"20":1,"21":1,"25":46,"27":1,"31":1,"32":1,"38":3,"39":16,"44":1,"45":1,"50":1}}],["reason",{"2":{"42":1}}],["read",{"2":{"22":1}}],["readdlm",{"2":{"12":1,"15":1}}],["reading",{"0":{"0":1,"22":1,"40":1,"46":1},"1":{"47":1},"2":{"22":1}}],["realize",{"2":{"48":1}}],["realized",{"2":{"42":1}}],["really",{"2":{"42":1}}],["real",{"2":{"1":8,"2":2,"4":2}}],["remove",{"2":{"43":1,"44":2,"45":2}}],["removed",{"2":{"0":1,"44":1}}],["removes",{"2":{"0":2}}],["removing",{"0":{"0":1,"42":1,"43":1,"44":1,"45":1,"51":1},"1":{"43":1,"44":1},"2":{"37":1,"43":1,"44":1,"45":1,"51":1}}],["retrieve",{"2":{"16":1,"22":2,"40":1,"45":1}}],["retrieved",{"2":{"0":6,"1":3,"3":1,"5":4,"45":1,"47":1}}],["retrieving",{"0":{"16":1,"40":1},"2":{"37":1,"40":1,"48":1}}],["return",{"2":{"25":1}}],["returning",{"2":{"0":1}}],["returns",{"2":{"0":2,"1":3,"4":1}}],["npo",{"2":{"21":1,"25":2}}],["nz",{"2":{"21":1,"25":2}}],["nsa",{"2":{"21":1,"25":2}}],["nws",{"2":{"21":1,"25":2}}],["nwn",{"2":{"15":3,"21":1,"25":2}}],["nca",{"2":{"21":1,"25":2}}],["ntp",{"2":{"20":1,"25":2}}],["nlon",{"2":{"16":1}}],["nlat",{"2":{"16":1}}],["n=50",{"2":{"16":1}}],["nao",{"2":{"21":1,"25":2}}],["nau",{"2":{"20":1,"21":1,"25":4}}],["nas",{"2":{"19":1,"20":1,"25":4}}],["natural",{"2":{"14":1}}],["natgeo",{"2":{"12":1,"15":1}}],["named",{"2":{"41":1}}],["name",{"2":{"1":9,"3":1,"6":5,"7":4,"8":3,"9":4,"13":2,"15":2,"18":1,"19":1,"20":1,"21":1,"22":2,"25":4,"27":2,"28":2,"29":2,"30":2,"38":6,"39":1,"40":2,"41":4,"45":2,"50":1}}],["necessary",{"2":{"35":1,"49":1}}],["neaf",{"2":{"21":1,"25":2}}],["nes",{"2":{"21":1,"25":2}}],["nen",{"2":{"21":1,"25":2}}],["neb",{"2":{"20":1,"25":2}}],["neu",{"2":{"19":1,"20":1,"21":1,"25":6,"39":1}}],["need",{"2":{"7":1,"41":1,"42":1}}],["newzealand",{"2":{"20":1,"25":2}}],["new",{"0":{"7":1,"8":1,"9":1},"2":{"0":1,"6":1,"21":1,"25":2,"35":1,"38":1,"42":1,"51":1}}],["number",{"2":{"4":1,"16":2}}],["n",{"2":{"1":1,"2":2,"4":2,"7":6,"8":1,"9":1,"13":1,"15":1,"16":2,"18":1,"19":1,"20":2,"21":1,"22":1,"25":6,"27":1,"28":1,"29":1,"30":1,"32":1,"38":1,"39":1,"40":1,"41":2,"45":1,"50":1}}],["non",{"2":{"30":1}}],["now",{"2":{"10":1,"13":2,"14":2,"15":1,"39":1,"40":1,"42":1,"43":2,"45":1,"50":1}}],["northeast",{"2":{"20":1,"21":2,"25":6}}],["northern",{"2":{"19":1,"21":7,"25":16,"39":1}}],["northwest",{"2":{"15":2,"20":1,"21":2,"25":6}}],["north",{"2":{"7":1,"15":2,"19":4,"20":5,"21":5,"25":28,"28":1,"30":1,"39":3}}],["note",{"2":{"13":1,"50":1}}],["nothing",{"2":{"0":2,"3":3,"5":4,"12":1,"15":1,"50":1}}],["not",{"2":{"0":7,"1":1,"2":4,"5":1,"13":1,"14":1,"25":3,"38":3,"43":1,"44":1,"45":1,"49":1,"50":1}}],["no",{"2":{"0":1,"13":1,"25":2,"41":1,"50":1}}],["pkg>",{"2":{"35":3}}],["permanently",{"2":{"45":1,"51":1}}],["perform",{"2":{"12":1}}],["peninsular",{"2":{"21":1,"25":2}}],["ply",{"2":{"40":1,"43":1}}],["please",{"2":{"36":2,"41":1}}],["plotted",{"2":{"16":1}}],["plotting",{"2":{"16":2}}],["plot",{"2":{"14":1,"16":1}}],["plon",{"2":{"2":4}}],["plateau",{"2":{"20":1,"21":1,"25":4}}],["plat",{"2":{"2":4}}],["possible",{"2":{"23":1,"24":1,"38":1,"47":1}}],["postulate",{"2":{"2":4}}],["point2",{"2":{"2":2,"30":1}}],["point",{"0":{"13":1},"2":{"2":18,"4":1,"7":1,"8":1,"9":1,"12":4,"13":14,"15":1,"22":1,"27":1,"28":1,"29":1,"35":1,"38":1,"40":1,"41":2,"45":1}}],["points",{"2":{"1":3,"4":2,"12":1,"13":2,"16":4}}],["polylist",{"2":{"25":1,"38":2,"39":1,"49":4,"50":1,"51":1}}],["polygonops",{"2":{"12":1}}],["polygon",{"2":{"8":1,"16":2}}],["polygonal",{"2":{"1":2,"8":3,"13":1,"15":1,"28":1,"29":1,"31":1,"34":1,"40":1,"41":2}}],["polyregions",{"0":{"8":1,"34":1},"2":{"5":5,"6":1,"49":1}}],["polyregion",{"2":{"1":2,"6":2,"8":2,"14":5,"20":34,"21":59,"25":182,"28":1,"29":1,"31":1,"34":1,"38":4,"39":2,"40":2,"41":4,"44":1,"45":1}}],["pid",{"2":{"1":6,"6":4,"7":3,"8":2,"9":3,"13":1,"15":1,"22":1,"27":1,"28":1,"29":1,"30":2,"38":5,"40":1,"41":2,"45":1}}],["pwd",{"2":{"0":1,"1":3,"3":4,"37":2,"38":2,"39":3,"40":1,"41":3,"43":2,"44":2,"45":3,"49":3,"50":1,"51":5}}],["present",{"2":{"50":1}}],["pressing",{"2":{"35":1}}],["previous",{"2":{"48":1}}],["previously",{"0":{"41":1}}],["pretty",{"2":{"38":1}}],["pre",{"2":{"33":1}}],["prefix",{"2":{"19":1,"20":1,"21":1,"27":1,"28":1,"29":1}}],["predefined=false",{"2":{"18":1,"50":1}}],["predefined",{"0":{"17":1,"22":1,"26":1},"1":{"18":1,"19":1,"20":1,"21":1,"27":1,"28":1,"29":1},"2":{"5":6,"15":1,"22":1,"23":3,"25":2,"26":1,"27":1,"28":1,"29":1,"44":2,"48":1,"50":1}}],["preexisting",{"2":{"0":2,"3":1,"41":1,"49":1}}],["problems",{"2":{"48":1}}],["prompt",{"2":{"35":1}}],["process",{"2":{"15":1}}],["projects",{"2":{"45":1,"48":1}}],["projections",{"2":{"16":1}}],["projection",{"2":{"16":2}}],["project",{"0":{"3":1,"37":1,"38":1,"40":1,"42":1,"45":1,"48":1,"49":1,"50":1,"51":1},"1":{"38":1,"39":1,"40":1,"41":1,"42":1,"43":2,"44":2,"45":1,"49":1,"50":1,"51":1},"2":{"23":2,"37":1,"41":2,"45":2,"48":6,"49":3,"50":1,"51":2}}],["program",{"2":{"2":4}}],["properties",{"0":{"4":1},"2":{"0":1,"7":1,"8":1,"9":1,"13":1,"15":1,"22":2,"23":1,"27":1,"28":1,"29":1,"38":1,"40":1,"41":2,"45":1}}],["patch",{"2":{"35":1}}],["path=pwd",{"2":{"49":2,"50":1}}],["path=joinpath",{"2":{"37":1,"38":2,"39":3,"40":1,"41":3,"43":2,"44":2,"45":3}}],["paths",{"2":{"23":1}}],["path",{"2":{"0":27,"1":15,"3":8,"5":12,"23":2,"38":9,"41":1,"48":3,"49":2,"50":2,"51":2}}],["particular",{"2":{"42":1,"48":1}}],["part",{"2":{"23":1,"48":1}}],["parent",{"2":{"1":3,"2":2,"6":1,"7":1,"8":1,"9":1,"13":1,"15":1,"18":1,"19":1,"20":1,"21":1,"22":1,"24":1,"25":4,"27":1,"28":1,"29":1,"30":2,"38":1,"39":1,"40":1,"41":2,"45":1,"50":1}}],["pacific",{"2":{"20":3,"21":3,"25":12}}],["package",{"2":{"0":3,"12":2,"35":1,"48":1}}],["paper",{"2":{"19":1,"20":1,"21":1,"27":1,"28":1,"29":1}}],["pass",{"2":{"2":2}}],["lifting",{"2":{"38":1}}],["linewidth=5",{"2":{"13":1,"14":5,"16":1}}],["linewidth=3",{"2":{"13":1,"14":1,"16":1}}],["lines",{"2":{"13":2,"14":6,"16":2}}],["limits=",{"2":{"13":1,"14":1,"16":1}}],["listing",{"0":{"47":1,"50":1},"2":{"24":1}}],["listings",{"0":{"23":1},"1":{"24":1,"25":1}}],["listed",{"2":{"3":1,"22":1,"39":1}}],["lists",{"0":{"24":1,"45":1},"2":{"0":5,"23":1,"25":3,"38":4,"45":1,"51":1}}],["list",{"0":{"17":1,"46":1,"51":1},"1":{"18":1,"19":1,"20":1,"21":1,"47":1},"2":{"0":7,"1":6,"3":2,"5":6,"23":4,"24":1,"27":1,"28":1,"29":1,"38":1,"41":1,"44":1,"45":1,"47":1,"50":1}}],["letter",{"2":{"19":1,"20":1,"21":1,"27":1,"28":1,"29":1}}],["let",{"2":{"13":2,"14":2,"15":1,"38":1,"39":1,"40":2,"45":1}}],["length",{"2":{"8":2,"16":2}}],["lt",{"2":{"7":1,"30":1,"49":1}}],["larger",{"2":{"23":1}}],["layout",{"2":{"13":1,"14":1,"16":1}}],["last",{"2":{"1":1}}],["latest",{"2":{"35":3}}],["lat",{"2":{"1":2,"4":2,"8":4,"16":2,"33":1,"34":2,"40":1}}],["latitudes",{"2":{"2":2}}],["latitude",{"2":{"1":3,"4":2,"8":2,"16":1,"33":3}}],["lost",{"2":{"45":1,"51":1}}],["loaded",{"0":{"43":1},"2":{"43":1}}],["load",{"2":{"15":1}}],["longer",{"2":{"41":1}}],["longitude",{"2":{"1":3,"2":2,"4":2,"8":2,"13":1,"16":1,"33":3}}],["lon",{"2":{"1":2,"4":2,"8":4,"16":2,"33":1,"34":2}}],["logging",{"2":{"0":2,"1":6}}],["local",{"2":{"0":3}}],["over",{"2":{"49":2}}],["overwritten",{"2":{"3":1,"49":1}}],["overwriting",{"0":{"41":1},"2":{"0":1,"49":3}}],["overwrite=true",{"2":{"17":1,"49":1}}],["overwrites",{"2":{"0":1}}],["overwrite",{"2":{"0":1,"3":4,"41":2,"49":2}}],["omitted",{"2":{"39":1}}],["open",{"2":{"36":1}}],["other",{"2":{"14":2,"24":1}}],["obvious",{"2":{"13":1}}],["obtain",{"2":{"9":1}}],["ocean",{"2":{"13":2,"20":1,"21":10,"25":22}}],["out",{"0":{"50":1},"2":{"7":1,"8":1,"36":1}}],["original",{"2":{"49":3}}],["order",{"2":{"6":1,"7":1,"16":1,"41":1,"49":1}}],["or",{"2":{"2":4,"11":1,"12":1,"23":1,"35":1,"36":1,"38":1,"42":1,"44":3,"45":1,"51":1}}],["once",{"2":{"41":1}}],["only",{"2":{"19":1,"20":1,"21":1,"23":1,"25":1,"27":1,"28":1,"29":1}}],["one",{"2":{"0":1}}],["on",{"0":{"2":1,"44":1},"2":{"0":1,"2":3,"4":1,"7":2,"8":1,"14":1,"15":1,"16":3,"22":1,"23":1,"32":1,"33":1,"34":1,"40":2,"44":1,"48":1}}],["often",{"2":{"12":1}}],["of",{"0":{"15":1,"16":1,"17":1,"23":1,"24":1,"31":1,"37":1,"46":1},"1":{"16":1,"18":1,"19":1,"20":1,"21":1,"24":1,"25":1,"32":1,"33":1,"34":1,"38":1,"39":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"47":1},"2":{"0":10,"1":15,"2":8,"3":3,"4":7,"5":7,"6":5,"7":1,"8":5,"9":2,"10":1,"13":7,"15":2,"16":5,"20":1,"21":1,"22":5,"23":2,"24":3,"25":2,"26":1,"27":1,"28":2,"29":1,"30":8,"31":2,"33":6,"34":1,"35":2,"37":2,"38":2,"40":1,"41":2,"42":1,"48":4,"49":1,"50":3,"51":1}}],["branch",{"2":{"35":1}}],["brazil",{"2":{"20":1,"25":2}}],["build",{"2":{"45":1,"49":3,"51":1}}],["bugs",{"2":{"35":1}}],["but",{"2":{"13":1,"14":1}}],["big",{"2":{"14":10}}],["black",{"2":{"13":1,"14":1,"16":1}}],["blue",{"2":{"13":1,"14":1}}],["b",{"2":{"6":1,"13":5,"14":4}}],["bay",{"2":{"21":1,"25":2}}],["basis",{"2":{"48":1}}],["basic",{"2":{"22":2,"23":1}}],["basically",{"2":{"9":1}}],["basin",{"2":{"19":2,"25":4,"39":2}}],["based",{"0":{"44":1},"2":{"44":1}}],["base",{"2":{"0":1,"2":2}}],["back",{"2":{"3":1}}],["both",{"2":{"23":1,"33":1}}],["bob",{"2":{"21":1,"25":2}}],["box",{"2":{"13":1}}],["bounding",{"2":{"13":1}}],["bounds",{"2":{"7":3,"8":1,"9":1,"13":5,"15":1,"18":1,"19":1,"20":1,"21":1,"22":1,"25":4,"27":1,"28":1,"29":1,"38":1,"39":1,"40":1,"41":2,"45":1,"50":1}}],["boundaries",{"2":{"7":1,"30":1,"32":1}}],["boundary",{"2":{"2":1}}],["bound",{"2":{"1":2,"30":1}}],["boolean",{"2":{"0":1}}],["bool",{"2":{"0":4,"1":7,"2":8,"3":1,"5":9,"30":2}}],["by",{"2":{"0":2,"1":3,"2":8,"3":1,"12":1,"13":2,"14":1,"16":2,"23":2,"30":4,"31":3,"32":1,"33":1,"34":1,"35":1,"38":1,"48":1}}],["best",{"2":{"49":1}}],["besides",{"2":{"24":1}}],["been",{"0":{"39":1,"43":1},"2":{"39":1,"41":2,"43":1,"44":1,"50":1}}],["between",{"2":{"31":1}}],["because",{"2":{"24":1,"50":1}}],["bengal",{"2":{"21":1,"25":2}}],["below",{"2":{"6":1,"13":2,"14":1,"16":1}}],["before",{"2":{"1":2,"33":2}}],["being",{"2":{"0":3}}],["be",{"2":{"0":16,"1":15,"2":4,"3":2,"5":6,"8":2,"14":1,"23":1,"24":1,"30":3,"35":1,"38":1,"39":1,"41":1,"44":1,"45":2,"47":1,"48":3,"49":1,"50":1,"51":1}}],["v7",{"2":{"48":1}}],["v2",{"2":{"28":1,"29":1}}],["v1",{"2":{"27":1,"35":3}}],["ve",{"2":{"42":1}}],["version",{"2":{"31":1,"35":3,"48":1}}],["versions",{"2":{"19":1,"20":1,"21":1,"27":1,"28":1,"29":1,"35":1}}],["verify",{"2":{"14":1}}],["very",{"2":{"13":1}}],["vertices",{"2":{"16":1,"34":1}}],["vertical",{"2":{"5":1}}],["vertex",{"2":{"4":1}}],["verbose",{"2":{"0":6,"1":9}}],["vectors",{"2":{"4":1,"8":4}}],["vector",{"2":{"1":5,"4":4,"30":2,"33":1}}],["variety",{"2":{"24":1}}],["variable",{"2":{"0":3,"38":1,"48":1}}],["valid",{"2":{"0":4,"30":1,"44":1,"45":1}}],["during",{"2":{"16":1}}],["data",{"2":{"12":1}}],["diagrams",{"2":{"9":1}}],["differentiate",{"2":{"31":1}}],["different",{"0":{"4":1},"2":{"6":1,"10":2,"16":1,"24":1,"31":1,"48":2}}],["displayed",{"2":{"5":2}}],["display",{"2":{"3":1,"5":10}}],["directly",{"2":{"38":1,"51":1}}],["direction",{"2":{"33":1}}],["directions",{"2":{"33":1}}],["directories",{"2":{"23":1}}],["directory",{"2":{"0":4,"1":3,"3":3,"5":4,"38":3,"41":1,"48":2,"49":1,"50":1,"51":1}}],["dirname",{"2":{"0":2}}],["docs",{"2":{"45":1,"49":3,"51":1}}],["documentation",{"2":{"23":1}}],["don",{"2":{"42":1}}],["does",{"2":{"25":3,"43":1}}],["download",{"2":{"12":1,"15":1}}],["domains",{"2":{"19":1,"20":1,"21":1,"27":1,"28":1,"29":1}}],["domain",{"2":{"8":1,"30":1}}],["do",{"2":{"1":1,"5":1,"7":1,"38":4,"42":1,"43":1,"44":1,"51":1}}],["depot",{"2":{"23":1,"38":1}}],["detect",{"2":{"13":1}}],["determine",{"2":{"12":1,"14":1}}],["deleted",{"2":{"45":1}}],["delete",{"2":{"42":1,"51":1}}],["deletegeoregions",{"2":{"3":1,"45":1,"51":2}}],["delimitedfiles",{"2":{"12":1,"15":1}}],["denoted",{"2":{"31":3}}],["denote",{"2":{"12":1}}],["dealing",{"2":{"12":1}}],["degrees",{"2":{"1":1,"33":2}}],["define",{"2":{"7":1,"13":1,"16":1}}],["defined",{"0":{"37":1,"41":1},"1":{"38":1,"39":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1},"2":{"0":1,"2":8,"5":3,"13":1,"14":2,"16":1,"19":3,"20":3,"21":3,"23":4,"27":3,"28":3,"29":3,"32":1,"33":1,"34":1,"38":1,"39":1,"40":1,"41":1,"45":1,"48":2,"49":2,"50":2}}],["defining",{"0":{"7":1,"8":1,"9":1},"2":{"1":1,"10":1,"30":2}}],["default",{"0":{"17":1,"18":1},"1":{"18":1,"19":1,"20":1,"21":1},"2":{"0":2,"1":2,"3":1,"5":6,"16":1,"22":1,"23":1,"30":2,"38":2,"48":1,"51":2}}],["defaults",{"2":{"0":6,"1":3,"3":2,"5":4}}],["spans",{"2":{"22":1}}],["spo",{"2":{"21":1,"25":2}}],["specify",{"2":{"7":1,"8":1,"16":2,"38":2,"50":1}}],["specifically",{"2":{"48":1,"49":1}}],["specification",{"2":{"8":1,"9":1,"48":2}}],["specific",{"0":{"24":1},"2":{"6":1,"23":1}}],["specifies",{"2":{"3":1}}],["specified",{"2":{"0":3,"1":3,"3":1,"30":1,"38":1,"47":1,"50":1}}],["sws",{"2":{"21":1,"25":2}}],["sca",{"2":{"21":1,"25":2}}],["scatter",{"2":{"13":2}}],["src",{"2":{"25":3,"45":2,"49":6,"51":1}}],["srx",{"2":{"20":35,"25":66,"28":5,"44":1}}],["srex=false",{"2":{"21":1}}],["srex=true",{"2":{"20":1}}],["srex",{"0":{"20":1,"28":1},"2":{"5":4,"20":33,"24":1,"25":66,"48":1}}],["ssa",{"2":{"19":1,"20":1,"21":1,"25":6,"39":1}}],["some",{"2":{"24":1,"39":1,"42":1}}],["soon",{"2":{"35":1}}],["soo",{"2":{"21":1,"25":2}}],["so",{"2":{"16":1,"25":1,"38":1,"40":1,"48":1,"50":1}}],["southwest",{"2":{"21":1,"25":2}}],["southeastern",{"2":{"20":1,"25":2}}],["southeast",{"2":{"19":1,"20":1,"21":2,"25":8}}],["southern",{"2":{"19":2,"20":2,"21":8,"25":24,"39":1}}],["south",{"2":{"7":1,"19":2,"20":5,"21":10,"25":34,"30":1,"39":1}}],["source",{"2":{"0":6,"1":3,"2":4,"3":3,"4":1,"5":4,"30":1,"32":1,"33":1,"34":1}}],["smaller",{"2":{"14":1}}],["shared",{"2":{"48":1}}],["shape",{"0":{"15":1},"1":{"16":1},"2":{"1":1,"2":1,"4":4,"7":2,"8":3,"9":2,"13":2,"15":3,"16":3,"22":2,"27":2,"28":2,"29":2,"30":2,"38":2,"40":3,"41":4,"45":2}}],["shown",{"2":{"50":1}}],["show",{"2":{"37":1}}],["should",{"2":{"30":1,"38":1,"48":1}}],["shifted",{"2":{"13":1}}],["similar",{"2":{"48":1}}],["simultaneously",{"2":{"38":1}}],["simply",{"2":{"13":1}}],["sio",{"2":{"21":1,"25":2}}],["siberia",{"2":{"21":2,"25":4}}],["since",{"2":{"14":1,"35":1}}],["sides",{"2":{"16":1}}],["side",{"2":{"4":1,"16":2}}],["slon",{"2":{"13":5,"14":10,"16":4}}],["slat",{"2":{"13":6,"14":10,"16":4}}],["suggestions",{"2":{"36":1}}],["supertype",{"2":{"30":1}}],["suppose",{"2":{"10":1}}],["subregion",{"2":{"30":1}}],["subtypes",{"2":{"24":1}}],["subset",{"2":{"2":2,"24":1,"30":1}}],["such",{"2":{"13":1}}],["second",{"2":{"44":1}}],["section",{"2":{"15":1,"22":1}}],["sections",{"2":{"6":1}}],["set",{"2":{"26":1,"41":1,"50":1}}],["setting",{"2":{"23":1}}],["sets",{"2":{"22":1}}],["setup",{"0":{"49":1},"2":{"3":1,"15":1,"23":1}}],["setupgeoregions",{"2":{"3":1,"17":1,"37":1,"47":1,"49":2}}],["ses",{"2":{"21":1,"25":2}}],["seneviratne",{"0":{"20":1,"28":1},"2":{"20":1,"28":2}}],["seaf",{"2":{"21":1,"25":2}}],["sea",{"2":{"19":1,"20":1,"21":2,"25":8}}],["several",{"2":{"10":1,"22":1,"31":1}}],["see",{"2":{"7":1,"8":1,"9":1,"13":4,"14":3,"16":1,"22":2,"25":4,"27":1,"28":1,"29":1,"38":2,"39":3,"40":2,"41":2,"43":2,"44":1,"45":1,"49":1,"50":1,"51":2}}],["seen",{"2":{"6":1}}],["segments",{"2":{"4":1,"16":2}}],["stored",{"2":{"49":1}}],["store",{"2":{"49":1}}],["stops",{"2":{"2":4}}],["started",{"2":{"49":1}}],["state",{"2":{"8":1}}],["still",{"2":{"48":1}}],["stp",{"2":{"20":1,"25":2}}],["straightforward",{"2":{"7":1}}],["struct",{"2":{"2":2}}],["string",{"2":{"1":3,"22":1,"30":3,"44":1}}],["st",{"2":{"1":6}}],["say",{"2":{"51":1}}],["saving",{"2":{"23":1}}],["save=true",{"2":{"38":1}}],["save",{"2":{"1":9,"38":8,"39":2,"40":1,"41":4,"45":2}}],["saved",{"2":{"0":2,"23":1,"38":3,"40":1,"41":1,"45":1,"48":1,"50":1,"51":1}}],["saves",{"2":{"0":1}}],["sao",{"2":{"21":1,"25":2}}],["sau",{"2":{"20":1,"21":1,"25":4}}],["sas",{"2":{"19":1,"20":1,"21":1,"25":6}}],["sahara",{"2":{"19":1,"20":1,"21":1,"25":6}}],["sah",{"2":{"19":1,"20":1,"21":1,"25":6}}],["saf",{"2":{"19":1,"20":1,"25":4}}],["sam",{"2":{"21":1,"25":2}}],["sample",{"2":{"7":1,"8":1,"9":1}}],["same",{"2":{"0":1,"2":1,"6":1,"8":2,"11":1,"41":1}}],["s",{"0":{"18":1},"2":{"0":1,"1":4,"5":4,"7":6,"8":1,"9":1,"13":1,"15":1,"18":1,"19":1,"20":1,"21":1,"22":1,"25":4,"27":1,"28":1,"29":1,"30":1,"32":1,"38":1,"39":1,"40":3,"41":2,"45":2,"50":1}}],["feel",{"2":{"36":2}}],["features",{"2":{"35":1}}],["full",{"2":{"22":1,"23":1,"27":1,"28":1,"29":1,"30":1}}],["functionality",{"2":{"22":2,"23":1}}],["function",{"2":{"12":1,"13":1,"16":1,"22":2,"23":1,"39":1,"43":1,"44":1,"47":1}}],["functions",{"2":{"6":2,"11":1}}],["far",{"2":{"21":1,"25":2}}],["false",{"2":{"0":1,"1":3,"2":4,"3":1,"5":5,"7":1,"8":1,"9":1,"13":2,"15":1,"22":1,"23":3,"24":5,"27":1,"28":1,"29":1,"38":1,"40":1,"41":2,"45":2,"50":1,"51":3}}],["free",{"2":{"36":2}}],["francisco",{"0":{"19":1,"27":1},"2":{"19":1,"27":2}}],["frame",{"2":{"13":1}}],["from",{"0":{"20":1,"21":1,"27":1,"28":1,"29":1,"42":1,"45":1,"51":1},"1":{"43":1,"44":1},"2":{"0":9,"1":6,"3":1,"5":4,"12":1,"19":1,"20":1,"21":1,"27":2,"28":2,"29":2,"45":2,"51":1}}],["float",{"2":{"30":1,"33":6}}],["float64",{"2":{"1":3,"7":1,"8":1,"9":1,"13":1,"15":1,"22":1,"27":1,"28":1,"29":1,"38":1,"40":1,"41":2,"45":1}}],["flexibility",{"2":{"8":1}}],["fname",{"2":{"3":3}}],["follows",{"2":{"38":1,"50":1}}],["following",{"2":{"7":2,"8":1,"9":1,"13":1,"15":1,"22":1,"27":1,"28":1,"29":1,"30":1,"33":1,"38":1,"40":1,"41":2,"45":1,"49":1}}],["folder",{"2":{"3":1}}],["format",{"2":{"3":1,"5":4}}],["for",{"0":{"0":1,"1":1,"2":1,"3":1,"4":1,"5":1,"37":1,"40":1,"41":1,"48":1,"49":1,"50":1},"1":{"38":1,"39":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"49":1,"50":1,"51":1},"2":{"0":2,"1":6,"3":1,"4":3,"8":2,"9":1,"14":2,"15":1,"22":3,"23":4,"30":3,"35":1,"37":1,"38":2,"41":1,"42":1,"45":1,"47":1,"48":4,"50":2,"51":1}}],["fix",{"2":{"35":1}}],["find",{"2":{"35":1}}],["field",{"2":{"33":1}}],["fields",{"2":{"30":1,"33":1}}],["figure",{"2":{"13":1,"14":1,"16":1,"36":1}}],["fig",{"2":{"13":4,"14":4,"16":4}}],["file",{"0":{"46":1},"1":{"47":1},"2":{"3":2,"18":1,"19":1,"20":1,"21":1,"25":7,"39":1,"47":1,"49":3,"50":1}}],["files",{"0":{"47":1},"2":{"3":4,"5":1,"23":1,"38":1,"39":1,"45":2,"47":1,"49":6,"50":1,"51":3}}],["filesystem",{"2":{"0":1}}],["first",{"2":{"1":2,"6":1,"43":1,"50":2}}],["ft",{"2":{"1":6}}],["writes",{"2":{"38":3}}],["wca",{"2":{"21":1,"25":2}}],["wce",{"2":{"21":1,"25":2}}],["wsb",{"2":{"21":1,"25":2}}],["wsaf",{"2":{"21":1,"25":2}}],["wsa",{"2":{"20":1,"25":2}}],["wna",{"2":{"19":1,"20":1,"21":1,"25":6,"39":1}}],["work",{"2":{"25":3,"45":3,"49":9,"51":2}}],["workspace",{"2":{"38":1,"43":1}}],["works",{"2":{"16":1,"48":1}}],["working",{"2":{"3":2,"35":1}}],["wong",{"2":{"12":1,"15":1}}],["while",{"2":{"38":1}}],["which",{"2":{"12":1,"13":1,"22":1,"23":1,"30":1,"38":2,"49":1}}],["whole",{"2":{"22":1}}],["wholly",{"2":{"14":1}}],["what",{"0":{"30":1},"1":{"31":1,"32":1,"33":1,"34":1},"2":{"13":1}}],["when",{"2":{"12":1,"30":1,"38":1}}],["where",{"2":{"0":6,"1":6,"2":2,"3":2,"5":4,"16":1,"33":1}}],["waiting",{"2":{"35":1}}],["wan",{"2":{"21":1,"25":2}}],["want",{"2":{"11":1,"35":1,"42":1,"51":1}}],["was",{"2":{"20":1,"25":2}}],["waf",{"2":{"19":1,"20":1,"21":1,"25":6,"27":3,"39":1}}],["way",{"2":{"12":1,"49":1}}],["ways",{"2":{"10":1,"42":1}}],["warning",{"2":{"25":3,"45":2,"49":3,"50":1,"51":1}}],["warnings",{"2":{"5":1}}],["warn=false",{"2":{"25":1}}],["warn",{"2":{"5":2,"50":1}}],["were",{"2":{"48":1}}],["western",{"2":{"19":2,"21":5,"25":14,"27":1,"39":2}}],["west",{"2":{"7":1,"20":4,"21":2,"25":12,"30":1}}],["we",{"2":{"2":4,"6":1,"8":1,"10":2,"11":1,"12":2,"13":4,"14":2,"15":2,"16":5,"31":1,"37":1,"38":2,"39":4,"40":2,"41":3,"42":1,"43":3,"44":1,"45":2,"48":2,"50":3,"51":1}}],["w",{"2":{"1":1,"7":7,"8":1,"9":1,"13":1,"15":1,"18":1,"19":1,"20":2,"21":1,"22":1,"25":6,"27":1,"28":1,"29":1,"30":2,"32":1,"38":1,"39":1,"40":1,"41":2,"45":1,"50":1}}],["wio",{"2":{"20":1,"25":2}}],["wish",{"2":{"12":1,"38":1}}],["width=750",{"2":{"13":1,"14":1,"16":1}}],["width",{"2":{"1":2,"33":3}}],["will",{"2":{"0":12,"1":9,"3":2,"5":7,"23":1,"24":3,"25":1,"33":1,"37":1,"38":1,"45":2,"48":2,"49":4,"50":1,"51":1}}],["without",{"2":{"35":1}}],["within",{"2":{"2":6,"13":3,"14":1}}],["with",{"0":{"46":1},"1":{"47":1},"2":{"0":7,"3":1,"7":2,"8":2,"9":2,"12":2,"13":1,"14":1,"24":1,"41":7,"42":2,"44":1,"49":3,"51":1}}],["keywords",{"2":{"23":1}}],["keyword",{"2":{"0":8,"1":6,"2":4,"3":2,"5":4,"16":1,"38":2,"48":1,"49":1,"50":1}}],["tutorials",{"2":{"45":1,"49":3,"51":1}}],["tutorial",{"2":{"37":1}}],["t",{"2":{"35":1,"42":1}}],["talks",{"2":{"22":1}}],["tablepolyregions",{"2":{"5":1,"24":2,"25":1}}],["tabletiltregions",{"2":{"5":1,"24":2,"25":2}}],["tablerectregions",{"2":{"5":1,"24":1,"25":1}}],["table",{"2":{"5":1,"24":1,"50":2}}],["tables",{"0":{"5":1},"2":{"25":3}}],["tablegeoregions",{"2":{"3":1,"5":1,"23":4,"25":1,"39":1,"50":1}}],["tabular",{"0":{"23":1},"1":{"24":1,"25":1},"2":{"3":1,"5":4}}],["tibetian",{"2":{"21":1,"25":2}}],["tibetan",{"2":{"20":1,"25":2}}],["tibet",{"2":{"19":1,"25":2}}],["tib",{"2":{"19":1,"20":1,"21":1,"25":6}}],["tiltlist",{"2":{"25":1,"38":1,"49":4,"50":1,"51":1}}],["tiltgrid",{"2":{"9":1}}],["tilt",{"2":{"1":1,"9":3,"33":2,"45":1}}],["tilting",{"2":{"1":2,"33":2}}],["tilted",{"2":{"1":2,"9":2,"31":1,"33":1,"45":1}}],["tiltregions",{"0":{"9":1,"33":1},"2":{"5":2,"6":1,"25":2,"33":1,"49":1}}],["tiltregion",{"2":{"1":2,"6":2,"9":4,"14":1,"31":1,"33":1,"38":1,"44":1,"45":3}}],["tst",{"2":{"45":5}}],["tsr",{"2":{"38":3,"39":2,"44":4}}],["tsp",{"2":{"38":2,"39":2,"40":3,"41":10,"43":3}}],["ts4",{"2":{"14":5}}],["ts3",{"2":{"14":4}}],["ts2",{"2":{"14":5}}],["ts1",{"2":{"14":5}}],["txt",{"2":{"12":1,"15":1,"18":1,"19":22,"20":34,"21":59,"25":231,"38":4,"39":16,"49":12,"50":4,"51":4}}],["ttr",{"2":{"9":4}}],["tpr",{"2":{"8":4}}],["two",{"0":{"11":1},"2":{"8":1,"10":1,"11":1,"42":1}}],["terms",{"2":{"8":1}}],["test",{"2":{"7":3,"8":2,"9":3,"13":1,"14":4,"37":2,"38":5,"39":5,"40":2,"41":6,"43":2,"44":2,"45":7}}],["templates",{"2":{"25":3}}],["template",{"2":{"3":2,"47":1}}],["try",{"2":{"40":1}}],["trying",{"2":{"36":1}}],["tropical",{"2":{"20":2,"25":4}}],["trivial",{"2":{"13":1}}],["trr",{"2":{"7":4}}],["true",{"2":{"0":7,"1":11,"2":4,"3":1,"5":19,"7":1,"8":1,"9":1,"13":3,"15":1,"22":1,"23":3,"24":5,"27":1,"28":1,"29":1,"38":5,"39":2,"40":1,"41":2,"45":1,"49":4}}],["types",{"0":{"31":1},"1":{"32":1,"33":1,"34":1},"2":{"6":2,"7":1,"8":1,"14":1,"30":3,"31":1,"33":1}}],["type",{"2":{"2":2,"6":1,"12":2,"14":1,"18":1,"19":2,"20":2,"21":2,"22":1,"25":4,"27":1,"28":1,"29":1,"30":5,"31":3,"33":6,"39":1,"50":1}}],["tf",{"2":{"0":3}}],["touch",{"2":{"36":1}}],["to",{"0":{"38":1},"2":{"0":13,"1":7,"2":4,"3":4,"5":4,"6":1,"7":2,"9":1,"11":1,"12":5,"13":5,"14":2,"16":5,"19":2,"20":2,"21":2,"22":1,"23":6,"24":1,"25":6,"27":3,"28":3,"29":3,"30":1,"33":2,"35":5,"36":4,"38":10,"39":1,"41":3,"42":2,"43":2,"44":3,"45":3,"47":1,"48":2,"49":4,"50":3,"51":1}}],["those",{"2":{"50":1}}],["though",{"2":{"20":1,"28":1,"50":1}}],["through",{"2":{"15":1}}],["throw=false",{"2":{"45":1}}],["throws",{"2":{"0":1}}],["throw",{"2":{"0":2,"2":8}}],["thrown",{"2":{"0":4,"1":3,"2":4}}],["three",{"2":{"6":2,"7":1,"8":1}}],["that",{"0":{"43":1},"2":{"0":4,"1":3,"2":4,"6":1,"7":1,"9":2,"11":1,"13":6,"14":2,"16":2,"22":1,"38":1,"39":2,"40":1,"41":1,"42":1,"43":2,"44":1,"48":4,"49":1,"50":1}}],["this",{"2":{"0":1,"3":1,"12":2,"13":3,"14":2,"15":1,"16":1,"19":1,"20":1,"21":1,"22":1,"27":1,"28":1,"29":1,"35":1,"37":1,"38":1,"40":1,"41":4,"43":1,"44":2,"45":1,"48":2,"49":1}}],["they",{"2":{"39":1,"45":1,"49":1}}],["them",{"2":{"14":1,"20":1,"23":1,"28":1,"51":1}}],["these",{"2":{"6":1,"40":1,"45":1,"47":1,"49":1,"51":1}}],["their",{"2":{"6":1,"23":2,"39":1,"45":1}}],["therefore",{"2":{"16":2,"41":1,"48":1}}],["there",{"2":{"0":1,"6":1,"16":2,"22":1,"25":1,"26":1,"42":1,"50":1}}],["then",{"2":{"0":4,"1":3,"2":4,"3":1,"51":1}}],["the",{"0":{"15":1,"16":1,"18":1,"45":1,"50":1,"51":1},"1":{"16":1},"2":{"0":49,"1":43,"2":16,"3":12,"4":7,"5":14,"6":6,"7":10,"8":11,"9":6,"11":2,"12":4,"13":18,"14":6,"15":5,"16":16,"19":3,"20":3,"21":3,"22":14,"23":2,"24":5,"25":8,"27":6,"28":6,"29":6,"30":14,"31":3,"33":13,"34":1,"35":9,"37":2,"38":17,"39":4,"40":6,"41":15,"42":1,"43":6,"44":5,"45":8,"47":3,"48":6,"49":5,"50":6,"51":4}}],["empty",{"2":{"25":3}}],["eio",{"2":{"21":1,"25":2}}],["epo",{"2":{"21":1,"25":2}}],["eca",{"2":{"21":1,"25":2}}],["especially",{"2":{"38":1}}],["essence",{"2":{"30":1}}],["esb",{"2":{"21":1,"25":2}}],["esaf",{"2":{"21":1,"25":2}}],["eeu",{"2":{"21":1,"25":2}}],["even",{"2":{"20":1,"28":1,"50":1}}],["etc",{"2":{"36":1}}],["etp",{"2":{"20":1,"25":2}}],["et",{"0":{"20":1,"21":1,"28":1,"29":1},"2":{"20":1,"21":1,"28":2,"29":2}}],["europe",{"2":{"19":1,"20":3,"21":3,"25":14,"39":1}}],["entail",{"2":{"48":1}}],["ena",{"2":{"19":1,"20":1,"21":1,"25":6,"39":1}}],["ensure",{"2":{"16":1}}],["eye",{"2":{"13":1,"14":1}}],["equirectangular",{"2":{"16":1}}],["equivalent",{"0":{"11":1}}],["equivalence",{"2":{"10":1}}],["equatorial",{"2":{"13":2,"21":3,"25":6}}],["ean",{"2":{"21":1,"25":2}}],["eau",{"2":{"21":1,"25":2}}],["eaf",{"2":{"19":1,"20":1,"25":4,"39":1}}],["eao",{"2":{"13":4,"21":1,"25":2}}],["eas",{"2":{"19":1,"20":1,"21":1,"25":6,"29":3}}],["easy",{"2":{"12":1,"13":1}}],["easily",{"2":{"9":1,"12":1}}],["eastern",{"2":{"19":2,"20":1,"21":6,"25":18,"39":2}}],["east",{"2":{"7":1,"19":1,"20":3,"21":5,"25":18,"29":1,"30":1}}],["ease",{"2":{"0":2,"1":3}}],["each",{"2":{"4":1,"6":1,"16":1}}],["e",{"2":{"0":3,"1":1,"7":7,"8":1,"9":1,"13":1,"15":1,"18":1,"19":1,"20":1,"21":1,"22":1,"25":4,"27":1,"28":1,"29":1,"30":2,"32":1,"38":1,"39":1,"40":1,"41":2,"45":1,"50":1}}],["error",{"2":{"0":5,"1":3,"2":4,"41":1,"44":1}}],["explicitly",{"2":{"48":1}}],["exampleisid",{"2":{"43":1}}],["examplein",{"2":{"14":1}}],["examples",{"0":{"25":1}}],["exampleslon",{"2":{"13":1}}],["examplelon",{"2":{"16":1}}],["examplegeo",{"2":{"14":1}}],["exampleusing",{"2":{"12":1,"15":1}}],["example",{"2":{"7":1,"8":1,"9":1,"13":1,"15":1,"16":1,"22":1,"38":1,"50":1}}],["exact",{"2":{"0":1}}],["exactly",{"2":{"0":1,"11":1}}],["extension",{"2":{"14":1}}],["extent",{"2":{"5":1}}],["extracting",{"2":{"15":1}}],["extracted",{"2":{"1":3}}],["extracts",{"2":{"0":1}}],["exist",{"2":{"3":1,"5":1,"25":3,"49":1,"50":1}}],["exists",{"2":{"0":2,"43":1,"51":1}}],["important",{"2":{"22":1}}],["iceland",{"2":{"20":1,"21":1,"25":4}}],["ipcc",{"0":{"21":1},"2":{"5":1}}],["ippc",{"2":{"5":1}}],["iturbide",{"0":{"21":1,"29":1},"2":{"21":1,"29":2}}],["itself",{"2":{"30":1}}],["its",{"0":{"44":1},"2":{"9":1,"22":1,"32":1,"33":1,"34":1,"44":1}}],["it",{"0":{"2":1,"12":1},"1":{"13":1,"14":1},"2":{"8":1,"13":5,"23":2,"24":2,"36":1,"38":4,"42":2,"43":1,"47":1}}],["info",{"2":{"38":1,"41":1,"43":1,"44":1}}],["information",{"0":{"41":1},"2":{"0":5,"1":6,"3":2,"15":1,"22":1,"37":1,"38":2,"40":2,"41":2,"42":2,"45":2,"51":1}}],["indian",{"2":{"20":1,"21":2,"25":6}}],["indeed",{"2":{"14":1}}],["installed",{"2":{"35":1}}],["installation",{"0":{"35":1}}],["instructions",{"0":{"35":1}}],["instead",{"2":{"0":1,"38":1}}],["inside",{"0":{"14":1,"47":1},"2":{"12":2,"13":1}}],["inputs",{"2":{"6":2}}],["interested",{"2":{"36":1}}],["interest",{"2":{"9":1,"30":1}}],["int",{"2":{"2":2,"4":1}}],["into",{"2":{"0":2,"1":3,"23":1,"38":1,"41":2,"43":1,"45":1,"51":1}}],["in",{"0":{"2":1,"3":1,"5":1,"12":1,"13":1,"26":1,"46":1},"1":{"13":1,"14":1,"27":1,"28":1,"29":1,"47":1},"2":{"0":8,"1":12,"2":2,"3":3,"5":4,"6":2,"7":1,"8":2,"9":1,"13":7,"14":5,"15":1,"16":2,"19":3,"20":3,"21":3,"22":1,"23":1,"24":2,"25":4,"26":1,"27":3,"28":3,"29":3,"30":1,"31":4,"33":7,"35":1,"36":2,"37":1,"38":3,"41":2,"44":1,"47":1,"48":2,"49":5}}],["i",{"2":{"0":3,"35":2}}],["isfile",{"2":{"49":2,"51":2}}],["issue",{"2":{"36":1}}],["isn",{"2":{"35":1}}],["islands",{"2":{"20":1,"25":2}}],["isingeoregion",{"2":{"12":1}}],["isid",{"2":{"0":1,"39":2,"44":1,"45":1}}],["isequal",{"2":{"11":1}}],["is360",{"2":{"7":1,"8":1,"9":1,"13":1,"15":1,"22":1,"27":1,"28":1,"29":1,"30":1,"38":1,"40":1,"41":2,"45":1}}],["is180",{"2":{"7":1,"8":1,"9":1,"13":1,"15":1,"22":1,"27":1,"28":1,"29":1,"30":1,"38":1,"40":1,"41":2,"45":1}}],["is",{"0":{"2":1,"12":1,"13":1,"14":1,"18":1,"30":1},"1":{"13":1,"14":1,"31":1,"32":1,"33":1,"34":1},"2":{"0":8,"1":5,"2":12,"5":6,"7":2,"9":3,"12":3,"13":11,"14":3,"16":3,"22":4,"23":2,"24":2,"30":4,"38":7,"43":1,"44":2,"45":2,"47":1,"48":1,"49":1,"50":2,"51":2}}],["if",{"0":{"39":1},"2":{"0":7,"1":9,"2":12,"3":2,"5":10,"11":1,"12":2,"13":3,"14":1,"16":1,"35":1,"36":2,"38":2,"39":2,"40":1,"43":1,"45":2,"48":1,"49":1,"50":1,"51":1}}],["ids",{"2":{"19":1,"20":1,"21":1,"27":1,"28":1,"29":1,"39":1}}],["identified",{"2":{"30":2}}],["identifiers",{"2":{"48":1}}],["identifier",{"2":{"0":1,"30":2,"41":1,"44":2,"45":1}}],["identify",{"2":{"0":3,"1":3}}],["id",{"0":{"44":1},"2":{"0":15,"1":15,"6":6,"7":5,"8":4,"9":5,"13":3,"15":3,"18":1,"19":1,"20":1,"21":1,"22":7,"25":4,"27":3,"28":3,"29":3,"30":3,"38":7,"39":1,"40":3,"41":12,"42":1,"44":1,"45":3,"48":1,"50":1}}],[">",{"2":{"0":4,"1":3,"2":4,"3":3,"4":1,"5":4}}],["==",{"2":{"11":1}}],["=================",{"2":{"5":1}}],["=",{"2":{"0":9,"1":16,"2":6,"3":4,"4":1,"5":13,"12":3,"13":8,"14":12,"15":4,"16":7,"22":3,"23":2,"24":5,"38":11,"40":2,"41":4,"49":2,"50":2}}],["automatically",{"2":{"38":1}}],["australia",{"2":{"19":1,"20":2,"21":4,"25":14,"39":1}}],["aus",{"2":{"19":1,"25":2,"39":1}}],["accessed",{"2":{"35":1}}],["africa",{"2":{"19":3,"20":3,"21":6,"25":24,"27":1,"39":2}}],["advanced",{"2":{"22":1}}],["adapted",{"0":{"27":1,"28":1,"29":1},"2":{"19":1,"20":1,"21":1,"27":1,"28":1,"29":1}}],["added",{"0":{"39":1},"2":{"39":2,"50":1}}],["addition",{"2":{"33":1,"39":1}}],["additional",{"2":{"23":1}}],["adding",{"0":{"0":1,"38":1},"2":{"37":1,"38":1,"41":1}}],["add",{"2":{"0":1,"19":1,"20":1,"21":1,"27":1,"28":1,"29":1,"35":3,"38":4,"41":2,"44":1,"45":1}}],["amazon",{"2":{"19":1,"20":1,"25":4,"39":1}}],["amz",{"2":{"19":1,"20":1,"25":4,"39":1}}],["amp",{"0":{"19":1,"27":1},"2":{"19":1,"27":2}}],["american",{"2":{"21":1,"25":2}}],["america",{"2":{"15":2,"19":5,"20":6,"21":13,"25":48,"28":1,"39":5}}],["above",{"2":{"48":1}}],["abovementioned",{"2":{"40":1}}],["about",{"2":{"13":1,"22":1}}],["abstract",{"2":{"30":1,"33":1}}],["abstractstring",{"2":{"0":9,"1":12,"3":3,"5":4}}],["able",{"2":{"13":1,"16":1}}],["axis",{"2":{"13":1,"14":1,"16":1}}],["ax",{"2":{"13":5,"14":7,"16":3}}],["atlantic",{"2":{"13":2,"21":3,"25":6}}],["at",{"2":{"13":3}}],["available",{"2":{"3":1,"5":4,"7":1,"8":1,"23":1,"24":1,"31":3,"48":1}}],["alternatively",{"2":{"39":1}}],["although",{"2":{"35":1}}],["al",{"0":{"20":1,"21":1,"28":1,"29":1},"2":{"20":1,"21":1,"28":2,"29":2}}],["alaska",{"2":{"19":1,"20":1,"25":4,"39":1}}],["ala",{"2":{"19":1,"20":1,"25":4,"39":1}}],["also",{"2":{"12":1,"13":1,"23":1,"24":1,"30":1,"33":1,"38":1}}],["always",{"2":{"6":1,"24":3,"50":2}}],["allows",{"2":{"9":1,"12":2}}],["all",{"2":{"3":2,"5":4,"7":2,"8":1,"19":2,"20":2,"21":2,"23":1,"24":2,"27":2,"28":2,"29":2,"30":1,"31":1,"33":1,"45":3,"48":2,"49":1,"50":1,"51":1}}],["already",{"2":{"1":3,"41":1,"43":1,"49":1}}],["ars",{"2":{"21":1,"25":2}}],["aro",{"2":{"21":1,"25":2}}],["arabian",{"2":{"21":2,"25":4}}],["arp",{"2":{"21":1,"25":2}}],["arctic",{"2":{"20":1,"21":2,"25":6}}],["arc",{"2":{"20":1,"25":2}}],["argument",{"2":{"16":1,"38":1}}],["arguments",{"2":{"0":12,"1":6,"2":8,"3":3,"4":1,"5":4,"23":1}}],["arbitrary",{"2":{"14":2}}],["ar6=true",{"2":{"21":1}}],["ar6=false",{"2":{"20":1}}],["ar6",{"0":{"21":1,"29":1},"2":{"5":4,"13":4,"15":4,"21":118,"24":1,"25":232,"29":5,"44":1,"48":1}}],["are",{"0":{"11":1},"2":{"2":2,"3":1,"6":2,"7":1,"11":1,"13":3,"14":2,"16":3,"19":2,"20":3,"21":2,"22":1,"25":1,"26":1,"27":2,"28":3,"29":2,"31":3,"36":2,"42":1,"50":3}}],["again",{"2":{"1":1}}],["appear",{"2":{"24":2}}],["append",{"2":{"1":1}}],["api",{"0":{"0":1,"1":1,"2":1,"3":1,"4":1,"5":1},"2":{"7":1,"8":1,"9":1,"13":1,"14":1,"16":1,"22":2,"23":1,"25":4,"38":2,"39":1,"40":1,"41":1,"43":1,"44":1,"49":1,"50":1,"51":1}}],["assume",{"2":{"48":1}}],["associate",{"2":{"42":1}}],["associated",{"2":{"0":3,"41":3}}],["association",{"2":{"41":1}}],["ask",{"2":{"36":1}}],["asia",{"2":{"19":5,"20":6,"21":5,"25":32,"29":1}}],["aspect",{"2":{"13":2,"16":2}}],["as",{"2":{"0":1,"2":1,"4":1,"6":1,"7":2,"8":1,"9":2,"12":1,"13":1,"14":2,"19":1,"20":1,"21":1,"23":1,"27":1,"28":1,"29":1,"35":2,"38":2,"48":1,"50":1}}],["a",{"0":{"2":1,"12":1,"13":2,"14":2,"15":1,"16":1,"30":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":2,"51":1},"1":{"13":1,"14":1,"16":1,"31":1,"32":1,"33":1,"34":1,"43":1,"44":1,"47":2},"2":{"0":4,"1":11,"2":21,"4":6,"6":1,"8":1,"9":4,"12":3,"13":8,"14":4,"15":1,"16":1,"22":4,"23":3,"24":2,"26":1,"30":14,"32":2,"33":8,"34":2,"35":1,"37":1,"38":2,"41":1,"42":4,"43":1,"44":2,"45":1,"48":5,"50":4}}],["angle",{"2":{"33":2}}],["antarctica",{"2":{"20":1,"21":2,"25":6}}],["ant",{"2":{"20":1,"25":2}}],["another",{"2":{"12":1,"14":1,"41":5}}],["anymore",{"2":{"42":1}}],["anyway",{"2":{"13":1}}],["any",{"2":{"0":2,"3":1,"8":1,"14":1,"36":1,"49":1,"50":1}}],["an",{"2":{"0":5,"1":3,"2":4,"7":1,"9":1,"12":1,"13":1,"14":1,"30":1,"36":1,"41":1,"44":1}}],["and",{"0":{"0":1,"40":1},"2":{"1":1,"2":8,"4":1,"5":1,"6":2,"7":2,"8":5,"9":2,"13":1,"14":6,"16":2,"21":1,"22":2,"23":3,"24":1,"25":5,"30":1,"33":1,"35":1,"36":1,"37":1,"39":1,"41":1,"42":1,"43":2,"45":2,"48":2,"49":1,"50":2,"51":1}}]],"serializationVersion":2}';export{e as default}; diff --git a/dev/assets/chunks/VPLocalSearchBox.j05JUUPf.js b/dev/assets/chunks/VPLocalSearchBox.BpdWDoNn.js similarity index 99% rename from dev/assets/chunks/VPLocalSearchBox.j05JUUPf.js rename to dev/assets/chunks/VPLocalSearchBox.BpdWDoNn.js index df61ccd5..726fe318 100644 --- a/dev/assets/chunks/VPLocalSearchBox.j05JUUPf.js +++ b/dev/assets/chunks/VPLocalSearchBox.BpdWDoNn.js @@ -1,4 +1,4 @@ -var Nt=Object.defineProperty;var Ft=(a,e,t)=>e in a?Nt(a,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):a[e]=t;var Re=(a,e,t)=>Ft(a,typeof e!="symbol"?e+"":e,t);import{V as Ot,p as se,h as pe,aj as Xe,ak as Rt,al as Ct,q as je,am as Mt,d as At,D as ye,an as et,ao as Lt,ap as Dt,s as zt,aq as Pt,v as Ce,P as ue,O as we,ar as jt,as as Vt,W as $t,R as Bt,$ as Wt,o as q,b as Kt,j as S,a0 as Jt,k as D,at as Ut,au as qt,av as Gt,c as Y,n as tt,e as xe,C as st,F as nt,a as de,t as he,aw as Ht,ax as it,ay as Qt,a9 as Yt,af as Zt,az as Xt,_ as es}from"./framework.JKTEW8jd.js";import{u as ts,d as ss}from"./theme.B3BJMEH-.js";const ns={root:()=>Ot(()=>import("./@localSearchIndexroot.CKfK4LtC.js"),[])};/*! +var Nt=Object.defineProperty;var Ft=(a,e,t)=>e in a?Nt(a,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):a[e]=t;var Re=(a,e,t)=>Ft(a,typeof e!="symbol"?e+"":e,t);import{V as Ot,p as se,h as pe,aj as Xe,ak as Rt,al as Ct,q as je,am as Mt,d as At,D as ye,an as et,ao as Lt,ap as Dt,s as zt,aq as Pt,v as Ce,P as ue,O as we,ar as jt,as as Vt,W as $t,R as Bt,$ as Wt,o as q,b as Kt,j as S,a0 as Jt,k as D,at as Ut,au as qt,av as Gt,c as Y,n as tt,e as xe,C as st,F as nt,a as de,t as he,aw as Ht,ax as it,ay as Qt,a9 as Yt,af as Zt,az as Xt,_ as es}from"./framework.JKTEW8jd.js";import{u as ts,d as ss}from"./theme.DptDGCLo.js";const ns={root:()=>Ot(()=>import("./@localSearchIndexroot.Bw9U40YT.js"),[])};/*! * tabbable 6.2.0 * @license MIT, https://github.com/focus-trap/tabbable/blob/master/LICENSE */var vt=["input:not([inert])","select:not([inert])","textarea:not([inert])","a[href]:not([inert])","button:not([inert])","[tabindex]:not(slot):not([inert])","audio[controls]:not([inert])","video[controls]:not([inert])",'[contenteditable]:not([contenteditable="false"]):not([inert])',"details>summary:first-of-type:not([inert])","details:not([inert])"],Ie=vt.join(","),mt=typeof Element>"u",ie=mt?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector,ke=!mt&&Element.prototype.getRootNode?function(a){var e;return a==null||(e=a.getRootNode)===null||e===void 0?void 0:e.call(a)}:function(a){return a==null?void 0:a.ownerDocument},Ne=function a(e,t){var s;t===void 0&&(t=!0);var n=e==null||(s=e.getAttribute)===null||s===void 0?void 0:s.call(e,"inert"),r=n===""||n==="true",i=r||t&&e&&a(e.parentNode);return i},is=function(e){var t,s=e==null||(t=e.getAttribute)===null||t===void 0?void 0:t.call(e,"contenteditable");return s===""||s==="true"},gt=function(e,t,s){if(Ne(e))return[];var n=Array.prototype.slice.apply(e.querySelectorAll(Ie));return t&&ie.call(e,Ie)&&n.unshift(e),n=n.filter(s),n},bt=function a(e,t,s){for(var n=[],r=Array.from(e);r.length;){var i=r.shift();if(!Ne(i,!1))if(i.tagName==="SLOT"){var o=i.assignedElements(),l=o.length?o:i.children,c=a(l,!0,s);s.flatten?n.push.apply(n,c):n.push({scopeParent:i,candidates:c})}else{var h=ie.call(i,Ie);h&&s.filter(i)&&(t||!e.includes(i))&&n.push(i);var v=i.shadowRoot||typeof s.getShadowRoot=="function"&&s.getShadowRoot(i),p=!Ne(v,!1)&&(!s.shadowRootFilter||s.shadowRootFilter(i));if(v&&p){var b=a(v===!0?i.children:v.children,!0,s);s.flatten?n.push.apply(n,b):n.push({scopeParent:i,candidates:b})}else r.unshift.apply(r,i.children)}}return n},yt=function(e){return!isNaN(parseInt(e.getAttribute("tabindex"),10))},ne=function(e){if(!e)throw new Error("No node provided");return e.tabIndex<0&&(/^(AUDIO|VIDEO|DETAILS)$/.test(e.tagName)||is(e))&&!yt(e)?0:e.tabIndex},rs=function(e,t){var s=ne(e);return s<0&&t&&!yt(e)?0:s},as=function(e,t){return e.tabIndex===t.tabIndex?e.documentOrder-t.documentOrder:e.tabIndex-t.tabIndex},wt=function(e){return e.tagName==="INPUT"},os=function(e){return wt(e)&&e.type==="hidden"},ls=function(e){var t=e.tagName==="DETAILS"&&Array.prototype.slice.apply(e.children).some(function(s){return s.tagName==="SUMMARY"});return t},cs=function(e,t){for(var s=0;ssummary:first-of-type"),i=r?e.parentElement:e;if(ie.call(i,"details:not([open]) *"))return!0;if(!s||s==="full"||s==="legacy-full"){if(typeof n=="function"){for(var o=e;e;){var l=e.parentElement,c=ke(e);if(l&&!l.shadowRoot&&n(l)===!0)return rt(e);e.assignedSlot?e=e.assignedSlot:!l&&c!==e.ownerDocument?e=c.host:e=l}e=o}if(fs(e))return!e.getClientRects().length;if(s!=="legacy-full")return!0}else if(s==="non-zero-area")return rt(e);return!1},vs=function(e){if(/^(INPUT|BUTTON|SELECT|TEXTAREA)$/.test(e.tagName))for(var t=e.parentElement;t;){if(t.tagName==="FIELDSET"&&t.disabled){for(var s=0;s=0)},gs=function a(e){var t=[],s=[];return e.forEach(function(n,r){var i=!!n.scopeParent,o=i?n.scopeParent:n,l=rs(o,i),c=i?a(n.candidates):o;l===0?i?t.push.apply(t,c):t.push(o):s.push({documentOrder:r,tabIndex:l,item:n,isScope:i,content:c})}),s.sort(as).reduce(function(n,r){return r.isScope?n.push.apply(n,r.content):n.push(r.content),n},[]).concat(t)},bs=function(e,t){t=t||{};var s;return t.getShadowRoot?s=bt([e],t.includeContainer,{filter:Ve.bind(null,t),flatten:!1,getShadowRoot:t.getShadowRoot,shadowRootFilter:ms}):s=gt(e,t.includeContainer,Ve.bind(null,t)),gs(s)},ys=function(e,t){t=t||{};var s;return t.getShadowRoot?s=bt([e],t.includeContainer,{filter:Fe.bind(null,t),flatten:!0,getShadowRoot:t.getShadowRoot}):s=gt(e,t.includeContainer,Fe.bind(null,t)),s},re=function(e,t){if(t=t||{},!e)throw new Error("No node provided");return ie.call(e,Ie)===!1?!1:Ve(t,e)},ws=vt.concat("iframe").join(","),Me=function(e,t){if(t=t||{},!e)throw new Error("No node provided");return ie.call(e,ws)===!1?!1:Fe(t,e)};/*! diff --git a/dev/assets/chunks/theme.B3BJMEH-.js b/dev/assets/chunks/theme.DptDGCLo.js similarity index 99% rename from dev/assets/chunks/theme.B3BJMEH-.js rename to dev/assets/chunks/theme.DptDGCLo.js index 04cfd824..94367096 100644 --- a/dev/assets/chunks/theme.B3BJMEH-.js +++ b/dev/assets/chunks/theme.DptDGCLo.js @@ -1,2 +1,2 @@ -const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/chunks/VPLocalSearchBox.j05JUUPf.js","assets/chunks/framework.JKTEW8jd.js"])))=>i.map(i=>d[i]); -import{d as h,o as a,c as l,r as u,n as I,a as O,t as T,b as $,w as f,e as m,T as ve,_ as g,u as je,i as Ge,f as Ke,g as pe,h as y,j as v,k as i,l as G,m as ie,p as w,q as D,s as x,v as R,x as fe,y as me,z as We,A as qe,B as K,F as M,C as A,D as Se,E as ee,G as k,H as F,I as Le,J as Y,K as j,L as q,M as Je,N as Te,O as le,P as we,Q as Ne,R as te,S as Ye,U as Xe,V as Qe,W as Ie,X as he,Y as Ze,Z as xe,$ as et,a0 as tt,a1 as Me,a2 as nt,a3 as st,a4 as ot}from"./framework.JKTEW8jd.js";const at=h({__name:"VPBadge",props:{text:{},type:{default:"tip"}},setup(o){return(e,t)=>(a(),l("span",{class:I(["VPBadge",e.type])},[u(e.$slots,"default",{},()=>[O(T(e.text),1)])],2))}}),rt={key:0,class:"VPBackdrop"},it=h({__name:"VPBackdrop",props:{show:{type:Boolean}},setup(o){return(e,t)=>(a(),$(ve,{name:"fade"},{default:f(()=>[e.show?(a(),l("div",rt)):m("",!0)]),_:1}))}}),lt=g(it,[["__scopeId","data-v-b06cdb19"]]),L=je;function ct(o,e){let t,s=!1;return()=>{t&&clearTimeout(t),s?t=setTimeout(o,e):(o(),(s=!0)&&setTimeout(()=>s=!1,e))}}function ce(o){return/^\//.test(o)?o:`/${o}`}function _e(o){const{pathname:e,search:t,hash:s,protocol:n}=new URL(o,"http://a.com");if(Ge(o)||o.startsWith("#")||!n.startsWith("http")||!Ke(e))return o;const{site:r}=L(),c=e.endsWith("/")||e.endsWith(".html")?o:o.replace(/(?:(^\.+)\/)?.*$/,`$1${e.replace(/(\.md)?$/,r.value.cleanUrls?"":".html")}${t}${s}`);return pe(c)}function X({correspondingLink:o=!1}={}){const{site:e,localeIndex:t,page:s,theme:n,hash:r}=L(),c=y(()=>{var d,_;return{label:(d=e.value.locales[t.value])==null?void 0:d.label,link:((_=e.value.locales[t.value])==null?void 0:_.link)||(t.value==="root"?"/":`/${t.value}/`)}});return{localeLinks:y(()=>Object.entries(e.value.locales).flatMap(([d,_])=>c.value.label===_.label?[]:{text:_.label,link:ut(_.link||(d==="root"?"/":`/${d}/`),n.value.i18nRouting!==!1&&o,s.value.relativePath.slice(c.value.link.length-1),!e.value.cleanUrls)+r.value})),currentLang:c}}function ut(o,e,t,s){return e?o.replace(/\/$/,"")+ce(t.replace(/(^|\/)index\.md$/,"$1").replace(/\.md$/,s?".html":"")):o}const dt={class:"NotFound"},vt={class:"code"},pt={class:"title"},ft={class:"quote"},mt={class:"action"},ht=["href","aria-label"],_t=h({__name:"NotFound",setup(o){const{theme:e}=L(),{currentLang:t}=X();return(s,n)=>{var r,c,p,d,_;return a(),l("div",dt,[v("p",vt,T(((r=i(e).notFound)==null?void 0:r.code)??"404"),1),v("h1",pt,T(((c=i(e).notFound)==null?void 0:c.title)??"PAGE NOT FOUND"),1),n[0]||(n[0]=v("div",{class:"divider"},null,-1)),v("blockquote",ft,T(((p=i(e).notFound)==null?void 0:p.quote)??"But if you don't change your direction, and if you keep looking, you may end up where you are heading."),1),v("div",mt,[v("a",{class:"link",href:i(pe)(i(t).link),"aria-label":((d=i(e).notFound)==null?void 0:d.linkLabel)??"go to home"},T(((_=i(e).notFound)==null?void 0:_.linkText)??"Take me home"),9,ht)])])}}}),bt=g(_t,[["__scopeId","data-v-951cab6c"]]);function Ee(o,e){if(Array.isArray(o))return Q(o);if(o==null)return[];e=ce(e);const t=Object.keys(o).sort((n,r)=>r.split("/").length-n.split("/").length).find(n=>e.startsWith(ce(n))),s=t?o[t]:[];return Array.isArray(s)?Q(s):Q(s.items,s.base)}function kt(o){const e=[];let t=0;for(const s in o){const n=o[s];if(n.items){t=e.push(n);continue}e[t]||e.push({items:[]}),e[t].items.push(n)}return e}function gt(o){const e=[];function t(s){for(const n of s)n.text&&n.link&&e.push({text:n.text,link:n.link,docFooterText:n.docFooterText}),n.items&&t(n.items)}return t(o),e}function ue(o,e){return Array.isArray(e)?e.some(t=>ue(o,t)):G(o,e.link)?!0:e.items?ue(o,e.items):!1}function Q(o,e){return[...o].map(t=>{const s={...t},n=s.base||e;return n&&s.link&&(s.link=n+s.link),s.items&&(s.items=Q(s.items,n)),s})}function U(){const{frontmatter:o,page:e,theme:t}=L(),s=ie("(min-width: 960px)"),n=w(!1),r=y(()=>{const C=t.value.sidebar,N=e.value.relativePath;return C?Ee(C,N):[]}),c=w(r.value);D(r,(C,N)=>{JSON.stringify(C)!==JSON.stringify(N)&&(c.value=r.value)});const p=y(()=>o.value.sidebar!==!1&&c.value.length>0&&o.value.layout!=="home"),d=y(()=>_?o.value.aside==null?t.value.aside==="left":o.value.aside==="left":!1),_=y(()=>o.value.layout==="home"?!1:o.value.aside!=null?!!o.value.aside:t.value.aside!==!1),S=y(()=>p.value&&s.value),b=y(()=>p.value?kt(c.value):[]);function P(){n.value=!0}function V(){n.value=!1}function E(){n.value?V():P()}return{isOpen:n,sidebar:c,sidebarGroups:b,hasSidebar:p,hasAside:_,leftAside:d,isSidebarEnabled:S,open:P,close:V,toggle:E}}function $t(o,e){let t;x(()=>{t=o.value?document.activeElement:void 0}),R(()=>{window.addEventListener("keyup",s)}),fe(()=>{window.removeEventListener("keyup",s)});function s(n){n.key==="Escape"&&o.value&&(e(),t==null||t.focus())}}function yt(o){const{page:e,hash:t}=L(),s=w(!1),n=y(()=>o.value.collapsed!=null),r=y(()=>!!o.value.link),c=w(!1),p=()=>{c.value=G(e.value.relativePath,o.value.link)};D([e,o,t],p),R(p);const d=y(()=>c.value?!0:o.value.items?ue(e.value.relativePath,o.value.items):!1),_=y(()=>!!(o.value.items&&o.value.items.length));x(()=>{s.value=!!(n.value&&o.value.collapsed)}),me(()=>{(c.value||d.value)&&(s.value=!1)});function S(){n.value&&(s.value=!s.value)}return{collapsed:s,collapsible:n,isLink:r,isActiveLink:c,hasActiveLink:d,hasChildren:_,toggle:S}}function Pt(){const{hasSidebar:o}=U(),e=ie("(min-width: 960px)"),t=ie("(min-width: 1280px)");return{isAsideEnabled:y(()=>!t.value&&!e.value?!1:o.value?t.value:e.value)}}const de=[];function Ce(o){return typeof o.outline=="object"&&!Array.isArray(o.outline)&&o.outline.label||o.outlineTitle||"On this page"}function be(o){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:Vt(t),link:"#"+t.id,level:s}});return St(e,o)}function Vt(o){let e="";for(const t of o.childNodes)if(t.nodeType===1){if(t.classList.contains("VPBadge")||t.classList.contains("header-anchor")||t.classList.contains("ignore-header"))continue;e+=t.textContent}else t.nodeType===3&&(e+=t.textContent);return e.trim()}function St(o,e){if(e===!1)return[];const t=(typeof e=="object"&&!Array.isArray(e)?e.level:e)||2,[s,n]=typeof t=="number"?[t,t]:t==="deep"?[2,6]:t;o=o.filter(c=>c.level>=s&&c.level<=n),de.length=0;for(const{element:c,link:p}of o)de.push({element:c,link:p});const r=[];e:for(let c=0;c=0;d--){const _=o[d];if(_.level{requestAnimationFrame(r),window.addEventListener("scroll",s)}),We(()=>{c(location.hash)}),fe(()=>{window.removeEventListener("scroll",s)});function r(){if(!t.value)return;const p=window.scrollY,d=window.innerHeight,_=document.body.offsetHeight,S=Math.abs(p+d-_)<1,b=de.map(({element:V,link:E})=>({link:E,top:Tt(V)})).filter(({top:V})=>!Number.isNaN(V)).sort((V,E)=>V.top-E.top);if(!b.length){c(null);return}if(p<1){c(null);return}if(S){c(b[b.length-1].link);return}let P=null;for(const{link:V,top:E}of b){if(E>p+qe()+4)break;P=V}c(P)}function c(p){n&&n.classList.remove("active"),p==null?n=null:n=o.value.querySelector(`a[href="${decodeURIComponent(p)}"]`);const d=n;d?(d.classList.add("active"),e.value.style.top=d.offsetTop+39+"px",e.value.style.opacity="1"):(e.value.style.top="33px",e.value.style.opacity="0")}}function Tt(o){let e=0;for(;o!==document.body;){if(o===null)return NaN;e+=o.offsetTop,o=o.offsetParent}return e}const wt=["href","title"],Nt=h({__name:"VPDocOutlineItem",props:{headers:{},root:{type:Boolean}},setup(o){function e({target:t}){const s=t.href.split("#")[1],n=document.getElementById(decodeURIComponent(s));n==null||n.focus({preventScroll:!0})}return(t,s)=>{const n=K("VPDocOutlineItem",!0);return a(),l("ul",{class:I(["VPDocOutlineItem",t.root?"root":"nested"])},[(a(!0),l(M,null,A(t.headers,({children:r,link:c,title:p})=>(a(),l("li",null,[v("a",{class:"outline-link",href:c,onClick:e,title:p},T(p),9,wt),r!=null&&r.length?(a(),$(n,{key:0,headers:r},null,8,["headers"])):m("",!0)]))),256))],2)}}}),Ae=g(Nt,[["__scopeId","data-v-3f927ebe"]]),It={class:"content"},Mt={"aria-level":"2",class:"outline-title",id:"doc-outline-aria-label",role:"heading"},Et=h({__name:"VPDocAsideOutline",setup(o){const{frontmatter:e,theme:t}=L(),s=Se([]);ee(()=>{s.value=be(e.value.outline??t.value.outline)});const n=w(),r=w();return Lt(n,r),(c,p)=>(a(),l("nav",{"aria-labelledby":"doc-outline-aria-label",class:I(["VPDocAsideOutline",{"has-outline":s.value.length>0}]),ref_key:"container",ref:n},[v("div",It,[v("div",{class:"outline-marker",ref_key:"marker",ref:r},null,512),v("div",Mt,T(i(Ce)(i(t))),1),k(Ae,{headers:s.value,root:!0},null,8,["headers"])])],2))}}),Ct=g(Et,[["__scopeId","data-v-b38bf2ff"]]),At={class:"VPDocAsideCarbonAds"},Bt=h({__name:"VPDocAsideCarbonAds",props:{carbonAds:{}},setup(o){const e=()=>null;return(t,s)=>(a(),l("div",At,[k(i(e),{"carbon-ads":t.carbonAds},null,8,["carbon-ads"])]))}}),Ht={class:"VPDocAside"},Ot=h({__name:"VPDocAside",setup(o){const{theme:e}=L();return(t,s)=>(a(),l("div",Ht,[u(t.$slots,"aside-top",{},void 0,!0),u(t.$slots,"aside-outline-before",{},void 0,!0),k(Ct),u(t.$slots,"aside-outline-after",{},void 0,!0),s[0]||(s[0]=v("div",{class:"spacer"},null,-1)),u(t.$slots,"aside-ads-before",{},void 0,!0),i(e).carbonAds?(a(),$(Bt,{key:0,"carbon-ads":i(e).carbonAds},null,8,["carbon-ads"])):m("",!0),u(t.$slots,"aside-ads-after",{},void 0,!0),u(t.$slots,"aside-bottom",{},void 0,!0)]))}}),Dt=g(Ot,[["__scopeId","data-v-6d7b3c46"]]);function Ft(){const{theme:o,page:e}=L();return y(()=>{const{text:t="Edit this page",pattern:s=""}=o.value.editLink||{};let n;return typeof s=="function"?n=s(e.value):n=s.replace(/:path/g,e.value.filePath),{url:n,text:t}})}function Rt(){const{page:o,theme:e,frontmatter:t}=L();return y(()=>{var _,S,b,P,V,E,C,N;const s=Ee(e.value.sidebar,o.value.relativePath),n=gt(s),r=Ut(n,B=>B.link.replace(/[?#].*$/,"")),c=r.findIndex(B=>G(o.value.relativePath,B.link)),p=((_=e.value.docFooter)==null?void 0:_.prev)===!1&&!t.value.prev||t.value.prev===!1,d=((S=e.value.docFooter)==null?void 0:S.next)===!1&&!t.value.next||t.value.next===!1;return{prev:p?void 0:{text:(typeof t.value.prev=="string"?t.value.prev:typeof t.value.prev=="object"?t.value.prev.text:void 0)??((b=r[c-1])==null?void 0:b.docFooterText)??((P=r[c-1])==null?void 0:P.text),link:(typeof t.value.prev=="object"?t.value.prev.link:void 0)??((V=r[c-1])==null?void 0:V.link)},next:d?void 0:{text:(typeof t.value.next=="string"?t.value.next:typeof t.value.next=="object"?t.value.next.text:void 0)??((E=r[c+1])==null?void 0:E.docFooterText)??((C=r[c+1])==null?void 0:C.text),link:(typeof t.value.next=="object"?t.value.next.link:void 0)??((N=r[c+1])==null?void 0:N.link)}}})}function Ut(o,e){const t=new Set;return o.filter(s=>{const n=e(s);return t.has(n)?!1:t.add(n)})}const H=h({__name:"VPLink",props:{tag:{},href:{},noIcon:{type:Boolean},target:{},rel:{}},setup(o){const e=o,t=y(()=>e.tag??(e.href?"a":"span")),s=y(()=>e.href&&Le.test(e.href)||e.target==="_blank");return(n,r)=>(a(),$(F(t.value),{class:I(["VPLink",{link:n.href,"vp-external-link-icon":s.value,"no-icon":n.noIcon}]),href:n.href?i(_e)(n.href):void 0,target:n.target??(s.value?"_blank":void 0),rel:n.rel??(s.value?"noreferrer":void 0)},{default:f(()=>[u(n.$slots,"default")]),_:3},8,["class","href","target","rel"]))}}),zt={class:"VPLastUpdated"},jt=["datetime"],Gt=h({__name:"VPDocFooterLastUpdated",setup(o){const{theme:e,page:t,lang:s}=L(),n=y(()=>new Date(t.value.lastUpdated)),r=y(()=>n.value.toISOString()),c=w("");return R(()=>{x(()=>{var p,d,_;c.value=new Intl.DateTimeFormat((d=(p=e.value.lastUpdated)==null?void 0:p.formatOptions)!=null&&d.forceLocale?s.value:void 0,((_=e.value.lastUpdated)==null?void 0:_.formatOptions)??{dateStyle:"short",timeStyle:"short"}).format(n.value)})}),(p,d)=>{var _;return a(),l("p",zt,[O(T(((_=i(e).lastUpdated)==null?void 0:_.text)||i(e).lastUpdatedText||"Last updated")+": ",1),v("time",{datetime:r.value},T(c.value),9,jt)])}}}),Kt=g(Gt,[["__scopeId","data-v-475f71b8"]]),Wt={key:0,class:"VPDocFooter"},qt={key:0,class:"edit-info"},Jt={key:0,class:"edit-link"},Yt={key:1,class:"last-updated"},Xt={key:1,class:"prev-next","aria-labelledby":"doc-footer-aria-label"},Qt={class:"pager"},Zt=["innerHTML"],xt=["innerHTML"],en={class:"pager"},tn=["innerHTML"],nn=["innerHTML"],sn=h({__name:"VPDocFooter",setup(o){const{theme:e,page:t,frontmatter:s}=L(),n=Ft(),r=Rt(),c=y(()=>e.value.editLink&&s.value.editLink!==!1),p=y(()=>t.value.lastUpdated),d=y(()=>c.value||p.value||r.value.prev||r.value.next);return(_,S)=>{var b,P,V,E;return d.value?(a(),l("footer",Wt,[u(_.$slots,"doc-footer-before",{},void 0,!0),c.value||p.value?(a(),l("div",qt,[c.value?(a(),l("div",Jt,[k(H,{class:"edit-link-button",href:i(n).url,"no-icon":!0},{default:f(()=>[S[0]||(S[0]=v("span",{class:"vpi-square-pen edit-link-icon"},null,-1)),O(" "+T(i(n).text),1)]),_:1},8,["href"])])):m("",!0),p.value?(a(),l("div",Yt,[k(Kt)])):m("",!0)])):m("",!0),(b=i(r).prev)!=null&&b.link||(P=i(r).next)!=null&&P.link?(a(),l("nav",Xt,[S[1]||(S[1]=v("span",{class:"visually-hidden",id:"doc-footer-aria-label"},"Pager",-1)),v("div",Qt,[(V=i(r).prev)!=null&&V.link?(a(),$(H,{key:0,class:"pager-link prev",href:i(r).prev.link},{default:f(()=>{var C;return[v("span",{class:"desc",innerHTML:((C=i(e).docFooter)==null?void 0:C.prev)||"Previous page"},null,8,Zt),v("span",{class:"title",innerHTML:i(r).prev.text},null,8,xt)]}),_:1},8,["href"])):m("",!0)]),v("div",en,[(E=i(r).next)!=null&&E.link?(a(),$(H,{key:0,class:"pager-link next",href:i(r).next.link},{default:f(()=>{var C;return[v("span",{class:"desc",innerHTML:((C=i(e).docFooter)==null?void 0:C.next)||"Next page"},null,8,tn),v("span",{class:"title",innerHTML:i(r).next.text},null,8,nn)]}),_:1},8,["href"])):m("",!0)])])):m("",!0)])):m("",!0)}}}),on=g(sn,[["__scopeId","data-v-4f9813fa"]]),an={class:"container"},rn={class:"aside-container"},ln={class:"aside-content"},cn={class:"content"},un={class:"content-container"},dn={class:"main"},vn=h({__name:"VPDoc",setup(o){const{theme:e}=L(),t=Y(),{hasSidebar:s,hasAside:n,leftAside:r}=U(),c=y(()=>t.path.replace(/[./]+/g,"_").replace(/_html$/,""));return(p,d)=>{const _=K("Content");return a(),l("div",{class:I(["VPDoc",{"has-sidebar":i(s),"has-aside":i(n)}])},[u(p.$slots,"doc-top",{},void 0,!0),v("div",an,[i(n)?(a(),l("div",{key:0,class:I(["aside",{"left-aside":i(r)}])},[d[0]||(d[0]=v("div",{class:"aside-curtain"},null,-1)),v("div",rn,[v("div",ln,[k(Dt,null,{"aside-top":f(()=>[u(p.$slots,"aside-top",{},void 0,!0)]),"aside-bottom":f(()=>[u(p.$slots,"aside-bottom",{},void 0,!0)]),"aside-outline-before":f(()=>[u(p.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":f(()=>[u(p.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":f(()=>[u(p.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":f(()=>[u(p.$slots,"aside-ads-after",{},void 0,!0)]),_:3})])])],2)):m("",!0),v("div",cn,[v("div",un,[u(p.$slots,"doc-before",{},void 0,!0),v("main",dn,[k(_,{class:I(["vp-doc",[c.value,i(e).externalLinkIcon&&"external-link-icon-enabled"]])},null,8,["class"])]),k(on,null,{"doc-footer-before":f(()=>[u(p.$slots,"doc-footer-before",{},void 0,!0)]),_:3}),u(p.$slots,"doc-after",{},void 0,!0)])])]),u(p.$slots,"doc-bottom",{},void 0,!0)],2)}}}),pn=g(vn,[["__scopeId","data-v-83890dd9"]]),fn=h({__name:"VPButton",props:{tag:{},size:{default:"medium"},theme:{default:"brand"},text:{},href:{},target:{},rel:{}},setup(o){const e=o,t=y(()=>e.href&&Le.test(e.href)),s=y(()=>e.tag||e.href?"a":"button");return(n,r)=>(a(),$(F(s.value),{class:I(["VPButton",[n.size,n.theme]]),href:n.href?i(_e)(n.href):void 0,target:e.target??(t.value?"_blank":void 0),rel:e.rel??(t.value?"noreferrer":void 0)},{default:f(()=>[O(T(n.text),1)]),_:1},8,["class","href","target","rel"]))}}),mn=g(fn,[["__scopeId","data-v-14206e74"]]),hn=["src","alt"],_n=h({inheritAttrs:!1,__name:"VPImage",props:{image:{},alt:{}},setup(o){return(e,t)=>{const s=K("VPImage",!0);return e.image?(a(),l(M,{key:0},[typeof e.image=="string"||"src"in e.image?(a(),l("img",j({key:0,class:"VPImage"},typeof e.image=="string"?e.$attrs:{...e.image,...e.$attrs},{src:i(pe)(typeof e.image=="string"?e.image:e.image.src),alt:e.alt??(typeof e.image=="string"?"":e.image.alt||"")}),null,16,hn)):(a(),l(M,{key:1},[k(s,j({class:"dark",image:e.image.dark,alt:e.image.alt},e.$attrs),null,16,["image","alt"]),k(s,j({class:"light",image:e.image.light,alt:e.image.alt},e.$attrs),null,16,["image","alt"])],64))],64)):m("",!0)}}}),Z=g(_n,[["__scopeId","data-v-35a7d0b8"]]),bn={class:"container"},kn={class:"main"},gn={key:0,class:"name"},$n=["innerHTML"],yn=["innerHTML"],Pn=["innerHTML"],Vn={key:0,class:"actions"},Sn={key:0,class:"image"},Ln={class:"image-container"},Tn=h({__name:"VPHero",props:{name:{},text:{},tagline:{},image:{},actions:{}},setup(o){const e=q("hero-image-slot-exists");return(t,s)=>(a(),l("div",{class:I(["VPHero",{"has-image":t.image||i(e)}])},[v("div",bn,[v("div",kn,[u(t.$slots,"home-hero-info-before",{},void 0,!0),u(t.$slots,"home-hero-info",{},()=>[t.name?(a(),l("h1",gn,[v("span",{innerHTML:t.name,class:"clip"},null,8,$n)])):m("",!0),t.text?(a(),l("p",{key:1,innerHTML:t.text,class:"text"},null,8,yn)):m("",!0),t.tagline?(a(),l("p",{key:2,innerHTML:t.tagline,class:"tagline"},null,8,Pn)):m("",!0)],!0),u(t.$slots,"home-hero-info-after",{},void 0,!0),t.actions?(a(),l("div",Vn,[(a(!0),l(M,null,A(t.actions,n=>(a(),l("div",{key:n.link,class:"action"},[k(mn,{tag:"a",size:"medium",theme:n.theme,text:n.text,href:n.link,target:n.target,rel:n.rel},null,8,["theme","text","href","target","rel"])]))),128))])):m("",!0),u(t.$slots,"home-hero-actions-after",{},void 0,!0)]),t.image||i(e)?(a(),l("div",Sn,[v("div",Ln,[s[0]||(s[0]=v("div",{class:"image-bg"},null,-1)),u(t.$slots,"home-hero-image",{},()=>[t.image?(a(),$(Z,{key:0,class:"image-src",image:t.image},null,8,["image"])):m("",!0)],!0)])])):m("",!0)])],2))}}),wn=g(Tn,[["__scopeId","data-v-955009fc"]]),Nn=h({__name:"VPHomeHero",setup(o){const{frontmatter:e}=L();return(t,s)=>i(e).hero?(a(),$(wn,{key:0,class:"VPHomeHero",name:i(e).hero.name,text:i(e).hero.text,tagline:i(e).hero.tagline,image:i(e).hero.image,actions:i(e).hero.actions},{"home-hero-info-before":f(()=>[u(t.$slots,"home-hero-info-before")]),"home-hero-info":f(()=>[u(t.$slots,"home-hero-info")]),"home-hero-info-after":f(()=>[u(t.$slots,"home-hero-info-after")]),"home-hero-actions-after":f(()=>[u(t.$slots,"home-hero-actions-after")]),"home-hero-image":f(()=>[u(t.$slots,"home-hero-image")]),_:3},8,["name","text","tagline","image","actions"])):m("",!0)}}),In={class:"box"},Mn={key:0,class:"icon"},En=["innerHTML"],Cn=["innerHTML"],An=["innerHTML"],Bn={key:4,class:"link-text"},Hn={class:"link-text-value"},On=h({__name:"VPFeature",props:{icon:{},title:{},details:{},link:{},linkText:{},rel:{},target:{}},setup(o){return(e,t)=>(a(),$(H,{class:"VPFeature",href:e.link,rel:e.rel,target:e.target,"no-icon":!0,tag:e.link?"a":"div"},{default:f(()=>[v("article",In,[typeof e.icon=="object"&&e.icon.wrap?(a(),l("div",Mn,[k(Z,{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(),$(Z,{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(),l("div",{key:2,class:"icon",innerHTML:e.icon},null,8,En)):m("",!0),v("h2",{class:"title",innerHTML:e.title},null,8,Cn),e.details?(a(),l("p",{key:3,class:"details",innerHTML:e.details},null,8,An)):m("",!0),e.linkText?(a(),l("div",Bn,[v("p",Hn,[O(T(e.linkText)+" ",1),t[0]||(t[0]=v("span",{class:"vpi-arrow-right link-text-icon"},null,-1))])])):m("",!0)])]),_:1},8,["href","rel","target","tag"]))}}),Dn=g(On,[["__scopeId","data-v-f5e9645b"]]),Fn={key:0,class:"VPFeatures"},Rn={class:"container"},Un={class:"items"},zn=h({__name:"VPFeatures",props:{features:{}},setup(o){const e=o,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,n)=>s.features?(a(),l("div",Fn,[v("div",Rn,[v("div",Un,[(a(!0),l(M,null,A(s.features,r=>(a(),l("div",{key:r.title,class:I(["item",[t.value]])},[k(Dn,{icon:r.icon,title:r.title,details:r.details,link:r.link,"link-text":r.linkText,rel:r.rel,target:r.target},null,8,["icon","title","details","link","link-text","rel","target"])],2))),128))])])])):m("",!0)}}),jn=g(zn,[["__scopeId","data-v-d0a190d7"]]),Gn=h({__name:"VPHomeFeatures",setup(o){const{frontmatter:e}=L();return(t,s)=>i(e).features?(a(),$(jn,{key:0,class:"VPHomeFeatures",features:i(e).features},null,8,["features"])):m("",!0)}}),Kn=h({__name:"VPHomeContent",setup(o){const{width:e}=Je({initialWidth:0,includeScrollbar:!1});return(t,s)=>(a(),l("div",{class:"vp-doc container",style:Te(i(e)?{"--vp-offset":`calc(50% - ${i(e)/2}px)`}:{})},[u(t.$slots,"default",{},void 0,!0)],4))}}),Wn=g(Kn,[["__scopeId","data-v-7a48a447"]]),qn={class:"VPHome"},Jn=h({__name:"VPHome",setup(o){const{frontmatter:e}=L();return(t,s)=>{const n=K("Content");return a(),l("div",qn,[u(t.$slots,"home-hero-before",{},void 0,!0),k(Nn,null,{"home-hero-info-before":f(()=>[u(t.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":f(()=>[u(t.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":f(()=>[u(t.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":f(()=>[u(t.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":f(()=>[u(t.$slots,"home-hero-image",{},void 0,!0)]),_:3}),u(t.$slots,"home-hero-after",{},void 0,!0),u(t.$slots,"home-features-before",{},void 0,!0),k(Gn),u(t.$slots,"home-features-after",{},void 0,!0),i(e).markdownStyles!==!1?(a(),$(Wn,{key:0},{default:f(()=>[k(n)]),_:1})):(a(),$(n,{key:1}))])}}}),Yn=g(Jn,[["__scopeId","data-v-cbb6ec48"]]),Xn={},Qn={class:"VPPage"};function Zn(o,e){const t=K("Content");return a(),l("div",Qn,[u(o.$slots,"page-top"),k(t),u(o.$slots,"page-bottom")])}const xn=g(Xn,[["render",Zn]]),es=h({__name:"VPContent",setup(o){const{page:e,frontmatter:t}=L(),{hasSidebar:s}=U();return(n,r)=>(a(),l("div",{class:I(["VPContent",{"has-sidebar":i(s),"is-home":i(t).layout==="home"}]),id:"VPContent"},[i(e).isNotFound?u(n.$slots,"not-found",{key:0},()=>[k(bt)],!0):i(t).layout==="page"?(a(),$(xn,{key:1},{"page-top":f(()=>[u(n.$slots,"page-top",{},void 0,!0)]),"page-bottom":f(()=>[u(n.$slots,"page-bottom",{},void 0,!0)]),_:3})):i(t).layout==="home"?(a(),$(Yn,{key:2},{"home-hero-before":f(()=>[u(n.$slots,"home-hero-before",{},void 0,!0)]),"home-hero-info-before":f(()=>[u(n.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":f(()=>[u(n.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":f(()=>[u(n.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":f(()=>[u(n.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":f(()=>[u(n.$slots,"home-hero-image",{},void 0,!0)]),"home-hero-after":f(()=>[u(n.$slots,"home-hero-after",{},void 0,!0)]),"home-features-before":f(()=>[u(n.$slots,"home-features-before",{},void 0,!0)]),"home-features-after":f(()=>[u(n.$slots,"home-features-after",{},void 0,!0)]),_:3})):i(t).layout&&i(t).layout!=="doc"?(a(),$(F(i(t).layout),{key:3})):(a(),$(pn,{key:4},{"doc-top":f(()=>[u(n.$slots,"doc-top",{},void 0,!0)]),"doc-bottom":f(()=>[u(n.$slots,"doc-bottom",{},void 0,!0)]),"doc-footer-before":f(()=>[u(n.$slots,"doc-footer-before",{},void 0,!0)]),"doc-before":f(()=>[u(n.$slots,"doc-before",{},void 0,!0)]),"doc-after":f(()=>[u(n.$slots,"doc-after",{},void 0,!0)]),"aside-top":f(()=>[u(n.$slots,"aside-top",{},void 0,!0)]),"aside-outline-before":f(()=>[u(n.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":f(()=>[u(n.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":f(()=>[u(n.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":f(()=>[u(n.$slots,"aside-ads-after",{},void 0,!0)]),"aside-bottom":f(()=>[u(n.$slots,"aside-bottom",{},void 0,!0)]),_:3}))],2))}}),ts=g(es,[["__scopeId","data-v-91765379"]]),ns={class:"container"},ss=["innerHTML"],os=["innerHTML"],as=h({__name:"VPFooter",setup(o){const{theme:e,frontmatter:t}=L(),{hasSidebar:s}=U();return(n,r)=>i(e).footer&&i(t).footer!==!1?(a(),l("footer",{key:0,class:I(["VPFooter",{"has-sidebar":i(s)}])},[v("div",ns,[i(e).footer.message?(a(),l("p",{key:0,class:"message",innerHTML:i(e).footer.message},null,8,ss)):m("",!0),i(e).footer.copyright?(a(),l("p",{key:1,class:"copyright",innerHTML:i(e).footer.copyright},null,8,os)):m("",!0)])],2)):m("",!0)}}),rs=g(as,[["__scopeId","data-v-c970a860"]]);function is(){const{theme:o,frontmatter:e}=L(),t=Se([]),s=y(()=>t.value.length>0);return ee(()=>{t.value=be(e.value.outline??o.value.outline)}),{headers:t,hasLocalNav:s}}const ls={class:"menu-text"},cs={class:"header"},us={class:"outline"},ds=h({__name:"VPLocalNavOutlineDropdown",props:{headers:{},navHeight:{}},setup(o){const e=o,{theme:t}=L(),s=w(!1),n=w(0),r=w(),c=w();function p(b){var P;(P=r.value)!=null&&P.contains(b.target)||(s.value=!1)}D(s,b=>{if(b){document.addEventListener("click",p);return}document.removeEventListener("click",p)}),le("Escape",()=>{s.value=!1}),ee(()=>{s.value=!1});function d(){s.value=!s.value,n.value=window.innerHeight+Math.min(window.scrollY-e.navHeight,0)}function _(b){b.target.classList.contains("outline-link")&&(c.value&&(c.value.style.transition="none"),we(()=>{s.value=!1}))}function S(){s.value=!1,window.scrollTo({top:0,left:0,behavior:"smooth"})}return(b,P)=>(a(),l("div",{class:"VPLocalNavOutlineDropdown",style:Te({"--vp-vh":n.value+"px"}),ref_key:"main",ref:r},[b.headers.length>0?(a(),l("button",{key:0,onClick:d,class:I({open:s.value})},[v("span",ls,T(i(Ce)(i(t))),1),P[0]||(P[0]=v("span",{class:"vpi-chevron-right icon"},null,-1))],2)):(a(),l("button",{key:1,onClick:S},T(i(t).returnToTopLabel||"Return to top"),1)),k(ve,{name:"flyout"},{default:f(()=>[s.value?(a(),l("div",{key:0,ref_key:"items",ref:c,class:"items",onClick:_},[v("div",cs,[v("a",{class:"top-link",href:"#",onClick:S},T(i(t).returnToTopLabel||"Return to top"),1)]),v("div",us,[k(Ae,{headers:b.headers},null,8,["headers"])])],512)):m("",!0)]),_:1})],4))}}),vs=g(ds,[["__scopeId","data-v-bc9dc845"]]),ps={class:"container"},fs=["aria-expanded"],ms={class:"menu-text"},hs=h({__name:"VPLocalNav",props:{open:{type:Boolean}},emits:["open-menu"],setup(o){const{theme:e,frontmatter:t}=L(),{hasSidebar:s}=U(),{headers:n}=is(),{y:r}=Ne(),c=w(0);R(()=>{c.value=parseInt(getComputedStyle(document.documentElement).getPropertyValue("--vp-nav-height"))}),ee(()=>{n.value=be(t.value.outline??e.value.outline)});const p=y(()=>n.value.length===0),d=y(()=>p.value&&!s.value),_=y(()=>({VPLocalNav:!0,"has-sidebar":s.value,empty:p.value,fixed:d.value}));return(S,b)=>i(t).layout!=="home"&&(!d.value||i(r)>=c.value)?(a(),l("div",{key:0,class:I(_.value)},[v("div",ps,[i(s)?(a(),l("button",{key:0,class:"menu","aria-expanded":S.open,"aria-controls":"VPSidebarNav",onClick:b[0]||(b[0]=P=>S.$emit("open-menu"))},[b[1]||(b[1]=v("span",{class:"vpi-align-left menu-icon"},null,-1)),v("span",ms,T(i(e).sidebarMenuLabel||"Menu"),1)],8,fs)):m("",!0),k(vs,{headers:i(n),navHeight:c.value},null,8,["headers","navHeight"])])],2)):m("",!0)}}),_s=g(hs,[["__scopeId","data-v-070ab83d"]]);function bs(){const o=w(!1);function e(){o.value=!0,window.addEventListener("resize",n)}function t(){o.value=!1,window.removeEventListener("resize",n)}function s(){o.value?t():e()}function n(){window.outerWidth>=768&&t()}const r=Y();return D(()=>r.path,t),{isScreenOpen:o,openScreen:e,closeScreen:t,toggleScreen:s}}const ks={},gs={class:"VPSwitch",type:"button",role:"switch"},$s={class:"check"},ys={key:0,class:"icon"};function Ps(o,e){return a(),l("button",gs,[v("span",$s,[o.$slots.default?(a(),l("span",ys,[u(o.$slots,"default",{},void 0,!0)])):m("",!0)])])}const Vs=g(ks,[["render",Ps],["__scopeId","data-v-4a1c76db"]]),Ss=h({__name:"VPSwitchAppearance",setup(o){const{isDark:e,theme:t}=L(),s=q("toggle-appearance",()=>{e.value=!e.value}),n=w("");return me(()=>{n.value=e.value?t.value.lightModeSwitchTitle||"Switch to light theme":t.value.darkModeSwitchTitle||"Switch to dark theme"}),(r,c)=>(a(),$(Vs,{title:n.value,class:"VPSwitchAppearance","aria-checked":i(e),onClick:i(s)},{default:f(()=>c[0]||(c[0]=[v("span",{class:"vpi-sun sun"},null,-1),v("span",{class:"vpi-moon moon"},null,-1)])),_:1},8,["title","aria-checked","onClick"]))}}),ke=g(Ss,[["__scopeId","data-v-e40a8bb6"]]),Ls={key:0,class:"VPNavBarAppearance"},Ts=h({__name:"VPNavBarAppearance",setup(o){const{site:e}=L();return(t,s)=>i(e).appearance&&i(e).appearance!=="force-dark"&&i(e).appearance!=="force-auto"?(a(),l("div",Ls,[k(ke)])):m("",!0)}}),ws=g(Ts,[["__scopeId","data-v-af096f4a"]]),ge=w();let Be=!1,re=0;function Ns(o){const e=w(!1);if(te){!Be&&Is(),re++;const t=D(ge,s=>{var n,r,c;s===o.el.value||(n=o.el.value)!=null&&n.contains(s)?(e.value=!0,(r=o.onFocus)==null||r.call(o)):(e.value=!1,(c=o.onBlur)==null||c.call(o))});fe(()=>{t(),re--,re||Ms()})}return Ye(e)}function Is(){document.addEventListener("focusin",He),Be=!0,ge.value=document.activeElement}function Ms(){document.removeEventListener("focusin",He)}function He(){ge.value=document.activeElement}const Es={class:"VPMenuLink"},Cs=h({__name:"VPMenuLink",props:{item:{}},setup(o){const{page:e}=L();return(t,s)=>(a(),l("div",Es,[k(H,{class:I({active:i(G)(i(e).relativePath,t.item.activeMatch||t.item.link,!!t.item.activeMatch)}),href:t.item.link,target:t.item.target,rel:t.item.rel},{default:f(()=>[O(T(t.item.text),1)]),_:1},8,["class","href","target","rel"])]))}}),ne=g(Cs,[["__scopeId","data-v-8b74d055"]]),As={class:"VPMenuGroup"},Bs={key:0,class:"title"},Hs=h({__name:"VPMenuGroup",props:{text:{},items:{}},setup(o){return(e,t)=>(a(),l("div",As,[e.text?(a(),l("p",Bs,T(e.text),1)):m("",!0),(a(!0),l(M,null,A(e.items,s=>(a(),l(M,null,["link"in s?(a(),$(ne,{key:0,item:s},null,8,["item"])):m("",!0)],64))),256))]))}}),Os=g(Hs,[["__scopeId","data-v-48c802d0"]]),Ds={class:"VPMenu"},Fs={key:0,class:"items"},Rs=h({__name:"VPMenu",props:{items:{}},setup(o){return(e,t)=>(a(),l("div",Ds,[e.items?(a(),l("div",Fs,[(a(!0),l(M,null,A(e.items,s=>(a(),l(M,{key:JSON.stringify(s)},["link"in s?(a(),$(ne,{key:0,item:s},null,8,["item"])):"component"in s?(a(),$(F(s.component),j({key:1,ref_for:!0},s.props),null,16)):(a(),$(Os,{key:2,text:s.text,items:s.items},null,8,["text","items"]))],64))),128))])):m("",!0),u(e.$slots,"default",{},void 0,!0)]))}}),Us=g(Rs,[["__scopeId","data-v-7dd3104a"]]),zs=["aria-expanded","aria-label"],js={key:0,class:"text"},Gs=["innerHTML"],Ks={key:1,class:"vpi-more-horizontal icon"},Ws={class:"menu"},qs=h({__name:"VPFlyout",props:{icon:{},button:{},label:{},items:{}},setup(o){const e=w(!1),t=w();Ns({el:t,onBlur:s});function s(){e.value=!1}return(n,r)=>(a(),l("div",{class:"VPFlyout",ref_key:"el",ref:t,onMouseenter:r[1]||(r[1]=c=>e.value=!0),onMouseleave:r[2]||(r[2]=c=>e.value=!1)},[v("button",{type:"button",class:"button","aria-haspopup":"true","aria-expanded":e.value,"aria-label":n.label,onClick:r[0]||(r[0]=c=>e.value=!e.value)},[n.button||n.icon?(a(),l("span",js,[n.icon?(a(),l("span",{key:0,class:I([n.icon,"option-icon"])},null,2)):m("",!0),n.button?(a(),l("span",{key:1,innerHTML:n.button},null,8,Gs)):m("",!0),r[3]||(r[3]=v("span",{class:"vpi-chevron-down text-icon"},null,-1))])):(a(),l("span",Ks))],8,zs),v("div",Ws,[k(Us,{items:n.items},{default:f(()=>[u(n.$slots,"default",{},void 0,!0)]),_:3},8,["items"])])],544))}}),$e=g(qs,[["__scopeId","data-v-e5380155"]]),Js=["href","aria-label","innerHTML"],Ys=h({__name:"VPSocialLink",props:{icon:{},link:{},ariaLabel:{}},setup(o){const e=o,t=y(()=>typeof e.icon=="object"?e.icon.svg:``);return(s,n)=>(a(),l("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,Js))}}),Xs=g(Ys,[["__scopeId","data-v-717b8b75"]]),Qs={class:"VPSocialLinks"},Zs=h({__name:"VPSocialLinks",props:{links:{}},setup(o){return(e,t)=>(a(),l("div",Qs,[(a(!0),l(M,null,A(e.links,({link:s,icon:n,ariaLabel:r})=>(a(),$(Xs,{key:s,icon:n,link:s,ariaLabel:r},null,8,["icon","link","ariaLabel"]))),128))]))}}),se=g(Zs,[["__scopeId","data-v-ee7a9424"]]),xs={key:0,class:"group translations"},eo={class:"trans-title"},to={key:1,class:"group"},no={class:"item appearance"},so={class:"label"},oo={class:"appearance-action"},ao={key:2,class:"group"},ro={class:"item social-links"},io=h({__name:"VPNavBarExtra",setup(o){const{site:e,theme:t}=L(),{localeLinks:s,currentLang:n}=X({correspondingLink:!0}),r=y(()=>s.value.length&&n.value.label||e.value.appearance||t.value.socialLinks);return(c,p)=>r.value?(a(),$($e,{key:0,class:"VPNavBarExtra",label:"extra navigation"},{default:f(()=>[i(s).length&&i(n).label?(a(),l("div",xs,[v("p",eo,T(i(n).label),1),(a(!0),l(M,null,A(i(s),d=>(a(),$(ne,{key:d.link,item:d},null,8,["item"]))),128))])):m("",!0),i(e).appearance&&i(e).appearance!=="force-dark"&&i(e).appearance!=="force-auto"?(a(),l("div",to,[v("div",no,[v("p",so,T(i(t).darkModeSwitchLabel||"Appearance"),1),v("div",oo,[k(ke)])])])):m("",!0),i(t).socialLinks?(a(),l("div",ao,[v("div",ro,[k(se,{class:"social-links-list",links:i(t).socialLinks},null,8,["links"])])])):m("",!0)]),_:1})):m("",!0)}}),lo=g(io,[["__scopeId","data-v-925effce"]]),co=["aria-expanded"],uo=h({__name:"VPNavBarHamburger",props:{active:{type:Boolean}},emits:["click"],setup(o){return(e,t)=>(a(),l("button",{type:"button",class:I(["VPNavBarHamburger",{active:e.active}]),"aria-label":"mobile navigation","aria-expanded":e.active,"aria-controls":"VPNavScreen",onClick:t[0]||(t[0]=s=>e.$emit("click"))},t[1]||(t[1]=[v("span",{class:"container"},[v("span",{class:"top"}),v("span",{class:"middle"}),v("span",{class:"bottom"})],-1)]),10,co))}}),vo=g(uo,[["__scopeId","data-v-5dea55bf"]]),po=["innerHTML"],fo=h({__name:"VPNavBarMenuLink",props:{item:{}},setup(o){const{page:e}=L();return(t,s)=>(a(),$(H,{class:I({VPNavBarMenuLink:!0,active:i(G)(i(e).relativePath,t.item.activeMatch||t.item.link,!!t.item.activeMatch)}),href:t.item.link,noIcon:t.item.noIcon,target:t.item.target,rel:t.item.rel,tabindex:"0"},{default:f(()=>[v("span",{innerHTML:t.item.text},null,8,po)]),_:1},8,["class","href","noIcon","target","rel"]))}}),mo=g(fo,[["__scopeId","data-v-ed5ac1f6"]]),Oe=h({__name:"VPNavBarMenuGroup",props:{item:{}},setup(o){const e=o,{page:t}=L(),s=r=>"component"in r?!1:"link"in r?G(t.value.relativePath,r.link,!!e.item.activeMatch):r.items.some(s),n=y(()=>s(e.item));return(r,c)=>(a(),$($e,{class:I({VPNavBarMenuGroup:!0,active:i(G)(i(t).relativePath,r.item.activeMatch,!!r.item.activeMatch)||n.value}),button:r.item.text,items:r.item.items},null,8,["class","button","items"]))}}),ho={key:0,"aria-labelledby":"main-nav-aria-label",class:"VPNavBarMenu"},_o=h({__name:"VPNavBarMenu",setup(o){const{theme:e}=L();return(t,s)=>i(e).nav?(a(),l("nav",ho,[s[0]||(s[0]=v("span",{id:"main-nav-aria-label",class:"visually-hidden"}," Main Navigation ",-1)),(a(!0),l(M,null,A(i(e).nav,n=>(a(),l(M,{key:JSON.stringify(n)},["link"in n?(a(),$(mo,{key:0,item:n},null,8,["item"])):"component"in n?(a(),$(F(n.component),j({key:1,ref_for:!0},n.props),null,16)):(a(),$(Oe,{key:2,item:n},null,8,["item"]))],64))),128))])):m("",!0)}}),bo=g(_o,[["__scopeId","data-v-e6d46098"]]);function ko(o){const{localeIndex:e,theme:t}=L();function s(n){var E,C,N;const r=n.split("."),c=(E=t.value.search)==null?void 0:E.options,p=c&&typeof c=="object",d=p&&((N=(C=c.locales)==null?void 0:C[e.value])==null?void 0:N.translations)||null,_=p&&c.translations||null;let S=d,b=_,P=o;const V=r.pop();for(const B of r){let z=null;const W=P==null?void 0:P[B];W&&(z=P=W);const oe=b==null?void 0:b[B];oe&&(z=b=oe);const ae=S==null?void 0:S[B];ae&&(z=S=ae),W||(P=z),oe||(b=z),ae||(S=z)}return(S==null?void 0:S[V])??(b==null?void 0:b[V])??(P==null?void 0:P[V])??""}return s}const go=["aria-label"],$o={class:"DocSearch-Button-Container"},yo={class:"DocSearch-Button-Placeholder"},ye=h({__name:"VPNavBarSearchButton",setup(o){const t=ko({button:{buttonText:"Search",buttonAriaLabel:"Search"}});return(s,n)=>(a(),l("button",{type:"button",class:"DocSearch DocSearch-Button","aria-label":i(t)("button.buttonAriaLabel")},[v("span",$o,[n[0]||(n[0]=v("span",{class:"vp-icon DocSearch-Search-Icon"},null,-1)),v("span",yo,T(i(t)("button.buttonText")),1)]),n[1]||(n[1]=v("span",{class:"DocSearch-Button-Keys"},[v("kbd",{class:"DocSearch-Button-Key"}),v("kbd",{class:"DocSearch-Button-Key"},"K")],-1))],8,go))}}),Po={class:"VPNavBarSearch"},Vo={id:"local-search"},So={key:1,id:"docsearch"},Lo=h({__name:"VPNavBarSearch",setup(o){const e=Xe(()=>Qe(()=>import("./VPLocalSearchBox.j05JUUPf.js"),__vite__mapDeps([0,1]))),t=()=>null,{theme:s}=L(),n=w(!1),r=w(!1);R(()=>{});function c(){n.value||(n.value=!0,setTimeout(p,16))}function p(){const b=new Event("keydown");b.key="k",b.metaKey=!0,window.dispatchEvent(b),setTimeout(()=>{document.querySelector(".DocSearch-Modal")||p()},16)}function d(b){const P=b.target,V=P.tagName;return P.isContentEditable||V==="INPUT"||V==="SELECT"||V==="TEXTAREA"}const _=w(!1);le("k",b=>{(b.ctrlKey||b.metaKey)&&(b.preventDefault(),_.value=!0)}),le("/",b=>{d(b)||(b.preventDefault(),_.value=!0)});const S="local";return(b,P)=>{var V;return a(),l("div",Po,[i(S)==="local"?(a(),l(M,{key:0},[_.value?(a(),$(i(e),{key:0,onClose:P[0]||(P[0]=E=>_.value=!1)})):m("",!0),v("div",Vo,[k(ye,{onClick:P[1]||(P[1]=E=>_.value=!0)})])],64)):i(S)==="algolia"?(a(),l(M,{key:1},[n.value?(a(),$(i(t),{key:0,algolia:((V=i(s).search)==null?void 0:V.options)??i(s).algolia,onVnodeBeforeMount:P[2]||(P[2]=E=>r.value=!0)},null,8,["algolia"])):m("",!0),r.value?m("",!0):(a(),l("div",So,[k(ye,{onClick:c})]))],64)):m("",!0)])}}}),To=h({__name:"VPNavBarSocialLinks",setup(o){const{theme:e}=L();return(t,s)=>i(e).socialLinks?(a(),$(se,{key:0,class:"VPNavBarSocialLinks",links:i(e).socialLinks},null,8,["links"])):m("",!0)}}),wo=g(To,[["__scopeId","data-v-164c457f"]]),No=["href","rel","target"],Io={key:1},Mo={key:2},Eo=h({__name:"VPNavBarTitle",setup(o){const{site:e,theme:t}=L(),{hasSidebar:s}=U(),{currentLang:n}=X(),r=y(()=>{var d;return typeof t.value.logoLink=="string"?t.value.logoLink:(d=t.value.logoLink)==null?void 0:d.link}),c=y(()=>{var d;return typeof t.value.logoLink=="string"||(d=t.value.logoLink)==null?void 0:d.rel}),p=y(()=>{var d;return typeof t.value.logoLink=="string"||(d=t.value.logoLink)==null?void 0:d.target});return(d,_)=>(a(),l("div",{class:I(["VPNavBarTitle",{"has-sidebar":i(s)}])},[v("a",{class:"title",href:r.value??i(_e)(i(n).link),rel:c.value,target:p.value},[u(d.$slots,"nav-bar-title-before",{},void 0,!0),i(t).logo?(a(),$(Z,{key:0,class:"logo",image:i(t).logo},null,8,["image"])):m("",!0),i(t).siteTitle?(a(),l("span",Io,T(i(t).siteTitle),1)):i(t).siteTitle===void 0?(a(),l("span",Mo,T(i(e).title),1)):m("",!0),u(d.$slots,"nav-bar-title-after",{},void 0,!0)],8,No)],2))}}),Co=g(Eo,[["__scopeId","data-v-28a961f9"]]),Ao={class:"items"},Bo={class:"title"},Ho=h({__name:"VPNavBarTranslations",setup(o){const{theme:e}=L(),{localeLinks:t,currentLang:s}=X({correspondingLink:!0});return(n,r)=>i(t).length&&i(s).label?(a(),$($e,{key:0,class:"VPNavBarTranslations",icon:"vpi-languages",label:i(e).langMenuLabel||"Change language"},{default:f(()=>[v("div",Ao,[v("p",Bo,T(i(s).label),1),(a(!0),l(M,null,A(i(t),c=>(a(),$(ne,{key:c.link,item:c},null,8,["item"]))),128))])]),_:1},8,["label"])):m("",!0)}}),Oo=g(Ho,[["__scopeId","data-v-c80d9ad0"]]),Do={class:"wrapper"},Fo={class:"container"},Ro={class:"title"},Uo={class:"content"},zo={class:"content-body"},jo=h({__name:"VPNavBar",props:{isScreenOpen:{type:Boolean}},emits:["toggle-screen"],setup(o){const e=o,{y:t}=Ne(),{hasSidebar:s}=U(),{frontmatter:n}=L(),r=w({});return me(()=>{r.value={"has-sidebar":s.value,home:n.value.layout==="home",top:t.value===0,"screen-open":e.isScreenOpen}}),(c,p)=>(a(),l("div",{class:I(["VPNavBar",r.value])},[v("div",Do,[v("div",Fo,[v("div",Ro,[k(Co,null,{"nav-bar-title-before":f(()=>[u(c.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":f(()=>[u(c.$slots,"nav-bar-title-after",{},void 0,!0)]),_:3})]),v("div",Uo,[v("div",zo,[u(c.$slots,"nav-bar-content-before",{},void 0,!0),k(Lo,{class:"search"}),k(bo,{class:"menu"}),k(Oo,{class:"translations"}),k(ws,{class:"appearance"}),k(wo,{class:"social-links"}),k(lo,{class:"extra"}),u(c.$slots,"nav-bar-content-after",{},void 0,!0),k(vo,{class:"hamburger",active:c.isScreenOpen,onClick:p[0]||(p[0]=d=>c.$emit("toggle-screen"))},null,8,["active"])])])])]),p[1]||(p[1]=v("div",{class:"divider"},[v("div",{class:"divider-line"})],-1))],2))}}),Go=g(jo,[["__scopeId","data-v-822684d1"]]),Ko={key:0,class:"VPNavScreenAppearance"},Wo={class:"text"},qo=h({__name:"VPNavScreenAppearance",setup(o){const{site:e,theme:t}=L();return(s,n)=>i(e).appearance&&i(e).appearance!=="force-dark"&&i(e).appearance!=="force-auto"?(a(),l("div",Ko,[v("p",Wo,T(i(t).darkModeSwitchLabel||"Appearance"),1),k(ke)])):m("",!0)}}),Jo=g(qo,[["__scopeId","data-v-ffb44008"]]),Yo=h({__name:"VPNavScreenMenuLink",props:{item:{}},setup(o){const e=q("close-screen");return(t,s)=>(a(),$(H,{class:"VPNavScreenMenuLink",href:t.item.link,target:t.item.target,rel:t.item.rel,onClick:i(e),innerHTML:t.item.text},null,8,["href","target","rel","onClick","innerHTML"]))}}),Xo=g(Yo,[["__scopeId","data-v-27d04aeb"]]),Qo=h({__name:"VPNavScreenMenuGroupLink",props:{item:{}},setup(o){const e=q("close-screen");return(t,s)=>(a(),$(H,{class:"VPNavScreenMenuGroupLink",href:t.item.link,target:t.item.target,rel:t.item.rel,onClick:i(e)},{default:f(()=>[O(T(t.item.text),1)]),_:1},8,["href","target","rel","onClick"]))}}),De=g(Qo,[["__scopeId","data-v-7179dbb7"]]),Zo={class:"VPNavScreenMenuGroupSection"},xo={key:0,class:"title"},ea=h({__name:"VPNavScreenMenuGroupSection",props:{text:{},items:{}},setup(o){return(e,t)=>(a(),l("div",Zo,[e.text?(a(),l("p",xo,T(e.text),1)):m("",!0),(a(!0),l(M,null,A(e.items,s=>(a(),$(De,{key:s.text,item:s},null,8,["item"]))),128))]))}}),ta=g(ea,[["__scopeId","data-v-4b8941ac"]]),na=["aria-controls","aria-expanded"],sa=["innerHTML"],oa=["id"],aa={key:0,class:"item"},ra={key:1,class:"item"},ia={key:2,class:"group"},la=h({__name:"VPNavScreenMenuGroup",props:{text:{},items:{}},setup(o){const e=o,t=w(!1),s=y(()=>`NavScreenGroup-${e.text.replace(" ","-").toLowerCase()}`);function n(){t.value=!t.value}return(r,c)=>(a(),l("div",{class:I(["VPNavScreenMenuGroup",{open:t.value}])},[v("button",{class:"button","aria-controls":s.value,"aria-expanded":t.value,onClick:n},[v("span",{class:"button-text",innerHTML:r.text},null,8,sa),c[0]||(c[0]=v("span",{class:"vpi-plus button-icon"},null,-1))],8,na),v("div",{id:s.value,class:"items"},[(a(!0),l(M,null,A(r.items,p=>(a(),l(M,{key:JSON.stringify(p)},["link"in p?(a(),l("div",aa,[k(De,{item:p},null,8,["item"])])):"component"in p?(a(),l("div",ra,[(a(),$(F(p.component),j({ref_for:!0},p.props,{"screen-menu":""}),null,16))])):(a(),l("div",ia,[k(ta,{text:p.text,items:p.items},null,8,["text","items"])]))],64))),128))],8,oa)],2))}}),Fe=g(la,[["__scopeId","data-v-875057a5"]]),ca={key:0,class:"VPNavScreenMenu"},ua=h({__name:"VPNavScreenMenu",setup(o){const{theme:e}=L();return(t,s)=>i(e).nav?(a(),l("nav",ca,[(a(!0),l(M,null,A(i(e).nav,n=>(a(),l(M,{key:JSON.stringify(n)},["link"in n?(a(),$(Xo,{key:0,item:n},null,8,["item"])):"component"in n?(a(),$(F(n.component),j({key:1,ref_for:!0},n.props,{"screen-menu":""}),null,16)):(a(),$(Fe,{key:2,text:n.text||"",items:n.items},null,8,["text","items"]))],64))),128))])):m("",!0)}}),da=h({__name:"VPNavScreenSocialLinks",setup(o){const{theme:e}=L();return(t,s)=>i(e).socialLinks?(a(),$(se,{key:0,class:"VPNavScreenSocialLinks",links:i(e).socialLinks},null,8,["links"])):m("",!0)}}),va={class:"list"},pa=h({__name:"VPNavScreenTranslations",setup(o){const{localeLinks:e,currentLang:t}=X({correspondingLink:!0}),s=w(!1);function n(){s.value=!s.value}return(r,c)=>i(e).length&&i(t).label?(a(),l("div",{key:0,class:I(["VPNavScreenTranslations",{open:s.value}])},[v("button",{class:"title",onClick:n},[c[0]||(c[0]=v("span",{class:"vpi-languages icon lang"},null,-1)),O(" "+T(i(t).label)+" ",1),c[1]||(c[1]=v("span",{class:"vpi-chevron-down icon chevron"},null,-1))]),v("ul",va,[(a(!0),l(M,null,A(i(e),p=>(a(),l("li",{key:p.link,class:"item"},[k(H,{class:"link",href:p.link},{default:f(()=>[O(T(p.text),1)]),_:2},1032,["href"])]))),128))])],2)):m("",!0)}}),fa=g(pa,[["__scopeId","data-v-362991c2"]]),ma={class:"container"},ha=h({__name:"VPNavScreen",props:{open:{type:Boolean}},setup(o){const e=w(null),t=Ie(te?document.body:null);return(s,n)=>(a(),$(ve,{name:"fade",onEnter:n[0]||(n[0]=r=>t.value=!0),onAfterLeave:n[1]||(n[1]=r=>t.value=!1)},{default:f(()=>[s.open?(a(),l("div",{key:0,class:"VPNavScreen",ref_key:"screen",ref:e,id:"VPNavScreen"},[v("div",ma,[u(s.$slots,"nav-screen-content-before",{},void 0,!0),k(ua,{class:"menu"}),k(fa,{class:"translations"}),k(Jo,{class:"appearance"}),k(da,{class:"social-links"}),u(s.$slots,"nav-screen-content-after",{},void 0,!0)])],512)):m("",!0)]),_:3}))}}),_a=g(ha,[["__scopeId","data-v-833aabba"]]),ba={key:0,class:"VPNav"},ka=h({__name:"VPNav",setup(o){const{isScreenOpen:e,closeScreen:t,toggleScreen:s}=bs(),{frontmatter:n}=L(),r=y(()=>n.value.navbar!==!1);return he("close-screen",t),x(()=>{te&&document.documentElement.classList.toggle("hide-nav",!r.value)}),(c,p)=>r.value?(a(),l("header",ba,[k(Go,{"is-screen-open":i(e),onToggleScreen:i(s)},{"nav-bar-title-before":f(()=>[u(c.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":f(()=>[u(c.$slots,"nav-bar-title-after",{},void 0,!0)]),"nav-bar-content-before":f(()=>[u(c.$slots,"nav-bar-content-before",{},void 0,!0)]),"nav-bar-content-after":f(()=>[u(c.$slots,"nav-bar-content-after",{},void 0,!0)]),_:3},8,["is-screen-open","onToggleScreen"]),k(_a,{open:i(e)},{"nav-screen-content-before":f(()=>[u(c.$slots,"nav-screen-content-before",{},void 0,!0)]),"nav-screen-content-after":f(()=>[u(c.$slots,"nav-screen-content-after",{},void 0,!0)]),_:3},8,["open"])])):m("",!0)}}),ga=g(ka,[["__scopeId","data-v-f1e365da"]]),$a=["role","tabindex"],ya={key:1,class:"items"},Pa=h({__name:"VPSidebarItem",props:{item:{},depth:{}},setup(o){const e=o,{collapsed:t,collapsible:s,isLink:n,isActiveLink:r,hasActiveLink:c,hasChildren:p,toggle:d}=yt(y(()=>e.item)),_=y(()=>p.value?"section":"div"),S=y(()=>n.value?"a":"div"),b=y(()=>p.value?e.depth+2===7?"p":`h${e.depth+2}`:"p"),P=y(()=>n.value?void 0:"button"),V=y(()=>[[`level-${e.depth}`],{collapsible:s.value},{collapsed:t.value},{"is-link":n.value},{"is-active":r.value},{"has-active":c.value}]);function E(N){"key"in N&&N.key!=="Enter"||!e.item.link&&d()}function C(){e.item.link&&d()}return(N,B)=>{const z=K("VPSidebarItem",!0);return a(),$(F(_.value),{class:I(["VPSidebarItem",V.value])},{default:f(()=>[N.item.text?(a(),l("div",j({key:0,class:"item",role:P.value},Ze(N.item.items?{click:E,keydown:E}:{},!0),{tabindex:N.item.items&&0}),[B[1]||(B[1]=v("div",{class:"indicator"},null,-1)),N.item.link?(a(),$(H,{key:0,tag:S.value,class:"link",href:N.item.link,rel:N.item.rel,target:N.item.target},{default:f(()=>[(a(),$(F(b.value),{class:"text",innerHTML:N.item.text},null,8,["innerHTML"]))]),_:1},8,["tag","href","rel","target"])):(a(),$(F(b.value),{key:1,class:"text",innerHTML:N.item.text},null,8,["innerHTML"])),N.item.collapsed!=null&&N.item.items&&N.item.items.length?(a(),l("div",{key:2,class:"caret",role:"button","aria-label":"toggle section",onClick:C,onKeydown:xe(C,["enter"]),tabindex:"0"},B[0]||(B[0]=[v("span",{class:"vpi-chevron-right caret-icon"},null,-1)]),32)):m("",!0)],16,$a)):m("",!0),N.item.items&&N.item.items.length?(a(),l("div",ya,[N.depth<5?(a(!0),l(M,{key:0},A(N.item.items,W=>(a(),$(z,{key:W.text,item:W,depth:N.depth+1},null,8,["item","depth"]))),128)):m("",!0)])):m("",!0)]),_:1},8,["class"])}}}),Va=g(Pa,[["__scopeId","data-v-196b2e5f"]]),Sa=h({__name:"VPSidebarGroup",props:{items:{}},setup(o){const e=w(!0);let t=null;return R(()=>{t=setTimeout(()=>{t=null,e.value=!1},300)}),et(()=>{t!=null&&(clearTimeout(t),t=null)}),(s,n)=>(a(!0),l(M,null,A(s.items,r=>(a(),l("div",{key:r.text,class:I(["group",{"no-transition":e.value}])},[k(Va,{item:r,depth:0},null,8,["item"])],2))),128))}}),La=g(Sa,[["__scopeId","data-v-9e426adc"]]),Ta={class:"nav",id:"VPSidebarNav","aria-labelledby":"sidebar-aria-label",tabindex:"-1"},wa=h({__name:"VPSidebar",props:{open:{type:Boolean}},setup(o){const{sidebarGroups:e,hasSidebar:t}=U(),s=o,n=w(null),r=Ie(te?document.body:null);D([s,n],()=>{var p;s.open?(r.value=!0,(p=n.value)==null||p.focus()):r.value=!1},{immediate:!0,flush:"post"});const c=w(0);return D(e,()=>{c.value+=1},{deep:!0}),(p,d)=>i(t)?(a(),l("aside",{key:0,class:I(["VPSidebar",{open:p.open}]),ref_key:"navEl",ref:n,onClick:d[0]||(d[0]=tt(()=>{},["stop"]))},[d[2]||(d[2]=v("div",{class:"curtain"},null,-1)),v("nav",Ta,[d[1]||(d[1]=v("span",{class:"visually-hidden",id:"sidebar-aria-label"}," Sidebar Navigation ",-1)),u(p.$slots,"sidebar-nav-before",{},void 0,!0),(a(),$(La,{items:i(e),key:c.value},null,8,["items"])),u(p.$slots,"sidebar-nav-after",{},void 0,!0)])],2)):m("",!0)}}),Na=g(wa,[["__scopeId","data-v-18756405"]]),Ia=h({__name:"VPSkipLink",setup(o){const e=Y(),t=w();D(()=>e.path,()=>t.value.focus());function s({target:n}){const r=document.getElementById(decodeURIComponent(n.hash).slice(1));if(r){const c=()=>{r.removeAttribute("tabindex"),r.removeEventListener("blur",c)};r.setAttribute("tabindex","-1"),r.addEventListener("blur",c),r.focus(),window.scrollTo(0,0)}}return(n,r)=>(a(),l(M,null,[v("span",{ref_key:"backToTop",ref:t,tabindex:"-1"},null,512),v("a",{href:"#VPContent",class:"VPSkipLink visually-hidden",onClick:s}," Skip to content ")],64))}}),Ma=g(Ia,[["__scopeId","data-v-c3508ec8"]]),Ea=h({__name:"Layout",setup(o){const{isOpen:e,open:t,close:s}=U(),n=Y();D(()=>n.path,s),$t(e,s);const{frontmatter:r}=L(),c=Me(),p=y(()=>!!c["home-hero-image"]);return he("hero-image-slot-exists",p),(d,_)=>{const S=K("Content");return i(r).layout!==!1?(a(),l("div",{key:0,class:I(["Layout",i(r).pageClass])},[u(d.$slots,"layout-top",{},void 0,!0),k(Ma),k(lt,{class:"backdrop",show:i(e),onClick:i(s)},null,8,["show","onClick"]),k(ga,null,{"nav-bar-title-before":f(()=>[u(d.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":f(()=>[u(d.$slots,"nav-bar-title-after",{},void 0,!0)]),"nav-bar-content-before":f(()=>[u(d.$slots,"nav-bar-content-before",{},void 0,!0)]),"nav-bar-content-after":f(()=>[u(d.$slots,"nav-bar-content-after",{},void 0,!0)]),"nav-screen-content-before":f(()=>[u(d.$slots,"nav-screen-content-before",{},void 0,!0)]),"nav-screen-content-after":f(()=>[u(d.$slots,"nav-screen-content-after",{},void 0,!0)]),_:3}),k(_s,{open:i(e),onOpenMenu:i(t)},null,8,["open","onOpenMenu"]),k(Na,{open:i(e)},{"sidebar-nav-before":f(()=>[u(d.$slots,"sidebar-nav-before",{},void 0,!0)]),"sidebar-nav-after":f(()=>[u(d.$slots,"sidebar-nav-after",{},void 0,!0)]),_:3},8,["open"]),k(ts,null,{"page-top":f(()=>[u(d.$slots,"page-top",{},void 0,!0)]),"page-bottom":f(()=>[u(d.$slots,"page-bottom",{},void 0,!0)]),"not-found":f(()=>[u(d.$slots,"not-found",{},void 0,!0)]),"home-hero-before":f(()=>[u(d.$slots,"home-hero-before",{},void 0,!0)]),"home-hero-info-before":f(()=>[u(d.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":f(()=>[u(d.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":f(()=>[u(d.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":f(()=>[u(d.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":f(()=>[u(d.$slots,"home-hero-image",{},void 0,!0)]),"home-hero-after":f(()=>[u(d.$slots,"home-hero-after",{},void 0,!0)]),"home-features-before":f(()=>[u(d.$slots,"home-features-before",{},void 0,!0)]),"home-features-after":f(()=>[u(d.$slots,"home-features-after",{},void 0,!0)]),"doc-footer-before":f(()=>[u(d.$slots,"doc-footer-before",{},void 0,!0)]),"doc-before":f(()=>[u(d.$slots,"doc-before",{},void 0,!0)]),"doc-after":f(()=>[u(d.$slots,"doc-after",{},void 0,!0)]),"doc-top":f(()=>[u(d.$slots,"doc-top",{},void 0,!0)]),"doc-bottom":f(()=>[u(d.$slots,"doc-bottom",{},void 0,!0)]),"aside-top":f(()=>[u(d.$slots,"aside-top",{},void 0,!0)]),"aside-bottom":f(()=>[u(d.$slots,"aside-bottom",{},void 0,!0)]),"aside-outline-before":f(()=>[u(d.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":f(()=>[u(d.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":f(()=>[u(d.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":f(()=>[u(d.$slots,"aside-ads-after",{},void 0,!0)]),_:3}),k(rs),u(d.$slots,"layout-bottom",{},void 0,!0)],2)):(a(),$(S,{key:1}))}}}),Ca=g(Ea,[["__scopeId","data-v-a9a9e638"]]),Aa={},Ba={class:"VPTeamPage"};function Ha(o,e){return a(),l("div",Ba,[u(o.$slots,"default")])}const Nr=g(Aa,[["render",Ha],["__scopeId","data-v-c2f8e101"]]),Oa={},Da={class:"VPTeamPageTitle"},Fa={key:0,class:"title"},Ra={key:1,class:"lead"};function Ua(o,e){return a(),l("div",Da,[o.$slots.title?(a(),l("h1",Fa,[u(o.$slots,"title",{},void 0,!0)])):m("",!0),o.$slots.lead?(a(),l("p",Ra,[u(o.$slots,"lead",{},void 0,!0)])):m("",!0)])}const Ir=g(Oa,[["render",Ua],["__scopeId","data-v-e277e15c"]]),za={},ja={class:"VPTeamPageSection"},Ga={class:"title"},Ka={key:0,class:"title-text"},Wa={key:0,class:"lead"},qa={key:1,class:"members"};function Ja(o,e){return a(),l("section",ja,[v("div",Ga,[e[0]||(e[0]=v("div",{class:"title-line"},null,-1)),o.$slots.title?(a(),l("h2",Ka,[u(o.$slots,"title",{},void 0,!0)])):m("",!0)]),o.$slots.lead?(a(),l("p",Wa,[u(o.$slots,"lead",{},void 0,!0)])):m("",!0),o.$slots.members?(a(),l("div",qa,[u(o.$slots,"members",{},void 0,!0)])):m("",!0)])}const Mr=g(za,[["render",Ja],["__scopeId","data-v-d43bc49d"]]),Ya={class:"profile"},Xa={class:"avatar"},Qa=["src","alt"],Za={class:"data"},xa={class:"name"},er={key:0,class:"affiliation"},tr={key:0,class:"title"},nr={key:1,class:"at"},sr=["innerHTML"],or={key:2,class:"links"},ar={key:0,class:"sp"},rr=h({__name:"VPTeamMembersItem",props:{size:{default:"medium"},member:{}},setup(o){return(e,t)=>(a(),l("article",{class:I(["VPTeamMembersItem",[e.size]])},[v("div",Ya,[v("figure",Xa,[v("img",{class:"avatar-img",src:e.member.avatar,alt:e.member.name},null,8,Qa)]),v("div",Za,[v("h1",xa,T(e.member.name),1),e.member.title||e.member.org?(a(),l("p",er,[e.member.title?(a(),l("span",tr,T(e.member.title),1)):m("",!0),e.member.title&&e.member.org?(a(),l("span",nr," @ ")):m("",!0),e.member.org?(a(),$(H,{key:2,class:I(["org",{link:e.member.orgLink}]),href:e.member.orgLink,"no-icon":""},{default:f(()=>[O(T(e.member.org),1)]),_:1},8,["class","href"])):m("",!0)])):m("",!0),e.member.desc?(a(),l("p",{key:1,class:"desc",innerHTML:e.member.desc},null,8,sr)):m("",!0),e.member.links?(a(),l("div",or,[k(se,{links:e.member.links},null,8,["links"])])):m("",!0)])]),e.member.sponsor?(a(),l("div",ar,[k(H,{class:"sp-link",href:e.member.sponsor,"no-icon":""},{default:f(()=>[t[0]||(t[0]=v("span",{class:"vpi-heart sp-icon"},null,-1)),O(" "+T(e.member.actionText||"Sponsor"),1)]),_:1},8,["href"])])):m("",!0)],2))}}),ir=g(rr,[["__scopeId","data-v-f9987cb6"]]),lr={class:"container"},cr=h({__name:"VPTeamMembers",props:{size:{default:"medium"},members:{}},setup(o){const e=o,t=y(()=>[e.size,`count-${e.members.length}`]);return(s,n)=>(a(),l("div",{class:I(["VPTeamMembers",t.value])},[v("div",lr,[(a(!0),l(M,null,A(s.members,r=>(a(),l("div",{key:r.name,class:"item"},[k(ir,{size:s.size,member:r},null,8,["size","member"])]))),128))])],2))}}),Er=g(cr,[["__scopeId","data-v-fba19bad"]]),Pe={Layout:Ca,enhanceApp:({app:o})=>{o.component("Badge",at)}},ur=h({__name:"VersionPicker",props:{screenMenu:{type:Boolean}},setup(o){Y();const e=w([]),t=w("Versions"),s=()=>new Promise(n=>{const r=setInterval(()=>{window.DOC_VERSIONS&&window.DOCUMENTER_CURRENT_VERSION&&(clearInterval(r),n({versions:window.DOC_VERSIONS,currentVersion:window.DOCUMENTER_CURRENT_VERSION}))},100)});return R(async()=>{const n=await s();e.value=n.versions.map(r=>({text:r,link:`${window.location.origin}/${r}/`})),t.value=n.currentVersion}),(n,r)=>n.screenMenu?(a(),$(Fe,{key:1,text:t.value,items:e.value,class:"VPVersionPicker"},null,8,["text","items"])):(a(),$(Oe,{key:0,item:{text:t.value,items:e.value},class:"VPVersionPicker"},null,8,["item"]))}}),dr=g(ur,[["__scopeId","data-v-53ba4430"]]),vr=o=>{if(typeof document>"u")return{stabilizeScrollPosition:n=>async(...r)=>n(...r)};const e=document.documentElement;return{stabilizeScrollPosition:s=>async(...n)=>{const r=s(...n),c=o.value;if(!c)return r;const p=c.offsetTop-e.scrollTop;return await we(),e.scrollTop=c.offsetTop-p,r}}},Re="vitepress:tabSharedState",J=typeof localStorage<"u"?localStorage:null,Ue="vitepress:tabsSharedState",pr=()=>{const o=J==null?void 0:J.getItem(Ue);if(o)try{return JSON.parse(o)}catch{}return{}},fr=o=>{J&&J.setItem(Ue,JSON.stringify(o))},mr=o=>{const e=nt({});D(()=>e.content,(t,s)=>{t&&s&&fr(t)},{deep:!0}),o.provide(Re,e)},hr=(o,e)=>{const t=q(Re);if(!t)throw new Error("[vitepress-plugin-tabs] TabsSharedState should be injected");R(()=>{t.content||(t.content=pr())});const s=w(),n=y({get(){var d;const c=e.value,p=o.value;if(c){const _=(d=t.content)==null?void 0:d[c];if(_&&p.includes(_))return _}else{const _=s.value;if(_)return _}return p[0]},set(c){const p=e.value;p?t.content&&(t.content[p]=c):s.value=c}});return{selected:n,select:c=>{n.value=c}}};let Ve=0;const _r=()=>(Ve++,""+Ve);function br(){const o=Me();return y(()=>{var s;const t=(s=o.default)==null?void 0:s.call(o);return t?t.filter(n=>typeof n.type=="object"&&"__name"in n.type&&n.type.__name==="PluginTabsTab"&&n.props).map(n=>{var r;return(r=n.props)==null?void 0:r.label}):[]})}const ze="vitepress:tabSingleState",kr=o=>{he(ze,o)},gr=()=>{const o=q(ze);if(!o)throw new Error("[vitepress-plugin-tabs] TabsSingleState should be injected");return o},$r={class:"plugin-tabs"},yr=["id","aria-selected","aria-controls","tabindex","onClick"],Pr=h({__name:"PluginTabs",props:{sharedStateKey:{}},setup(o){const e=o,t=br(),{selected:s,select:n}=hr(t,st(e,"sharedStateKey")),r=w(),{stabilizeScrollPosition:c}=vr(r),p=c(n),d=w([]),_=b=>{var E;const P=t.value.indexOf(s.value);let V;b.key==="ArrowLeft"?V=P>=1?P-1:t.value.length-1:b.key==="ArrowRight"&&(V=P(a(),l("div",$r,[v("div",{ref_key:"tablist",ref:r,class:"plugin-tabs--tab-list",role:"tablist",onKeydown:_},[(a(!0),l(M,null,A(i(t),V=>(a(),l("button",{id:`tab-${V}-${i(S)}`,ref_for:!0,ref_key:"buttonRefs",ref:d,key:V,role:"tab",class:"plugin-tabs--tab","aria-selected":V===i(s),"aria-controls":`panel-${V}-${i(S)}`,tabindex:V===i(s)?0:-1,onClick:()=>i(p)(V)},T(V),9,yr))),128))],544),u(b.$slots,"default")]))}}),Vr=["id","aria-labelledby"],Sr=h({__name:"PluginTabsTab",props:{label:{}},setup(o){const{uid:e,selected:t}=gr();return(s,n)=>i(t)===s.label?(a(),l("div",{key:0,id:`panel-${s.label}-${i(e)}`,class:"plugin-tabs--content",role:"tabpanel",tabindex:"0","aria-labelledby":`tab-${s.label}-${i(e)}`},[u(s.$slots,"default",{},void 0,!0)],8,Vr)):m("",!0)}}),Lr=g(Sr,[["__scopeId","data-v-9b0d03d2"]]),Tr=o=>{mr(o),o.component("PluginTabs",Pr),o.component("PluginTabsTab",Lr)},Cr={extends:Pe,Layout(){return ot(Pe.Layout,null,{})},enhanceApp({app:o,router:e,siteData:t}){if(Tr(o),o.component("VersionPicker",dr),typeof window<"u"){let s=function(){if(!(window.DOCUMENTER_NEWEST===void 0||window.DOCUMENTER_CURRENT_VERSION===void 0||window.DOCUMENTER_STABLE===void 0)&&window.DOCUMENTER_NEWEST===window.DOCUMENTER_CURRENT_VERSION){const n=window.location.href.replace(window.DOCUMENTER_CURRENT_VERSION,window.DOCUMENTER_STABLE);window.history.replaceState({additionalInformation:"URL rewritten to stable"},"Makie",n);return}};D(()=>e.route.data.relativePath,s,{immediate:!0}),document.addEventListener("DOMContentLoaded",s)}}};export{Cr as R,Ir as V,Mr as a,Er as b,Nr as c,ko as d,L as u}; +const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/chunks/VPLocalSearchBox.BpdWDoNn.js","assets/chunks/framework.JKTEW8jd.js"])))=>i.map(i=>d[i]); +import{d as h,o as a,c as l,r as u,n as I,a as O,t as T,b as $,w as f,e as m,T as ve,_ as g,u as je,i as Ge,f as Ke,g as pe,h as y,j as v,k as i,l as G,m as ie,p as w,q as D,s as x,v as R,x as fe,y as me,z as We,A as qe,B as K,F as M,C as A,D as Se,E as ee,G as k,H as F,I as Le,J as Y,K as j,L as q,M as Je,N as Te,O as le,P as we,Q as Ne,R as te,S as Ye,U as Xe,V as Qe,W as Ie,X as he,Y as Ze,Z as xe,$ as et,a0 as tt,a1 as Me,a2 as nt,a3 as st,a4 as ot}from"./framework.JKTEW8jd.js";const at=h({__name:"VPBadge",props:{text:{},type:{default:"tip"}},setup(o){return(e,t)=>(a(),l("span",{class:I(["VPBadge",e.type])},[u(e.$slots,"default",{},()=>[O(T(e.text),1)])],2))}}),rt={key:0,class:"VPBackdrop"},it=h({__name:"VPBackdrop",props:{show:{type:Boolean}},setup(o){return(e,t)=>(a(),$(ve,{name:"fade"},{default:f(()=>[e.show?(a(),l("div",rt)):m("",!0)]),_:1}))}}),lt=g(it,[["__scopeId","data-v-b06cdb19"]]),L=je;function ct(o,e){let t,s=!1;return()=>{t&&clearTimeout(t),s?t=setTimeout(o,e):(o(),(s=!0)&&setTimeout(()=>s=!1,e))}}function ce(o){return/^\//.test(o)?o:`/${o}`}function _e(o){const{pathname:e,search:t,hash:s,protocol:n}=new URL(o,"http://a.com");if(Ge(o)||o.startsWith("#")||!n.startsWith("http")||!Ke(e))return o;const{site:r}=L(),c=e.endsWith("/")||e.endsWith(".html")?o:o.replace(/(?:(^\.+)\/)?.*$/,`$1${e.replace(/(\.md)?$/,r.value.cleanUrls?"":".html")}${t}${s}`);return pe(c)}function X({correspondingLink:o=!1}={}){const{site:e,localeIndex:t,page:s,theme:n,hash:r}=L(),c=y(()=>{var d,_;return{label:(d=e.value.locales[t.value])==null?void 0:d.label,link:((_=e.value.locales[t.value])==null?void 0:_.link)||(t.value==="root"?"/":`/${t.value}/`)}});return{localeLinks:y(()=>Object.entries(e.value.locales).flatMap(([d,_])=>c.value.label===_.label?[]:{text:_.label,link:ut(_.link||(d==="root"?"/":`/${d}/`),n.value.i18nRouting!==!1&&o,s.value.relativePath.slice(c.value.link.length-1),!e.value.cleanUrls)+r.value})),currentLang:c}}function ut(o,e,t,s){return e?o.replace(/\/$/,"")+ce(t.replace(/(^|\/)index\.md$/,"$1").replace(/\.md$/,s?".html":"")):o}const dt={class:"NotFound"},vt={class:"code"},pt={class:"title"},ft={class:"quote"},mt={class:"action"},ht=["href","aria-label"],_t=h({__name:"NotFound",setup(o){const{theme:e}=L(),{currentLang:t}=X();return(s,n)=>{var r,c,p,d,_;return a(),l("div",dt,[v("p",vt,T(((r=i(e).notFound)==null?void 0:r.code)??"404"),1),v("h1",pt,T(((c=i(e).notFound)==null?void 0:c.title)??"PAGE NOT FOUND"),1),n[0]||(n[0]=v("div",{class:"divider"},null,-1)),v("blockquote",ft,T(((p=i(e).notFound)==null?void 0:p.quote)??"But if you don't change your direction, and if you keep looking, you may end up where you are heading."),1),v("div",mt,[v("a",{class:"link",href:i(pe)(i(t).link),"aria-label":((d=i(e).notFound)==null?void 0:d.linkLabel)??"go to home"},T(((_=i(e).notFound)==null?void 0:_.linkText)??"Take me home"),9,ht)])])}}}),bt=g(_t,[["__scopeId","data-v-951cab6c"]]);function Ee(o,e){if(Array.isArray(o))return Q(o);if(o==null)return[];e=ce(e);const t=Object.keys(o).sort((n,r)=>r.split("/").length-n.split("/").length).find(n=>e.startsWith(ce(n))),s=t?o[t]:[];return Array.isArray(s)?Q(s):Q(s.items,s.base)}function kt(o){const e=[];let t=0;for(const s in o){const n=o[s];if(n.items){t=e.push(n);continue}e[t]||e.push({items:[]}),e[t].items.push(n)}return e}function gt(o){const e=[];function t(s){for(const n of s)n.text&&n.link&&e.push({text:n.text,link:n.link,docFooterText:n.docFooterText}),n.items&&t(n.items)}return t(o),e}function ue(o,e){return Array.isArray(e)?e.some(t=>ue(o,t)):G(o,e.link)?!0:e.items?ue(o,e.items):!1}function Q(o,e){return[...o].map(t=>{const s={...t},n=s.base||e;return n&&s.link&&(s.link=n+s.link),s.items&&(s.items=Q(s.items,n)),s})}function U(){const{frontmatter:o,page:e,theme:t}=L(),s=ie("(min-width: 960px)"),n=w(!1),r=y(()=>{const C=t.value.sidebar,N=e.value.relativePath;return C?Ee(C,N):[]}),c=w(r.value);D(r,(C,N)=>{JSON.stringify(C)!==JSON.stringify(N)&&(c.value=r.value)});const p=y(()=>o.value.sidebar!==!1&&c.value.length>0&&o.value.layout!=="home"),d=y(()=>_?o.value.aside==null?t.value.aside==="left":o.value.aside==="left":!1),_=y(()=>o.value.layout==="home"?!1:o.value.aside!=null?!!o.value.aside:t.value.aside!==!1),S=y(()=>p.value&&s.value),b=y(()=>p.value?kt(c.value):[]);function P(){n.value=!0}function V(){n.value=!1}function E(){n.value?V():P()}return{isOpen:n,sidebar:c,sidebarGroups:b,hasSidebar:p,hasAside:_,leftAside:d,isSidebarEnabled:S,open:P,close:V,toggle:E}}function $t(o,e){let t;x(()=>{t=o.value?document.activeElement:void 0}),R(()=>{window.addEventListener("keyup",s)}),fe(()=>{window.removeEventListener("keyup",s)});function s(n){n.key==="Escape"&&o.value&&(e(),t==null||t.focus())}}function yt(o){const{page:e,hash:t}=L(),s=w(!1),n=y(()=>o.value.collapsed!=null),r=y(()=>!!o.value.link),c=w(!1),p=()=>{c.value=G(e.value.relativePath,o.value.link)};D([e,o,t],p),R(p);const d=y(()=>c.value?!0:o.value.items?ue(e.value.relativePath,o.value.items):!1),_=y(()=>!!(o.value.items&&o.value.items.length));x(()=>{s.value=!!(n.value&&o.value.collapsed)}),me(()=>{(c.value||d.value)&&(s.value=!1)});function S(){n.value&&(s.value=!s.value)}return{collapsed:s,collapsible:n,isLink:r,isActiveLink:c,hasActiveLink:d,hasChildren:_,toggle:S}}function Pt(){const{hasSidebar:o}=U(),e=ie("(min-width: 960px)"),t=ie("(min-width: 1280px)");return{isAsideEnabled:y(()=>!t.value&&!e.value?!1:o.value?t.value:e.value)}}const de=[];function Ce(o){return typeof o.outline=="object"&&!Array.isArray(o.outline)&&o.outline.label||o.outlineTitle||"On this page"}function be(o){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:Vt(t),link:"#"+t.id,level:s}});return St(e,o)}function Vt(o){let e="";for(const t of o.childNodes)if(t.nodeType===1){if(t.classList.contains("VPBadge")||t.classList.contains("header-anchor")||t.classList.contains("ignore-header"))continue;e+=t.textContent}else t.nodeType===3&&(e+=t.textContent);return e.trim()}function St(o,e){if(e===!1)return[];const t=(typeof e=="object"&&!Array.isArray(e)?e.level:e)||2,[s,n]=typeof t=="number"?[t,t]:t==="deep"?[2,6]:t;o=o.filter(c=>c.level>=s&&c.level<=n),de.length=0;for(const{element:c,link:p}of o)de.push({element:c,link:p});const r=[];e:for(let c=0;c=0;d--){const _=o[d];if(_.level{requestAnimationFrame(r),window.addEventListener("scroll",s)}),We(()=>{c(location.hash)}),fe(()=>{window.removeEventListener("scroll",s)});function r(){if(!t.value)return;const p=window.scrollY,d=window.innerHeight,_=document.body.offsetHeight,S=Math.abs(p+d-_)<1,b=de.map(({element:V,link:E})=>({link:E,top:Tt(V)})).filter(({top:V})=>!Number.isNaN(V)).sort((V,E)=>V.top-E.top);if(!b.length){c(null);return}if(p<1){c(null);return}if(S){c(b[b.length-1].link);return}let P=null;for(const{link:V,top:E}of b){if(E>p+qe()+4)break;P=V}c(P)}function c(p){n&&n.classList.remove("active"),p==null?n=null:n=o.value.querySelector(`a[href="${decodeURIComponent(p)}"]`);const d=n;d?(d.classList.add("active"),e.value.style.top=d.offsetTop+39+"px",e.value.style.opacity="1"):(e.value.style.top="33px",e.value.style.opacity="0")}}function Tt(o){let e=0;for(;o!==document.body;){if(o===null)return NaN;e+=o.offsetTop,o=o.offsetParent}return e}const wt=["href","title"],Nt=h({__name:"VPDocOutlineItem",props:{headers:{},root:{type:Boolean}},setup(o){function e({target:t}){const s=t.href.split("#")[1],n=document.getElementById(decodeURIComponent(s));n==null||n.focus({preventScroll:!0})}return(t,s)=>{const n=K("VPDocOutlineItem",!0);return a(),l("ul",{class:I(["VPDocOutlineItem",t.root?"root":"nested"])},[(a(!0),l(M,null,A(t.headers,({children:r,link:c,title:p})=>(a(),l("li",null,[v("a",{class:"outline-link",href:c,onClick:e,title:p},T(p),9,wt),r!=null&&r.length?(a(),$(n,{key:0,headers:r},null,8,["headers"])):m("",!0)]))),256))],2)}}}),Ae=g(Nt,[["__scopeId","data-v-3f927ebe"]]),It={class:"content"},Mt={"aria-level":"2",class:"outline-title",id:"doc-outline-aria-label",role:"heading"},Et=h({__name:"VPDocAsideOutline",setup(o){const{frontmatter:e,theme:t}=L(),s=Se([]);ee(()=>{s.value=be(e.value.outline??t.value.outline)});const n=w(),r=w();return Lt(n,r),(c,p)=>(a(),l("nav",{"aria-labelledby":"doc-outline-aria-label",class:I(["VPDocAsideOutline",{"has-outline":s.value.length>0}]),ref_key:"container",ref:n},[v("div",It,[v("div",{class:"outline-marker",ref_key:"marker",ref:r},null,512),v("div",Mt,T(i(Ce)(i(t))),1),k(Ae,{headers:s.value,root:!0},null,8,["headers"])])],2))}}),Ct=g(Et,[["__scopeId","data-v-b38bf2ff"]]),At={class:"VPDocAsideCarbonAds"},Bt=h({__name:"VPDocAsideCarbonAds",props:{carbonAds:{}},setup(o){const e=()=>null;return(t,s)=>(a(),l("div",At,[k(i(e),{"carbon-ads":t.carbonAds},null,8,["carbon-ads"])]))}}),Ht={class:"VPDocAside"},Ot=h({__name:"VPDocAside",setup(o){const{theme:e}=L();return(t,s)=>(a(),l("div",Ht,[u(t.$slots,"aside-top",{},void 0,!0),u(t.$slots,"aside-outline-before",{},void 0,!0),k(Ct),u(t.$slots,"aside-outline-after",{},void 0,!0),s[0]||(s[0]=v("div",{class:"spacer"},null,-1)),u(t.$slots,"aside-ads-before",{},void 0,!0),i(e).carbonAds?(a(),$(Bt,{key:0,"carbon-ads":i(e).carbonAds},null,8,["carbon-ads"])):m("",!0),u(t.$slots,"aside-ads-after",{},void 0,!0),u(t.$slots,"aside-bottom",{},void 0,!0)]))}}),Dt=g(Ot,[["__scopeId","data-v-6d7b3c46"]]);function Ft(){const{theme:o,page:e}=L();return y(()=>{const{text:t="Edit this page",pattern:s=""}=o.value.editLink||{};let n;return typeof s=="function"?n=s(e.value):n=s.replace(/:path/g,e.value.filePath),{url:n,text:t}})}function Rt(){const{page:o,theme:e,frontmatter:t}=L();return y(()=>{var _,S,b,P,V,E,C,N;const s=Ee(e.value.sidebar,o.value.relativePath),n=gt(s),r=Ut(n,B=>B.link.replace(/[?#].*$/,"")),c=r.findIndex(B=>G(o.value.relativePath,B.link)),p=((_=e.value.docFooter)==null?void 0:_.prev)===!1&&!t.value.prev||t.value.prev===!1,d=((S=e.value.docFooter)==null?void 0:S.next)===!1&&!t.value.next||t.value.next===!1;return{prev:p?void 0:{text:(typeof t.value.prev=="string"?t.value.prev:typeof t.value.prev=="object"?t.value.prev.text:void 0)??((b=r[c-1])==null?void 0:b.docFooterText)??((P=r[c-1])==null?void 0:P.text),link:(typeof t.value.prev=="object"?t.value.prev.link:void 0)??((V=r[c-1])==null?void 0:V.link)},next:d?void 0:{text:(typeof t.value.next=="string"?t.value.next:typeof t.value.next=="object"?t.value.next.text:void 0)??((E=r[c+1])==null?void 0:E.docFooterText)??((C=r[c+1])==null?void 0:C.text),link:(typeof t.value.next=="object"?t.value.next.link:void 0)??((N=r[c+1])==null?void 0:N.link)}}})}function Ut(o,e){const t=new Set;return o.filter(s=>{const n=e(s);return t.has(n)?!1:t.add(n)})}const H=h({__name:"VPLink",props:{tag:{},href:{},noIcon:{type:Boolean},target:{},rel:{}},setup(o){const e=o,t=y(()=>e.tag??(e.href?"a":"span")),s=y(()=>e.href&&Le.test(e.href)||e.target==="_blank");return(n,r)=>(a(),$(F(t.value),{class:I(["VPLink",{link:n.href,"vp-external-link-icon":s.value,"no-icon":n.noIcon}]),href:n.href?i(_e)(n.href):void 0,target:n.target??(s.value?"_blank":void 0),rel:n.rel??(s.value?"noreferrer":void 0)},{default:f(()=>[u(n.$slots,"default")]),_:3},8,["class","href","target","rel"]))}}),zt={class:"VPLastUpdated"},jt=["datetime"],Gt=h({__name:"VPDocFooterLastUpdated",setup(o){const{theme:e,page:t,lang:s}=L(),n=y(()=>new Date(t.value.lastUpdated)),r=y(()=>n.value.toISOString()),c=w("");return R(()=>{x(()=>{var p,d,_;c.value=new Intl.DateTimeFormat((d=(p=e.value.lastUpdated)==null?void 0:p.formatOptions)!=null&&d.forceLocale?s.value:void 0,((_=e.value.lastUpdated)==null?void 0:_.formatOptions)??{dateStyle:"short",timeStyle:"short"}).format(n.value)})}),(p,d)=>{var _;return a(),l("p",zt,[O(T(((_=i(e).lastUpdated)==null?void 0:_.text)||i(e).lastUpdatedText||"Last updated")+": ",1),v("time",{datetime:r.value},T(c.value),9,jt)])}}}),Kt=g(Gt,[["__scopeId","data-v-475f71b8"]]),Wt={key:0,class:"VPDocFooter"},qt={key:0,class:"edit-info"},Jt={key:0,class:"edit-link"},Yt={key:1,class:"last-updated"},Xt={key:1,class:"prev-next","aria-labelledby":"doc-footer-aria-label"},Qt={class:"pager"},Zt=["innerHTML"],xt=["innerHTML"],en={class:"pager"},tn=["innerHTML"],nn=["innerHTML"],sn=h({__name:"VPDocFooter",setup(o){const{theme:e,page:t,frontmatter:s}=L(),n=Ft(),r=Rt(),c=y(()=>e.value.editLink&&s.value.editLink!==!1),p=y(()=>t.value.lastUpdated),d=y(()=>c.value||p.value||r.value.prev||r.value.next);return(_,S)=>{var b,P,V,E;return d.value?(a(),l("footer",Wt,[u(_.$slots,"doc-footer-before",{},void 0,!0),c.value||p.value?(a(),l("div",qt,[c.value?(a(),l("div",Jt,[k(H,{class:"edit-link-button",href:i(n).url,"no-icon":!0},{default:f(()=>[S[0]||(S[0]=v("span",{class:"vpi-square-pen edit-link-icon"},null,-1)),O(" "+T(i(n).text),1)]),_:1},8,["href"])])):m("",!0),p.value?(a(),l("div",Yt,[k(Kt)])):m("",!0)])):m("",!0),(b=i(r).prev)!=null&&b.link||(P=i(r).next)!=null&&P.link?(a(),l("nav",Xt,[S[1]||(S[1]=v("span",{class:"visually-hidden",id:"doc-footer-aria-label"},"Pager",-1)),v("div",Qt,[(V=i(r).prev)!=null&&V.link?(a(),$(H,{key:0,class:"pager-link prev",href:i(r).prev.link},{default:f(()=>{var C;return[v("span",{class:"desc",innerHTML:((C=i(e).docFooter)==null?void 0:C.prev)||"Previous page"},null,8,Zt),v("span",{class:"title",innerHTML:i(r).prev.text},null,8,xt)]}),_:1},8,["href"])):m("",!0)]),v("div",en,[(E=i(r).next)!=null&&E.link?(a(),$(H,{key:0,class:"pager-link next",href:i(r).next.link},{default:f(()=>{var C;return[v("span",{class:"desc",innerHTML:((C=i(e).docFooter)==null?void 0:C.next)||"Next page"},null,8,tn),v("span",{class:"title",innerHTML:i(r).next.text},null,8,nn)]}),_:1},8,["href"])):m("",!0)])])):m("",!0)])):m("",!0)}}}),on=g(sn,[["__scopeId","data-v-4f9813fa"]]),an={class:"container"},rn={class:"aside-container"},ln={class:"aside-content"},cn={class:"content"},un={class:"content-container"},dn={class:"main"},vn=h({__name:"VPDoc",setup(o){const{theme:e}=L(),t=Y(),{hasSidebar:s,hasAside:n,leftAside:r}=U(),c=y(()=>t.path.replace(/[./]+/g,"_").replace(/_html$/,""));return(p,d)=>{const _=K("Content");return a(),l("div",{class:I(["VPDoc",{"has-sidebar":i(s),"has-aside":i(n)}])},[u(p.$slots,"doc-top",{},void 0,!0),v("div",an,[i(n)?(a(),l("div",{key:0,class:I(["aside",{"left-aside":i(r)}])},[d[0]||(d[0]=v("div",{class:"aside-curtain"},null,-1)),v("div",rn,[v("div",ln,[k(Dt,null,{"aside-top":f(()=>[u(p.$slots,"aside-top",{},void 0,!0)]),"aside-bottom":f(()=>[u(p.$slots,"aside-bottom",{},void 0,!0)]),"aside-outline-before":f(()=>[u(p.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":f(()=>[u(p.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":f(()=>[u(p.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":f(()=>[u(p.$slots,"aside-ads-after",{},void 0,!0)]),_:3})])])],2)):m("",!0),v("div",cn,[v("div",un,[u(p.$slots,"doc-before",{},void 0,!0),v("main",dn,[k(_,{class:I(["vp-doc",[c.value,i(e).externalLinkIcon&&"external-link-icon-enabled"]])},null,8,["class"])]),k(on,null,{"doc-footer-before":f(()=>[u(p.$slots,"doc-footer-before",{},void 0,!0)]),_:3}),u(p.$slots,"doc-after",{},void 0,!0)])])]),u(p.$slots,"doc-bottom",{},void 0,!0)],2)}}}),pn=g(vn,[["__scopeId","data-v-83890dd9"]]),fn=h({__name:"VPButton",props:{tag:{},size:{default:"medium"},theme:{default:"brand"},text:{},href:{},target:{},rel:{}},setup(o){const e=o,t=y(()=>e.href&&Le.test(e.href)),s=y(()=>e.tag||e.href?"a":"button");return(n,r)=>(a(),$(F(s.value),{class:I(["VPButton",[n.size,n.theme]]),href:n.href?i(_e)(n.href):void 0,target:e.target??(t.value?"_blank":void 0),rel:e.rel??(t.value?"noreferrer":void 0)},{default:f(()=>[O(T(n.text),1)]),_:1},8,["class","href","target","rel"]))}}),mn=g(fn,[["__scopeId","data-v-14206e74"]]),hn=["src","alt"],_n=h({inheritAttrs:!1,__name:"VPImage",props:{image:{},alt:{}},setup(o){return(e,t)=>{const s=K("VPImage",!0);return e.image?(a(),l(M,{key:0},[typeof e.image=="string"||"src"in e.image?(a(),l("img",j({key:0,class:"VPImage"},typeof e.image=="string"?e.$attrs:{...e.image,...e.$attrs},{src:i(pe)(typeof e.image=="string"?e.image:e.image.src),alt:e.alt??(typeof e.image=="string"?"":e.image.alt||"")}),null,16,hn)):(a(),l(M,{key:1},[k(s,j({class:"dark",image:e.image.dark,alt:e.image.alt},e.$attrs),null,16,["image","alt"]),k(s,j({class:"light",image:e.image.light,alt:e.image.alt},e.$attrs),null,16,["image","alt"])],64))],64)):m("",!0)}}}),Z=g(_n,[["__scopeId","data-v-35a7d0b8"]]),bn={class:"container"},kn={class:"main"},gn={key:0,class:"name"},$n=["innerHTML"],yn=["innerHTML"],Pn=["innerHTML"],Vn={key:0,class:"actions"},Sn={key:0,class:"image"},Ln={class:"image-container"},Tn=h({__name:"VPHero",props:{name:{},text:{},tagline:{},image:{},actions:{}},setup(o){const e=q("hero-image-slot-exists");return(t,s)=>(a(),l("div",{class:I(["VPHero",{"has-image":t.image||i(e)}])},[v("div",bn,[v("div",kn,[u(t.$slots,"home-hero-info-before",{},void 0,!0),u(t.$slots,"home-hero-info",{},()=>[t.name?(a(),l("h1",gn,[v("span",{innerHTML:t.name,class:"clip"},null,8,$n)])):m("",!0),t.text?(a(),l("p",{key:1,innerHTML:t.text,class:"text"},null,8,yn)):m("",!0),t.tagline?(a(),l("p",{key:2,innerHTML:t.tagline,class:"tagline"},null,8,Pn)):m("",!0)],!0),u(t.$slots,"home-hero-info-after",{},void 0,!0),t.actions?(a(),l("div",Vn,[(a(!0),l(M,null,A(t.actions,n=>(a(),l("div",{key:n.link,class:"action"},[k(mn,{tag:"a",size:"medium",theme:n.theme,text:n.text,href:n.link,target:n.target,rel:n.rel},null,8,["theme","text","href","target","rel"])]))),128))])):m("",!0),u(t.$slots,"home-hero-actions-after",{},void 0,!0)]),t.image||i(e)?(a(),l("div",Sn,[v("div",Ln,[s[0]||(s[0]=v("div",{class:"image-bg"},null,-1)),u(t.$slots,"home-hero-image",{},()=>[t.image?(a(),$(Z,{key:0,class:"image-src",image:t.image},null,8,["image"])):m("",!0)],!0)])])):m("",!0)])],2))}}),wn=g(Tn,[["__scopeId","data-v-955009fc"]]),Nn=h({__name:"VPHomeHero",setup(o){const{frontmatter:e}=L();return(t,s)=>i(e).hero?(a(),$(wn,{key:0,class:"VPHomeHero",name:i(e).hero.name,text:i(e).hero.text,tagline:i(e).hero.tagline,image:i(e).hero.image,actions:i(e).hero.actions},{"home-hero-info-before":f(()=>[u(t.$slots,"home-hero-info-before")]),"home-hero-info":f(()=>[u(t.$slots,"home-hero-info")]),"home-hero-info-after":f(()=>[u(t.$slots,"home-hero-info-after")]),"home-hero-actions-after":f(()=>[u(t.$slots,"home-hero-actions-after")]),"home-hero-image":f(()=>[u(t.$slots,"home-hero-image")]),_:3},8,["name","text","tagline","image","actions"])):m("",!0)}}),In={class:"box"},Mn={key:0,class:"icon"},En=["innerHTML"],Cn=["innerHTML"],An=["innerHTML"],Bn={key:4,class:"link-text"},Hn={class:"link-text-value"},On=h({__name:"VPFeature",props:{icon:{},title:{},details:{},link:{},linkText:{},rel:{},target:{}},setup(o){return(e,t)=>(a(),$(H,{class:"VPFeature",href:e.link,rel:e.rel,target:e.target,"no-icon":!0,tag:e.link?"a":"div"},{default:f(()=>[v("article",In,[typeof e.icon=="object"&&e.icon.wrap?(a(),l("div",Mn,[k(Z,{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(),$(Z,{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(),l("div",{key:2,class:"icon",innerHTML:e.icon},null,8,En)):m("",!0),v("h2",{class:"title",innerHTML:e.title},null,8,Cn),e.details?(a(),l("p",{key:3,class:"details",innerHTML:e.details},null,8,An)):m("",!0),e.linkText?(a(),l("div",Bn,[v("p",Hn,[O(T(e.linkText)+" ",1),t[0]||(t[0]=v("span",{class:"vpi-arrow-right link-text-icon"},null,-1))])])):m("",!0)])]),_:1},8,["href","rel","target","tag"]))}}),Dn=g(On,[["__scopeId","data-v-f5e9645b"]]),Fn={key:0,class:"VPFeatures"},Rn={class:"container"},Un={class:"items"},zn=h({__name:"VPFeatures",props:{features:{}},setup(o){const e=o,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,n)=>s.features?(a(),l("div",Fn,[v("div",Rn,[v("div",Un,[(a(!0),l(M,null,A(s.features,r=>(a(),l("div",{key:r.title,class:I(["item",[t.value]])},[k(Dn,{icon:r.icon,title:r.title,details:r.details,link:r.link,"link-text":r.linkText,rel:r.rel,target:r.target},null,8,["icon","title","details","link","link-text","rel","target"])],2))),128))])])])):m("",!0)}}),jn=g(zn,[["__scopeId","data-v-d0a190d7"]]),Gn=h({__name:"VPHomeFeatures",setup(o){const{frontmatter:e}=L();return(t,s)=>i(e).features?(a(),$(jn,{key:0,class:"VPHomeFeatures",features:i(e).features},null,8,["features"])):m("",!0)}}),Kn=h({__name:"VPHomeContent",setup(o){const{width:e}=Je({initialWidth:0,includeScrollbar:!1});return(t,s)=>(a(),l("div",{class:"vp-doc container",style:Te(i(e)?{"--vp-offset":`calc(50% - ${i(e)/2}px)`}:{})},[u(t.$slots,"default",{},void 0,!0)],4))}}),Wn=g(Kn,[["__scopeId","data-v-7a48a447"]]),qn={class:"VPHome"},Jn=h({__name:"VPHome",setup(o){const{frontmatter:e}=L();return(t,s)=>{const n=K("Content");return a(),l("div",qn,[u(t.$slots,"home-hero-before",{},void 0,!0),k(Nn,null,{"home-hero-info-before":f(()=>[u(t.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":f(()=>[u(t.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":f(()=>[u(t.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":f(()=>[u(t.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":f(()=>[u(t.$slots,"home-hero-image",{},void 0,!0)]),_:3}),u(t.$slots,"home-hero-after",{},void 0,!0),u(t.$slots,"home-features-before",{},void 0,!0),k(Gn),u(t.$slots,"home-features-after",{},void 0,!0),i(e).markdownStyles!==!1?(a(),$(Wn,{key:0},{default:f(()=>[k(n)]),_:1})):(a(),$(n,{key:1}))])}}}),Yn=g(Jn,[["__scopeId","data-v-cbb6ec48"]]),Xn={},Qn={class:"VPPage"};function Zn(o,e){const t=K("Content");return a(),l("div",Qn,[u(o.$slots,"page-top"),k(t),u(o.$slots,"page-bottom")])}const xn=g(Xn,[["render",Zn]]),es=h({__name:"VPContent",setup(o){const{page:e,frontmatter:t}=L(),{hasSidebar:s}=U();return(n,r)=>(a(),l("div",{class:I(["VPContent",{"has-sidebar":i(s),"is-home":i(t).layout==="home"}]),id:"VPContent"},[i(e).isNotFound?u(n.$slots,"not-found",{key:0},()=>[k(bt)],!0):i(t).layout==="page"?(a(),$(xn,{key:1},{"page-top":f(()=>[u(n.$slots,"page-top",{},void 0,!0)]),"page-bottom":f(()=>[u(n.$slots,"page-bottom",{},void 0,!0)]),_:3})):i(t).layout==="home"?(a(),$(Yn,{key:2},{"home-hero-before":f(()=>[u(n.$slots,"home-hero-before",{},void 0,!0)]),"home-hero-info-before":f(()=>[u(n.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":f(()=>[u(n.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":f(()=>[u(n.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":f(()=>[u(n.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":f(()=>[u(n.$slots,"home-hero-image",{},void 0,!0)]),"home-hero-after":f(()=>[u(n.$slots,"home-hero-after",{},void 0,!0)]),"home-features-before":f(()=>[u(n.$slots,"home-features-before",{},void 0,!0)]),"home-features-after":f(()=>[u(n.$slots,"home-features-after",{},void 0,!0)]),_:3})):i(t).layout&&i(t).layout!=="doc"?(a(),$(F(i(t).layout),{key:3})):(a(),$(pn,{key:4},{"doc-top":f(()=>[u(n.$slots,"doc-top",{},void 0,!0)]),"doc-bottom":f(()=>[u(n.$slots,"doc-bottom",{},void 0,!0)]),"doc-footer-before":f(()=>[u(n.$slots,"doc-footer-before",{},void 0,!0)]),"doc-before":f(()=>[u(n.$slots,"doc-before",{},void 0,!0)]),"doc-after":f(()=>[u(n.$slots,"doc-after",{},void 0,!0)]),"aside-top":f(()=>[u(n.$slots,"aside-top",{},void 0,!0)]),"aside-outline-before":f(()=>[u(n.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":f(()=>[u(n.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":f(()=>[u(n.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":f(()=>[u(n.$slots,"aside-ads-after",{},void 0,!0)]),"aside-bottom":f(()=>[u(n.$slots,"aside-bottom",{},void 0,!0)]),_:3}))],2))}}),ts=g(es,[["__scopeId","data-v-91765379"]]),ns={class:"container"},ss=["innerHTML"],os=["innerHTML"],as=h({__name:"VPFooter",setup(o){const{theme:e,frontmatter:t}=L(),{hasSidebar:s}=U();return(n,r)=>i(e).footer&&i(t).footer!==!1?(a(),l("footer",{key:0,class:I(["VPFooter",{"has-sidebar":i(s)}])},[v("div",ns,[i(e).footer.message?(a(),l("p",{key:0,class:"message",innerHTML:i(e).footer.message},null,8,ss)):m("",!0),i(e).footer.copyright?(a(),l("p",{key:1,class:"copyright",innerHTML:i(e).footer.copyright},null,8,os)):m("",!0)])],2)):m("",!0)}}),rs=g(as,[["__scopeId","data-v-c970a860"]]);function is(){const{theme:o,frontmatter:e}=L(),t=Se([]),s=y(()=>t.value.length>0);return ee(()=>{t.value=be(e.value.outline??o.value.outline)}),{headers:t,hasLocalNav:s}}const ls={class:"menu-text"},cs={class:"header"},us={class:"outline"},ds=h({__name:"VPLocalNavOutlineDropdown",props:{headers:{},navHeight:{}},setup(o){const e=o,{theme:t}=L(),s=w(!1),n=w(0),r=w(),c=w();function p(b){var P;(P=r.value)!=null&&P.contains(b.target)||(s.value=!1)}D(s,b=>{if(b){document.addEventListener("click",p);return}document.removeEventListener("click",p)}),le("Escape",()=>{s.value=!1}),ee(()=>{s.value=!1});function d(){s.value=!s.value,n.value=window.innerHeight+Math.min(window.scrollY-e.navHeight,0)}function _(b){b.target.classList.contains("outline-link")&&(c.value&&(c.value.style.transition="none"),we(()=>{s.value=!1}))}function S(){s.value=!1,window.scrollTo({top:0,left:0,behavior:"smooth"})}return(b,P)=>(a(),l("div",{class:"VPLocalNavOutlineDropdown",style:Te({"--vp-vh":n.value+"px"}),ref_key:"main",ref:r},[b.headers.length>0?(a(),l("button",{key:0,onClick:d,class:I({open:s.value})},[v("span",ls,T(i(Ce)(i(t))),1),P[0]||(P[0]=v("span",{class:"vpi-chevron-right icon"},null,-1))],2)):(a(),l("button",{key:1,onClick:S},T(i(t).returnToTopLabel||"Return to top"),1)),k(ve,{name:"flyout"},{default:f(()=>[s.value?(a(),l("div",{key:0,ref_key:"items",ref:c,class:"items",onClick:_},[v("div",cs,[v("a",{class:"top-link",href:"#",onClick:S},T(i(t).returnToTopLabel||"Return to top"),1)]),v("div",us,[k(Ae,{headers:b.headers},null,8,["headers"])])],512)):m("",!0)]),_:1})],4))}}),vs=g(ds,[["__scopeId","data-v-bc9dc845"]]),ps={class:"container"},fs=["aria-expanded"],ms={class:"menu-text"},hs=h({__name:"VPLocalNav",props:{open:{type:Boolean}},emits:["open-menu"],setup(o){const{theme:e,frontmatter:t}=L(),{hasSidebar:s}=U(),{headers:n}=is(),{y:r}=Ne(),c=w(0);R(()=>{c.value=parseInt(getComputedStyle(document.documentElement).getPropertyValue("--vp-nav-height"))}),ee(()=>{n.value=be(t.value.outline??e.value.outline)});const p=y(()=>n.value.length===0),d=y(()=>p.value&&!s.value),_=y(()=>({VPLocalNav:!0,"has-sidebar":s.value,empty:p.value,fixed:d.value}));return(S,b)=>i(t).layout!=="home"&&(!d.value||i(r)>=c.value)?(a(),l("div",{key:0,class:I(_.value)},[v("div",ps,[i(s)?(a(),l("button",{key:0,class:"menu","aria-expanded":S.open,"aria-controls":"VPSidebarNav",onClick:b[0]||(b[0]=P=>S.$emit("open-menu"))},[b[1]||(b[1]=v("span",{class:"vpi-align-left menu-icon"},null,-1)),v("span",ms,T(i(e).sidebarMenuLabel||"Menu"),1)],8,fs)):m("",!0),k(vs,{headers:i(n),navHeight:c.value},null,8,["headers","navHeight"])])],2)):m("",!0)}}),_s=g(hs,[["__scopeId","data-v-070ab83d"]]);function bs(){const o=w(!1);function e(){o.value=!0,window.addEventListener("resize",n)}function t(){o.value=!1,window.removeEventListener("resize",n)}function s(){o.value?t():e()}function n(){window.outerWidth>=768&&t()}const r=Y();return D(()=>r.path,t),{isScreenOpen:o,openScreen:e,closeScreen:t,toggleScreen:s}}const ks={},gs={class:"VPSwitch",type:"button",role:"switch"},$s={class:"check"},ys={key:0,class:"icon"};function Ps(o,e){return a(),l("button",gs,[v("span",$s,[o.$slots.default?(a(),l("span",ys,[u(o.$slots,"default",{},void 0,!0)])):m("",!0)])])}const Vs=g(ks,[["render",Ps],["__scopeId","data-v-4a1c76db"]]),Ss=h({__name:"VPSwitchAppearance",setup(o){const{isDark:e,theme:t}=L(),s=q("toggle-appearance",()=>{e.value=!e.value}),n=w("");return me(()=>{n.value=e.value?t.value.lightModeSwitchTitle||"Switch to light theme":t.value.darkModeSwitchTitle||"Switch to dark theme"}),(r,c)=>(a(),$(Vs,{title:n.value,class:"VPSwitchAppearance","aria-checked":i(e),onClick:i(s)},{default:f(()=>c[0]||(c[0]=[v("span",{class:"vpi-sun sun"},null,-1),v("span",{class:"vpi-moon moon"},null,-1)])),_:1},8,["title","aria-checked","onClick"]))}}),ke=g(Ss,[["__scopeId","data-v-e40a8bb6"]]),Ls={key:0,class:"VPNavBarAppearance"},Ts=h({__name:"VPNavBarAppearance",setup(o){const{site:e}=L();return(t,s)=>i(e).appearance&&i(e).appearance!=="force-dark"&&i(e).appearance!=="force-auto"?(a(),l("div",Ls,[k(ke)])):m("",!0)}}),ws=g(Ts,[["__scopeId","data-v-af096f4a"]]),ge=w();let Be=!1,re=0;function Ns(o){const e=w(!1);if(te){!Be&&Is(),re++;const t=D(ge,s=>{var n,r,c;s===o.el.value||(n=o.el.value)!=null&&n.contains(s)?(e.value=!0,(r=o.onFocus)==null||r.call(o)):(e.value=!1,(c=o.onBlur)==null||c.call(o))});fe(()=>{t(),re--,re||Ms()})}return Ye(e)}function Is(){document.addEventListener("focusin",He),Be=!0,ge.value=document.activeElement}function Ms(){document.removeEventListener("focusin",He)}function He(){ge.value=document.activeElement}const Es={class:"VPMenuLink"},Cs=h({__name:"VPMenuLink",props:{item:{}},setup(o){const{page:e}=L();return(t,s)=>(a(),l("div",Es,[k(H,{class:I({active:i(G)(i(e).relativePath,t.item.activeMatch||t.item.link,!!t.item.activeMatch)}),href:t.item.link,target:t.item.target,rel:t.item.rel},{default:f(()=>[O(T(t.item.text),1)]),_:1},8,["class","href","target","rel"])]))}}),ne=g(Cs,[["__scopeId","data-v-8b74d055"]]),As={class:"VPMenuGroup"},Bs={key:0,class:"title"},Hs=h({__name:"VPMenuGroup",props:{text:{},items:{}},setup(o){return(e,t)=>(a(),l("div",As,[e.text?(a(),l("p",Bs,T(e.text),1)):m("",!0),(a(!0),l(M,null,A(e.items,s=>(a(),l(M,null,["link"in s?(a(),$(ne,{key:0,item:s},null,8,["item"])):m("",!0)],64))),256))]))}}),Os=g(Hs,[["__scopeId","data-v-48c802d0"]]),Ds={class:"VPMenu"},Fs={key:0,class:"items"},Rs=h({__name:"VPMenu",props:{items:{}},setup(o){return(e,t)=>(a(),l("div",Ds,[e.items?(a(),l("div",Fs,[(a(!0),l(M,null,A(e.items,s=>(a(),l(M,{key:JSON.stringify(s)},["link"in s?(a(),$(ne,{key:0,item:s},null,8,["item"])):"component"in s?(a(),$(F(s.component),j({key:1,ref_for:!0},s.props),null,16)):(a(),$(Os,{key:2,text:s.text,items:s.items},null,8,["text","items"]))],64))),128))])):m("",!0),u(e.$slots,"default",{},void 0,!0)]))}}),Us=g(Rs,[["__scopeId","data-v-7dd3104a"]]),zs=["aria-expanded","aria-label"],js={key:0,class:"text"},Gs=["innerHTML"],Ks={key:1,class:"vpi-more-horizontal icon"},Ws={class:"menu"},qs=h({__name:"VPFlyout",props:{icon:{},button:{},label:{},items:{}},setup(o){const e=w(!1),t=w();Ns({el:t,onBlur:s});function s(){e.value=!1}return(n,r)=>(a(),l("div",{class:"VPFlyout",ref_key:"el",ref:t,onMouseenter:r[1]||(r[1]=c=>e.value=!0),onMouseleave:r[2]||(r[2]=c=>e.value=!1)},[v("button",{type:"button",class:"button","aria-haspopup":"true","aria-expanded":e.value,"aria-label":n.label,onClick:r[0]||(r[0]=c=>e.value=!e.value)},[n.button||n.icon?(a(),l("span",js,[n.icon?(a(),l("span",{key:0,class:I([n.icon,"option-icon"])},null,2)):m("",!0),n.button?(a(),l("span",{key:1,innerHTML:n.button},null,8,Gs)):m("",!0),r[3]||(r[3]=v("span",{class:"vpi-chevron-down text-icon"},null,-1))])):(a(),l("span",Ks))],8,zs),v("div",Ws,[k(Us,{items:n.items},{default:f(()=>[u(n.$slots,"default",{},void 0,!0)]),_:3},8,["items"])])],544))}}),$e=g(qs,[["__scopeId","data-v-e5380155"]]),Js=["href","aria-label","innerHTML"],Ys=h({__name:"VPSocialLink",props:{icon:{},link:{},ariaLabel:{}},setup(o){const e=o,t=y(()=>typeof e.icon=="object"?e.icon.svg:``);return(s,n)=>(a(),l("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,Js))}}),Xs=g(Ys,[["__scopeId","data-v-717b8b75"]]),Qs={class:"VPSocialLinks"},Zs=h({__name:"VPSocialLinks",props:{links:{}},setup(o){return(e,t)=>(a(),l("div",Qs,[(a(!0),l(M,null,A(e.links,({link:s,icon:n,ariaLabel:r})=>(a(),$(Xs,{key:s,icon:n,link:s,ariaLabel:r},null,8,["icon","link","ariaLabel"]))),128))]))}}),se=g(Zs,[["__scopeId","data-v-ee7a9424"]]),xs={key:0,class:"group translations"},eo={class:"trans-title"},to={key:1,class:"group"},no={class:"item appearance"},so={class:"label"},oo={class:"appearance-action"},ao={key:2,class:"group"},ro={class:"item social-links"},io=h({__name:"VPNavBarExtra",setup(o){const{site:e,theme:t}=L(),{localeLinks:s,currentLang:n}=X({correspondingLink:!0}),r=y(()=>s.value.length&&n.value.label||e.value.appearance||t.value.socialLinks);return(c,p)=>r.value?(a(),$($e,{key:0,class:"VPNavBarExtra",label:"extra navigation"},{default:f(()=>[i(s).length&&i(n).label?(a(),l("div",xs,[v("p",eo,T(i(n).label),1),(a(!0),l(M,null,A(i(s),d=>(a(),$(ne,{key:d.link,item:d},null,8,["item"]))),128))])):m("",!0),i(e).appearance&&i(e).appearance!=="force-dark"&&i(e).appearance!=="force-auto"?(a(),l("div",to,[v("div",no,[v("p",so,T(i(t).darkModeSwitchLabel||"Appearance"),1),v("div",oo,[k(ke)])])])):m("",!0),i(t).socialLinks?(a(),l("div",ao,[v("div",ro,[k(se,{class:"social-links-list",links:i(t).socialLinks},null,8,["links"])])])):m("",!0)]),_:1})):m("",!0)}}),lo=g(io,[["__scopeId","data-v-925effce"]]),co=["aria-expanded"],uo=h({__name:"VPNavBarHamburger",props:{active:{type:Boolean}},emits:["click"],setup(o){return(e,t)=>(a(),l("button",{type:"button",class:I(["VPNavBarHamburger",{active:e.active}]),"aria-label":"mobile navigation","aria-expanded":e.active,"aria-controls":"VPNavScreen",onClick:t[0]||(t[0]=s=>e.$emit("click"))},t[1]||(t[1]=[v("span",{class:"container"},[v("span",{class:"top"}),v("span",{class:"middle"}),v("span",{class:"bottom"})],-1)]),10,co))}}),vo=g(uo,[["__scopeId","data-v-5dea55bf"]]),po=["innerHTML"],fo=h({__name:"VPNavBarMenuLink",props:{item:{}},setup(o){const{page:e}=L();return(t,s)=>(a(),$(H,{class:I({VPNavBarMenuLink:!0,active:i(G)(i(e).relativePath,t.item.activeMatch||t.item.link,!!t.item.activeMatch)}),href:t.item.link,noIcon:t.item.noIcon,target:t.item.target,rel:t.item.rel,tabindex:"0"},{default:f(()=>[v("span",{innerHTML:t.item.text},null,8,po)]),_:1},8,["class","href","noIcon","target","rel"]))}}),mo=g(fo,[["__scopeId","data-v-ed5ac1f6"]]),Oe=h({__name:"VPNavBarMenuGroup",props:{item:{}},setup(o){const e=o,{page:t}=L(),s=r=>"component"in r?!1:"link"in r?G(t.value.relativePath,r.link,!!e.item.activeMatch):r.items.some(s),n=y(()=>s(e.item));return(r,c)=>(a(),$($e,{class:I({VPNavBarMenuGroup:!0,active:i(G)(i(t).relativePath,r.item.activeMatch,!!r.item.activeMatch)||n.value}),button:r.item.text,items:r.item.items},null,8,["class","button","items"]))}}),ho={key:0,"aria-labelledby":"main-nav-aria-label",class:"VPNavBarMenu"},_o=h({__name:"VPNavBarMenu",setup(o){const{theme:e}=L();return(t,s)=>i(e).nav?(a(),l("nav",ho,[s[0]||(s[0]=v("span",{id:"main-nav-aria-label",class:"visually-hidden"}," Main Navigation ",-1)),(a(!0),l(M,null,A(i(e).nav,n=>(a(),l(M,{key:JSON.stringify(n)},["link"in n?(a(),$(mo,{key:0,item:n},null,8,["item"])):"component"in n?(a(),$(F(n.component),j({key:1,ref_for:!0},n.props),null,16)):(a(),$(Oe,{key:2,item:n},null,8,["item"]))],64))),128))])):m("",!0)}}),bo=g(_o,[["__scopeId","data-v-e6d46098"]]);function ko(o){const{localeIndex:e,theme:t}=L();function s(n){var E,C,N;const r=n.split("."),c=(E=t.value.search)==null?void 0:E.options,p=c&&typeof c=="object",d=p&&((N=(C=c.locales)==null?void 0:C[e.value])==null?void 0:N.translations)||null,_=p&&c.translations||null;let S=d,b=_,P=o;const V=r.pop();for(const B of r){let z=null;const W=P==null?void 0:P[B];W&&(z=P=W);const oe=b==null?void 0:b[B];oe&&(z=b=oe);const ae=S==null?void 0:S[B];ae&&(z=S=ae),W||(P=z),oe||(b=z),ae||(S=z)}return(S==null?void 0:S[V])??(b==null?void 0:b[V])??(P==null?void 0:P[V])??""}return s}const go=["aria-label"],$o={class:"DocSearch-Button-Container"},yo={class:"DocSearch-Button-Placeholder"},ye=h({__name:"VPNavBarSearchButton",setup(o){const t=ko({button:{buttonText:"Search",buttonAriaLabel:"Search"}});return(s,n)=>(a(),l("button",{type:"button",class:"DocSearch DocSearch-Button","aria-label":i(t)("button.buttonAriaLabel")},[v("span",$o,[n[0]||(n[0]=v("span",{class:"vp-icon DocSearch-Search-Icon"},null,-1)),v("span",yo,T(i(t)("button.buttonText")),1)]),n[1]||(n[1]=v("span",{class:"DocSearch-Button-Keys"},[v("kbd",{class:"DocSearch-Button-Key"}),v("kbd",{class:"DocSearch-Button-Key"},"K")],-1))],8,go))}}),Po={class:"VPNavBarSearch"},Vo={id:"local-search"},So={key:1,id:"docsearch"},Lo=h({__name:"VPNavBarSearch",setup(o){const e=Xe(()=>Qe(()=>import("./VPLocalSearchBox.BpdWDoNn.js"),__vite__mapDeps([0,1]))),t=()=>null,{theme:s}=L(),n=w(!1),r=w(!1);R(()=>{});function c(){n.value||(n.value=!0,setTimeout(p,16))}function p(){const b=new Event("keydown");b.key="k",b.metaKey=!0,window.dispatchEvent(b),setTimeout(()=>{document.querySelector(".DocSearch-Modal")||p()},16)}function d(b){const P=b.target,V=P.tagName;return P.isContentEditable||V==="INPUT"||V==="SELECT"||V==="TEXTAREA"}const _=w(!1);le("k",b=>{(b.ctrlKey||b.metaKey)&&(b.preventDefault(),_.value=!0)}),le("/",b=>{d(b)||(b.preventDefault(),_.value=!0)});const S="local";return(b,P)=>{var V;return a(),l("div",Po,[i(S)==="local"?(a(),l(M,{key:0},[_.value?(a(),$(i(e),{key:0,onClose:P[0]||(P[0]=E=>_.value=!1)})):m("",!0),v("div",Vo,[k(ye,{onClick:P[1]||(P[1]=E=>_.value=!0)})])],64)):i(S)==="algolia"?(a(),l(M,{key:1},[n.value?(a(),$(i(t),{key:0,algolia:((V=i(s).search)==null?void 0:V.options)??i(s).algolia,onVnodeBeforeMount:P[2]||(P[2]=E=>r.value=!0)},null,8,["algolia"])):m("",!0),r.value?m("",!0):(a(),l("div",So,[k(ye,{onClick:c})]))],64)):m("",!0)])}}}),To=h({__name:"VPNavBarSocialLinks",setup(o){const{theme:e}=L();return(t,s)=>i(e).socialLinks?(a(),$(se,{key:0,class:"VPNavBarSocialLinks",links:i(e).socialLinks},null,8,["links"])):m("",!0)}}),wo=g(To,[["__scopeId","data-v-164c457f"]]),No=["href","rel","target"],Io={key:1},Mo={key:2},Eo=h({__name:"VPNavBarTitle",setup(o){const{site:e,theme:t}=L(),{hasSidebar:s}=U(),{currentLang:n}=X(),r=y(()=>{var d;return typeof t.value.logoLink=="string"?t.value.logoLink:(d=t.value.logoLink)==null?void 0:d.link}),c=y(()=>{var d;return typeof t.value.logoLink=="string"||(d=t.value.logoLink)==null?void 0:d.rel}),p=y(()=>{var d;return typeof t.value.logoLink=="string"||(d=t.value.logoLink)==null?void 0:d.target});return(d,_)=>(a(),l("div",{class:I(["VPNavBarTitle",{"has-sidebar":i(s)}])},[v("a",{class:"title",href:r.value??i(_e)(i(n).link),rel:c.value,target:p.value},[u(d.$slots,"nav-bar-title-before",{},void 0,!0),i(t).logo?(a(),$(Z,{key:0,class:"logo",image:i(t).logo},null,8,["image"])):m("",!0),i(t).siteTitle?(a(),l("span",Io,T(i(t).siteTitle),1)):i(t).siteTitle===void 0?(a(),l("span",Mo,T(i(e).title),1)):m("",!0),u(d.$slots,"nav-bar-title-after",{},void 0,!0)],8,No)],2))}}),Co=g(Eo,[["__scopeId","data-v-28a961f9"]]),Ao={class:"items"},Bo={class:"title"},Ho=h({__name:"VPNavBarTranslations",setup(o){const{theme:e}=L(),{localeLinks:t,currentLang:s}=X({correspondingLink:!0});return(n,r)=>i(t).length&&i(s).label?(a(),$($e,{key:0,class:"VPNavBarTranslations",icon:"vpi-languages",label:i(e).langMenuLabel||"Change language"},{default:f(()=>[v("div",Ao,[v("p",Bo,T(i(s).label),1),(a(!0),l(M,null,A(i(t),c=>(a(),$(ne,{key:c.link,item:c},null,8,["item"]))),128))])]),_:1},8,["label"])):m("",!0)}}),Oo=g(Ho,[["__scopeId","data-v-c80d9ad0"]]),Do={class:"wrapper"},Fo={class:"container"},Ro={class:"title"},Uo={class:"content"},zo={class:"content-body"},jo=h({__name:"VPNavBar",props:{isScreenOpen:{type:Boolean}},emits:["toggle-screen"],setup(o){const e=o,{y:t}=Ne(),{hasSidebar:s}=U(),{frontmatter:n}=L(),r=w({});return me(()=>{r.value={"has-sidebar":s.value,home:n.value.layout==="home",top:t.value===0,"screen-open":e.isScreenOpen}}),(c,p)=>(a(),l("div",{class:I(["VPNavBar",r.value])},[v("div",Do,[v("div",Fo,[v("div",Ro,[k(Co,null,{"nav-bar-title-before":f(()=>[u(c.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":f(()=>[u(c.$slots,"nav-bar-title-after",{},void 0,!0)]),_:3})]),v("div",Uo,[v("div",zo,[u(c.$slots,"nav-bar-content-before",{},void 0,!0),k(Lo,{class:"search"}),k(bo,{class:"menu"}),k(Oo,{class:"translations"}),k(ws,{class:"appearance"}),k(wo,{class:"social-links"}),k(lo,{class:"extra"}),u(c.$slots,"nav-bar-content-after",{},void 0,!0),k(vo,{class:"hamburger",active:c.isScreenOpen,onClick:p[0]||(p[0]=d=>c.$emit("toggle-screen"))},null,8,["active"])])])])]),p[1]||(p[1]=v("div",{class:"divider"},[v("div",{class:"divider-line"})],-1))],2))}}),Go=g(jo,[["__scopeId","data-v-822684d1"]]),Ko={key:0,class:"VPNavScreenAppearance"},Wo={class:"text"},qo=h({__name:"VPNavScreenAppearance",setup(o){const{site:e,theme:t}=L();return(s,n)=>i(e).appearance&&i(e).appearance!=="force-dark"&&i(e).appearance!=="force-auto"?(a(),l("div",Ko,[v("p",Wo,T(i(t).darkModeSwitchLabel||"Appearance"),1),k(ke)])):m("",!0)}}),Jo=g(qo,[["__scopeId","data-v-ffb44008"]]),Yo=h({__name:"VPNavScreenMenuLink",props:{item:{}},setup(o){const e=q("close-screen");return(t,s)=>(a(),$(H,{class:"VPNavScreenMenuLink",href:t.item.link,target:t.item.target,rel:t.item.rel,onClick:i(e),innerHTML:t.item.text},null,8,["href","target","rel","onClick","innerHTML"]))}}),Xo=g(Yo,[["__scopeId","data-v-27d04aeb"]]),Qo=h({__name:"VPNavScreenMenuGroupLink",props:{item:{}},setup(o){const e=q("close-screen");return(t,s)=>(a(),$(H,{class:"VPNavScreenMenuGroupLink",href:t.item.link,target:t.item.target,rel:t.item.rel,onClick:i(e)},{default:f(()=>[O(T(t.item.text),1)]),_:1},8,["href","target","rel","onClick"]))}}),De=g(Qo,[["__scopeId","data-v-7179dbb7"]]),Zo={class:"VPNavScreenMenuGroupSection"},xo={key:0,class:"title"},ea=h({__name:"VPNavScreenMenuGroupSection",props:{text:{},items:{}},setup(o){return(e,t)=>(a(),l("div",Zo,[e.text?(a(),l("p",xo,T(e.text),1)):m("",!0),(a(!0),l(M,null,A(e.items,s=>(a(),$(De,{key:s.text,item:s},null,8,["item"]))),128))]))}}),ta=g(ea,[["__scopeId","data-v-4b8941ac"]]),na=["aria-controls","aria-expanded"],sa=["innerHTML"],oa=["id"],aa={key:0,class:"item"},ra={key:1,class:"item"},ia={key:2,class:"group"},la=h({__name:"VPNavScreenMenuGroup",props:{text:{},items:{}},setup(o){const e=o,t=w(!1),s=y(()=>`NavScreenGroup-${e.text.replace(" ","-").toLowerCase()}`);function n(){t.value=!t.value}return(r,c)=>(a(),l("div",{class:I(["VPNavScreenMenuGroup",{open:t.value}])},[v("button",{class:"button","aria-controls":s.value,"aria-expanded":t.value,onClick:n},[v("span",{class:"button-text",innerHTML:r.text},null,8,sa),c[0]||(c[0]=v("span",{class:"vpi-plus button-icon"},null,-1))],8,na),v("div",{id:s.value,class:"items"},[(a(!0),l(M,null,A(r.items,p=>(a(),l(M,{key:JSON.stringify(p)},["link"in p?(a(),l("div",aa,[k(De,{item:p},null,8,["item"])])):"component"in p?(a(),l("div",ra,[(a(),$(F(p.component),j({ref_for:!0},p.props,{"screen-menu":""}),null,16))])):(a(),l("div",ia,[k(ta,{text:p.text,items:p.items},null,8,["text","items"])]))],64))),128))],8,oa)],2))}}),Fe=g(la,[["__scopeId","data-v-875057a5"]]),ca={key:0,class:"VPNavScreenMenu"},ua=h({__name:"VPNavScreenMenu",setup(o){const{theme:e}=L();return(t,s)=>i(e).nav?(a(),l("nav",ca,[(a(!0),l(M,null,A(i(e).nav,n=>(a(),l(M,{key:JSON.stringify(n)},["link"in n?(a(),$(Xo,{key:0,item:n},null,8,["item"])):"component"in n?(a(),$(F(n.component),j({key:1,ref_for:!0},n.props,{"screen-menu":""}),null,16)):(a(),$(Fe,{key:2,text:n.text||"",items:n.items},null,8,["text","items"]))],64))),128))])):m("",!0)}}),da=h({__name:"VPNavScreenSocialLinks",setup(o){const{theme:e}=L();return(t,s)=>i(e).socialLinks?(a(),$(se,{key:0,class:"VPNavScreenSocialLinks",links:i(e).socialLinks},null,8,["links"])):m("",!0)}}),va={class:"list"},pa=h({__name:"VPNavScreenTranslations",setup(o){const{localeLinks:e,currentLang:t}=X({correspondingLink:!0}),s=w(!1);function n(){s.value=!s.value}return(r,c)=>i(e).length&&i(t).label?(a(),l("div",{key:0,class:I(["VPNavScreenTranslations",{open:s.value}])},[v("button",{class:"title",onClick:n},[c[0]||(c[0]=v("span",{class:"vpi-languages icon lang"},null,-1)),O(" "+T(i(t).label)+" ",1),c[1]||(c[1]=v("span",{class:"vpi-chevron-down icon chevron"},null,-1))]),v("ul",va,[(a(!0),l(M,null,A(i(e),p=>(a(),l("li",{key:p.link,class:"item"},[k(H,{class:"link",href:p.link},{default:f(()=>[O(T(p.text),1)]),_:2},1032,["href"])]))),128))])],2)):m("",!0)}}),fa=g(pa,[["__scopeId","data-v-362991c2"]]),ma={class:"container"},ha=h({__name:"VPNavScreen",props:{open:{type:Boolean}},setup(o){const e=w(null),t=Ie(te?document.body:null);return(s,n)=>(a(),$(ve,{name:"fade",onEnter:n[0]||(n[0]=r=>t.value=!0),onAfterLeave:n[1]||(n[1]=r=>t.value=!1)},{default:f(()=>[s.open?(a(),l("div",{key:0,class:"VPNavScreen",ref_key:"screen",ref:e,id:"VPNavScreen"},[v("div",ma,[u(s.$slots,"nav-screen-content-before",{},void 0,!0),k(ua,{class:"menu"}),k(fa,{class:"translations"}),k(Jo,{class:"appearance"}),k(da,{class:"social-links"}),u(s.$slots,"nav-screen-content-after",{},void 0,!0)])],512)):m("",!0)]),_:3}))}}),_a=g(ha,[["__scopeId","data-v-833aabba"]]),ba={key:0,class:"VPNav"},ka=h({__name:"VPNav",setup(o){const{isScreenOpen:e,closeScreen:t,toggleScreen:s}=bs(),{frontmatter:n}=L(),r=y(()=>n.value.navbar!==!1);return he("close-screen",t),x(()=>{te&&document.documentElement.classList.toggle("hide-nav",!r.value)}),(c,p)=>r.value?(a(),l("header",ba,[k(Go,{"is-screen-open":i(e),onToggleScreen:i(s)},{"nav-bar-title-before":f(()=>[u(c.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":f(()=>[u(c.$slots,"nav-bar-title-after",{},void 0,!0)]),"nav-bar-content-before":f(()=>[u(c.$slots,"nav-bar-content-before",{},void 0,!0)]),"nav-bar-content-after":f(()=>[u(c.$slots,"nav-bar-content-after",{},void 0,!0)]),_:3},8,["is-screen-open","onToggleScreen"]),k(_a,{open:i(e)},{"nav-screen-content-before":f(()=>[u(c.$slots,"nav-screen-content-before",{},void 0,!0)]),"nav-screen-content-after":f(()=>[u(c.$slots,"nav-screen-content-after",{},void 0,!0)]),_:3},8,["open"])])):m("",!0)}}),ga=g(ka,[["__scopeId","data-v-f1e365da"]]),$a=["role","tabindex"],ya={key:1,class:"items"},Pa=h({__name:"VPSidebarItem",props:{item:{},depth:{}},setup(o){const e=o,{collapsed:t,collapsible:s,isLink:n,isActiveLink:r,hasActiveLink:c,hasChildren:p,toggle:d}=yt(y(()=>e.item)),_=y(()=>p.value?"section":"div"),S=y(()=>n.value?"a":"div"),b=y(()=>p.value?e.depth+2===7?"p":`h${e.depth+2}`:"p"),P=y(()=>n.value?void 0:"button"),V=y(()=>[[`level-${e.depth}`],{collapsible:s.value},{collapsed:t.value},{"is-link":n.value},{"is-active":r.value},{"has-active":c.value}]);function E(N){"key"in N&&N.key!=="Enter"||!e.item.link&&d()}function C(){e.item.link&&d()}return(N,B)=>{const z=K("VPSidebarItem",!0);return a(),$(F(_.value),{class:I(["VPSidebarItem",V.value])},{default:f(()=>[N.item.text?(a(),l("div",j({key:0,class:"item",role:P.value},Ze(N.item.items?{click:E,keydown:E}:{},!0),{tabindex:N.item.items&&0}),[B[1]||(B[1]=v("div",{class:"indicator"},null,-1)),N.item.link?(a(),$(H,{key:0,tag:S.value,class:"link",href:N.item.link,rel:N.item.rel,target:N.item.target},{default:f(()=>[(a(),$(F(b.value),{class:"text",innerHTML:N.item.text},null,8,["innerHTML"]))]),_:1},8,["tag","href","rel","target"])):(a(),$(F(b.value),{key:1,class:"text",innerHTML:N.item.text},null,8,["innerHTML"])),N.item.collapsed!=null&&N.item.items&&N.item.items.length?(a(),l("div",{key:2,class:"caret",role:"button","aria-label":"toggle section",onClick:C,onKeydown:xe(C,["enter"]),tabindex:"0"},B[0]||(B[0]=[v("span",{class:"vpi-chevron-right caret-icon"},null,-1)]),32)):m("",!0)],16,$a)):m("",!0),N.item.items&&N.item.items.length?(a(),l("div",ya,[N.depth<5?(a(!0),l(M,{key:0},A(N.item.items,W=>(a(),$(z,{key:W.text,item:W,depth:N.depth+1},null,8,["item","depth"]))),128)):m("",!0)])):m("",!0)]),_:1},8,["class"])}}}),Va=g(Pa,[["__scopeId","data-v-196b2e5f"]]),Sa=h({__name:"VPSidebarGroup",props:{items:{}},setup(o){const e=w(!0);let t=null;return R(()=>{t=setTimeout(()=>{t=null,e.value=!1},300)}),et(()=>{t!=null&&(clearTimeout(t),t=null)}),(s,n)=>(a(!0),l(M,null,A(s.items,r=>(a(),l("div",{key:r.text,class:I(["group",{"no-transition":e.value}])},[k(Va,{item:r,depth:0},null,8,["item"])],2))),128))}}),La=g(Sa,[["__scopeId","data-v-9e426adc"]]),Ta={class:"nav",id:"VPSidebarNav","aria-labelledby":"sidebar-aria-label",tabindex:"-1"},wa=h({__name:"VPSidebar",props:{open:{type:Boolean}},setup(o){const{sidebarGroups:e,hasSidebar:t}=U(),s=o,n=w(null),r=Ie(te?document.body:null);D([s,n],()=>{var p;s.open?(r.value=!0,(p=n.value)==null||p.focus()):r.value=!1},{immediate:!0,flush:"post"});const c=w(0);return D(e,()=>{c.value+=1},{deep:!0}),(p,d)=>i(t)?(a(),l("aside",{key:0,class:I(["VPSidebar",{open:p.open}]),ref_key:"navEl",ref:n,onClick:d[0]||(d[0]=tt(()=>{},["stop"]))},[d[2]||(d[2]=v("div",{class:"curtain"},null,-1)),v("nav",Ta,[d[1]||(d[1]=v("span",{class:"visually-hidden",id:"sidebar-aria-label"}," Sidebar Navigation ",-1)),u(p.$slots,"sidebar-nav-before",{},void 0,!0),(a(),$(La,{items:i(e),key:c.value},null,8,["items"])),u(p.$slots,"sidebar-nav-after",{},void 0,!0)])],2)):m("",!0)}}),Na=g(wa,[["__scopeId","data-v-18756405"]]),Ia=h({__name:"VPSkipLink",setup(o){const e=Y(),t=w();D(()=>e.path,()=>t.value.focus());function s({target:n}){const r=document.getElementById(decodeURIComponent(n.hash).slice(1));if(r){const c=()=>{r.removeAttribute("tabindex"),r.removeEventListener("blur",c)};r.setAttribute("tabindex","-1"),r.addEventListener("blur",c),r.focus(),window.scrollTo(0,0)}}return(n,r)=>(a(),l(M,null,[v("span",{ref_key:"backToTop",ref:t,tabindex:"-1"},null,512),v("a",{href:"#VPContent",class:"VPSkipLink visually-hidden",onClick:s}," Skip to content ")],64))}}),Ma=g(Ia,[["__scopeId","data-v-c3508ec8"]]),Ea=h({__name:"Layout",setup(o){const{isOpen:e,open:t,close:s}=U(),n=Y();D(()=>n.path,s),$t(e,s);const{frontmatter:r}=L(),c=Me(),p=y(()=>!!c["home-hero-image"]);return he("hero-image-slot-exists",p),(d,_)=>{const S=K("Content");return i(r).layout!==!1?(a(),l("div",{key:0,class:I(["Layout",i(r).pageClass])},[u(d.$slots,"layout-top",{},void 0,!0),k(Ma),k(lt,{class:"backdrop",show:i(e),onClick:i(s)},null,8,["show","onClick"]),k(ga,null,{"nav-bar-title-before":f(()=>[u(d.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":f(()=>[u(d.$slots,"nav-bar-title-after",{},void 0,!0)]),"nav-bar-content-before":f(()=>[u(d.$slots,"nav-bar-content-before",{},void 0,!0)]),"nav-bar-content-after":f(()=>[u(d.$slots,"nav-bar-content-after",{},void 0,!0)]),"nav-screen-content-before":f(()=>[u(d.$slots,"nav-screen-content-before",{},void 0,!0)]),"nav-screen-content-after":f(()=>[u(d.$slots,"nav-screen-content-after",{},void 0,!0)]),_:3}),k(_s,{open:i(e),onOpenMenu:i(t)},null,8,["open","onOpenMenu"]),k(Na,{open:i(e)},{"sidebar-nav-before":f(()=>[u(d.$slots,"sidebar-nav-before",{},void 0,!0)]),"sidebar-nav-after":f(()=>[u(d.$slots,"sidebar-nav-after",{},void 0,!0)]),_:3},8,["open"]),k(ts,null,{"page-top":f(()=>[u(d.$slots,"page-top",{},void 0,!0)]),"page-bottom":f(()=>[u(d.$slots,"page-bottom",{},void 0,!0)]),"not-found":f(()=>[u(d.$slots,"not-found",{},void 0,!0)]),"home-hero-before":f(()=>[u(d.$slots,"home-hero-before",{},void 0,!0)]),"home-hero-info-before":f(()=>[u(d.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":f(()=>[u(d.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":f(()=>[u(d.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":f(()=>[u(d.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":f(()=>[u(d.$slots,"home-hero-image",{},void 0,!0)]),"home-hero-after":f(()=>[u(d.$slots,"home-hero-after",{},void 0,!0)]),"home-features-before":f(()=>[u(d.$slots,"home-features-before",{},void 0,!0)]),"home-features-after":f(()=>[u(d.$slots,"home-features-after",{},void 0,!0)]),"doc-footer-before":f(()=>[u(d.$slots,"doc-footer-before",{},void 0,!0)]),"doc-before":f(()=>[u(d.$slots,"doc-before",{},void 0,!0)]),"doc-after":f(()=>[u(d.$slots,"doc-after",{},void 0,!0)]),"doc-top":f(()=>[u(d.$slots,"doc-top",{},void 0,!0)]),"doc-bottom":f(()=>[u(d.$slots,"doc-bottom",{},void 0,!0)]),"aside-top":f(()=>[u(d.$slots,"aside-top",{},void 0,!0)]),"aside-bottom":f(()=>[u(d.$slots,"aside-bottom",{},void 0,!0)]),"aside-outline-before":f(()=>[u(d.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":f(()=>[u(d.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":f(()=>[u(d.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":f(()=>[u(d.$slots,"aside-ads-after",{},void 0,!0)]),_:3}),k(rs),u(d.$slots,"layout-bottom",{},void 0,!0)],2)):(a(),$(S,{key:1}))}}}),Ca=g(Ea,[["__scopeId","data-v-a9a9e638"]]),Aa={},Ba={class:"VPTeamPage"};function Ha(o,e){return a(),l("div",Ba,[u(o.$slots,"default")])}const Nr=g(Aa,[["render",Ha],["__scopeId","data-v-c2f8e101"]]),Oa={},Da={class:"VPTeamPageTitle"},Fa={key:0,class:"title"},Ra={key:1,class:"lead"};function Ua(o,e){return a(),l("div",Da,[o.$slots.title?(a(),l("h1",Fa,[u(o.$slots,"title",{},void 0,!0)])):m("",!0),o.$slots.lead?(a(),l("p",Ra,[u(o.$slots,"lead",{},void 0,!0)])):m("",!0)])}const Ir=g(Oa,[["render",Ua],["__scopeId","data-v-e277e15c"]]),za={},ja={class:"VPTeamPageSection"},Ga={class:"title"},Ka={key:0,class:"title-text"},Wa={key:0,class:"lead"},qa={key:1,class:"members"};function Ja(o,e){return a(),l("section",ja,[v("div",Ga,[e[0]||(e[0]=v("div",{class:"title-line"},null,-1)),o.$slots.title?(a(),l("h2",Ka,[u(o.$slots,"title",{},void 0,!0)])):m("",!0)]),o.$slots.lead?(a(),l("p",Wa,[u(o.$slots,"lead",{},void 0,!0)])):m("",!0),o.$slots.members?(a(),l("div",qa,[u(o.$slots,"members",{},void 0,!0)])):m("",!0)])}const Mr=g(za,[["render",Ja],["__scopeId","data-v-d43bc49d"]]),Ya={class:"profile"},Xa={class:"avatar"},Qa=["src","alt"],Za={class:"data"},xa={class:"name"},er={key:0,class:"affiliation"},tr={key:0,class:"title"},nr={key:1,class:"at"},sr=["innerHTML"],or={key:2,class:"links"},ar={key:0,class:"sp"},rr=h({__name:"VPTeamMembersItem",props:{size:{default:"medium"},member:{}},setup(o){return(e,t)=>(a(),l("article",{class:I(["VPTeamMembersItem",[e.size]])},[v("div",Ya,[v("figure",Xa,[v("img",{class:"avatar-img",src:e.member.avatar,alt:e.member.name},null,8,Qa)]),v("div",Za,[v("h1",xa,T(e.member.name),1),e.member.title||e.member.org?(a(),l("p",er,[e.member.title?(a(),l("span",tr,T(e.member.title),1)):m("",!0),e.member.title&&e.member.org?(a(),l("span",nr," @ ")):m("",!0),e.member.org?(a(),$(H,{key:2,class:I(["org",{link:e.member.orgLink}]),href:e.member.orgLink,"no-icon":""},{default:f(()=>[O(T(e.member.org),1)]),_:1},8,["class","href"])):m("",!0)])):m("",!0),e.member.desc?(a(),l("p",{key:1,class:"desc",innerHTML:e.member.desc},null,8,sr)):m("",!0),e.member.links?(a(),l("div",or,[k(se,{links:e.member.links},null,8,["links"])])):m("",!0)])]),e.member.sponsor?(a(),l("div",ar,[k(H,{class:"sp-link",href:e.member.sponsor,"no-icon":""},{default:f(()=>[t[0]||(t[0]=v("span",{class:"vpi-heart sp-icon"},null,-1)),O(" "+T(e.member.actionText||"Sponsor"),1)]),_:1},8,["href"])])):m("",!0)],2))}}),ir=g(rr,[["__scopeId","data-v-f9987cb6"]]),lr={class:"container"},cr=h({__name:"VPTeamMembers",props:{size:{default:"medium"},members:{}},setup(o){const e=o,t=y(()=>[e.size,`count-${e.members.length}`]);return(s,n)=>(a(),l("div",{class:I(["VPTeamMembers",t.value])},[v("div",lr,[(a(!0),l(M,null,A(s.members,r=>(a(),l("div",{key:r.name,class:"item"},[k(ir,{size:s.size,member:r},null,8,["size","member"])]))),128))])],2))}}),Er=g(cr,[["__scopeId","data-v-fba19bad"]]),Pe={Layout:Ca,enhanceApp:({app:o})=>{o.component("Badge",at)}},ur=h({__name:"VersionPicker",props:{screenMenu:{type:Boolean}},setup(o){Y();const e=w([]),t=w("Versions"),s=()=>new Promise(n=>{const r=setInterval(()=>{window.DOC_VERSIONS&&window.DOCUMENTER_CURRENT_VERSION&&(clearInterval(r),n({versions:window.DOC_VERSIONS,currentVersion:window.DOCUMENTER_CURRENT_VERSION}))},100)});return R(async()=>{const n=await s();e.value=n.versions.map(r=>({text:r,link:`${window.location.origin}/${r}/`})),t.value=n.currentVersion}),(n,r)=>n.screenMenu?(a(),$(Fe,{key:1,text:t.value,items:e.value,class:"VPVersionPicker"},null,8,["text","items"])):(a(),$(Oe,{key:0,item:{text:t.value,items:e.value},class:"VPVersionPicker"},null,8,["item"]))}}),dr=g(ur,[["__scopeId","data-v-53ba4430"]]),vr=o=>{if(typeof document>"u")return{stabilizeScrollPosition:n=>async(...r)=>n(...r)};const e=document.documentElement;return{stabilizeScrollPosition:s=>async(...n)=>{const r=s(...n),c=o.value;if(!c)return r;const p=c.offsetTop-e.scrollTop;return await we(),e.scrollTop=c.offsetTop-p,r}}},Re="vitepress:tabSharedState",J=typeof localStorage<"u"?localStorage:null,Ue="vitepress:tabsSharedState",pr=()=>{const o=J==null?void 0:J.getItem(Ue);if(o)try{return JSON.parse(o)}catch{}return{}},fr=o=>{J&&J.setItem(Ue,JSON.stringify(o))},mr=o=>{const e=nt({});D(()=>e.content,(t,s)=>{t&&s&&fr(t)},{deep:!0}),o.provide(Re,e)},hr=(o,e)=>{const t=q(Re);if(!t)throw new Error("[vitepress-plugin-tabs] TabsSharedState should be injected");R(()=>{t.content||(t.content=pr())});const s=w(),n=y({get(){var d;const c=e.value,p=o.value;if(c){const _=(d=t.content)==null?void 0:d[c];if(_&&p.includes(_))return _}else{const _=s.value;if(_)return _}return p[0]},set(c){const p=e.value;p?t.content&&(t.content[p]=c):s.value=c}});return{selected:n,select:c=>{n.value=c}}};let Ve=0;const _r=()=>(Ve++,""+Ve);function br(){const o=Me();return y(()=>{var s;const t=(s=o.default)==null?void 0:s.call(o);return t?t.filter(n=>typeof n.type=="object"&&"__name"in n.type&&n.type.__name==="PluginTabsTab"&&n.props).map(n=>{var r;return(r=n.props)==null?void 0:r.label}):[]})}const ze="vitepress:tabSingleState",kr=o=>{he(ze,o)},gr=()=>{const o=q(ze);if(!o)throw new Error("[vitepress-plugin-tabs] TabsSingleState should be injected");return o},$r={class:"plugin-tabs"},yr=["id","aria-selected","aria-controls","tabindex","onClick"],Pr=h({__name:"PluginTabs",props:{sharedStateKey:{}},setup(o){const e=o,t=br(),{selected:s,select:n}=hr(t,st(e,"sharedStateKey")),r=w(),{stabilizeScrollPosition:c}=vr(r),p=c(n),d=w([]),_=b=>{var E;const P=t.value.indexOf(s.value);let V;b.key==="ArrowLeft"?V=P>=1?P-1:t.value.length-1:b.key==="ArrowRight"&&(V=P(a(),l("div",$r,[v("div",{ref_key:"tablist",ref:r,class:"plugin-tabs--tab-list",role:"tablist",onKeydown:_},[(a(!0),l(M,null,A(i(t),V=>(a(),l("button",{id:`tab-${V}-${i(S)}`,ref_for:!0,ref_key:"buttonRefs",ref:d,key:V,role:"tab",class:"plugin-tabs--tab","aria-selected":V===i(s),"aria-controls":`panel-${V}-${i(S)}`,tabindex:V===i(s)?0:-1,onClick:()=>i(p)(V)},T(V),9,yr))),128))],544),u(b.$slots,"default")]))}}),Vr=["id","aria-labelledby"],Sr=h({__name:"PluginTabsTab",props:{label:{}},setup(o){const{uid:e,selected:t}=gr();return(s,n)=>i(t)===s.label?(a(),l("div",{key:0,id:`panel-${s.label}-${i(e)}`,class:"plugin-tabs--content",role:"tabpanel",tabindex:"0","aria-labelledby":`tab-${s.label}-${i(e)}`},[u(s.$slots,"default",{},void 0,!0)],8,Vr)):m("",!0)}}),Lr=g(Sr,[["__scopeId","data-v-9b0d03d2"]]),Tr=o=>{mr(o),o.component("PluginTabs",Pr),o.component("PluginTabsTab",Lr)},Cr={extends:Pe,Layout(){return ot(Pe.Layout,null,{})},enhanceApp({app:o,router:e,siteData:t}){if(Tr(o),o.component("VersionPicker",dr),typeof window<"u"){let s=function(){if(!(window.DOCUMENTER_NEWEST===void 0||window.DOCUMENTER_CURRENT_VERSION===void 0||window.DOCUMENTER_STABLE===void 0)&&window.DOCUMENTER_NEWEST===window.DOCUMENTER_CURRENT_VERSION){const n=window.location.href.replace(window.DOCUMENTER_CURRENT_VERSION,window.DOCUMENTER_STABLE);window.history.replaceState({additionalInformation:"URL rewritten to stable"},"Makie",n);return}};D(()=>e.route.data.relativePath,s,{immediate:!0}),document.addEventListener("DOMContentLoaded",s)}}};export{Cr as R,Ir as V,Mr as a,Er as b,Nr as c,ko as d,L as u}; diff --git a/dev/assets/ecosystem.md.DRU_3EAm.js b/dev/assets/ecosystem.md._RnqiY4V.js similarity index 97% rename from dev/assets/ecosystem.md.DRU_3EAm.js rename to dev/assets/ecosystem.md._RnqiY4V.js index eae75dd7..125cf2ae 100644 --- a/dev/assets/ecosystem.md.DRU_3EAm.js +++ b/dev/assets/ecosystem.md._RnqiY4V.js @@ -1 +1 @@ -import{V as r,a as i,b as o,c}from"./chunks/theme.B3BJMEH-.js";import{c as p,G as t,w as s,k as n,o as u,a}from"./chunks/framework.JKTEW8jd.js";const y=JSON.parse('{"title":"","description":"","frontmatter":{"layout":"page"},"headers":[],"relativePath":"ecosystem.md","filePath":"ecosystem.md","lastUpdated":null}'),d={name:"ecosystem.md"},E=Object.assign(d,{setup(h){const l=[{avatar:"https://github.com/GeoRegionsEcosystem.png",name:"GeoRegions.jl",desc:"Defining Geographic Regions of Interest for Geospatial Data in Geoscience and Climate.",links:[{icon:"github",link:"https://github.com/SciML/DiffEqFlux.jl"}]}],g=[{avatar:"https://github.com/GeoRegionsEcosystem.png",name:"RegionGrids.jl",desc:"Extracting Gridded Data for a given GeoRegion",links:[{icon:"github",link:"https://github.com/GeoRegionsEcosystem/RegionGrids.jl"}]},{avatar:"https://github.com/GeoRegionsEcosystem.png",name:"LandSea.jl",desc:"Extensible Land-Sea Mask Datasets",links:[{icon:"github",link:"https://github.com/GeoRegionsEcosystem/LandSea.jl"}]}],m=[{avatar:"https://raw.githubusercontent.com/natgeo-wong/NASAPrecipitation.jl/main/src/logosmall.png",name:"NASAPrecipitation.jl",desc:"Downloading, Extracting and Analyzing NASA Satellite Precipitation Data",links:[{icon:"github",link:"https://github.com/GeoRegionsEcosystem/NASAPrecipitation.jl"}]},{avatar:"https://raw.githubusercontent.com/natgeo-wong/NASAPrecipitation.jl/main/src/logosmall.png",name:"ERA5Reanalysis.jl",desc:"Downloading, Extracting and Analyzing ERA5 Reanalysis Data",links:[{icon:"github",link:"https://github.com/GeoRegionsEcosystem/ERA5Reanalysis.jl"}]},{avatar:"https://raw.githubusercontent.com/natgeo-wong/NASAPrecipitation.jl/main/src/logosmall.png",name:"NASABrightnessTemperature.jl",desc:"Downloading, Extracting and Analyzing NASA Brightness Temperature Data",links:[{icon:"github",link:"https://github.com/GeoRegionsEcosystem/NASABrightnessTemperature.jl"}]}];return(b,e)=>(u(),p("div",null,[t(n(c),null,{default:s(()=>[t(n(r),null,{title:s(()=>e[0]||(e[0]=[a("Ecosystem")])),_:1}),t(n(i),null,{title:s(()=>e[1]||(e[1]=[a("GeoRegions.jl")])),members:s(()=>[t(n(o),{size:"small",members:l})]),_:1}),t(n(i),null,{title:s(()=>e[2]||(e[2]=[a("Frameworks Extending GeoRegions.jl")])),members:s(()=>[t(n(o),{size:"small",members:g})]),_:1}),t(n(i),null,{title:s(()=>e[3]||(e[3]=[a("The GeoRegions Ecosystem")])),members:s(()=>[t(n(o),{size:"small",members:m})]),_:1})]),_:1})]))}});export{y as __pageData,E as default}; +import{V as r,a as i,b as o,c}from"./chunks/theme.DptDGCLo.js";import{c as p,G as t,w as s,k as n,o as u,a}from"./chunks/framework.JKTEW8jd.js";const y=JSON.parse('{"title":"","description":"","frontmatter":{"layout":"page"},"headers":[],"relativePath":"ecosystem.md","filePath":"ecosystem.md","lastUpdated":null}'),d={name:"ecosystem.md"},E=Object.assign(d,{setup(h){const l=[{avatar:"https://github.com/GeoRegionsEcosystem.png",name:"GeoRegions.jl",desc:"Defining Geographic Regions of Interest for Geospatial Data in Geoscience and Climate.",links:[{icon:"github",link:"https://github.com/SciML/DiffEqFlux.jl"}]}],g=[{avatar:"https://github.com/GeoRegionsEcosystem.png",name:"RegionGrids.jl",desc:"Extracting Gridded Data for a given GeoRegion",links:[{icon:"github",link:"https://github.com/GeoRegionsEcosystem/RegionGrids.jl"}]},{avatar:"https://github.com/GeoRegionsEcosystem.png",name:"LandSea.jl",desc:"Extensible Land-Sea Mask Datasets",links:[{icon:"github",link:"https://github.com/GeoRegionsEcosystem/LandSea.jl"}]}],m=[{avatar:"https://raw.githubusercontent.com/natgeo-wong/NASAPrecipitation.jl/main/src/logosmall.png",name:"NASAPrecipitation.jl",desc:"Downloading, Extracting and Analyzing NASA Satellite Precipitation Data",links:[{icon:"github",link:"https://github.com/GeoRegionsEcosystem/NASAPrecipitation.jl"}]},{avatar:"https://raw.githubusercontent.com/natgeo-wong/NASAPrecipitation.jl/main/src/logosmall.png",name:"ERA5Reanalysis.jl",desc:"Downloading, Extracting and Analyzing ERA5 Reanalysis Data",links:[{icon:"github",link:"https://github.com/GeoRegionsEcosystem/ERA5Reanalysis.jl"}]},{avatar:"https://raw.githubusercontent.com/natgeo-wong/NASAPrecipitation.jl/main/src/logosmall.png",name:"NASABrightnessTemperature.jl",desc:"Downloading, Extracting and Analyzing NASA Brightness Temperature Data",links:[{icon:"github",link:"https://github.com/GeoRegionsEcosystem/NASABrightnessTemperature.jl"}]}];return(b,e)=>(u(),p("div",null,[t(n(c),null,{default:s(()=>[t(n(r),null,{title:s(()=>e[0]||(e[0]=[a("Ecosystem")])),_:1}),t(n(i),null,{title:s(()=>e[1]||(e[1]=[a("GeoRegions.jl")])),members:s(()=>[t(n(o),{size:"small",members:l})]),_:1}),t(n(i),null,{title:s(()=>e[2]||(e[2]=[a("Frameworks Extending GeoRegions.jl")])),members:s(()=>[t(n(o),{size:"small",members:g})]),_:1}),t(n(i),null,{title:s(()=>e[3]||(e[3]=[a("The GeoRegions Ecosystem")])),members:s(()=>[t(n(o),{size:"small",members:m})]),_:1})]),_:1})]))}});export{y as __pageData,E as default}; diff --git a/dev/assets/ecosystem.md.DRU_3EAm.lean.js b/dev/assets/ecosystem.md._RnqiY4V.lean.js similarity index 97% rename from dev/assets/ecosystem.md.DRU_3EAm.lean.js rename to dev/assets/ecosystem.md._RnqiY4V.lean.js index eae75dd7..125cf2ae 100644 --- a/dev/assets/ecosystem.md.DRU_3EAm.lean.js +++ b/dev/assets/ecosystem.md._RnqiY4V.lean.js @@ -1 +1 @@ -import{V as r,a as i,b as o,c}from"./chunks/theme.B3BJMEH-.js";import{c as p,G as t,w as s,k as n,o as u,a}from"./chunks/framework.JKTEW8jd.js";const y=JSON.parse('{"title":"","description":"","frontmatter":{"layout":"page"},"headers":[],"relativePath":"ecosystem.md","filePath":"ecosystem.md","lastUpdated":null}'),d={name:"ecosystem.md"},E=Object.assign(d,{setup(h){const l=[{avatar:"https://github.com/GeoRegionsEcosystem.png",name:"GeoRegions.jl",desc:"Defining Geographic Regions of Interest for Geospatial Data in Geoscience and Climate.",links:[{icon:"github",link:"https://github.com/SciML/DiffEqFlux.jl"}]}],g=[{avatar:"https://github.com/GeoRegionsEcosystem.png",name:"RegionGrids.jl",desc:"Extracting Gridded Data for a given GeoRegion",links:[{icon:"github",link:"https://github.com/GeoRegionsEcosystem/RegionGrids.jl"}]},{avatar:"https://github.com/GeoRegionsEcosystem.png",name:"LandSea.jl",desc:"Extensible Land-Sea Mask Datasets",links:[{icon:"github",link:"https://github.com/GeoRegionsEcosystem/LandSea.jl"}]}],m=[{avatar:"https://raw.githubusercontent.com/natgeo-wong/NASAPrecipitation.jl/main/src/logosmall.png",name:"NASAPrecipitation.jl",desc:"Downloading, Extracting and Analyzing NASA Satellite Precipitation Data",links:[{icon:"github",link:"https://github.com/GeoRegionsEcosystem/NASAPrecipitation.jl"}]},{avatar:"https://raw.githubusercontent.com/natgeo-wong/NASAPrecipitation.jl/main/src/logosmall.png",name:"ERA5Reanalysis.jl",desc:"Downloading, Extracting and Analyzing ERA5 Reanalysis Data",links:[{icon:"github",link:"https://github.com/GeoRegionsEcosystem/ERA5Reanalysis.jl"}]},{avatar:"https://raw.githubusercontent.com/natgeo-wong/NASAPrecipitation.jl/main/src/logosmall.png",name:"NASABrightnessTemperature.jl",desc:"Downloading, Extracting and Analyzing NASA Brightness Temperature Data",links:[{icon:"github",link:"https://github.com/GeoRegionsEcosystem/NASABrightnessTemperature.jl"}]}];return(b,e)=>(u(),p("div",null,[t(n(c),null,{default:s(()=>[t(n(r),null,{title:s(()=>e[0]||(e[0]=[a("Ecosystem")])),_:1}),t(n(i),null,{title:s(()=>e[1]||(e[1]=[a("GeoRegions.jl")])),members:s(()=>[t(n(o),{size:"small",members:l})]),_:1}),t(n(i),null,{title:s(()=>e[2]||(e[2]=[a("Frameworks Extending GeoRegions.jl")])),members:s(()=>[t(n(o),{size:"small",members:g})]),_:1}),t(n(i),null,{title:s(()=>e[3]||(e[3]=[a("The GeoRegions Ecosystem")])),members:s(()=>[t(n(o),{size:"small",members:m})]),_:1})]),_:1})]))}});export{y as __pageData,E as default}; +import{V as r,a as i,b as o,c}from"./chunks/theme.DptDGCLo.js";import{c as p,G as t,w as s,k as n,o as u,a}from"./chunks/framework.JKTEW8jd.js";const y=JSON.parse('{"title":"","description":"","frontmatter":{"layout":"page"},"headers":[],"relativePath":"ecosystem.md","filePath":"ecosystem.md","lastUpdated":null}'),d={name:"ecosystem.md"},E=Object.assign(d,{setup(h){const l=[{avatar:"https://github.com/GeoRegionsEcosystem.png",name:"GeoRegions.jl",desc:"Defining Geographic Regions of Interest for Geospatial Data in Geoscience and Climate.",links:[{icon:"github",link:"https://github.com/SciML/DiffEqFlux.jl"}]}],g=[{avatar:"https://github.com/GeoRegionsEcosystem.png",name:"RegionGrids.jl",desc:"Extracting Gridded Data for a given GeoRegion",links:[{icon:"github",link:"https://github.com/GeoRegionsEcosystem/RegionGrids.jl"}]},{avatar:"https://github.com/GeoRegionsEcosystem.png",name:"LandSea.jl",desc:"Extensible Land-Sea Mask Datasets",links:[{icon:"github",link:"https://github.com/GeoRegionsEcosystem/LandSea.jl"}]}],m=[{avatar:"https://raw.githubusercontent.com/natgeo-wong/NASAPrecipitation.jl/main/src/logosmall.png",name:"NASAPrecipitation.jl",desc:"Downloading, Extracting and Analyzing NASA Satellite Precipitation Data",links:[{icon:"github",link:"https://github.com/GeoRegionsEcosystem/NASAPrecipitation.jl"}]},{avatar:"https://raw.githubusercontent.com/natgeo-wong/NASAPrecipitation.jl/main/src/logosmall.png",name:"ERA5Reanalysis.jl",desc:"Downloading, Extracting and Analyzing ERA5 Reanalysis Data",links:[{icon:"github",link:"https://github.com/GeoRegionsEcosystem/ERA5Reanalysis.jl"}]},{avatar:"https://raw.githubusercontent.com/natgeo-wong/NASAPrecipitation.jl/main/src/logosmall.png",name:"NASABrightnessTemperature.jl",desc:"Downloading, Extracting and Analyzing NASA Brightness Temperature Data",links:[{icon:"github",link:"https://github.com/GeoRegionsEcosystem/NASABrightnessTemperature.jl"}]}];return(b,e)=>(u(),p("div",null,[t(n(c),null,{default:s(()=>[t(n(r),null,{title:s(()=>e[0]||(e[0]=[a("Ecosystem")])),_:1}),t(n(i),null,{title:s(()=>e[1]||(e[1]=[a("GeoRegions.jl")])),members:s(()=>[t(n(o),{size:"small",members:l})]),_:1}),t(n(i),null,{title:s(()=>e[2]||(e[2]=[a("Frameworks Extending GeoRegions.jl")])),members:s(()=>[t(n(o),{size:"small",members:g})]),_:1}),t(n(i),null,{title:s(()=>e[3]||(e[3]=[a("The GeoRegions Ecosystem")])),members:s(()=>[t(n(o),{size:"small",members:m})]),_:1})]),_:1})]))}});export{y as __pageData,E as default}; diff --git a/dev/assets/georegions.md.vVq3VaU_.js b/dev/assets/georegions.md.CXYplEBr.js similarity index 90% rename from dev/assets/georegions.md.vVq3VaU_.js rename to dev/assets/georegions.md.CXYplEBr.js index 2aca027b..fa407704 100644 --- a/dev/assets/georegions.md.vVq3VaU_.js +++ b/dev/assets/georegions.md.CXYplEBr.js @@ -1 +1 @@ -import{_ as l,c as a,a5 as i,j as o,a as t,G as n,B as d,o as c}from"./chunks/framework.JKTEW8jd.js";const T=JSON.parse('{"title":"What is a GeoRegion?","description":"","frontmatter":{},"headers":[],"relativePath":"georegions.md","filePath":"georegions.md","lastUpdated":null}'),r={name:"georegions.md"},p={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},h={class:"jldocstring custom-block",open:""},b={class:"jldocstring custom-block",open:""};function u(f,e,R,y,G,k){const s=d("Badge");return c(),a("div",null,[e[12]||(e[12]=i('

What is a GeoRegion?

In essence, a GeoRegion is:

  • a geographical region of interest

  • identified by an ID

  • a subregion of a parent GeoRegion (identified by pID, which must also be a valid ID)

Default GeoRegions

When using GeoRegions.jl, the default GeoRegion should generally be the global domain, specified by GLB and given by the [N,S,E,W] coordinates [90,-90,360,0]. The Global GeoRegion GLB is considered to be a subset of itself.

',4)),o("details",p,[o("summary",null,[e[0]||(e[0]=o("a",{id:"GeoRegions.GeoRegion",href:"#GeoRegions.GeoRegion"},[o("span",{class:"jlbinding"},"GeoRegions.GeoRegion")],-1)),e[1]||(e[1]=t()),n(s,{type:"info",class:"jlObjectType jlType",text:"Type"})]),e[2]||(e[2]=i('
julia
GeoRegion

Abstract supertype for geographical regions. All GeoRegion types contain the following fields:

  • ID - A String Type, the identifier for the GeoRegion

  • pID - A String Type, the identifier for the parent GeoRegion

  • name - A String Type, the full name of the GeoRegion

  • bound - A vector of Float Types, defining the [North, South, East, West] boundaries of the GeoRegion

  • shape - A vector of Point2 Types, defining a non-rectilinear shape of the GeoRegion

  • is180 - A Bool Type, is W < 0

  • is360 - A Bool Type, is E > 180

source

',4))]),e[13]||(e[13]=i('

Types of GeoRegions

In GeoRegions.jl, we differentiate between several different types of GeoRegions:

  • Rectilinear GeoRegions are denoted by the RectRegion type, available in all version of GeoRegions.jl

  • Tilted rectangular GeoRegions are denoted by the TiltRegion type, available in ≥v6

  • Polygonal GeoRegions are denoted by the PolyRegion type, available in ≥v2

RectRegions

',4)),o("details",g,[o("summary",null,[e[3]||(e[3]=o("a",{id:"GeoRegions.RectRegion",href:"#GeoRegions.RectRegion"},[o("span",{class:"jlbinding"},"GeoRegions.RectRegion")],-1)),e[4]||(e[4]=t()),n(s,{type:"info",class:"jlObjectType jlType",text:"Type"})]),e[5]||(e[5]=i('
julia
RectRegion <: GeoRegion

A rectangular region on a rectilinear grid. Defined by its N,S,E,W boundaries.

source

',3))]),e[14]||(e[14]=o("h3",{id:"tiltregions",tabindex:"-1"},[t("TiltRegions "),o("a",{class:"header-anchor",href:"#tiltregions","aria-label":'Permalink to "TiltRegions"'},"​")],-1)),o("details",h,[o("summary",null,[e[6]||(e[6]=o("a",{id:"GeoRegions.TiltRegion",href:"#GeoRegions.TiltRegion"},[o("span",{class:"jlbinding"},"GeoRegions.TiltRegion")],-1)),e[7]||(e[7]=t()),n(s,{type:"info",class:"jlObjectType jlType",text:"Type"})]),e[8]||(e[8]=i('
julia
TiltRegion <: GeoRegion

A tilted rectangular region on a rectilinear grid. Defined by

  • the (lon,lat) coordinates of its centre

  • the width in both the longitude and latitude directions (pre-rotation)

  • the angle of tilt in degrees (clockwise)

In addition to all the fields common to the GeoRegion abstract type, TiltRegions will also contain the following field:

  • geometry : A vector of Float Types, containing [X,Y,ΔX,ΔY,θ], where
    • X : A Float Type, the longitude coordinate of region centre

    • Y : A Float Type, the latitude coordinate of region centre

    • θ : A Float Type, the angle-tilt of rectangular region in degrees in the clockwise direction

    • ΔX : A Float Type, the half-width in longitude coordinates (before tilting)

    • ΔY : A Float Type, the half-width in latitude coordinates (before tilting)

source

',6))]),e[15]||(e[15]=o("h3",{id:"polyregions",tabindex:"-1"},[t("PolyRegions "),o("a",{class:"header-anchor",href:"#polyregions","aria-label":'Permalink to "PolyRegions"'},"​")],-1)),o("details",b,[o("summary",null,[e[9]||(e[9]=o("a",{id:"GeoRegions.PolyRegion",href:"#GeoRegions.PolyRegion"},[o("span",{class:"jlbinding"},"GeoRegions.PolyRegion")],-1)),e[10]||(e[10]=t()),n(s,{type:"info",class:"jlObjectType jlType",text:"Type"})]),e[11]||(e[11]=i('
julia
PolyRegion <: GeoRegion

A polygonal region on a rectilinear lon-lat grid, defined by the (lon,lat) coordinates of its vertices.

source

',3))])])}const j=l(r,[["render",u]]);export{T as __pageData,j as default}; +import{_ as l,c as a,a5 as i,j as o,a as t,G as n,B as d,o as r}from"./chunks/framework.JKTEW8jd.js";const T=JSON.parse('{"title":"What is a GeoRegion?","description":"","frontmatter":{},"headers":[],"relativePath":"georegions.md","filePath":"georegions.md","lastUpdated":null}'),p={name:"georegions.md"},c={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},h={class:"jldocstring custom-block",open:""},b={class:"jldocstring custom-block",open:""};function u(R,e,y,f,G,k){const s=d("Badge");return r(),a("div",null,[e[12]||(e[12]=i('

What is a GeoRegion?

In essence, a GeoRegion is:

  • a geographical region of interest

  • identified by an ID

  • a subregion of a parent GeoRegion (identified by pID, which must also be a valid ID)

Default GeoRegions

When using GeoRegions.jl, the default GeoRegion should generally be the global domain, specified by GLB and given by the [N,S,E,W] coordinates [90,-90,360,0]. The Global GeoRegion GLB is considered to be a subset of itself.

',4)),o("details",c,[o("summary",null,[e[0]||(e[0]=o("a",{id:"GeoRegions.GeoRegion",href:"#GeoRegions.GeoRegion"},[o("span",{class:"jlbinding"},"GeoRegions.GeoRegion")],-1)),e[1]||(e[1]=t()),n(s,{type:"info",class:"jlObjectType jlType",text:"Type"})]),e[2]||(e[2]=i('
julia
GeoRegion

Abstract supertype for geographical regions. All GeoRegion types contain the following fields:

  • ID - A String Type, the identifier for the GeoRegion

  • pID - A String Type, the identifier for the parent GeoRegion

  • name - A String Type, the full name of the GeoRegion

  • bound - A vector of Float Types, defining the [North, South, East, West] boundaries of the GeoRegion

  • shape - A vector of Point2 Types, defining a non-rectilinear shape of the GeoRegion

  • is180 - A Bool Type, is W < 0

  • is360 - A Bool Type, is E > 180

source

',4))]),e[13]||(e[13]=i('

Types of GeoRegions

In GeoRegions.jl, we differentiate between several different types of GeoRegions:

  • Rectilinear GeoRegions are denoted by the RectRegion type, available in all version of GeoRegions.jl

  • Tilted rectangular GeoRegions are denoted by the TiltRegion type, available in ≥v6

  • Polygonal GeoRegions are denoted by the PolyRegion type, available in ≥v2

RectRegions

',4)),o("details",g,[o("summary",null,[e[3]||(e[3]=o("a",{id:"GeoRegions.RectRegion",href:"#GeoRegions.RectRegion"},[o("span",{class:"jlbinding"},"GeoRegions.RectRegion")],-1)),e[4]||(e[4]=t()),n(s,{type:"info",class:"jlObjectType jlType",text:"Type"})]),e[5]||(e[5]=i('
julia
RectRegion <: GeoRegion

A rectangular region on a rectilinear grid. Defined by its N,S,E,W boundaries.

source

',3))]),e[14]||(e[14]=o("h3",{id:"tiltregions",tabindex:"-1"},[t("TiltRegions "),o("a",{class:"header-anchor",href:"#tiltregions","aria-label":'Permalink to "TiltRegions"'},"​")],-1)),o("details",h,[o("summary",null,[e[6]||(e[6]=o("a",{id:"GeoRegions.TiltRegion",href:"#GeoRegions.TiltRegion"},[o("span",{class:"jlbinding"},"GeoRegions.TiltRegion")],-1)),e[7]||(e[7]=t()),n(s,{type:"info",class:"jlObjectType jlType",text:"Type"})]),e[8]||(e[8]=i('
julia
TiltRegion <: GeoRegion

A tilted rectangular region on a rectilinear grid. Defined by

  • the (lon,lat) coordinates of its centre

  • the width in both the longitude and latitude directions (pre-rotation)

  • the angle of tilt in degrees (clockwise)

In addition to all the fields common to the GeoRegion abstract type, TiltRegions will also contain the following field:

  • geometry : A vector of Float Types, containing [X,Y,ΔX,ΔY,θ], where
    • X : A Float Type, the longitude coordinate of region centre

    • Y : A Float Type, the latitude coordinate of region centre

    • θ : A Float Type, the angle-tilt of rectangular region in degrees in the clockwise direction

    • ΔX : A Float Type, the half-width in longitude coordinates (before tilting)

    • ΔY : A Float Type, the half-width in latitude coordinates (before tilting)

source

',6))]),e[15]||(e[15]=o("h3",{id:"polyregions",tabindex:"-1"},[t("PolyRegions "),o("a",{class:"header-anchor",href:"#polyregions","aria-label":'Permalink to "PolyRegions"'},"​")],-1)),o("details",b,[o("summary",null,[e[9]||(e[9]=o("a",{id:"GeoRegions.PolyRegion",href:"#GeoRegions.PolyRegion"},[o("span",{class:"jlbinding"},"GeoRegions.PolyRegion")],-1)),e[10]||(e[10]=t()),n(s,{type:"info",class:"jlObjectType jlType",text:"Type"})]),e[11]||(e[11]=i('
julia
PolyRegion <: GeoRegion

A polygonal region on a rectilinear lon-lat grid, defined by the (lon,lat) coordinates of its vertices.

source

',3))])])}const j=l(p,[["render",u]]);export{T as __pageData,j as default}; diff --git a/dev/assets/georegions.md.vVq3VaU_.lean.js b/dev/assets/georegions.md.CXYplEBr.lean.js similarity index 90% rename from dev/assets/georegions.md.vVq3VaU_.lean.js rename to dev/assets/georegions.md.CXYplEBr.lean.js index 2aca027b..fa407704 100644 --- a/dev/assets/georegions.md.vVq3VaU_.lean.js +++ b/dev/assets/georegions.md.CXYplEBr.lean.js @@ -1 +1 @@ -import{_ as l,c as a,a5 as i,j as o,a as t,G as n,B as d,o as c}from"./chunks/framework.JKTEW8jd.js";const T=JSON.parse('{"title":"What is a GeoRegion?","description":"","frontmatter":{},"headers":[],"relativePath":"georegions.md","filePath":"georegions.md","lastUpdated":null}'),r={name:"georegions.md"},p={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},h={class:"jldocstring custom-block",open:""},b={class:"jldocstring custom-block",open:""};function u(f,e,R,y,G,k){const s=d("Badge");return c(),a("div",null,[e[12]||(e[12]=i('

What is a GeoRegion?

In essence, a GeoRegion is:

  • a geographical region of interest

  • identified by an ID

  • a subregion of a parent GeoRegion (identified by pID, which must also be a valid ID)

Default GeoRegions

When using GeoRegions.jl, the default GeoRegion should generally be the global domain, specified by GLB and given by the [N,S,E,W] coordinates [90,-90,360,0]. The Global GeoRegion GLB is considered to be a subset of itself.

',4)),o("details",p,[o("summary",null,[e[0]||(e[0]=o("a",{id:"GeoRegions.GeoRegion",href:"#GeoRegions.GeoRegion"},[o("span",{class:"jlbinding"},"GeoRegions.GeoRegion")],-1)),e[1]||(e[1]=t()),n(s,{type:"info",class:"jlObjectType jlType",text:"Type"})]),e[2]||(e[2]=i('
julia
GeoRegion

Abstract supertype for geographical regions. All GeoRegion types contain the following fields:

  • ID - A String Type, the identifier for the GeoRegion

  • pID - A String Type, the identifier for the parent GeoRegion

  • name - A String Type, the full name of the GeoRegion

  • bound - A vector of Float Types, defining the [North, South, East, West] boundaries of the GeoRegion

  • shape - A vector of Point2 Types, defining a non-rectilinear shape of the GeoRegion

  • is180 - A Bool Type, is W < 0

  • is360 - A Bool Type, is E > 180

source

',4))]),e[13]||(e[13]=i('

Types of GeoRegions

In GeoRegions.jl, we differentiate between several different types of GeoRegions:

  • Rectilinear GeoRegions are denoted by the RectRegion type, available in all version of GeoRegions.jl

  • Tilted rectangular GeoRegions are denoted by the TiltRegion type, available in ≥v6

  • Polygonal GeoRegions are denoted by the PolyRegion type, available in ≥v2

RectRegions

',4)),o("details",g,[o("summary",null,[e[3]||(e[3]=o("a",{id:"GeoRegions.RectRegion",href:"#GeoRegions.RectRegion"},[o("span",{class:"jlbinding"},"GeoRegions.RectRegion")],-1)),e[4]||(e[4]=t()),n(s,{type:"info",class:"jlObjectType jlType",text:"Type"})]),e[5]||(e[5]=i('
julia
RectRegion <: GeoRegion

A rectangular region on a rectilinear grid. Defined by its N,S,E,W boundaries.

source

',3))]),e[14]||(e[14]=o("h3",{id:"tiltregions",tabindex:"-1"},[t("TiltRegions "),o("a",{class:"header-anchor",href:"#tiltregions","aria-label":'Permalink to "TiltRegions"'},"​")],-1)),o("details",h,[o("summary",null,[e[6]||(e[6]=o("a",{id:"GeoRegions.TiltRegion",href:"#GeoRegions.TiltRegion"},[o("span",{class:"jlbinding"},"GeoRegions.TiltRegion")],-1)),e[7]||(e[7]=t()),n(s,{type:"info",class:"jlObjectType jlType",text:"Type"})]),e[8]||(e[8]=i('
julia
TiltRegion <: GeoRegion

A tilted rectangular region on a rectilinear grid. Defined by

  • the (lon,lat) coordinates of its centre

  • the width in both the longitude and latitude directions (pre-rotation)

  • the angle of tilt in degrees (clockwise)

In addition to all the fields common to the GeoRegion abstract type, TiltRegions will also contain the following field:

  • geometry : A vector of Float Types, containing [X,Y,ΔX,ΔY,θ], where
    • X : A Float Type, the longitude coordinate of region centre

    • Y : A Float Type, the latitude coordinate of region centre

    • θ : A Float Type, the angle-tilt of rectangular region in degrees in the clockwise direction

    • ΔX : A Float Type, the half-width in longitude coordinates (before tilting)

    • ΔY : A Float Type, the half-width in latitude coordinates (before tilting)

source

',6))]),e[15]||(e[15]=o("h3",{id:"polyregions",tabindex:"-1"},[t("PolyRegions "),o("a",{class:"header-anchor",href:"#polyregions","aria-label":'Permalink to "PolyRegions"'},"​")],-1)),o("details",b,[o("summary",null,[e[9]||(e[9]=o("a",{id:"GeoRegions.PolyRegion",href:"#GeoRegions.PolyRegion"},[o("span",{class:"jlbinding"},"GeoRegions.PolyRegion")],-1)),e[10]||(e[10]=t()),n(s,{type:"info",class:"jlObjectType jlType",text:"Type"})]),e[11]||(e[11]=i('
julia
PolyRegion <: GeoRegion

A polygonal region on a rectilinear lon-lat grid, defined by the (lon,lat) coordinates of its vertices.

source

',3))])])}const j=l(r,[["render",u]]);export{T as __pageData,j as default}; +import{_ as l,c as a,a5 as i,j as o,a as t,G as n,B as d,o as r}from"./chunks/framework.JKTEW8jd.js";const T=JSON.parse('{"title":"What is a GeoRegion?","description":"","frontmatter":{},"headers":[],"relativePath":"georegions.md","filePath":"georegions.md","lastUpdated":null}'),p={name:"georegions.md"},c={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},h={class:"jldocstring custom-block",open:""},b={class:"jldocstring custom-block",open:""};function u(R,e,y,f,G,k){const s=d("Badge");return r(),a("div",null,[e[12]||(e[12]=i('

What is a GeoRegion?

In essence, a GeoRegion is:

  • a geographical region of interest

  • identified by an ID

  • a subregion of a parent GeoRegion (identified by pID, which must also be a valid ID)

Default GeoRegions

When using GeoRegions.jl, the default GeoRegion should generally be the global domain, specified by GLB and given by the [N,S,E,W] coordinates [90,-90,360,0]. The Global GeoRegion GLB is considered to be a subset of itself.

',4)),o("details",c,[o("summary",null,[e[0]||(e[0]=o("a",{id:"GeoRegions.GeoRegion",href:"#GeoRegions.GeoRegion"},[o("span",{class:"jlbinding"},"GeoRegions.GeoRegion")],-1)),e[1]||(e[1]=t()),n(s,{type:"info",class:"jlObjectType jlType",text:"Type"})]),e[2]||(e[2]=i('
julia
GeoRegion

Abstract supertype for geographical regions. All GeoRegion types contain the following fields:

  • ID - A String Type, the identifier for the GeoRegion

  • pID - A String Type, the identifier for the parent GeoRegion

  • name - A String Type, the full name of the GeoRegion

  • bound - A vector of Float Types, defining the [North, South, East, West] boundaries of the GeoRegion

  • shape - A vector of Point2 Types, defining a non-rectilinear shape of the GeoRegion

  • is180 - A Bool Type, is W < 0

  • is360 - A Bool Type, is E > 180

source

',4))]),e[13]||(e[13]=i('

Types of GeoRegions

In GeoRegions.jl, we differentiate between several different types of GeoRegions:

  • Rectilinear GeoRegions are denoted by the RectRegion type, available in all version of GeoRegions.jl

  • Tilted rectangular GeoRegions are denoted by the TiltRegion type, available in ≥v6

  • Polygonal GeoRegions are denoted by the PolyRegion type, available in ≥v2

RectRegions

',4)),o("details",g,[o("summary",null,[e[3]||(e[3]=o("a",{id:"GeoRegions.RectRegion",href:"#GeoRegions.RectRegion"},[o("span",{class:"jlbinding"},"GeoRegions.RectRegion")],-1)),e[4]||(e[4]=t()),n(s,{type:"info",class:"jlObjectType jlType",text:"Type"})]),e[5]||(e[5]=i('
julia
RectRegion <: GeoRegion

A rectangular region on a rectilinear grid. Defined by its N,S,E,W boundaries.

source

',3))]),e[14]||(e[14]=o("h3",{id:"tiltregions",tabindex:"-1"},[t("TiltRegions "),o("a",{class:"header-anchor",href:"#tiltregions","aria-label":'Permalink to "TiltRegions"'},"​")],-1)),o("details",h,[o("summary",null,[e[6]||(e[6]=o("a",{id:"GeoRegions.TiltRegion",href:"#GeoRegions.TiltRegion"},[o("span",{class:"jlbinding"},"GeoRegions.TiltRegion")],-1)),e[7]||(e[7]=t()),n(s,{type:"info",class:"jlObjectType jlType",text:"Type"})]),e[8]||(e[8]=i('
julia
TiltRegion <: GeoRegion

A tilted rectangular region on a rectilinear grid. Defined by

  • the (lon,lat) coordinates of its centre

  • the width in both the longitude and latitude directions (pre-rotation)

  • the angle of tilt in degrees (clockwise)

In addition to all the fields common to the GeoRegion abstract type, TiltRegions will also contain the following field:

  • geometry : A vector of Float Types, containing [X,Y,ΔX,ΔY,θ], where
    • X : A Float Type, the longitude coordinate of region centre

    • Y : A Float Type, the latitude coordinate of region centre

    • θ : A Float Type, the angle-tilt of rectangular region in degrees in the clockwise direction

    • ΔX : A Float Type, the half-width in longitude coordinates (before tilting)

    • ΔY : A Float Type, the half-width in latitude coordinates (before tilting)

source

',6))]),e[15]||(e[15]=o("h3",{id:"polyregions",tabindex:"-1"},[t("PolyRegions "),o("a",{class:"header-anchor",href:"#polyregions","aria-label":'Permalink to "PolyRegions"'},"​")],-1)),o("details",b,[o("summary",null,[e[9]||(e[9]=o("a",{id:"GeoRegions.PolyRegion",href:"#GeoRegions.PolyRegion"},[o("span",{class:"jlbinding"},"GeoRegions.PolyRegion")],-1)),e[10]||(e[10]=t()),n(s,{type:"info",class:"jlObjectType jlType",text:"Type"})]),e[11]||(e[11]=i('
julia
PolyRegion <: GeoRegion

A polygonal region on a rectilinear lon-lat grid, defined by the (lon,lat) coordinates of its vertices.

source

',3))])])}const j=l(p,[["render",u]]);export{T as __pageData,j as default}; diff --git a/dev/assets/tutorials_addreadrm.md.D6VzmyyW.lean.js b/dev/assets/tutorials_addreadrm.md.BCyTZW4i.js similarity index 93% rename from dev/assets/tutorials_addreadrm.md.D6VzmyyW.lean.js rename to dev/assets/tutorials_addreadrm.md.BCyTZW4i.js index c0196c66..0fb84680 100644 --- a/dev/assets/tutorials_addreadrm.md.D6VzmyyW.lean.js +++ b/dev/assets/tutorials_addreadrm.md.BCyTZW4i.js @@ -2,7 +2,7 @@ import{_ as i,c as a,a5 as e,o as n}from"./chunks/framework.JKTEW8jd.js";const g mkpath(joinpath(pwd(),"test")) setupGeoRegions(path=joinpath(pwd(),"test"))

1. Adding custom GeoRegions to your Project

If you wish to automatically save a new GeoRegions as it is created, specify the keyword argument save = true. To specify the directory to which the GeoRegion information is saved to, use the path keyword.

  • RectRegion(ID, pID, name, ..., save = true, path = ...) writes to $path/rectlist.txt

  • TiltRegion(ID, pID, name, ..., save = true, path = ...) writes to $path/tiltlist.txt

  • PolyRegion(ID, pID, name, ..., save = true, path = ...) writes to $path/polylist.txt

Default path Directory

By default, path = joinpath(DEPOT_PATH[1],"files","GeoRegions"). If path is not specified, the information will be saved in the respective custom lists in this directory.

Modification of Custom Lists

While it is possible to do manually modify the lists, it is not recommended to do so, especially for polylist.txt, which is pretty complicated. Instead, you should let GeoRegions.jl do most of the heavy lifting.

You can also add a GeoRegion variable in the workspace that you have not yet saved into the custom lists

julia
geo = PolyRegion(ID, pID, name, ...)
 add(geo, path = ...)

For example, we can do

julia
geo = PolyRegion("TSP","GLB","Test Save PolyRegion",[10,100,-50,10],[20,10,0,20])
-add(geo,path=joinpath(pwd(),"test"))
[ Info: 2024-09-27T18:29:42.871 - GeoRegions.jl - Adding the GeoRegion TSP to the list.

See the API here

Or we can just directly add the GeoRegion simultaneously when it is defined, as follows:

julia
RectRegion("TSR","GLB","Test Save RectRegion",[40,-20,14,-60],save=true,path=joinpath(pwd(),"test"))
The Rectilinear Region TSR has the following properties:
+add(geo,path=joinpath(pwd(),"test"))
[ Info: 2024-09-27T18:32:44.682 - GeoRegions.jl - Adding the GeoRegion TSP to the list.

See the API here

Or we can just directly add the GeoRegion simultaneously when it is defined, as follows:

julia
RectRegion("TSR","GLB","Test Save RectRegion",[40,-20,14,-60],save=true,path=joinpath(pwd(),"test"))
The Rectilinear Region TSR has the following properties:
     Region ID     (ID) : TSR
     Parent ID    (pID) : GLB
     Name        (name) : Test Save RectRegion
@@ -46,22 +46,20 @@ import{_ as i,c as a,a5 as e,o as n}from"./chunks/framework.JKTEW8jd.js";const g
          (is180,is360) : (true, false)
 
 julia> add(geo,path=joinpath(pwd(),"test"))
-ERROR: 2024-09-27T18:29:43.169 - GeoRegions.jl - The GeoRegion TSP has already been defined.  Please use another identifier.

We see that we cannot add another GeoRegion with the ID = TSP. In order to replace the GeoRegion associated with this ID with another set of information, you need to overwrite the preexisting information with overwrite()

julia
overwrite(geo,path=joinpath(pwd(),"test"))
[ Info: 2024-09-27T18:29:43.623 - GeoRegions.jl - Adding the GeoRegion TSP to the list.

And we reload the GeoRegion associated with the ID = TSP

julia
ply = GeoRegion("TSP",path=joinpath(pwd(),"test"))
The Polygonal Region TSP has the following properties:
+ERROR: 2024-09-27T18:32:44.990 - GeoRegions.jl - The GeoRegion TSP has already been defined.  Please use another identifier.

We see that we cannot add another GeoRegion with the ID = TSP. In order to replace the GeoRegion associated with this ID with another set of information, you need to overwrite the preexisting information with overwrite()

julia
overwrite(geo,path=joinpath(pwd(),"test"))
[ Info: 2024-09-27T18:32:45.446 - GeoRegions.jl - Adding the GeoRegion TSP to the list.

And we reload the GeoRegion associated with the ID = TSP

julia
ply = GeoRegion("TSP",path=joinpath(pwd(),"test"))
The Polygonal Region TSP has the following properties:
     Region ID     (ID) : TSP
     Parent ID    (pID) : GLB
     Name        (name) : Test Save PolyRegion 2
     Bounds   (N,S,E,W) : [20.0, 0.0, 90.0, -50.0]
     Shape      (shape) : Point{2, Float64}[[10.0, 20.0], [90.0, 10.0], [-50.0, 0.0], [10.0, 20.0]]
-         (is180,is360) : (true, false)

See the API here

5. Removing a custom GeoRegions from your Project

Now, we've realized that you don't really need a GeoRegion anymore, or for some reason you want to delete the information of a particular GeoRegion associate with a certain ID and replace it with a new information, there are two ways to do it:

5.1 Removing a GeoRegion that has been loaded

THe first method is to remove a GeoRegion geo that has already been loaded into the workspace. We use the function rm() to do this

julia
rm(ply,path=joinpath(pwd(),"test"))
[ Info: 2024-09-27T18:29:43.872 - GeoRegions.jl - Removing the GeoRegion TSP ...

And now we check if the GeoRegion TSP now exists:

@example
isID("TSP",path=joinpath(pwd(),"test"))

And we see that it does not.

See the API here

5.2 Removing a GeoRegion based on its ID

The second method is to remove a GeoRegion based on an ID, or its string identifier. We do this with the function rmID()

julia
rmID("TSR",path=joinpath(pwd(),"test"))
[ Info: 2024-09-27T18:29:43.939 - GeoRegions.jl - Removing the GeoRegion TSR ...
julia
julia> isID("TSR",path=joinpath(pwd(),"test"))
-ERROR: 2024-09-27T18:29:43.969 - GeoRegions.jl - TSR is not a valid GeoRegion identifier, use RectRegion(), TiltRegion() or PolyRegion() to add this GeoRegion to the list.

Predefined GeoRegions cannot be removed

You cannot remove GLB, GF_*, SRX_* or AR6_* that have been predefined in GeoRegions.jl

See the API here

6. Removing a the custom GeoRegions lists from your Project

If you use deleteGeoRegions() to remove all the custom lists, you will remove all the custom GeoRegions for the projects and they cannot be retrieved.

julia
TiltRegion("TST","GLB","Test Save TiltRegion",10,5,50,20,30,path=joinpath(pwd(),"test"))
The Tilted Rectilinear Region TST has the following properties:
+         (is180,is360) : (true, false)

See the API here

5. Removing a custom GeoRegions from your Project

Now, we've realized that you don't really need a GeoRegion anymore, or for some reason you want to delete the information of a particular GeoRegion associate with a certain ID and replace it with a new information, there are two ways to do it:

5.1 Removing a GeoRegion that has been loaded

THe first method is to remove a GeoRegion geo that has already been loaded into the workspace. We use the function rm() to do this

julia
rm(ply,path=joinpath(pwd(),"test"))
[ Info: 2024-09-27T18:32:45.699 - GeoRegions.jl - Removing the GeoRegion TSP ...

And now we check if the GeoRegion TSP now exists:

@example
isID("TSP",path=joinpath(pwd(),"test"))

And we see that it does not.

See the API here

5.2 Removing a GeoRegion based on its ID

The second method is to remove a GeoRegion based on an ID, or its string identifier. We do this with the function rmID()

julia
rmID("TSR",path=joinpath(pwd(),"test"))
[ Info: 2024-09-27T18:32:45.766 - GeoRegions.jl - Removing the GeoRegion TSR ...
julia
julia> isID("TSR",path=joinpath(pwd(),"test"))
+ERROR: 2024-09-27T18:32:45.793 - GeoRegions.jl - TSR is not a valid GeoRegion identifier, use RectRegion(), TiltRegion() or PolyRegion() to add this GeoRegion to the list.

Predefined GeoRegions cannot be removed

You cannot remove GLB, GF_*, SRX_* or AR6_* that have been predefined in GeoRegions.jl

See the API here

6. Removing a the custom GeoRegions lists from your Project

If you use deleteGeoRegions() to remove all the custom lists, you will remove all the custom GeoRegions for the projects and they cannot be retrieved.

julia
TiltRegion("TST","GLB","Test Save TiltRegion",10,5,50,20,30,path=joinpath(pwd(),"test"))
The Tilted Rectilinear Region TST has the following properties:
     Region ID     (ID) : TST
     Parent ID    (pID) : GLB
     Name        (name) : Test Save TiltRegion
     Bounds   (N,S,E,W) : [47.32050807568877, -37.32050807568877, 63.30127018922193, -43.30127018922193]
     Shape      (shape) : Point{2, Float64}[[-43.30127018922193, -2.679491924311229], [-23.30127018922193, -37.32050807568877], [63.30127018922193, 12.679491924311229], [43.30127018922193, 47.32050807568877], [-43.30127018922193, -2.679491924311229]]
     Tilt (X,Y,ΔX,ΔY,θ) : [10.0, 5.0, 50.0, 20.0, 30.0]
-         (is180,is360) : (true, false)
julia
deleteGeoRegions(path=joinpath(pwd(),"test"))
┌ Warning: 2024-09-27T18:29:44.042 - GeoRegions.jl - Removing custom GeoRegions.jl files from /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials/test, all GeoRegion information saved into these files will be permanently lost
+         (is180,is360) : (true, false)
julia
deleteGeoRegions(path=joinpath(pwd(),"test"))
┌ Warning: 2024-09-27T18:32:45.861 - GeoRegions.jl - Removing custom GeoRegions.jl files from /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials/test, all GeoRegion information saved into these files will be permanently lost
 └ @ GeoRegions ~/work/GeoRegions.jl/GeoRegions.jl/src/georegions/project.jl:160

Let's test and see if we can retrieve the user-defined GeoRegions now we have deleted their information from the project.

julia
julia> isID("TST",path=joinpath(pwd(),"test"),throw=false)
-┌ Warning: 2024-09-27T18:29:44.050 - GeoRegions.jl - TST is not a valid GeoRegion identifier, use RectRegion(), TiltRegion() or PolyRegion() to add this GeoRegion to the list.
-└ @ GeoRegions ~/work/GeoRegions.jl/GeoRegions.jl/src/georegions/is.jl:368
 false
`,70)]))}const E=i(t,[["render",h]]);export{g as __pageData,E as default}; diff --git a/dev/assets/tutorials_addreadrm.md.D6VzmyyW.js b/dev/assets/tutorials_addreadrm.md.BCyTZW4i.lean.js similarity index 93% rename from dev/assets/tutorials_addreadrm.md.D6VzmyyW.js rename to dev/assets/tutorials_addreadrm.md.BCyTZW4i.lean.js index c0196c66..0fb84680 100644 --- a/dev/assets/tutorials_addreadrm.md.D6VzmyyW.js +++ b/dev/assets/tutorials_addreadrm.md.BCyTZW4i.lean.js @@ -2,7 +2,7 @@ import{_ as i,c as a,a5 as e,o as n}from"./chunks/framework.JKTEW8jd.js";const g mkpath(joinpath(pwd(),"test")) setupGeoRegions(path=joinpath(pwd(),"test"))

1. Adding custom GeoRegions to your Project

If you wish to automatically save a new GeoRegions as it is created, specify the keyword argument save = true. To specify the directory to which the GeoRegion information is saved to, use the path keyword.

  • RectRegion(ID, pID, name, ..., save = true, path = ...) writes to $path/rectlist.txt

  • TiltRegion(ID, pID, name, ..., save = true, path = ...) writes to $path/tiltlist.txt

  • PolyRegion(ID, pID, name, ..., save = true, path = ...) writes to $path/polylist.txt

Default path Directory

By default, path = joinpath(DEPOT_PATH[1],"files","GeoRegions"). If path is not specified, the information will be saved in the respective custom lists in this directory.

Modification of Custom Lists

While it is possible to do manually modify the lists, it is not recommended to do so, especially for polylist.txt, which is pretty complicated. Instead, you should let GeoRegions.jl do most of the heavy lifting.

You can also add a GeoRegion variable in the workspace that you have not yet saved into the custom lists

julia
geo = PolyRegion(ID, pID, name, ...)
 add(geo, path = ...)

For example, we can do

julia
geo = PolyRegion("TSP","GLB","Test Save PolyRegion",[10,100,-50,10],[20,10,0,20])
-add(geo,path=joinpath(pwd(),"test"))
[ Info: 2024-09-27T18:29:42.871 - GeoRegions.jl - Adding the GeoRegion TSP to the list.

See the API here

Or we can just directly add the GeoRegion simultaneously when it is defined, as follows:

julia
RectRegion("TSR","GLB","Test Save RectRegion",[40,-20,14,-60],save=true,path=joinpath(pwd(),"test"))
The Rectilinear Region TSR has the following properties:
+add(geo,path=joinpath(pwd(),"test"))
[ Info: 2024-09-27T18:32:44.682 - GeoRegions.jl - Adding the GeoRegion TSP to the list.

See the API here

Or we can just directly add the GeoRegion simultaneously when it is defined, as follows:

julia
RectRegion("TSR","GLB","Test Save RectRegion",[40,-20,14,-60],save=true,path=joinpath(pwd(),"test"))
The Rectilinear Region TSR has the following properties:
     Region ID     (ID) : TSR
     Parent ID    (pID) : GLB
     Name        (name) : Test Save RectRegion
@@ -46,22 +46,20 @@ import{_ as i,c as a,a5 as e,o as n}from"./chunks/framework.JKTEW8jd.js";const g
          (is180,is360) : (true, false)
 
 julia> add(geo,path=joinpath(pwd(),"test"))
-ERROR: 2024-09-27T18:29:43.169 - GeoRegions.jl - The GeoRegion TSP has already been defined.  Please use another identifier.

We see that we cannot add another GeoRegion with the ID = TSP. In order to replace the GeoRegion associated with this ID with another set of information, you need to overwrite the preexisting information with overwrite()

julia
overwrite(geo,path=joinpath(pwd(),"test"))
[ Info: 2024-09-27T18:29:43.623 - GeoRegions.jl - Adding the GeoRegion TSP to the list.

And we reload the GeoRegion associated with the ID = TSP

julia
ply = GeoRegion("TSP",path=joinpath(pwd(),"test"))
The Polygonal Region TSP has the following properties:
+ERROR: 2024-09-27T18:32:44.990 - GeoRegions.jl - The GeoRegion TSP has already been defined.  Please use another identifier.

We see that we cannot add another GeoRegion with the ID = TSP. In order to replace the GeoRegion associated with this ID with another set of information, you need to overwrite the preexisting information with overwrite()

julia
overwrite(geo,path=joinpath(pwd(),"test"))
[ Info: 2024-09-27T18:32:45.446 - GeoRegions.jl - Adding the GeoRegion TSP to the list.

And we reload the GeoRegion associated with the ID = TSP

julia
ply = GeoRegion("TSP",path=joinpath(pwd(),"test"))
The Polygonal Region TSP has the following properties:
     Region ID     (ID) : TSP
     Parent ID    (pID) : GLB
     Name        (name) : Test Save PolyRegion 2
     Bounds   (N,S,E,W) : [20.0, 0.0, 90.0, -50.0]
     Shape      (shape) : Point{2, Float64}[[10.0, 20.0], [90.0, 10.0], [-50.0, 0.0], [10.0, 20.0]]
-         (is180,is360) : (true, false)

See the API here

5. Removing a custom GeoRegions from your Project

Now, we've realized that you don't really need a GeoRegion anymore, or for some reason you want to delete the information of a particular GeoRegion associate with a certain ID and replace it with a new information, there are two ways to do it:

5.1 Removing a GeoRegion that has been loaded

THe first method is to remove a GeoRegion geo that has already been loaded into the workspace. We use the function rm() to do this

julia
rm(ply,path=joinpath(pwd(),"test"))
[ Info: 2024-09-27T18:29:43.872 - GeoRegions.jl - Removing the GeoRegion TSP ...

And now we check if the GeoRegion TSP now exists:

@example
isID("TSP",path=joinpath(pwd(),"test"))

And we see that it does not.

See the API here

5.2 Removing a GeoRegion based on its ID

The second method is to remove a GeoRegion based on an ID, or its string identifier. We do this with the function rmID()

julia
rmID("TSR",path=joinpath(pwd(),"test"))
[ Info: 2024-09-27T18:29:43.939 - GeoRegions.jl - Removing the GeoRegion TSR ...
julia
julia> isID("TSR",path=joinpath(pwd(),"test"))
-ERROR: 2024-09-27T18:29:43.969 - GeoRegions.jl - TSR is not a valid GeoRegion identifier, use RectRegion(), TiltRegion() or PolyRegion() to add this GeoRegion to the list.

Predefined GeoRegions cannot be removed

You cannot remove GLB, GF_*, SRX_* or AR6_* that have been predefined in GeoRegions.jl

See the API here

6. Removing a the custom GeoRegions lists from your Project

If you use deleteGeoRegions() to remove all the custom lists, you will remove all the custom GeoRegions for the projects and they cannot be retrieved.

julia
TiltRegion("TST","GLB","Test Save TiltRegion",10,5,50,20,30,path=joinpath(pwd(),"test"))
The Tilted Rectilinear Region TST has the following properties:
+         (is180,is360) : (true, false)

See the API here

5. Removing a custom GeoRegions from your Project

Now, we've realized that you don't really need a GeoRegion anymore, or for some reason you want to delete the information of a particular GeoRegion associate with a certain ID and replace it with a new information, there are two ways to do it:

5.1 Removing a GeoRegion that has been loaded

THe first method is to remove a GeoRegion geo that has already been loaded into the workspace. We use the function rm() to do this

julia
rm(ply,path=joinpath(pwd(),"test"))
[ Info: 2024-09-27T18:32:45.699 - GeoRegions.jl - Removing the GeoRegion TSP ...

And now we check if the GeoRegion TSP now exists:

@example
isID("TSP",path=joinpath(pwd(),"test"))

And we see that it does not.

See the API here

5.2 Removing a GeoRegion based on its ID

The second method is to remove a GeoRegion based on an ID, or its string identifier. We do this with the function rmID()

julia
rmID("TSR",path=joinpath(pwd(),"test"))
[ Info: 2024-09-27T18:32:45.766 - GeoRegions.jl - Removing the GeoRegion TSR ...
julia
julia> isID("TSR",path=joinpath(pwd(),"test"))
+ERROR: 2024-09-27T18:32:45.793 - GeoRegions.jl - TSR is not a valid GeoRegion identifier, use RectRegion(), TiltRegion() or PolyRegion() to add this GeoRegion to the list.

Predefined GeoRegions cannot be removed

You cannot remove GLB, GF_*, SRX_* or AR6_* that have been predefined in GeoRegions.jl

See the API here

6. Removing a the custom GeoRegions lists from your Project

If you use deleteGeoRegions() to remove all the custom lists, you will remove all the custom GeoRegions for the projects and they cannot be retrieved.

julia
TiltRegion("TST","GLB","Test Save TiltRegion",10,5,50,20,30,path=joinpath(pwd(),"test"))
The Tilted Rectilinear Region TST has the following properties:
     Region ID     (ID) : TST
     Parent ID    (pID) : GLB
     Name        (name) : Test Save TiltRegion
     Bounds   (N,S,E,W) : [47.32050807568877, -37.32050807568877, 63.30127018922193, -43.30127018922193]
     Shape      (shape) : Point{2, Float64}[[-43.30127018922193, -2.679491924311229], [-23.30127018922193, -37.32050807568877], [63.30127018922193, 12.679491924311229], [43.30127018922193, 47.32050807568877], [-43.30127018922193, -2.679491924311229]]
     Tilt (X,Y,ΔX,ΔY,θ) : [10.0, 5.0, 50.0, 20.0, 30.0]
-         (is180,is360) : (true, false)
julia
deleteGeoRegions(path=joinpath(pwd(),"test"))
┌ Warning: 2024-09-27T18:29:44.042 - GeoRegions.jl - Removing custom GeoRegions.jl files from /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials/test, all GeoRegion information saved into these files will be permanently lost
+         (is180,is360) : (true, false)
julia
deleteGeoRegions(path=joinpath(pwd(),"test"))
┌ Warning: 2024-09-27T18:32:45.861 - GeoRegions.jl - Removing custom GeoRegions.jl files from /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials/test, all GeoRegion information saved into these files will be permanently lost
 └ @ GeoRegions ~/work/GeoRegions.jl/GeoRegions.jl/src/georegions/project.jl:160

Let's test and see if we can retrieve the user-defined GeoRegions now we have deleted their information from the project.

julia
julia> isID("TST",path=joinpath(pwd(),"test"),throw=false)
-┌ Warning: 2024-09-27T18:29:44.050 - GeoRegions.jl - TST is not a valid GeoRegion identifier, use RectRegion(), TiltRegion() or PolyRegion() to add this GeoRegion to the list.
-└ @ GeoRegions ~/work/GeoRegions.jl/GeoRegions.jl/src/georegions/is.jl:368
 false
`,70)]))}const E=i(t,[["render",h]]);export{g as __pageData,E as default}; diff --git a/dev/assets/tutorials_projects.md.BtRd_OUv.js b/dev/assets/tutorials_projects.md.CCeR1qqb.js similarity index 98% rename from dev/assets/tutorials_projects.md.BtRd_OUv.js rename to dev/assets/tutorials_projects.md.CCeR1qqb.js index 63af2fc2..0a185931 100644 --- a/dev/assets/tutorials_projects.md.BtRd_OUv.js +++ b/dev/assets/tutorials_projects.md.CCeR1qqb.js @@ -1,16 +1,16 @@ import{_ as e,c as i,a5 as a,o as t}from"./chunks/framework.JKTEW8jd.js";const k=JSON.parse('{"title":"GeoRegions.jl for your Research Project","description":"","frontmatter":{},"headers":[],"relativePath":"tutorials/projects.md","filePath":"tutorials/projects.md","lastUpdated":null}'),o={name:"tutorials/projects.md"};function n(l,s,p,h,r,d){return t(),i("div",null,s[0]||(s[0]=[a(`

GeoRegions.jl for your Research Project

In previous version of GeoRegions.jl (≤v6), we assume that all user-defined GeoRegions were meant to be universally shared. However, we have come to realize that this can cause problems if different projects have similar identifiers (ID) for different regions.

Therefore in v7 and above, GeoRegions.jl explicitly works on a project basis. This means that: * Predefined GeoRegions (GF, SREX and AR6) will still be available as part of the GeoRegions package. * All user-defined GeoRegions for a project should entail specification of a project directory using the keyword path, so that the GeoRegion can be saved specifically for the project. * Retrieving a GeoRegion for a particular project will require specification of the project directory using path. * By default path is the variable homedir()

1. Setup GeoRegions.jl for your Project

The best way to get started, is to use setupGeoRegions(path = "<directory>") in order to copy over the necessary files that will store your custom user-defined GeoRegions.

julia
using GeoRegions
 setupGeoRegions(path=pwd())

This will copy over the following files: rectlist.txt, polylist.txt, tiltlist.txt, which will stored RectRegions, PolyRegions and TiltRegions respectively.

julia
isfile(joinpath(pwd(),"rectlist.txt")),
 isfile(joinpath(pwd(),"polylist.txt")),
-isfile(joinpath(pwd(),"tiltlist.txt"))
(true, true, true)

If any of these files already exist in path, they will not be overwritten. To specifically overwrite all preexisting user-defined GeoRegions, use the keyword overwrite = true.

julia
setupGeoRegions(path=pwd(),overwrite=true)
┌ Warning: 2024-09-27T18:29:44.129 - GeoRegions.jl - Overwriting /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials/rectlist.txt with original file in /home/runner/work/GeoRegions.jl/GeoRegions.jl/src/files/rectlist.txt ...
+isfile(joinpath(pwd(),"tiltlist.txt"))
(true, true, true)

If any of these files already exist in path, they will not be overwritten. To specifically overwrite all preexisting user-defined GeoRegions, use the keyword overwrite = true.

julia
setupGeoRegions(path=pwd(),overwrite=true)
┌ Warning: 2024-09-27T18:32:45.948 - GeoRegions.jl - Overwriting /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials/rectlist.txt with original file in /home/runner/work/GeoRegions.jl/GeoRegions.jl/src/files/rectlist.txt ...
 └ @ GeoRegions ~/work/GeoRegions.jl/GeoRegions.jl/src/georegions/project.jl:43
-┌ Warning: 2024-09-27T18:29:44.129 - GeoRegions.jl - Overwriting /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials/polylist.txt with original file in /home/runner/work/GeoRegions.jl/GeoRegions.jl/src/files/polylist.txt ...
+┌ Warning: 2024-09-27T18:32:45.948 - GeoRegions.jl - Overwriting /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials/polylist.txt with original file in /home/runner/work/GeoRegions.jl/GeoRegions.jl/src/files/polylist.txt ...
 └ @ GeoRegions ~/work/GeoRegions.jl/GeoRegions.jl/src/georegions/project.jl:43
-┌ Warning: 2024-09-27T18:29:44.129 - GeoRegions.jl - Overwriting /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials/tiltlist.txt with original file in /home/runner/work/GeoRegions.jl/GeoRegions.jl/src/files/tiltlist.txt ...
+┌ Warning: 2024-09-27T18:32:45.948 - GeoRegions.jl - Overwriting /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials/tiltlist.txt with original file in /home/runner/work/GeoRegions.jl/GeoRegions.jl/src/files/tiltlist.txt ...
 └ @ GeoRegions ~/work/GeoRegions.jl/GeoRegions.jl/src/georegions/project.jl:43

See the API here

2. Listing out the custom GeoRegions for your Project

You can create a table of all the GeoRegions that have been saved to path using tableGeoRegions() as follows.

julia
tableGeoRegions(;path = ...)

For example, we create a table of user-defined and predefined GeoRegions for the current directory pwd().

Custom GeoRegions are always specified first

We always specify the custom user-defined GeoRegions first, because those are most relevant to a project.

julia
tableGeoRegions(path=pwd(),predefined=false)
 ----- ------------ ------- -------- --------------------------- ------------
   ID       Type      Name    Parent       Bounds [N,S,E,W]           File
  ----- ------------ ------- -------- --------------------------- ------------
   GLB   RectRegion   Globe    GLB     [90.0, -90.0, 360.0, 0.0]   global.txt
- ----- ------------ ------- -------- --------------------------- ------------

Note, we have no custom GeoRegions added, so there is nothing to list right now even though the files exist. If any of rectlist.txt, polylist.txt and tiltlist.txt are not present, a warning will be shown unless the keyword warn = false is set.

See the API here

3. Removing a the custom GeoRegions list from your Project

Say you want to completely clear your project of custom GeoRegions, replacing them with new lists. You can just delete the files directly, or you can do deleteGeoRegions().

Default path is pwd()

For deleteGeoRegions(), the default path is the current directory pwd().

julia
deleteGeoRegions()
┌ Warning: 2024-09-27T18:29:44.141 - GeoRegions.jl - Removing custom GeoRegions.jl files from /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials, all GeoRegion information saved into these files will be permanently lost
+ ----- ------------ ------- -------- --------------------------- ------------

Note, we have no custom GeoRegions added, so there is nothing to list right now even though the files exist. If any of rectlist.txt, polylist.txt and tiltlist.txt are not present, a warning will be shown unless the keyword warn = false is set.

See the API here

3. Removing a the custom GeoRegions list from your Project

Say you want to completely clear your project of custom GeoRegions, replacing them with new lists. You can just delete the files directly, or you can do deleteGeoRegions().

Default path is pwd()

For deleteGeoRegions(), the default path is the current directory pwd().

julia
deleteGeoRegions()
┌ Warning: 2024-09-27T18:32:45.961 - GeoRegions.jl - Removing custom GeoRegions.jl files from /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials, all GeoRegion information saved into these files will be permanently lost
 └ @ GeoRegions ~/work/GeoRegions.jl/GeoRegions.jl/src/georegions/project.jl:160

And then we see if rectlist.txt exists!

julia
isfile(joinpath(pwd(),"rectlist.txt")),
 isfile(joinpath(pwd(),"polylist.txt")),
 isfile(joinpath(pwd(),"tiltlist.txt"))
(false, false, false)

See the API here

`,31)]))}const g=e(o,[["render",n]]);export{k as __pageData,g as default}; diff --git a/dev/assets/tutorials_projects.md.BtRd_OUv.lean.js b/dev/assets/tutorials_projects.md.CCeR1qqb.lean.js similarity index 98% rename from dev/assets/tutorials_projects.md.BtRd_OUv.lean.js rename to dev/assets/tutorials_projects.md.CCeR1qqb.lean.js index 63af2fc2..0a185931 100644 --- a/dev/assets/tutorials_projects.md.BtRd_OUv.lean.js +++ b/dev/assets/tutorials_projects.md.CCeR1qqb.lean.js @@ -1,16 +1,16 @@ import{_ as e,c as i,a5 as a,o as t}from"./chunks/framework.JKTEW8jd.js";const k=JSON.parse('{"title":"GeoRegions.jl for your Research Project","description":"","frontmatter":{},"headers":[],"relativePath":"tutorials/projects.md","filePath":"tutorials/projects.md","lastUpdated":null}'),o={name:"tutorials/projects.md"};function n(l,s,p,h,r,d){return t(),i("div",null,s[0]||(s[0]=[a(`

GeoRegions.jl for your Research Project

In previous version of GeoRegions.jl (≤v6), we assume that all user-defined GeoRegions were meant to be universally shared. However, we have come to realize that this can cause problems if different projects have similar identifiers (ID) for different regions.

Therefore in v7 and above, GeoRegions.jl explicitly works on a project basis. This means that: * Predefined GeoRegions (GF, SREX and AR6) will still be available as part of the GeoRegions package. * All user-defined GeoRegions for a project should entail specification of a project directory using the keyword path, so that the GeoRegion can be saved specifically for the project. * Retrieving a GeoRegion for a particular project will require specification of the project directory using path. * By default path is the variable homedir()

1. Setup GeoRegions.jl for your Project

The best way to get started, is to use setupGeoRegions(path = "<directory>") in order to copy over the necessary files that will store your custom user-defined GeoRegions.

julia
using GeoRegions
 setupGeoRegions(path=pwd())

This will copy over the following files: rectlist.txt, polylist.txt, tiltlist.txt, which will stored RectRegions, PolyRegions and TiltRegions respectively.

julia
isfile(joinpath(pwd(),"rectlist.txt")),
 isfile(joinpath(pwd(),"polylist.txt")),
-isfile(joinpath(pwd(),"tiltlist.txt"))
(true, true, true)

If any of these files already exist in path, they will not be overwritten. To specifically overwrite all preexisting user-defined GeoRegions, use the keyword overwrite = true.

julia
setupGeoRegions(path=pwd(),overwrite=true)
┌ Warning: 2024-09-27T18:29:44.129 - GeoRegions.jl - Overwriting /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials/rectlist.txt with original file in /home/runner/work/GeoRegions.jl/GeoRegions.jl/src/files/rectlist.txt ...
+isfile(joinpath(pwd(),"tiltlist.txt"))
(true, true, true)

If any of these files already exist in path, they will not be overwritten. To specifically overwrite all preexisting user-defined GeoRegions, use the keyword overwrite = true.

julia
setupGeoRegions(path=pwd(),overwrite=true)
┌ Warning: 2024-09-27T18:32:45.948 - GeoRegions.jl - Overwriting /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials/rectlist.txt with original file in /home/runner/work/GeoRegions.jl/GeoRegions.jl/src/files/rectlist.txt ...
 └ @ GeoRegions ~/work/GeoRegions.jl/GeoRegions.jl/src/georegions/project.jl:43
-┌ Warning: 2024-09-27T18:29:44.129 - GeoRegions.jl - Overwriting /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials/polylist.txt with original file in /home/runner/work/GeoRegions.jl/GeoRegions.jl/src/files/polylist.txt ...
+┌ Warning: 2024-09-27T18:32:45.948 - GeoRegions.jl - Overwriting /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials/polylist.txt with original file in /home/runner/work/GeoRegions.jl/GeoRegions.jl/src/files/polylist.txt ...
 └ @ GeoRegions ~/work/GeoRegions.jl/GeoRegions.jl/src/georegions/project.jl:43
-┌ Warning: 2024-09-27T18:29:44.129 - GeoRegions.jl - Overwriting /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials/tiltlist.txt with original file in /home/runner/work/GeoRegions.jl/GeoRegions.jl/src/files/tiltlist.txt ...
+┌ Warning: 2024-09-27T18:32:45.948 - GeoRegions.jl - Overwriting /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials/tiltlist.txt with original file in /home/runner/work/GeoRegions.jl/GeoRegions.jl/src/files/tiltlist.txt ...
 └ @ GeoRegions ~/work/GeoRegions.jl/GeoRegions.jl/src/georegions/project.jl:43

See the API here

2. Listing out the custom GeoRegions for your Project

You can create a table of all the GeoRegions that have been saved to path using tableGeoRegions() as follows.

julia
tableGeoRegions(;path = ...)

For example, we create a table of user-defined and predefined GeoRegions for the current directory pwd().

Custom GeoRegions are always specified first

We always specify the custom user-defined GeoRegions first, because those are most relevant to a project.

julia
tableGeoRegions(path=pwd(),predefined=false)
 ----- ------------ ------- -------- --------------------------- ------------
   ID       Type      Name    Parent       Bounds [N,S,E,W]           File
  ----- ------------ ------- -------- --------------------------- ------------
   GLB   RectRegion   Globe    GLB     [90.0, -90.0, 360.0, 0.0]   global.txt
- ----- ------------ ------- -------- --------------------------- ------------

Note, we have no custom GeoRegions added, so there is nothing to list right now even though the files exist. If any of rectlist.txt, polylist.txt and tiltlist.txt are not present, a warning will be shown unless the keyword warn = false is set.

See the API here

3. Removing a the custom GeoRegions list from your Project

Say you want to completely clear your project of custom GeoRegions, replacing them with new lists. You can just delete the files directly, or you can do deleteGeoRegions().

Default path is pwd()

For deleteGeoRegions(), the default path is the current directory pwd().

julia
deleteGeoRegions()
┌ Warning: 2024-09-27T18:29:44.141 - GeoRegions.jl - Removing custom GeoRegions.jl files from /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials, all GeoRegion information saved into these files will be permanently lost
+ ----- ------------ ------- -------- --------------------------- ------------

Note, we have no custom GeoRegions added, so there is nothing to list right now even though the files exist. If any of rectlist.txt, polylist.txt and tiltlist.txt are not present, a warning will be shown unless the keyword warn = false is set.

See the API here

3. Removing a the custom GeoRegions list from your Project

Say you want to completely clear your project of custom GeoRegions, replacing them with new lists. You can just delete the files directly, or you can do deleteGeoRegions().

Default path is pwd()

For deleteGeoRegions(), the default path is the current directory pwd().

julia
deleteGeoRegions()
┌ Warning: 2024-09-27T18:32:45.961 - GeoRegions.jl - Removing custom GeoRegions.jl files from /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials, all GeoRegion information saved into these files will be permanently lost
 └ @ GeoRegions ~/work/GeoRegions.jl/GeoRegions.jl/src/georegions/project.jl:160

And then we see if rectlist.txt exists!

julia
isfile(joinpath(pwd(),"rectlist.txt")),
 isfile(joinpath(pwd(),"polylist.txt")),
 isfile(joinpath(pwd(),"tiltlist.txt"))
(false, false, false)

See the API here

`,31)]))}const g=e(o,[["render",n]]);export{k as __pageData,g as default}; diff --git a/dev/basics/create.html b/dev/basics/create.html index bca71592..c2489937 100644 --- a/dev/basics/create.html +++ b/dev/basics/create.html @@ -8,9 +8,9 @@ - + - + @@ -48,7 +48,7 @@ Shape (shape) : Point{2, Float64}[[-43.30127018922193, -2.679491924311229], [-23.30127018922193, -37.32050807568877], [63.30127018922193, 12.679491924311229], [43.30127018922193, 47.32050807568877], [-43.30127018922193, -2.679491924311229]] Tilt (X,Y,ΔX,ΔY,θ) : [10.0, 5.0, 50.0, 20.0, 30.0] (is180,is360) : (true, false)

See the API here

- + \ No newline at end of file diff --git a/dev/basics/properties/isequal.html b/dev/basics/properties/isequal.html index ffbce726..eb53c653 100644 --- a/dev/basics/properties/isequal.html +++ b/dev/basics/properties/isequal.html @@ -8,9 +8,9 @@ - + - + @@ -18,7 +18,7 @@ - + \ No newline at end of file diff --git a/dev/basics/properties/isin.html b/dev/basics/properties/isin.html index faa4c82f..9aaf1519 100644 --- a/dev/basics/properties/isin.html +++ b/dev/basics/properties/isin.html @@ -8,9 +8,9 @@ - + - + @@ -90,7 +90,7 @@ in(geo_TS2,geo_BIG), in(geo_TS3,geo_BIG), in(geo_TS4,geo_BIG)

And we see that this is indeed the case.

See the API for RectRegion type here, and for the TiltRegion and PolyRegion types here.

- + \ No newline at end of file diff --git a/dev/basics/properties/shape.html b/dev/basics/properties/shape.html index 0f205399..b498d7c9 100644 --- a/dev/basics/properties/shape.html +++ b/dev/basics/properties/shape.html @@ -8,9 +8,9 @@ - + - + @@ -44,7 +44,7 @@ resize_to_layout!(fig) fig

This plotting works on maps where the projection is equirectangular. However, there are many different map projections, and so we can specify the number of segments n on each side of the shape using the keyword argument n in order to ensure during plotting that is plotted correctly on the projection.

julia
nlon,nlat = coordinates(geo,n=50)
 length(lon), length(nlon)
(9, 401)

Number of Points

The shape is defined by 8 sides. Therefore there are by default 8 + 1 = 9 coordinate points to close the polygon. If we specify 50 segments a side, we therefore have 400 + 1 = 401 coordinate points to close the polygon.

See the API here

- + \ No newline at end of file diff --git a/dev/basics/read/listall.html b/dev/basics/read/listall.html index 2eb5198e..2855ca81 100644 --- a/dev/basics/read/listall.html +++ b/dev/basics/read/listall.html @@ -8,9 +8,9 @@ - + - + @@ -147,7 +147,7 @@ AR6_SIO PolyRegion Southern Indian Ocean GLB [-10.0, -36.0, 110.0, 31.0] ar6.txt AR6_SOO PolyRegion Southern Ocean GLB [-36.0, -75.0, 180.0, -180.0] ar6.txt ---------- ------------ --------------------------- -------- ------------------------------- ------------ - + \ No newline at end of file diff --git a/dev/basics/read/overview.html b/dev/basics/read/overview.html index f90f2911..f1cf4692 100644 --- a/dev/basics/read/overview.html +++ b/dev/basics/read/overview.html @@ -8,9 +8,9 @@ - + - + @@ -25,7 +25,7 @@ Bounds (N,S,E,W) : [90.0, -90.0, 360.0, 0.0] Shape (shape) : Point{2, Float64}[[0.0, 90.0], [360.0, 90.0], [360.0, -90.0], [0.0, -90.0], [0.0, 90.0]] (is180,is360) : (false, true)

This is the most basic, and yet the most important, functionality of GeoRegions.jl. For the full API of the function GeoRegion() that talks about more advanced uses, see the section on reading custom GeoRegions

See the API here

- + \ No newline at end of file diff --git a/dev/basics/read/predefined.html b/dev/basics/read/predefined.html index ca696690..2b75d6b6 100644 --- a/dev/basics/read/predefined.html +++ b/dev/basics/read/predefined.html @@ -8,9 +8,9 @@ - + - + @@ -39,7 +39,7 @@ Bounds (N,S,E,W) : [45.0, 19.5, 152.0, 100.0] Shape (shape) : Point{2, Float64}[[100.0, 19.5], [100.0, 37.0], [108.0, 37.0], [117.0, 45.0], [152.0, 45.0], [132.0, 25.0], [132.0, 19.5], [100.0, 19.5]] (is180,is360) : (false, true)

To see the full list of predefined GeoRegions from Iturbide et al., [2020], go here

- + \ No newline at end of file diff --git a/dev/basics/read/tables.html b/dev/basics/read/tables.html index 0cfaa2d6..5daa062b 100644 --- a/dev/basics/read/tables.html +++ b/dev/basics/read/tables.html @@ -8,9 +8,9 @@ - + - + @@ -137,7 +137,7 @@ AR6_SIO PolyRegion Southern Indian Ocean GLB [-10.0, -36.0, 110.0, 31.0] ar6.txt AR6_SOO PolyRegion Southern Ocean GLB [-36.0, -75.0, 180.0, -180.0] ar6.txt ---------- ------------ ---------------------------- -------- ------------------------------- ------------

See the API here

- + \ No newline at end of file diff --git a/dev/ecosystem.html b/dev/ecosystem.html index 1f8adfd6..6ad1d071 100644 --- a/dev/ecosystem.html +++ b/dev/ecosystem.html @@ -8,17 +8,17 @@ - + - + - +
Skip to content

Ecosystem

GeoRegions.jl

GeoRegions.jl

GeoRegions.jl

Defining Geographic Regions of Interest for Geospatial Data in Geoscience and Climate.

Frameworks Extending GeoRegions.jl

RegionGrids.jl

RegionGrids.jl

Extracting Gridded Data for a given GeoRegion

LandSea.jl

LandSea.jl

Extensible Land-Sea Mask Datasets

The GeoRegions Ecosystem

NASAPrecipitation.jl

NASAPrecipitation.jl

Downloading, Extracting and Analyzing NASA Satellite Precipitation Data

ERA5Reanalysis.jl

ERA5Reanalysis.jl

Downloading, Extracting and Analyzing ERA5 Reanalysis Data

NASABrightnessTemperature.jl

NASABrightnessTemperature.jl

Downloading, Extracting and Analyzing NASA Brightness Temperature Data

- + \ No newline at end of file diff --git a/dev/georegions.html b/dev/georegions.html index 09a72f77..bd504d10 100644 --- a/dev/georegions.html +++ b/dev/georegions.html @@ -8,17 +8,17 @@ - + - + - + -
Skip to content

What is a GeoRegion?

In essence, a GeoRegion is:

  • a geographical region of interest

  • identified by an ID

  • a subregion of a parent GeoRegion (identified by pID, which must also be a valid ID)

Default GeoRegions

When using GeoRegions.jl, the default GeoRegion should generally be the global domain, specified by GLB and given by the [N,S,E,W] coordinates [90,-90,360,0]. The Global GeoRegion GLB is considered to be a subset of itself.

GeoRegions.GeoRegion Type
julia
GeoRegion

Abstract supertype for geographical regions. All GeoRegion types contain the following fields:

  • ID - A String Type, the identifier for the GeoRegion

  • pID - A String Type, the identifier for the parent GeoRegion

  • name - A String Type, the full name of the GeoRegion

  • bound - A vector of Float Types, defining the [North, South, East, West] boundaries of the GeoRegion

  • shape - A vector of Point2 Types, defining a non-rectilinear shape of the GeoRegion

  • is180 - A Bool Type, is W < 0

  • is360 - A Bool Type, is E > 180

source

Types of GeoRegions

In GeoRegions.jl, we differentiate between several different types of GeoRegions:

  • Rectilinear GeoRegions are denoted by the RectRegion type, available in all version of GeoRegions.jl

  • Tilted rectangular GeoRegions are denoted by the TiltRegion type, available in ≥v6

  • Polygonal GeoRegions are denoted by the PolyRegion type, available in ≥v2

RectRegions

GeoRegions.RectRegion Type
julia
RectRegion <: GeoRegion

A rectangular region on a rectilinear grid. Defined by its N,S,E,W boundaries.

source

TiltRegions

GeoRegions.TiltRegion Type
julia
TiltRegion <: GeoRegion

A tilted rectangular region on a rectilinear grid. Defined by

  • the (lon,lat) coordinates of its centre

  • the width in both the longitude and latitude directions (pre-rotation)

  • the angle of tilt in degrees (clockwise)

In addition to all the fields common to the GeoRegion abstract type, TiltRegions will also contain the following field:

  • geometry : A vector of Float Types, containing [X,Y,ΔX,ΔY,θ], where
    • X : A Float Type, the longitude coordinate of region centre

    • Y : A Float Type, the latitude coordinate of region centre

    • θ : A Float Type, the angle-tilt of rectangular region in degrees in the clockwise direction

    • ΔX : A Float Type, the half-width in longitude coordinates (before tilting)

    • ΔY : A Float Type, the half-width in latitude coordinates (before tilting)

source

PolyRegions

GeoRegions.PolyRegion Type
julia
PolyRegion <: GeoRegion

A polygonal region on a rectilinear lon-lat grid, defined by the (lon,lat) coordinates of its vertices.

source

- +
Skip to content

What is a GeoRegion?

In essence, a GeoRegion is:

  • a geographical region of interest

  • identified by an ID

  • a subregion of a parent GeoRegion (identified by pID, which must also be a valid ID)

Default GeoRegions

When using GeoRegions.jl, the default GeoRegion should generally be the global domain, specified by GLB and given by the [N,S,E,W] coordinates [90,-90,360,0]. The Global GeoRegion GLB is considered to be a subset of itself.

GeoRegions.GeoRegion Type
julia
GeoRegion

Abstract supertype for geographical regions. All GeoRegion types contain the following fields:

  • ID - A String Type, the identifier for the GeoRegion

  • pID - A String Type, the identifier for the parent GeoRegion

  • name - A String Type, the full name of the GeoRegion

  • bound - A vector of Float Types, defining the [North, South, East, West] boundaries of the GeoRegion

  • shape - A vector of Point2 Types, defining a non-rectilinear shape of the GeoRegion

  • is180 - A Bool Type, is W < 0

  • is360 - A Bool Type, is E > 180

source

Types of GeoRegions

In GeoRegions.jl, we differentiate between several different types of GeoRegions:

  • Rectilinear GeoRegions are denoted by the RectRegion type, available in all version of GeoRegions.jl

  • Tilted rectangular GeoRegions are denoted by the TiltRegion type, available in ≥v6

  • Polygonal GeoRegions are denoted by the PolyRegion type, available in ≥v2

RectRegions

GeoRegions.RectRegion Type
julia
RectRegion <: GeoRegion

A rectangular region on a rectilinear grid. Defined by its N,S,E,W boundaries.

source

TiltRegions

GeoRegions.TiltRegion Type
julia
TiltRegion <: GeoRegion

A tilted rectangular region on a rectilinear grid. Defined by

  • the (lon,lat) coordinates of its centre

  • the width in both the longitude and latitude directions (pre-rotation)

  • the angle of tilt in degrees (clockwise)

In addition to all the fields common to the GeoRegion abstract type, TiltRegions will also contain the following field:

  • geometry : A vector of Float Types, containing [X,Y,ΔX,ΔY,θ], where
    • X : A Float Type, the longitude coordinate of region centre

    • Y : A Float Type, the latitude coordinate of region centre

    • θ : A Float Type, the angle-tilt of rectangular region in degrees in the clockwise direction

    • ΔX : A Float Type, the half-width in longitude coordinates (before tilting)

    • ΔY : A Float Type, the half-width in latitude coordinates (before tilting)

source

PolyRegions

GeoRegions.PolyRegion Type
julia
PolyRegion <: GeoRegion

A polygonal region on a rectilinear lon-lat grid, defined by the (lon,lat) coordinates of its vertices.

source

+ \ No newline at end of file diff --git a/dev/hashmap.json b/dev/hashmap.json index cda31893..67cc5f8c 100644 --- a/dev/hashmap.json +++ b/dev/hashmap.json @@ -1 +1 @@ -{"api_addreadrm.md":"BSyxw_3R","api_create.md":"CIHPETEx","api_isin.md":"7FsrXMWg","api_project.md":"BQUL8STL","api_properties.md":"DC0qlyXB","api_tables.md":"Ddsch_94","basics_create.md":"Bw1mW1js","basics_properties_isequal.md":"BOgXZQxb","basics_properties_isin.md":"Dh1h01Ec","basics_properties_shape.md":"DMAazk58","basics_read_listall.md":"CzOLNByn","basics_read_overview.md":"Bh6PVHRe","basics_read_predefined.md":"CNNYN9Tm","basics_read_tables.md":"DJOa36u-","ecosystem.md":"DRU_3EAm","georegions.md":"vVq3VaU_","index.md":"C0Ro1zfX","tutorials_addreadrm.md":"D6VzmyyW","tutorials_files.md":"C9oCgQik","tutorials_projects.md":"BtRd_OUv"} +{"api_addreadrm.md":"smOJ_khf","api_create.md":"COWiMQle","api_isin.md":"TYgWP7mT","api_project.md":"DIgEzLo7","api_properties.md":"D89Fq5u-","api_tables.md":"DXf0ixUa","basics_create.md":"Bw1mW1js","basics_properties_isequal.md":"BOgXZQxb","basics_properties_isin.md":"Dh1h01Ec","basics_properties_shape.md":"DMAazk58","basics_read_listall.md":"CzOLNByn","basics_read_overview.md":"Bh6PVHRe","basics_read_predefined.md":"CNNYN9Tm","basics_read_tables.md":"DJOa36u-","ecosystem.md":"_RnqiY4V","georegions.md":"CXYplEBr","index.md":"C0Ro1zfX","tutorials_addreadrm.md":"BCyTZW4i","tutorials_files.md":"C9oCgQik","tutorials_projects.md":"CCeR1qqb"} diff --git a/dev/index.html b/dev/index.html index 68ef9089..cd51a1ec 100644 --- a/dev/index.html +++ b/dev/index.html @@ -8,9 +8,9 @@ - + - + @@ -19,7 +19,7 @@
Skip to content

GeoRegions.jl

Geographic Regions for Geospatial Data

Defining Geographic Regions of Interest for Geospatial Data in Geoscience and Climate.

GeoRegions

Installation Instructions

The latest version of GeoRegions can be installed using the Julia package manager (accessed by pressing ] in the Julia command prompt)

julia
julia> ]
 (@v1.10) pkg> add GeoRegions

You can update GeoRegions.jl to the latest version using

julia
(@v1.10) pkg> update GeoRegions

And if you want to get the latest release without waiting for me to update the Julia Registry (although this generally isn't necessary since I make a point to release patch versions as soon as I find bugs or add new working features), you may fix the version to the main branch of the GitHub repository:

julia
(@v1.10) pkg> add GeoRegions#main

Getting help

If you are interested in using GeoRegions.jl or are trying to figure out how to use it, please feel free to ask me questions and get in touch! Please feel free to open an issue if you have any questions, comments, suggestions, etc!

- + \ No newline at end of file diff --git a/dev/tutorials/addreadrm.html b/dev/tutorials/addreadrm.html index 01c8e586..f1ce25f3 100644 --- a/dev/tutorials/addreadrm.html +++ b/dev/tutorials/addreadrm.html @@ -8,11 +8,11 @@ - + - + - + @@ -21,7 +21,7 @@ mkpath(joinpath(pwd(),"test")) setupGeoRegions(path=joinpath(pwd(),"test"))

1. Adding custom GeoRegions to your Project

If you wish to automatically save a new GeoRegions as it is created, specify the keyword argument save = true. To specify the directory to which the GeoRegion information is saved to, use the path keyword.

  • RectRegion(ID, pID, name, ..., save = true, path = ...) writes to $path/rectlist.txt

  • TiltRegion(ID, pID, name, ..., save = true, path = ...) writes to $path/tiltlist.txt

  • PolyRegion(ID, pID, name, ..., save = true, path = ...) writes to $path/polylist.txt

Default path Directory

By default, path = joinpath(DEPOT_PATH[1],"files","GeoRegions"). If path is not specified, the information will be saved in the respective custom lists in this directory.

Modification of Custom Lists

While it is possible to do manually modify the lists, it is not recommended to do so, especially for polylist.txt, which is pretty complicated. Instead, you should let GeoRegions.jl do most of the heavy lifting.

You can also add a GeoRegion variable in the workspace that you have not yet saved into the custom lists

julia
geo = PolyRegion(ID, pID, name, ...)
 add(geo, path = ...)

For example, we can do

julia
geo = PolyRegion("TSP","GLB","Test Save PolyRegion",[10,100,-50,10],[20,10,0,20])
-add(geo,path=joinpath(pwd(),"test"))
[ Info: 2024-09-27T18:29:42.871 - GeoRegions.jl - Adding the GeoRegion TSP to the list.

See the API here

Or we can just directly add the GeoRegion simultaneously when it is defined, as follows:

julia
RectRegion("TSR","GLB","Test Save RectRegion",[40,-20,14,-60],save=true,path=joinpath(pwd(),"test"))
The Rectilinear Region TSR has the following properties:
+add(geo,path=joinpath(pwd(),"test"))
[ Info: 2024-09-27T18:32:44.682 - GeoRegions.jl - Adding the GeoRegion TSP to the list.

See the API here

Or we can just directly add the GeoRegion simultaneously when it is defined, as follows:

julia
RectRegion("TSR","GLB","Test Save RectRegion",[40,-20,14,-60],save=true,path=joinpath(pwd(),"test"))
The Rectilinear Region TSR has the following properties:
     Region ID     (ID) : TSR
     Parent ID    (pID) : GLB
     Name        (name) : Test Save RectRegion
@@ -65,26 +65,24 @@
          (is180,is360) : (true, false)
 
 julia> add(geo,path=joinpath(pwd(),"test"))
-ERROR: 2024-09-27T18:29:43.169 - GeoRegions.jl - The GeoRegion TSP has already been defined.  Please use another identifier.

We see that we cannot add another GeoRegion with the ID = TSP. In order to replace the GeoRegion associated with this ID with another set of information, you need to overwrite the preexisting information with overwrite()

julia
overwrite(geo,path=joinpath(pwd(),"test"))
[ Info: 2024-09-27T18:29:43.623 - GeoRegions.jl - Adding the GeoRegion TSP to the list.

And we reload the GeoRegion associated with the ID = TSP

julia
ply = GeoRegion("TSP",path=joinpath(pwd(),"test"))
The Polygonal Region TSP has the following properties:
+ERROR: 2024-09-27T18:32:44.990 - GeoRegions.jl - The GeoRegion TSP has already been defined.  Please use another identifier.

We see that we cannot add another GeoRegion with the ID = TSP. In order to replace the GeoRegion associated with this ID with another set of information, you need to overwrite the preexisting information with overwrite()

julia
overwrite(geo,path=joinpath(pwd(),"test"))
[ Info: 2024-09-27T18:32:45.446 - GeoRegions.jl - Adding the GeoRegion TSP to the list.

And we reload the GeoRegion associated with the ID = TSP

julia
ply = GeoRegion("TSP",path=joinpath(pwd(),"test"))
The Polygonal Region TSP has the following properties:
     Region ID     (ID) : TSP
     Parent ID    (pID) : GLB
     Name        (name) : Test Save PolyRegion 2
     Bounds   (N,S,E,W) : [20.0, 0.0, 90.0, -50.0]
     Shape      (shape) : Point{2, Float64}[[10.0, 20.0], [90.0, 10.0], [-50.0, 0.0], [10.0, 20.0]]
-         (is180,is360) : (true, false)

See the API here

5. Removing a custom GeoRegions from your Project

Now, we've realized that you don't really need a GeoRegion anymore, or for some reason you want to delete the information of a particular GeoRegion associate with a certain ID and replace it with a new information, there are two ways to do it:

5.1 Removing a GeoRegion that has been loaded

THe first method is to remove a GeoRegion geo that has already been loaded into the workspace. We use the function rm() to do this

julia
rm(ply,path=joinpath(pwd(),"test"))
[ Info: 2024-09-27T18:29:43.872 - GeoRegions.jl - Removing the GeoRegion TSP ...

And now we check if the GeoRegion TSP now exists:

@example
isID("TSP",path=joinpath(pwd(),"test"))

And we see that it does not.

See the API here

5.2 Removing a GeoRegion based on its ID

The second method is to remove a GeoRegion based on an ID, or its string identifier. We do this with the function rmID()

julia
rmID("TSR",path=joinpath(pwd(),"test"))
[ Info: 2024-09-27T18:29:43.939 - GeoRegions.jl - Removing the GeoRegion TSR ...
julia
julia> isID("TSR",path=joinpath(pwd(),"test"))
-ERROR: 2024-09-27T18:29:43.969 - GeoRegions.jl - TSR is not a valid GeoRegion identifier, use RectRegion(), TiltRegion() or PolyRegion() to add this GeoRegion to the list.

Predefined GeoRegions cannot be removed

You cannot remove GLB, GF_*, SRX_* or AR6_* that have been predefined in GeoRegions.jl

See the API here

6. Removing a the custom GeoRegions lists from your Project

If you use deleteGeoRegions() to remove all the custom lists, you will remove all the custom GeoRegions for the projects and they cannot be retrieved.

julia
TiltRegion("TST","GLB","Test Save TiltRegion",10,5,50,20,30,path=joinpath(pwd(),"test"))
The Tilted Rectilinear Region TST has the following properties:
+         (is180,is360) : (true, false)

See the API here

5. Removing a custom GeoRegions from your Project

Now, we've realized that you don't really need a GeoRegion anymore, or for some reason you want to delete the information of a particular GeoRegion associate with a certain ID and replace it with a new information, there are two ways to do it:

5.1 Removing a GeoRegion that has been loaded

THe first method is to remove a GeoRegion geo that has already been loaded into the workspace. We use the function rm() to do this

julia
rm(ply,path=joinpath(pwd(),"test"))
[ Info: 2024-09-27T18:32:45.699 - GeoRegions.jl - Removing the GeoRegion TSP ...

And now we check if the GeoRegion TSP now exists:

@example
isID("TSP",path=joinpath(pwd(),"test"))

And we see that it does not.

See the API here

5.2 Removing a GeoRegion based on its ID

The second method is to remove a GeoRegion based on an ID, or its string identifier. We do this with the function rmID()

julia
rmID("TSR",path=joinpath(pwd(),"test"))
[ Info: 2024-09-27T18:32:45.766 - GeoRegions.jl - Removing the GeoRegion TSR ...
julia
julia> isID("TSR",path=joinpath(pwd(),"test"))
+ERROR: 2024-09-27T18:32:45.793 - GeoRegions.jl - TSR is not a valid GeoRegion identifier, use RectRegion(), TiltRegion() or PolyRegion() to add this GeoRegion to the list.

Predefined GeoRegions cannot be removed

You cannot remove GLB, GF_*, SRX_* or AR6_* that have been predefined in GeoRegions.jl

See the API here

6. Removing a the custom GeoRegions lists from your Project

If you use deleteGeoRegions() to remove all the custom lists, you will remove all the custom GeoRegions for the projects and they cannot be retrieved.

julia
TiltRegion("TST","GLB","Test Save TiltRegion",10,5,50,20,30,path=joinpath(pwd(),"test"))
The Tilted Rectilinear Region TST has the following properties:
     Region ID     (ID) : TST
     Parent ID    (pID) : GLB
     Name        (name) : Test Save TiltRegion
     Bounds   (N,S,E,W) : [47.32050807568877, -37.32050807568877, 63.30127018922193, -43.30127018922193]
     Shape      (shape) : Point{2, Float64}[[-43.30127018922193, -2.679491924311229], [-23.30127018922193, -37.32050807568877], [63.30127018922193, 12.679491924311229], [43.30127018922193, 47.32050807568877], [-43.30127018922193, -2.679491924311229]]
     Tilt (X,Y,ΔX,ΔY,θ) : [10.0, 5.0, 50.0, 20.0, 30.0]
-         (is180,is360) : (true, false)
julia
deleteGeoRegions(path=joinpath(pwd(),"test"))
┌ Warning: 2024-09-27T18:29:44.042 - GeoRegions.jl - Removing custom GeoRegions.jl files from /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials/test, all GeoRegion information saved into these files will be permanently lost
+         (is180,is360) : (true, false)
julia
deleteGeoRegions(path=joinpath(pwd(),"test"))
┌ Warning: 2024-09-27T18:32:45.861 - GeoRegions.jl - Removing custom GeoRegions.jl files from /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials/test, all GeoRegion information saved into these files will be permanently lost
 └ @ GeoRegions ~/work/GeoRegions.jl/GeoRegions.jl/src/georegions/project.jl:160

Let's test and see if we can retrieve the user-defined GeoRegions now we have deleted their information from the project.

julia
julia> isID("TST",path=joinpath(pwd(),"test"),throw=false)
-┌ Warning: 2024-09-27T18:29:44.050 - GeoRegions.jl - TST is not a valid GeoRegion identifier, use RectRegion(), TiltRegion() or PolyRegion() to add this GeoRegion to the list.
-└ @ GeoRegions ~/work/GeoRegions.jl/GeoRegions.jl/src/georegions/is.jl:368
 false
- + \ No newline at end of file diff --git a/dev/tutorials/files.html b/dev/tutorials/files.html index 3e83ff7c..26379776 100644 --- a/dev/tutorials/files.html +++ b/dev/tutorials/files.html @@ -8,9 +8,9 @@ - + - + @@ -18,7 +18,7 @@ - + \ No newline at end of file diff --git a/dev/tutorials/projects.html b/dev/tutorials/projects.html index 1ce246e0..5625cfbc 100644 --- a/dev/tutorials/projects.html +++ b/dev/tutorials/projects.html @@ -8,11 +8,11 @@ - + - + - + @@ -20,20 +20,20 @@
Skip to content

GeoRegions.jl for your Research Project

In previous version of GeoRegions.jl (≤v6), we assume that all user-defined GeoRegions were meant to be universally shared. However, we have come to realize that this can cause problems if different projects have similar identifiers (ID) for different regions.

Therefore in v7 and above, GeoRegions.jl explicitly works on a project basis. This means that: * Predefined GeoRegions (GF, SREX and AR6) will still be available as part of the GeoRegions package. * All user-defined GeoRegions for a project should entail specification of a project directory using the keyword path, so that the GeoRegion can be saved specifically for the project. * Retrieving a GeoRegion for a particular project will require specification of the project directory using path. * By default path is the variable homedir()

1. Setup GeoRegions.jl for your Project

The best way to get started, is to use setupGeoRegions(path = "<directory>") in order to copy over the necessary files that will store your custom user-defined GeoRegions.

julia
using GeoRegions
 setupGeoRegions(path=pwd())

This will copy over the following files: rectlist.txt, polylist.txt, tiltlist.txt, which will stored RectRegions, PolyRegions and TiltRegions respectively.

julia
isfile(joinpath(pwd(),"rectlist.txt")),
 isfile(joinpath(pwd(),"polylist.txt")),
-isfile(joinpath(pwd(),"tiltlist.txt"))
(true, true, true)

If any of these files already exist in path, they will not be overwritten. To specifically overwrite all preexisting user-defined GeoRegions, use the keyword overwrite = true.

julia
setupGeoRegions(path=pwd(),overwrite=true)
┌ Warning: 2024-09-27T18:29:44.129 - GeoRegions.jl - Overwriting /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials/rectlist.txt with original file in /home/runner/work/GeoRegions.jl/GeoRegions.jl/src/files/rectlist.txt ...
+isfile(joinpath(pwd(),"tiltlist.txt"))
(true, true, true)

If any of these files already exist in path, they will not be overwritten. To specifically overwrite all preexisting user-defined GeoRegions, use the keyword overwrite = true.

julia
setupGeoRegions(path=pwd(),overwrite=true)
┌ Warning: 2024-09-27T18:32:45.948 - GeoRegions.jl - Overwriting /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials/rectlist.txt with original file in /home/runner/work/GeoRegions.jl/GeoRegions.jl/src/files/rectlist.txt ...
 └ @ GeoRegions ~/work/GeoRegions.jl/GeoRegions.jl/src/georegions/project.jl:43
-┌ Warning: 2024-09-27T18:29:44.129 - GeoRegions.jl - Overwriting /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials/polylist.txt with original file in /home/runner/work/GeoRegions.jl/GeoRegions.jl/src/files/polylist.txt ...
+┌ Warning: 2024-09-27T18:32:45.948 - GeoRegions.jl - Overwriting /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials/polylist.txt with original file in /home/runner/work/GeoRegions.jl/GeoRegions.jl/src/files/polylist.txt ...
 └ @ GeoRegions ~/work/GeoRegions.jl/GeoRegions.jl/src/georegions/project.jl:43
-┌ Warning: 2024-09-27T18:29:44.129 - GeoRegions.jl - Overwriting /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials/tiltlist.txt with original file in /home/runner/work/GeoRegions.jl/GeoRegions.jl/src/files/tiltlist.txt ...
+┌ Warning: 2024-09-27T18:32:45.948 - GeoRegions.jl - Overwriting /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials/tiltlist.txt with original file in /home/runner/work/GeoRegions.jl/GeoRegions.jl/src/files/tiltlist.txt ...
 └ @ GeoRegions ~/work/GeoRegions.jl/GeoRegions.jl/src/georegions/project.jl:43

See the API here

2. Listing out the custom GeoRegions for your Project

You can create a table of all the GeoRegions that have been saved to path using tableGeoRegions() as follows.

julia
tableGeoRegions(;path = ...)

For example, we create a table of user-defined and predefined GeoRegions for the current directory pwd().

Custom GeoRegions are always specified first

We always specify the custom user-defined GeoRegions first, because those are most relevant to a project.

julia
tableGeoRegions(path=pwd(),predefined=false)
 ----- ------------ ------- -------- --------------------------- ------------
   ID       Type      Name    Parent       Bounds [N,S,E,W]           File
  ----- ------------ ------- -------- --------------------------- ------------
   GLB   RectRegion   Globe    GLB     [90.0, -90.0, 360.0, 0.0]   global.txt
- ----- ------------ ------- -------- --------------------------- ------------

Note, we have no custom GeoRegions added, so there is nothing to list right now even though the files exist. If any of rectlist.txt, polylist.txt and tiltlist.txt are not present, a warning will be shown unless the keyword warn = false is set.

See the API here

3. Removing a the custom GeoRegions list from your Project

Say you want to completely clear your project of custom GeoRegions, replacing them with new lists. You can just delete the files directly, or you can do deleteGeoRegions().

Default path is pwd()

For deleteGeoRegions(), the default path is the current directory pwd().

julia
deleteGeoRegions()
┌ Warning: 2024-09-27T18:29:44.141 - GeoRegions.jl - Removing custom GeoRegions.jl files from /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials, all GeoRegion information saved into these files will be permanently lost
+ ----- ------------ ------- -------- --------------------------- ------------

Note, we have no custom GeoRegions added, so there is nothing to list right now even though the files exist. If any of rectlist.txt, polylist.txt and tiltlist.txt are not present, a warning will be shown unless the keyword warn = false is set.

See the API here

3. Removing a the custom GeoRegions list from your Project

Say you want to completely clear your project of custom GeoRegions, replacing them with new lists. You can just delete the files directly, or you can do deleteGeoRegions().

Default path is pwd()

For deleteGeoRegions(), the default path is the current directory pwd().

julia
deleteGeoRegions()
┌ Warning: 2024-09-27T18:32:45.961 - GeoRegions.jl - Removing custom GeoRegions.jl files from /home/runner/work/GeoRegions.jl/GeoRegions.jl/docs/build/tutorials, all GeoRegion information saved into these files will be permanently lost
 └ @ GeoRegions ~/work/GeoRegions.jl/GeoRegions.jl/src/georegions/project.jl:160

And then we see if rectlist.txt exists!

julia
isfile(joinpath(pwd(),"rectlist.txt")),
 isfile(joinpath(pwd(),"polylist.txt")),
 isfile(joinpath(pwd(),"tiltlist.txt"))
(false, false, false)

See the API here

- + \ No newline at end of file