diff --git a/dev/404.html b/dev/404.html index 471e56a64..26e5410c5 100644 --- a/dev/404.html +++ b/dev/404.html @@ -8,7 +8,7 @@ - + @@ -16,7 +16,7 @@
- + \ No newline at end of file diff --git a/dev/api.html b/dev/api.html index d73db286c..f67f80aa0 100644 --- a/dev/api.html +++ b/dev/api.html @@ -8,26 +8,26 @@ - + - - - + + + -
Skip to content

Full GeometryOps API documentation

Warning

This page is still very much WIP!

Documentation for GeometryOps's full API (only for reference!).

apply and associated functions

# GeometryOps.applyFunction.
julia
apply(f, target::Union{TraitTarget, GI.AbstractTrait}, obj; kw...)

Reconstruct a geometry, feature, feature collection, or nested vectors of either using the function f on the target trait.

f(target_geom) => x where x also has the target trait, or a trait that can be substituted. For example, swapping PolgonTrait to MultiPointTrait will fail if the outer object has MultiPolygonTrait, but should work if it has FeatureTrait.

Objects "shallower" than the target trait are always completely rebuilt, like a Vector of FeatureCollectionTrait of FeatureTrait when the target has PolygonTrait and is held in the features. These will always be GeoInterface geometries/feature/feature collections. But "deeper" objects may remain unchanged or be whatever GeoInterface compatible objects f returns.

The result is a functionally similar geometry with values depending on f.

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

  • calc_extent: true or false. Whether to calculate the extent. Defaults to false.

Example

Flipped point the order in any feature or geometry, or iterables of either:

julia
import GeoInterface as GI
+    
Skip to content

Full GeometryOps API documentation

Warning

This page is still very much WIP!

Documentation for GeometryOps's full API (only for reference!).

apply and associated functions

# GeometryOps.applyFunction.
julia
apply(f, target::Union{TraitTarget, GI.AbstractTrait}, obj; kw...)

Reconstruct a geometry, feature, feature collection, or nested vectors of either using the function f on the target trait.

f(target_geom) => x where x also has the target trait, or a trait that can be substituted. For example, swapping PolgonTrait to MultiPointTrait will fail if the outer object has MultiPolygonTrait, but should work if it has FeatureTrait.

Objects "shallower" than the target trait are always completely rebuilt, like a Vector of FeatureCollectionTrait of FeatureTrait when the target has PolygonTrait and is held in the features. These will always be GeoInterface geometries/feature/feature collections. But "deeper" objects may remain unchanged or be whatever GeoInterface compatible objects f returns.

The result is a functionally similar geometry with values depending on f.

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

  • calc_extent: true or false. Whether to calculate the extent. Defaults to false.

Example

Flipped point the order in any feature or geometry, or iterables of either:

julia
import GeoInterface as GI
 import GeometryOps as GO
 geom = GI.Polygon([GI.LinearRing([(1, 2), (3, 4), (5, 6), (1, 2)]),
                    GI.LinearRing([(3, 4), (5, 6), (6, 7), (3, 4)])])
 
 flipped_geom = GO.apply(GI.PointTrait, geom) do p
     (GI.y(p), GI.x(p))
-end

source


# GeometryOps.applyreduceFunction.
julia
applyreduce(f, op, target::Union{TraitTarget, GI.AbstractTrait}, obj; threaded)

Apply function f to all objects with the target trait, and reduce the result with an op like +.

The order and grouping of application of op is not guaranteed.

If threaded==true threads will be used over arrays and iterables, feature collections and nested geometries.

source


# GeometryOps.reprojectFunction.
julia
reproject(geometry; source_crs, target_crs, transform, always_xy, time)
+end

source


# GeometryOps.applyreduceFunction.
julia
applyreduce(f, op, target::Union{TraitTarget, GI.AbstractTrait}, obj; threaded)

Apply function f to all objects with the target trait, and reduce the result with an op like +.

The order and grouping of application of op is not guaranteed.

If threaded==true threads will be used over arrays and iterables, feature collections and nested geometries.

source


# GeometryOps.reprojectFunction.
julia
reproject(geometry; source_crs, target_crs, transform, always_xy, time)
 reproject(geometry, source_crs, target_crs; always_xy, time)
-reproject(geometry, transform; always_xy, time)

Reproject any GeoInterface.jl compatible geometry from source_crs to target_crs.

The returned object will be constructed from GeoInterface.WrapperGeometry geometries, wrapping views of a Vector{Proj.Point{D}}, where D is the dimension.

Tip

The Proj.jl package must be loaded for this method to work, since it is implemented in a package extension.

Arguments

  • geometry: Any GeoInterface.jl compatible geometries.

  • source_crs: the source coordinate referece system, as a GeoFormatTypes.jl object or a string.

  • target_crs: the target coordinate referece system, as a GeoFormatTypes.jl object or a string.

If these a passed as keywords, transform will take priority. Without it target_crs is always needed, and source_crs is needed if it is not retreivable from the geometry with GeoInterface.crs(geometry).

Keywords

  • always_xy: force x, y coordinate order, true by default. false will expect and return points in the crs coordinate order.

  • time: the time for the coordinates. Inf by default.

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

  • calc_extent: true or false. Whether to calculate the extent. Defaults to false.

source


# GeometryOps.transformFunction.
julia
transform(f, obj)

Apply a function f to all the points in obj.

Points will be passed to f as an SVector to allow using CoordinateTransformations.jl and Rotations.jl without hassle.

SVector is also a valid GeoInterface.jl point, so will work in all GeoInterface.jl methods.

Example

julia
julia> import GeoInterface as GI
+reproject(geometry, transform; always_xy, time)

Reproject any GeoInterface.jl compatible geometry from source_crs to target_crs.

The returned object will be constructed from GeoInterface.WrapperGeometry geometries, wrapping views of a Vector{Proj.Point{D}}, where D is the dimension.

Tip

The Proj.jl package must be loaded for this method to work, since it is implemented in a package extension.

Arguments

  • geometry: Any GeoInterface.jl compatible geometries.

  • source_crs: the source coordinate referece system, as a GeoFormatTypes.jl object or a string.

  • target_crs: the target coordinate referece system, as a GeoFormatTypes.jl object or a string.

If these a passed as keywords, transform will take priority. Without it target_crs is always needed, and source_crs is needed if it is not retreivable from the geometry with GeoInterface.crs(geometry).

Keywords

  • always_xy: force x, y coordinate order, true by default. false will expect and return points in the crs coordinate order.

  • time: the time for the coordinates. Inf by default.

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

  • calc_extent: true or false. Whether to calculate the extent. Defaults to false.

source


# GeometryOps.transformFunction.
julia
transform(f, obj)

Apply a function f to all the points in obj.

Points will be passed to f as an SVector to allow using CoordinateTransformations.jl and Rotations.jl without hassle.

SVector is also a valid GeoInterface.jl point, so will work in all GeoInterface.jl methods.

Example

julia
julia> import GeoInterface as GI
 
 julia> import GeometryOps as GO
 
@@ -46,160 +46,160 @@
 GeoInterface.Wrappers.Polygon{false, false, Vector{GeoInterface.Wrappers.LinearRing{false, false, Vector{StaticArraysCore.SVector{2, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(GeoInterface.Wrappers.LinearR
 ing{false, false, Vector{StaticArraysCore.SVector{2, Int64}}, Nothing, Nothing}[GeoInterface.Wrappers.LinearRing{false, false, Vector{StaticArraysCore.SVector{2, Int64}}, Nothing, Nothing}(StaticArraysCore.SVe
 ctor{2, Int64}[[2, 1], [4, 3], [6, 5], [2, 1]], nothing, nothing), GeoInterface.Wrappers.LinearRing{false, false, Vector{StaticArraysCore.SVector{2, Int64}}, Nothing, Nothing}(StaticArraysCore.SVector{2, Int64
-}[[4, 3], [6, 5], [7, 6], [4, 3]], nothing, nothing)], nothing, nothing)

source


General geometry methods

OGC methods

# GeometryOps.containsFunction.
julia
contains(g1::AbstractGeometry, g2::AbstractGeometry)::Bool

Return true if the second geometry is completely contained by the first geometry. The interiors of both geometries must intersect and the interior and boundary of the secondary (g2) must not intersect the exterior of the first (g1).

contains returns the exact opposite result of within.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+}[[4, 3], [6, 5], [7, 6], [4, 3]], nothing, nothing)], nothing, nothing)

source


General geometry methods

OGC methods

# GeometryOps.containsFunction.
julia
contains(g1::AbstractGeometry, g2::AbstractGeometry)::Bool

Return true if the second geometry is completely contained by the first geometry. The interiors of both geometries must intersect and the interior and boundary of the secondary (g2) must not intersect the exterior of the first (g1).

contains returns the exact opposite result of within.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 line = GI.LineString([(1, 1), (1, 2), (1, 3), (1, 4)])
 point = GI.Point((1, 2))
 
 GO.contains(line, point)
 # output
-true

source


# GeometryOps.coveredbyFunction.
julia
coveredby(g1, g2)::Bool

Return true if the first geometry is completely covered by the second geometry. The interior and boundary of the primary geometry (g1) must not intersect the exterior of the secondary geometry (g2).

Furthermore, coveredby returns the exact opposite result of covers. They are equivalent with the order of the arguments swapped.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+true

source


# GeometryOps.coveredbyFunction.
julia
coveredby(g1, g2)::Bool

Return true if the first geometry is completely covered by the second geometry. The interior and boundary of the primary geometry (g1) must not intersect the exterior of the secondary geometry (g2).

Furthermore, coveredby returns the exact opposite result of covers. They are equivalent with the order of the arguments swapped.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 p1 = GI.Point(0.0, 0.0)
 p2 = GI.Point(1.0, 1.0)
 l1 = GI.Line([p1, p2])
 
 GO.coveredby(p1, l1)
 # output
-true

source


# GeometryOps.coversFunction.
julia
covers(g1::AbstractGeometry, g2::AbstractGeometry)::Bool

Return true if the first geometry is completely covers the second geometry, The exterior and boundary of the second geometry must not be outside of the interior and boundary of the first geometry. However, the interiors need not intersect.

covers returns the exact opposite result of coveredby.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+true

source


# GeometryOps.coversFunction.
julia
covers(g1::AbstractGeometry, g2::AbstractGeometry)::Bool

Return true if the first geometry is completely covers the second geometry, The exterior and boundary of the second geometry must not be outside of the interior and boundary of the first geometry. However, the interiors need not intersect.

covers returns the exact opposite result of coveredby.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 l1 = GI.LineString([(1.0, 1.0), (1.0, 2.0), (1.0, 3.0), (1.0, 4.0)])
 l2 = GI.LineString([(1.0, 1.0), (1.0, 2.0)])
 
 GO.covers(l1, l2)
 # output
-true

source


# GeometryOps.crossesFunction.
julia
 crosses(geom1, geom2)::Bool

Return true if the intersection results in a geometry whose dimension is one less than the maximum dimension of the two source geometries and the intersection set is interior to both source geometries.

TODO: broken

Examples

julia
import GeoInterface as GI, GeometryOps as GO
-# TODO: Add working example

source


# GeometryOps.disjointFunction.
julia
disjoint(geom1, geom2)::Bool

Return true if the first geometry is disjoint from the second geometry.

Return true if the first geometry is disjoint from the second geometry. The interiors and boundaries of both geometries must not intersect.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+true

source


# GeometryOps.crossesFunction.
julia
 crosses(geom1, geom2)::Bool

Return true if the intersection results in a geometry whose dimension is one less than the maximum dimension of the two source geometries and the intersection set is interior to both source geometries.

TODO: broken

Examples

julia
import GeoInterface as GI, GeometryOps as GO
+# TODO: Add working example

source


# GeometryOps.disjointFunction.
julia
disjoint(geom1, geom2)::Bool

Return true if the first geometry is disjoint from the second geometry.

Return true if the first geometry is disjoint from the second geometry. The interiors and boundaries of both geometries must not intersect.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 
 line = GI.LineString([(1, 1), (1, 2), (1, 3), (1, 4)])
 point = (2, 2)
 GO.disjoint(point, line)
 
 # output
-true

source


# GeometryOps.intersectsFunction.
julia
intersects(geom1, geom2)::Bool

Return true if the interiors or boundaries of the two geometries interact.

intersects returns the exact opposite result of disjoint.

Example

julia
import GeoInterface as GI, GeometryOps as GO
+true

source


# GeometryOps.intersectsFunction.
julia
intersects(geom1, geom2)::Bool

Return true if the interiors or boundaries of the two geometries interact.

intersects returns the exact opposite result of disjoint.

Example

julia
import GeoInterface as GI, GeometryOps as GO
 
 line1 = GI.Line([(124.584961,-12.768946), (126.738281,-17.224758)])
 line2 = GI.Line([(123.354492,-15.961329), (127.22168,-14.008696)])
 GO.intersects(line1, line2)
 
 # output
-true

source


# GeometryOps.overlapsFunction.
julia
overlaps(geom1, geom2)::Bool

Compare two Geometries of the same dimension and return true if their intersection set results in a geometry different from both but of the same dimension. This means one geometry cannot be within or contain the other and they cannot be equal

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+true

source


# GeometryOps.overlapsFunction.
julia
overlaps(geom1, geom2)::Bool

Compare two Geometries of the same dimension and return true if their intersection set results in a geometry different from both but of the same dimension. This means one geometry cannot be within or contain the other and they cannot be equal

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 poly1 = GI.Polygon([[(0,0), (0,5), (5,5), (5,0), (0,0)]])
 poly2 = GI.Polygon([[(1,1), (1,6), (6,6), (6,1), (1,1)]])
 
 GO.overlaps(poly1, poly2)
 # output
-true

source

julia
overlaps(::GI.AbstractTrait, geom1, ::GI.AbstractTrait, geom2)::Bool

For any non-specified pair, all have non-matching dimensions, return false.

source

julia
overlaps(
+true

source

julia
overlaps(::GI.AbstractTrait, geom1, ::GI.AbstractTrait, geom2)::Bool

For any non-specified pair, all have non-matching dimensions, return false.

source

julia
overlaps(
     ::GI.MultiPointTrait, points1,
     ::GI.MultiPointTrait, points2,
-)::Bool

If the multipoints overlap, meaning some, but not all, of the points within the multipoints are shared, return true.

source

julia
overlaps(::GI.LineTrait, line1, ::GI.LineTrait, line)::Bool

If the lines overlap, meaning that they are colinear but each have one endpoint outside of the other line, return true. Else false.

source

julia
overlaps(
+)::Bool

If the multipoints overlap, meaning some, but not all, of the points within the multipoints are shared, return true.

source

julia
overlaps(::GI.LineTrait, line1, ::GI.LineTrait, line)::Bool

If the lines overlap, meaning that they are colinear but each have one endpoint outside of the other line, return true. Else false.

source

julia
overlaps(
     ::Union{GI.LineStringTrait, GI.LinearRing}, line1,
     ::Union{GI.LineStringTrait, GI.LinearRing}, line2,
-)::Bool

If the curves overlap, meaning that at least one edge of each curve overlaps, return true. Else false.

source

julia
overlaps(
+)::Bool

If the curves overlap, meaning that at least one edge of each curve overlaps, return true. Else false.

source

julia
overlaps(
     trait_a::GI.PolygonTrait, poly_a,
     trait_b::GI.PolygonTrait, poly_b,
-)::Bool

If the two polygons intersect with one another, but are not equal, return true. Else false.

source

julia
overlaps(
+)::Bool

If the two polygons intersect with one another, but are not equal, return true. Else false.

source

julia
overlaps(
     ::GI.PolygonTrait, poly1,
     ::GI.MultiPolygonTrait, polys2,
-)::Bool

Return true if polygon overlaps with at least one of the polygons within the multipolygon. Else false.

source

julia
overlaps(
+)::Bool

Return true if polygon overlaps with at least one of the polygons within the multipolygon. Else false.

source

julia
overlaps(
     ::GI.MultiPolygonTrait, polys1,
     ::GI.PolygonTrait, poly2,
-)::Bool

Return true if polygon overlaps with at least one of the polygons within the multipolygon. Else false.

source

julia
overlaps(
+)::Bool

Return true if polygon overlaps with at least one of the polygons within the multipolygon. Else false.

source

julia
overlaps(
     ::GI.MultiPolygonTrait, polys1,
     ::GI.MultiPolygonTrait, polys2,
-)::Bool

Return true if at least one pair of polygons from multipolygons overlap. Else false.

source


# GeometryOps.touchesFunction.
julia
touches(geom1, geom2)::Bool

Return true if the first geometry touches the second geometry. In other words, the two interiors cannot interact, but one of the geometries must have a boundary point that interacts with either the other geometies interior or boundary.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+)::Bool

Return true if at least one pair of polygons from multipolygons overlap. Else false.

source


# GeometryOps.touchesFunction.
julia
touches(geom1, geom2)::Bool

Return true if the first geometry touches the second geometry. In other words, the two interiors cannot interact, but one of the geometries must have a boundary point that interacts with either the other geometies interior or boundary.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 
 l1 = GI.Line([(0.0, 0.0), (1.0, 0.0)])
 l2 = GI.Line([(1.0, 1.0), (1.0, -1.0)])
 
 GO.touches(l1, l2)
 # output
-true

source


# GeometryOps.withinFunction.
julia
within(geom1, geom2)::Bool

Return true if the first geometry is completely within the second geometry. The interiors of both geometries must intersect and the interior and boundary of the primary geometry (geom1) must not intersect the exterior of the secondary geometry (geom2).

Furthermore, within returns the exact opposite result of contains.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+true

source


# GeometryOps.withinFunction.
julia
within(geom1, geom2)::Bool

Return true if the first geometry is completely within the second geometry. The interiors of both geometries must intersect and the interior and boundary of the primary geometry (geom1) must not intersect the exterior of the secondary geometry (geom2).

Furthermore, within returns the exact opposite result of contains.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 
 line = GI.LineString([(1, 1), (1, 2), (1, 3), (1, 4)])
 point = (1, 2)
 GO.within(point, line)
 
 # output
-true

source


Other general methods

# GeometryOps.equalsFunction.
julia
equals(geom1, geom2)::Bool

Compare two Geometries return true if they are the same geometry.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+true

source


Other general methods

# GeometryOps.equalsFunction.
julia
equals(geom1, geom2)::Bool

Compare two Geometries return true if they are the same geometry.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 poly1 = GI.Polygon([[(0,0), (0,5), (5,5), (5,0), (0,0)]])
 poly2 = GI.Polygon([[(0,0), (0,5), (5,5), (5,0), (0,0)]])
 
 GO.equals(poly1, poly2)
 # output
-true

source

julia
equals(::T, geom_a, ::T, geom_b)::Bool

Two geometries of the same type, which don't have a equals function to dispatch off of should throw an error.

source

julia
equals(trait_a, geom_a, trait_b, geom_b)

Two geometries which are not of the same type cannot be equal so they always return false.

source

julia
equals(::GI.PointTrait, p1, ::GI.PointTrait, p2)::Bool

Two points are the same if they have the same x and y (and z if 3D) coordinates.

source

julia
equals(::GI.PointTrait, p1, ::GI.MultiPointTrait, mp2)::Bool

A point and a multipoint are equal if the multipoint is composed of a single point that is equivalent to the given point.

source

julia
equals(::GI.MultiPointTrait, mp1, ::GI.PointTrait, p2)::Bool

A point and a multipoint are equal if the multipoint is composed of a single point that is equivalent to the given point.

source

julia
equals(::GI.MultiPointTrait, mp1, ::GI.MultiPointTrait, mp2)::Bool

Two multipoints are equal if they share the same set of points.

source

julia
equals(
+true

source

julia
equals(::T, geom_a, ::T, geom_b)::Bool

Two geometries of the same type, which don't have a equals function to dispatch off of should throw an error.

source

julia
equals(trait_a, geom_a, trait_b, geom_b)

Two geometries which are not of the same type cannot be equal so they always return false.

source

julia
equals(::GI.PointTrait, p1, ::GI.PointTrait, p2)::Bool

Two points are the same if they have the same x and y (and z if 3D) coordinates.

source

julia
equals(::GI.PointTrait, p1, ::GI.MultiPointTrait, mp2)::Bool

A point and a multipoint are equal if the multipoint is composed of a single point that is equivalent to the given point.

source

julia
equals(::GI.MultiPointTrait, mp1, ::GI.PointTrait, p2)::Bool

A point and a multipoint are equal if the multipoint is composed of a single point that is equivalent to the given point.

source

julia
equals(::GI.MultiPointTrait, mp1, ::GI.MultiPointTrait, mp2)::Bool

Two multipoints are equal if they share the same set of points.

source

julia
equals(
     ::Union{GI.LineTrait, GI.LineStringTrait}, l1,
     ::Union{GI.LineTrait, GI.LineStringTrait}, l2,
-)::Bool

Two lines/linestrings are equal if they share the same set of points going along the curve. Note that lines/linestrings aren't closed by defintion.

source

julia
equals(
+)::Bool

Two lines/linestrings are equal if they share the same set of points going along the curve. Note that lines/linestrings aren't closed by defintion.

source

julia
equals(
     ::Union{GI.LineTrait, GI.LineStringTrait}, l1,
     ::GI.LinearRingTrait, l2,
-)::Bool

A line/linestring and a linear ring are equal if they share the same set of points going along the curve. Note that lines aren't closed by defintion, but rings are, so the line must have a repeated last point to be equal

source

julia
equals(
+)::Bool

A line/linestring and a linear ring are equal if they share the same set of points going along the curve. Note that lines aren't closed by defintion, but rings are, so the line must have a repeated last point to be equal

source

julia
equals(
     ::GI.LinearRingTrait, l1,
     ::Union{GI.LineTrait, GI.LineStringTrait}, l2,
-)::Bool

A linear ring and a line/linestring are equal if they share the same set of points going along the curve. Note that lines aren't closed by defintion, but rings are, so the line must have a repeated last point to be equal

source

julia
equals(
+)::Bool

A linear ring and a line/linestring are equal if they share the same set of points going along the curve. Note that lines aren't closed by defintion, but rings are, so the line must have a repeated last point to be equal

source

julia
equals(
     ::GI.LinearRingTrait, l1,
     ::GI.LinearRingTrait, l2,
-)::Bool

Two linear rings are equal if they share the same set of points going along the curve. Note that rings are closed by definition, so they can have, but don't need, a repeated last point to be equal.

source

julia
equals(::GI.PolygonTrait, geom_a, ::GI.PolygonTrait, geom_b)::Bool

Two polygons are equal if they share the same exterior edge and holes.

source

julia
equals(::GI.PolygonTrait, geom_a, ::GI.MultiPolygonTrait, geom_b)::Bool

A polygon and a multipolygon are equal if the multipolygon is composed of a single polygon that is equivalent to the given polygon.

source

julia
equals(::GI.MultiPolygonTrait, geom_a, ::GI.PolygonTrait, geom_b)::Bool

A polygon and a multipolygon are equal if the multipolygon is composed of a single polygon that is equivalent to the given polygon.

source

julia
equals(::GI.PolygonTrait, geom_a, ::GI.PolygonTrait, geom_b)::Bool

Two multipolygons are equal if they share the same set of polygons.

source


# GeometryOps.centroidFunction.
julia
centroid(geom, [T=Float64])::Tuple{T, T}

Returns the centroid of a given line segment, linear ring, polygon, or mutlipolygon.

source


# GeometryOps.distanceFunction.
julia
distance(point, geom, ::Type{T} = Float64)::T

Calculates the ditance from the geometry g1 to the point. The distance will always be positive or zero.

The method will differ based on the type of the geometry provided: - The distance from a point to a point is just the Euclidean distance between the points. - The distance from a point to a line is the minimum distance from the point to the closest point on the given line. - The distance from a point to a linestring is the minimum distance from the point to the closest segment of the linestring. - The distance from a point to a linear ring is the minimum distance from the point to the closest segment of the linear ring. - The distance from a point to a polygon is zero if the point is within the polygon and otherwise is the minimum distance from the point to an edge of the polygon. This includes edges created by holes. - The distance from a point to a multigeometry or a geometry collection is the minimum distance between the point and any of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.signed_distanceFunction.
julia
signed_distance(point, geom, ::Type{T} = Float64)::T

Calculates the signed distance from the geometry geom to the given point. Points within geom have a negative signed distance, and points outside of geom have a positive signed distance. - The signed distance from a point to a point, line, linestring, or linear ring is equal to the distance between the two. - The signed distance from a point to a polygon is negative if the point is within the polygon and is positive otherwise. The value of the distance is the minimum distance from the point to an edge of the polygon. This includes edges created by holes. - The signed distance from a point to a multigeometry or a geometry collection is the minimum signed distance between the point and any of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.areaFunction.
julia
area(geom, [T = Float64])::T

Returns the area of a geometry or collection of geometries. This is computed slightly differently for different geometries:

- The area of a point/multipoint is always zero.
+)::Bool

Two linear rings are equal if they share the same set of points going along the curve. Note that rings are closed by definition, so they can have, but don't need, a repeated last point to be equal.

source

julia
equals(::GI.PolygonTrait, geom_a, ::GI.PolygonTrait, geom_b)::Bool

Two polygons are equal if they share the same exterior edge and holes.

source

julia
equals(::GI.PolygonTrait, geom_a, ::GI.MultiPolygonTrait, geom_b)::Bool

A polygon and a multipolygon are equal if the multipolygon is composed of a single polygon that is equivalent to the given polygon.

source

julia
equals(::GI.MultiPolygonTrait, geom_a, ::GI.PolygonTrait, geom_b)::Bool

A polygon and a multipolygon are equal if the multipolygon is composed of a single polygon that is equivalent to the given polygon.

source

julia
equals(::GI.PolygonTrait, geom_a, ::GI.PolygonTrait, geom_b)::Bool

Two multipolygons are equal if they share the same set of polygons.

source


# GeometryOps.centroidFunction.
julia
centroid(geom, [T=Float64])::Tuple{T, T}

Returns the centroid of a given line segment, linear ring, polygon, or mutlipolygon.

source


# GeometryOps.distanceFunction.
julia
distance(point, geom, ::Type{T} = Float64)::T

Calculates the ditance from the geometry g1 to the point. The distance will always be positive or zero.

The method will differ based on the type of the geometry provided: - The distance from a point to a point is just the Euclidean distance between the points. - The distance from a point to a line is the minimum distance from the point to the closest point on the given line. - The distance from a point to a linestring is the minimum distance from the point to the closest segment of the linestring. - The distance from a point to a linear ring is the minimum distance from the point to the closest segment of the linear ring. - The distance from a point to a polygon is zero if the point is within the polygon and otherwise is the minimum distance from the point to an edge of the polygon. This includes edges created by holes. - The distance from a point to a multigeometry or a geometry collection is the minimum distance between the point and any of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.signed_distanceFunction.
julia
signed_distance(point, geom, ::Type{T} = Float64)::T

Calculates the signed distance from the geometry geom to the given point. Points within geom have a negative signed distance, and points outside of geom have a positive signed distance. - The signed distance from a point to a point, line, linestring, or linear ring is equal to the distance between the two. - The signed distance from a point to a polygon is negative if the point is within the polygon and is positive otherwise. The value of the distance is the minimum distance from the point to an edge of the polygon. This includes edges created by holes. - The signed distance from a point to a multigeometry or a geometry collection is the minimum signed distance between the point and any of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.areaFunction.
julia
area(geom, [T = Float64])::T

Returns the area of a geometry or collection of geometries. This is computed slightly differently for different geometries:

- The area of a point/multipoint is always zero.
 - The area of a curve/multicurve is always zero.
 - The area of a polygon is the absolute value of the signed area.
 - The area multi-polygon is the sum of the areas of all of the sub-polygons.
 - The area of a geometry collection, feature collection of array/iterable 
-    is the sum of the areas of all of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.signed_areaFunction.
julia
signed_area(geom, [T = Float64])::T

Returns the signed area of a single geometry, based on winding order. This is computed slighly differently for different geometries:

- The signed area of a point is always zero.
+    is the sum of the areas of all of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.signed_areaFunction.
julia
signed_area(geom, [T = Float64])::T

Returns the signed area of a single geometry, based on winding order. This is computed slighly differently for different geometries:

- The signed area of a point is always zero.
 - The signed area of a curve is always zero.
 - The signed area of a polygon is computed with the shoelace formula and is
 positive if the polygon coordinates wind clockwise and negative if
 counterclockwise.
 - You cannot compute the signed area of a multipolygon as it doesn't have a
-meaning as each sub-polygon could have a different winding order.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.anglesFunction.
julia
angles(geom, ::Type{T} = Float64)

Returns the angles of a geometry or collection of geometries. This is computed differently for different geometries:

- The angles of a point is an empty vector.
+meaning as each sub-polygon could have a different winding order.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.anglesFunction.
julia
angles(geom, ::Type{T} = Float64)

Returns the angles of a geometry or collection of geometries. This is computed differently for different geometries:

- The angles of a point is an empty vector.
 - The angles of a single line segment is an empty vector.
 - The angles of a linestring or linearring is a vector of angles formed by the curve.
 - The angles of a polygin is a vector of vectors of angles formed by each ring.
 - The angles of a multi-geometry collection is a vector of the angles of each of the
-    sub-geometries as defined above.

Result will be a Vector, or nested set of vectors, of type T where an optional argument with a default value of Float64.

source


# GeometryOps.embed_extentFunction.
julia
embed_extent(obj)

Recursively wrap the object with a GeoInterface.jl geometry, calculating and adding an Extents.Extent to all objects.

This can improve performance when extents need to be checked multiple times, such when needing to check if many points are in geometries, and using their extents as a quick filter for obviously exterior points.

Keywords

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

source


Barycentric coordinates

# GeometryOps.barycentric_coordinatesFunction.
julia
barycentric_coordinates(method = MeanValue(), polygon, point)

Returns the barycentric coordinates of point in polygon using the barycentric coordinate method method.

source


# GeometryOps.barycentric_coordinates!Function.
julia
barycentric_coordinates!(λs::Vector{<: Real}, method::AbstractBarycentricCoordinateMethod, polygon, point)

Loads the barycentric coordinates of point in polygon into λs using the barycentric coordinate method method.

λs must be of the length of the polygon plus its holes.

Tip

Use this method to avoid excess allocations when you need to calculate barycentric coordinates for many points.

source


# GeometryOps.barycentric_interpolateFunction.
julia
barycentric_interpolate(method = MeanValue(), polygon, values::AbstractVector{V}, point)

Returns the interpolated value at point within polygon using the barycentric coordinate method method. values are the per-point values for the polygon which are to be interpolated.

Returns an object of type V.

Warning

Barycentric interpolation is currently defined only for 2-dimensional polygons. If you pass a 3-D polygon in, the Z coordinate will be used as per-vertex value to be interpolated (the M coordinate in GIS parlance).

source


Other methods

# GeometryOps.AbstractBarycentricCoordinateMethodType.
julia
abstract type AbstractBarycentricCoordinateMethod

Abstract supertype for barycentric coordinate methods. The subtypes may serve as dispatch types, or may cache some information about the target polygon.

API

The following methods must be implemented for all subtypes:

  • barycentric_coordinates!(λs::Vector{<: Real}, method::AbstractBarycentricCoordinateMethod, exterior::Vector{<: Point{2, T1}}, point::Point{2, T2})

  • barycentric_interpolate(method::AbstractBarycentricCoordinateMethod, exterior::Vector{<: Point{2, T1}}, values::Vector{V}, point::Point{2, T2})::V

  • barycentric_interpolate(method::AbstractBarycentricCoordinateMethod, exterior::Vector{<: Point{2, T1}}, interiors::Vector{<: Vector{<: Point{2, T1}}} values::Vector{V}, point::Point{2, T2})::V

The rest of the methods will be implemented in terms of these, and have efficient dispatches for broadcasting.

source


# GeometryOps.ClosedRingType.
julia
ClosedRing() <: GeometryCorrection

This correction ensures that a polygon's exterior and interior rings are closed.

It can be called on any geometry correction as usual.

See also GeometryCorrection.

source


# GeometryOps.DiffIntersectingPolygonsType.
julia
DiffIntersectingPolygons() <: GeometryCorrection

This correction ensures that the polygons included in a multipolygon aren't intersecting. If any polygon's are intersecting, they will be made nonintersecting through the difference operation to create a unique set of disjoint (other than potentially connections by a single point) polygons covering the same area. See also GeometryCorrection, UnionIntersectingPolygons.

source


# GeometryOps.DouglasPeuckerType.
julia
DouglasPeucker <: SimplifyAlg
+    sub-geometries as defined above.

Result will be a Vector, or nested set of vectors, of type T where an optional argument with a default value of Float64.

source


# GeometryOps.embed_extentFunction.
julia
embed_extent(obj)

Recursively wrap the object with a GeoInterface.jl geometry, calculating and adding an Extents.Extent to all objects.

This can improve performance when extents need to be checked multiple times, such when needing to check if many points are in geometries, and using their extents as a quick filter for obviously exterior points.

Keywords

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

source


Barycentric coordinates

# GeometryOps.barycentric_coordinatesFunction.
julia
barycentric_coordinates(method = MeanValue(), polygon, point)

Returns the barycentric coordinates of point in polygon using the barycentric coordinate method method.

source


# GeometryOps.barycentric_coordinates!Function.
julia
barycentric_coordinates!(λs::Vector{<: Real}, method::AbstractBarycentricCoordinateMethod, polygon, point)

Loads the barycentric coordinates of point in polygon into λs using the barycentric coordinate method method.

λs must be of the length of the polygon plus its holes.

Tip

Use this method to avoid excess allocations when you need to calculate barycentric coordinates for many points.

source


# GeometryOps.barycentric_interpolateFunction.
julia
barycentric_interpolate(method = MeanValue(), polygon, values::AbstractVector{V}, point)

Returns the interpolated value at point within polygon using the barycentric coordinate method method. values are the per-point values for the polygon which are to be interpolated.

Returns an object of type V.

Warning

Barycentric interpolation is currently defined only for 2-dimensional polygons. If you pass a 3-D polygon in, the Z coordinate will be used as per-vertex value to be interpolated (the M coordinate in GIS parlance).

source


Other methods

# GeometryOps.AbstractBarycentricCoordinateMethodType.
julia
abstract type AbstractBarycentricCoordinateMethod

Abstract supertype for barycentric coordinate methods. The subtypes may serve as dispatch types, or may cache some information about the target polygon.

API

The following methods must be implemented for all subtypes:

  • barycentric_coordinates!(λs::Vector{<: Real}, method::AbstractBarycentricCoordinateMethod, exterior::Vector{<: Point{2, T1}}, point::Point{2, T2})

  • barycentric_interpolate(method::AbstractBarycentricCoordinateMethod, exterior::Vector{<: Point{2, T1}}, values::Vector{V}, point::Point{2, T2})::V

  • barycentric_interpolate(method::AbstractBarycentricCoordinateMethod, exterior::Vector{<: Point{2, T1}}, interiors::Vector{<: Vector{<: Point{2, T1}}} values::Vector{V}, point::Point{2, T2})::V

The rest of the methods will be implemented in terms of these, and have efficient dispatches for broadcasting.

source


# GeometryOps.ClosedRingType.
julia
ClosedRing() <: GeometryCorrection

This correction ensures that a polygon's exterior and interior rings are closed.

It can be called on any geometry correction as usual.

See also GeometryCorrection.

source


# GeometryOps.DiffIntersectingPolygonsType.
julia
DiffIntersectingPolygons() <: GeometryCorrection

This correction ensures that the polygons included in a multipolygon aren't intersecting. If any polygon's are intersecting, they will be made nonintersecting through the difference operation to create a unique set of disjoint (other than potentially connections by a single point) polygons covering the same area. See also GeometryCorrection, UnionIntersectingPolygons.

source


# GeometryOps.DouglasPeuckerType.
julia
DouglasPeucker <: SimplifyAlg
 
-DouglasPeucker(; number, ratio, tol)

Simplifies geometries by removing points below tol distance from the line between its neighboring points.

Keywords

  • ratio: the fraction of points that should remain after simplify. Useful as it will generalise for large collections of objects.

  • number: the number of points that should remain after simplify. Less useful for large collections of mixed size objects.

  • tol: the minimum distance a point will be from the line joining its neighboring points.

Note: user input tol is squared to avoid uneccesary computation in algorithm.

source


# GeometryOps.GEOSType.
julia
GEOS(; params...)

A struct which instructs the method it's passed to as an algorithm to use the appropriate GEOS function via LibGEOS.jl for the operation.

Dispatch is generally carried out using the names of the keyword arguments. For example, segmentize will only accept a GEOS struct with only a max_distance keyword, and no other.

It's generally a lot slower than the native Julia implementations, since it must convert to the LibGEOS implementation and back - so be warned!

source


# GeometryOps.GeodesicSegmentsType.
julia
GeodesicSegments(; max_distance::Real, equatorial_radius::Real=6378137, flattening::Real=1/298.257223563)

A method for segmentizing geometries by adding extra vertices to the geometry so that no segment is longer than a given distance. This method calculates the distance between points on the geodesic, and assumes input in lat/long coordinates.

Warning

Any input geometries must be in lon/lat coordinates! If not, the method may fail or error.

Arguments

  • max_distance::Real: The maximum distance, in meters, between vertices in the geometry.

  • equatorial_radius::Real=6378137: The equatorial radius of the Earth, in meters. Passed to Proj.geod_geodesic.

  • flattening::Real=1/298.257223563: The flattening of the Earth, which is the ratio of the difference between the equatorial and polar radii to the equatorial radius. Passed to Proj.geod_geodesic.

One can also omit the equatorial_radius and flattening keyword arguments, and pass a geodesic object directly to the eponymous keyword.

This method uses the Proj/GeographicLib API for geodesic calculations.

source


# GeometryOps.GeometryCorrectionType.
julia
abstract type GeometryCorrection

This abstract type represents a geometry correction.

Interface

Any GeometryCorrection must implement two functions: * application_level(::GeometryCorrection)::AbstractGeometryTrait: This function should return the GeoInterface trait that the correction is intended to be applied to, like PointTrait or LineStringTrait or PolygonTrait. * (::GeometryCorrection)(::AbstractGeometryTrait, geometry)::(some_geometry): This function should apply the correction to the given geometry, and return a new geometry.

source


# GeometryOps.LineOrientationType.
julia
Enum LineOrientation

Enum for the orientation of a line with respect to a curve. A line can be line_cross (crossing over the curve), line_hinge (crossing the endpoint of the curve), line_over (colinear with the curve), or line_out (not interacting with the curve).

source


# GeometryOps.LinearSegmentsType.
julia
LinearSegments(; max_distance::Real)

A method for segmentizing geometries by adding extra vertices to the geometry so that no segment is longer than a given distance.

Here, max_distance is a purely nondimensional quantity and will apply in the input space. This is to say, that if the polygon is provided in lat/lon coordinates then the max_distance will be in degrees of arc. If the polygon is provided in meters, then the max_distance will be in meters.

source


# GeometryOps.MeanValueType.
julia
MeanValue() <: AbstractBarycentricCoordinateMethod

This method calculates barycentric coordinates using the mean value method.

References

source


# GeometryOps.PointOrientationType.
julia
Enum PointOrientation

Enum for the orientation of a point with respect to a curve. A point can be point_in the curve, point_on the curve, or point_out of the curve.

source


# GeometryOps.RadialDistanceType.
julia
RadialDistance <: SimplifyAlg

Simplifies geometries by removing points less than tol distance from the line between its neighboring points.

Keywords

  • ratio: the fraction of points that should remain after simplify. Useful as it will generalise for large collections of objects.

  • number: the number of points that should remain after simplify. Less useful for large collections of mixed size objects.

  • tol: the minimum distance between points.

Note: user input tol is squared to avoid uneccesary computation in algorithm.

source


# GeometryOps.SimplifyAlgType.
julia
abstract type SimplifyAlg

Abstract type for simplification algorithms.

API

For now, the algorithm must hold the number, ratio and tol properties.

Simplification algorithm types can hook into the interface by implementing the _simplify(trait, alg, geom) methods for whichever traits are necessary.

source


# GeometryOps.TraitTargetType.
julia
TraitTarget{T}

This struct holds a trait parameter or a union of trait parameters.

It is primarily used for dispatch into methods which select trait levels, like apply, or as a parameter to target.

Constructors

julia
TraitTarget(GI.PointTrait())
+DouglasPeucker(; number, ratio, tol)

Simplifies geometries by removing points below tol distance from the line between its neighboring points.

Keywords

  • ratio: the fraction of points that should remain after simplify. Useful as it will generalise for large collections of objects.

  • number: the number of points that should remain after simplify. Less useful for large collections of mixed size objects.

  • tol: the minimum distance a point will be from the line joining its neighboring points.

Note: user input tol is squared to avoid uneccesary computation in algorithm.

source


# GeometryOps.GEOSType.
julia
GEOS(; params...)

A struct which instructs the method it's passed to as an algorithm to use the appropriate GEOS function via LibGEOS.jl for the operation.

Dispatch is generally carried out using the names of the keyword arguments. For example, segmentize will only accept a GEOS struct with only a max_distance keyword, and no other.

It's generally a lot slower than the native Julia implementations, since it must convert to the LibGEOS implementation and back - so be warned!

source


# GeometryOps.GeodesicSegmentsType.
julia
GeodesicSegments(; max_distance::Real, equatorial_radius::Real=6378137, flattening::Real=1/298.257223563)

A method for segmentizing geometries by adding extra vertices to the geometry so that no segment is longer than a given distance. This method calculates the distance between points on the geodesic, and assumes input in lat/long coordinates.

Warning

Any input geometries must be in lon/lat coordinates! If not, the method may fail or error.

Arguments

  • max_distance::Real: The maximum distance, in meters, between vertices in the geometry.

  • equatorial_radius::Real=6378137: The equatorial radius of the Earth, in meters. Passed to Proj.geod_geodesic.

  • flattening::Real=1/298.257223563: The flattening of the Earth, which is the ratio of the difference between the equatorial and polar radii to the equatorial radius. Passed to Proj.geod_geodesic.

One can also omit the equatorial_radius and flattening keyword arguments, and pass a geodesic object directly to the eponymous keyword.

This method uses the Proj/GeographicLib API for geodesic calculations.

source


# GeometryOps.GeometryCorrectionType.
julia
abstract type GeometryCorrection

This abstract type represents a geometry correction.

Interface

Any GeometryCorrection must implement two functions: * application_level(::GeometryCorrection)::AbstractGeometryTrait: This function should return the GeoInterface trait that the correction is intended to be applied to, like PointTrait or LineStringTrait or PolygonTrait. * (::GeometryCorrection)(::AbstractGeometryTrait, geometry)::(some_geometry): This function should apply the correction to the given geometry, and return a new geometry.

source


# GeometryOps.LineOrientationType.
julia
Enum LineOrientation

Enum for the orientation of a line with respect to a curve. A line can be line_cross (crossing over the curve), line_hinge (crossing the endpoint of the curve), line_over (colinear with the curve), or line_out (not interacting with the curve).

source


# GeometryOps.LinearSegmentsType.
julia
LinearSegments(; max_distance::Real)

A method for segmentizing geometries by adding extra vertices to the geometry so that no segment is longer than a given distance.

Here, max_distance is a purely nondimensional quantity and will apply in the input space. This is to say, that if the polygon is provided in lat/lon coordinates then the max_distance will be in degrees of arc. If the polygon is provided in meters, then the max_distance will be in meters.

source


# GeometryOps.MeanValueType.
julia
MeanValue() <: AbstractBarycentricCoordinateMethod

This method calculates barycentric coordinates using the mean value method.

References

source


# GeometryOps.PointOrientationType.
julia
Enum PointOrientation

Enum for the orientation of a point with respect to a curve. A point can be point_in the curve, point_on the curve, or point_out of the curve.

source


# GeometryOps.RadialDistanceType.
julia
RadialDistance <: SimplifyAlg

Simplifies geometries by removing points less than tol distance from the line between its neighboring points.

Keywords

  • ratio: the fraction of points that should remain after simplify. Useful as it will generalise for large collections of objects.

  • number: the number of points that should remain after simplify. Less useful for large collections of mixed size objects.

  • tol: the minimum distance between points.

Note: user input tol is squared to avoid uneccesary computation in algorithm.

source


# GeometryOps.SimplifyAlgType.
julia
abstract type SimplifyAlg

Abstract type for simplification algorithms.

API

For now, the algorithm must hold the number, ratio and tol properties.

Simplification algorithm types can hook into the interface by implementing the _simplify(trait, alg, geom) methods for whichever traits are necessary.

source


# GeometryOps.TraitTargetType.
julia
TraitTarget{T}

This struct holds a trait parameter or a union of trait parameters.

It is primarily used for dispatch into methods which select trait levels, like apply, or as a parameter to target.

Constructors

julia
TraitTarget(GI.PointTrait())
 TraitTarget(GI.LineStringTrait(), GI.LinearRingTrait()) # and other traits as you may like
 TraitTarget(TraitTarget(...))
 # There are also type based constructors available, but that's not advised.
 TraitTarget(GI.PointTrait)
 TraitTarget(Union{GI.LineStringTrait, GI.LinearRingTrait})
-# etc.

source


# GeometryOps.UnionIntersectingPolygonsType.
julia
UnionIntersectingPolygons() <: GeometryCorrection

This correction ensures that the polygon's included in a multipolygon aren't intersecting. If any polygon's are intersecting, they will be combined through the union operation to create a unique set of disjoint (other than potentially connections by a single point) polygons covering the same area.

See also GeometryCorrection.

source


# GeometryOps.VisvalingamWhyattType.
julia
VisvalingamWhyatt <: SimplifyAlg
+# etc.

source


# GeometryOps.UnionIntersectingPolygonsType.
julia
UnionIntersectingPolygons() <: GeometryCorrection

This correction ensures that the polygon's included in a multipolygon aren't intersecting. If any polygon's are intersecting, they will be combined through the union operation to create a unique set of disjoint (other than potentially connections by a single point) polygons covering the same area.

See also GeometryCorrection.

source


# GeometryOps.VisvalingamWhyattType.
julia
VisvalingamWhyatt <: SimplifyAlg
 
-VisvalingamWhyatt(; kw...)

Simplifies geometries by removing points below tol distance from the line between its neighboring points.

Keywords

  • ratio: the fraction of points that should remain after simplify. Useful as it will generalise for large collections of objects.

  • number: the number of points that should remain after simplify. Less useful for large collections of mixed size objects.

  • tol: the minimum area of a triangle made with a point and its neighboring points.

Note: user input tol is doubled to avoid uneccesary computation in algorithm.

source


# GeometryOps._detMethod.
julia
_det(s1::Point2{T1}, s2::Point2{T2}) where {T1 <: Real, T2 <: Real}

Returns the determinant of the matrix formed by hcat'ing two points s1 and s2.

Specifically, this is:

julia
s1[1] * s2[2] - s1[2] * s2[1]

source


# GeometryOps._equals_curvesMethod.
julia
_equals_curves(c1, c2, closed_type1, closed_type2)::Bool

Two curves are equal if they share the same set of point, representing the same geometry. Both curves must must be composed of the same set of points, however, they do not have to wind in the same direction, or start on the same point to be equivalent. Inputs: c1 first geometry c2 second geometry closed_type1::Bool true if c1 is closed by definition (polygon, linear ring) closed_type2::Bool true if c2 is closed by definition (polygon, linear ring)

source


# GeometryOps.anglesMethod.
julia
angles(geom, ::Type{T} = Float64)

Returns the angles of a geometry or collection of geometries. This is computed differently for different geometries:

- The angles of a point is an empty vector.
+VisvalingamWhyatt(; kw...)

Simplifies geometries by removing points below tol distance from the line between its neighboring points.

Keywords

  • ratio: the fraction of points that should remain after simplify. Useful as it will generalise for large collections of objects.

  • number: the number of points that should remain after simplify. Less useful for large collections of mixed size objects.

  • tol: the minimum area of a triangle made with a point and its neighboring points.

Note: user input tol is doubled to avoid uneccesary computation in algorithm.

source


# GeometryOps._detMethod.
julia
_det(s1::Point2{T1}, s2::Point2{T2}) where {T1 <: Real, T2 <: Real}

Returns the determinant of the matrix formed by hcat'ing two points s1 and s2.

Specifically, this is:

julia
s1[1] * s2[2] - s1[2] * s2[1]

source


# GeometryOps._equals_curvesMethod.
julia
_equals_curves(c1, c2, closed_type1, closed_type2)::Bool

Two curves are equal if they share the same set of point, representing the same geometry. Both curves must must be composed of the same set of points, however, they do not have to wind in the same direction, or start on the same point to be equivalent. Inputs: c1 first geometry c2 second geometry closed_type1::Bool true if c1 is closed by definition (polygon, linear ring) closed_type2::Bool true if c2 is closed by definition (polygon, linear ring)

source


# GeometryOps.anglesMethod.
julia
angles(geom, ::Type{T} = Float64)

Returns the angles of a geometry or collection of geometries. This is computed differently for different geometries:

- The angles of a point is an empty vector.
 - The angles of a single line segment is an empty vector.
 - The angles of a linestring or linearring is a vector of angles formed by the curve.
 - The angles of a polygin is a vector of vectors of angles formed by each ring.
 - The angles of a multi-geometry collection is a vector of the angles of each of the
-    sub-geometries as defined above.

Result will be a Vector, or nested set of vectors, of type T where an optional argument with a default value of Float64.

source


# GeometryOps.applyMethod.
julia
apply(f, target::Union{TraitTarget, GI.AbstractTrait}, obj; kw...)

Reconstruct a geometry, feature, feature collection, or nested vectors of either using the function f on the target trait.

f(target_geom) => x where x also has the target trait, or a trait that can be substituted. For example, swapping PolgonTrait to MultiPointTrait will fail if the outer object has MultiPolygonTrait, but should work if it has FeatureTrait.

Objects "shallower" than the target trait are always completely rebuilt, like a Vector of FeatureCollectionTrait of FeatureTrait when the target has PolygonTrait and is held in the features. These will always be GeoInterface geometries/feature/feature collections. But "deeper" objects may remain unchanged or be whatever GeoInterface compatible objects f returns.

The result is a functionally similar geometry with values depending on f.

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

  • calc_extent: true or false. Whether to calculate the extent. Defaults to false.

Example

Flipped point the order in any feature or geometry, or iterables of either:

julia
import GeoInterface as GI
+    sub-geometries as defined above.

Result will be a Vector, or nested set of vectors, of type T where an optional argument with a default value of Float64.

source


# GeometryOps.applyMethod.
julia
apply(f, target::Union{TraitTarget, GI.AbstractTrait}, obj; kw...)

Reconstruct a geometry, feature, feature collection, or nested vectors of either using the function f on the target trait.

f(target_geom) => x where x also has the target trait, or a trait that can be substituted. For example, swapping PolgonTrait to MultiPointTrait will fail if the outer object has MultiPolygonTrait, but should work if it has FeatureTrait.

Objects "shallower" than the target trait are always completely rebuilt, like a Vector of FeatureCollectionTrait of FeatureTrait when the target has PolygonTrait and is held in the features. These will always be GeoInterface geometries/feature/feature collections. But "deeper" objects may remain unchanged or be whatever GeoInterface compatible objects f returns.

The result is a functionally similar geometry with values depending on f.

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

  • calc_extent: true or false. Whether to calculate the extent. Defaults to false.

Example

Flipped point the order in any feature or geometry, or iterables of either:

julia
import GeoInterface as GI
 import GeometryOps as GO
 geom = GI.Polygon([GI.LinearRing([(1, 2), (3, 4), (5, 6), (1, 2)]),
                    GI.LinearRing([(3, 4), (5, 6), (6, 7), (3, 4)])])
 
 flipped_geom = GO.apply(GI.PointTrait, geom) do p
     (GI.y(p), GI.x(p))
-end

source


# GeometryOps.applyreduceMethod.
julia
applyreduce(f, op, target::Union{TraitTarget, GI.AbstractTrait}, obj; threaded)

Apply function f to all objects with the target trait, and reduce the result with an op like +.

The order and grouping of application of op is not guaranteed.

If threaded==true threads will be used over arrays and iterables, feature collections and nested geometries.

source


# GeometryOps.areaMethod.
julia
area(geom, [T = Float64])::T

Returns the area of a geometry or collection of geometries. This is computed slightly differently for different geometries:

- The area of a point/multipoint is always zero.
+end

source


# GeometryOps.applyreduceMethod.
julia
applyreduce(f, op, target::Union{TraitTarget, GI.AbstractTrait}, obj; threaded)

Apply function f to all objects with the target trait, and reduce the result with an op like +.

The order and grouping of application of op is not guaranteed.

If threaded==true threads will be used over arrays and iterables, feature collections and nested geometries.

source


# GeometryOps.areaMethod.
julia
area(geom, [T = Float64])::T

Returns the area of a geometry or collection of geometries. This is computed slightly differently for different geometries:

- The area of a point/multipoint is always zero.
 - The area of a curve/multicurve is always zero.
 - The area of a polygon is the absolute value of the signed area.
 - The area multi-polygon is the sum of the areas of all of the sub-polygons.
 - The area of a geometry collection, feature collection of array/iterable 
-    is the sum of the areas of all of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.barycentric_coordinates!Method.
julia
barycentric_coordinates!(λs::Vector{<: Real}, method::AbstractBarycentricCoordinateMethod, polygon, point)

Loads the barycentric coordinates of point in polygon into λs using the barycentric coordinate method method.

λs must be of the length of the polygon plus its holes.

Tip

Use this method to avoid excess allocations when you need to calculate barycentric coordinates for many points.

source


# GeometryOps.barycentric_coordinatesMethod.
julia
barycentric_coordinates(method = MeanValue(), polygon, point)

Returns the barycentric coordinates of point in polygon using the barycentric coordinate method method.

source


# GeometryOps.barycentric_interpolateMethod.
julia
barycentric_interpolate(method = MeanValue(), polygon, values::AbstractVector{V}, point)

Returns the interpolated value at point within polygon using the barycentric coordinate method method. values are the per-point values for the polygon which are to be interpolated.

Returns an object of type V.

Warning

Barycentric interpolation is currently defined only for 2-dimensional polygons. If you pass a 3-D polygon in, the Z coordinate will be used as per-vertex value to be interpolated (the M coordinate in GIS parlance).

source


# GeometryOps.centroidMethod.
julia
centroid(geom, [T=Float64])::Tuple{T, T}

Returns the centroid of a given line segment, linear ring, polygon, or mutlipolygon.

source


# GeometryOps.centroid_and_areaMethod.
julia
centroid_and_area(geom, [T=Float64])::(::Tuple{T, T}, ::Real)

Returns the centroid and area of a given geometry.

source


# GeometryOps.centroid_and_lengthMethod.
julia
centroid_and_length(geom, [T=Float64])::(::Tuple{T, T}, ::Real)

Returns the centroid and length of a given line/ring. Note this is only valid for line strings and linear rings.

source


# GeometryOps.containsMethod.
julia
contains(g1::AbstractGeometry, g2::AbstractGeometry)::Bool

Return true if the second geometry is completely contained by the first geometry. The interiors of both geometries must intersect and the interior and boundary of the secondary (g2) must not intersect the exterior of the first (g1).

contains returns the exact opposite result of within.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+    is the sum of the areas of all of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.barycentric_coordinates!Method.
julia
barycentric_coordinates!(λs::Vector{<: Real}, method::AbstractBarycentricCoordinateMethod, polygon, point)

Loads the barycentric coordinates of point in polygon into λs using the barycentric coordinate method method.

λs must be of the length of the polygon plus its holes.

Tip

Use this method to avoid excess allocations when you need to calculate barycentric coordinates for many points.

source


# GeometryOps.barycentric_coordinatesMethod.
julia
barycentric_coordinates(method = MeanValue(), polygon, point)

Returns the barycentric coordinates of point in polygon using the barycentric coordinate method method.

source


# GeometryOps.barycentric_interpolateMethod.
julia
barycentric_interpolate(method = MeanValue(), polygon, values::AbstractVector{V}, point)

Returns the interpolated value at point within polygon using the barycentric coordinate method method. values are the per-point values for the polygon which are to be interpolated.

Returns an object of type V.

Warning

Barycentric interpolation is currently defined only for 2-dimensional polygons. If you pass a 3-D polygon in, the Z coordinate will be used as per-vertex value to be interpolated (the M coordinate in GIS parlance).

source


# GeometryOps.centroidMethod.
julia
centroid(geom, [T=Float64])::Tuple{T, T}

Returns the centroid of a given line segment, linear ring, polygon, or mutlipolygon.

source


# GeometryOps.centroid_and_areaMethod.
julia
centroid_and_area(geom, [T=Float64])::(::Tuple{T, T}, ::Real)

Returns the centroid and area of a given geometry.

source


# GeometryOps.centroid_and_lengthMethod.
julia
centroid_and_length(geom, [T=Float64])::(::Tuple{T, T}, ::Real)

Returns the centroid and length of a given line/ring. Note this is only valid for line strings and linear rings.

source


# GeometryOps.containsMethod.
julia
contains(g1::AbstractGeometry, g2::AbstractGeometry)::Bool

Return true if the second geometry is completely contained by the first geometry. The interiors of both geometries must intersect and the interior and boundary of the secondary (g2) must not intersect the exterior of the first (g1).

contains returns the exact opposite result of within.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 line = GI.LineString([(1, 1), (1, 2), (1, 3), (1, 4)])
 point = GI.Point((1, 2))
 
 GO.contains(line, point)
 # output
-true

source


# GeometryOps.coverageMethod.
julia
coverage(geom, xmin, xmax, ymin, ymax, [T = Float64])::T

Returns the area of intersection between given geometry and grid cell defined by its minimum and maximum x and y-values. This is computed differently for different geometries:

  • The signed area of a point is always zero.

  • The signed area of a curve is always zero.

  • The signed area of a polygon is calculated by tracing along its edges and switching to the cell edges if needed.

  • The coverage of a geometry collection, multi-geometry, feature collection of array/iterable is the sum of the coverages of all of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.coveredbyMethod.
julia
coveredby(g1, g2)::Bool

Return true if the first geometry is completely covered by the second geometry. The interior and boundary of the primary geometry (g1) must not intersect the exterior of the secondary geometry (g2).

Furthermore, coveredby returns the exact opposite result of covers. They are equivalent with the order of the arguments swapped.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+true

source


# GeometryOps.coverageMethod.
julia
coverage(geom, xmin, xmax, ymin, ymax, [T = Float64])::T

Returns the area of intersection between given geometry and grid cell defined by its minimum and maximum x and y-values. This is computed differently for different geometries:

  • The signed area of a point is always zero.

  • The signed area of a curve is always zero.

  • The signed area of a polygon is calculated by tracing along its edges and switching to the cell edges if needed.

  • The coverage of a geometry collection, multi-geometry, feature collection of array/iterable is the sum of the coverages of all of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.coveredbyMethod.
julia
coveredby(g1, g2)::Bool

Return true if the first geometry is completely covered by the second geometry. The interior and boundary of the primary geometry (g1) must not intersect the exterior of the secondary geometry (g2).

Furthermore, coveredby returns the exact opposite result of covers. They are equivalent with the order of the arguments swapped.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 p1 = GI.Point(0.0, 0.0)
 p2 = GI.Point(1.0, 1.0)
 l1 = GI.Line([p1, p2])
 
 GO.coveredby(p1, l1)
 # output
-true

source


# GeometryOps.coversMethod.
julia
covers(g1::AbstractGeometry, g2::AbstractGeometry)::Bool

Return true if the first geometry is completely covers the second geometry, The exterior and boundary of the second geometry must not be outside of the interior and boundary of the first geometry. However, the interiors need not intersect.

covers returns the exact opposite result of coveredby.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+true

source


# GeometryOps.coversMethod.
julia
covers(g1::AbstractGeometry, g2::AbstractGeometry)::Bool

Return true if the first geometry is completely covers the second geometry, The exterior and boundary of the second geometry must not be outside of the interior and boundary of the first geometry. However, the interiors need not intersect.

covers returns the exact opposite result of coveredby.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 l1 = GI.LineString([(1.0, 1.0), (1.0, 2.0), (1.0, 3.0), (1.0, 4.0)])
 l2 = GI.LineString([(1.0, 1.0), (1.0, 2.0)])
 
 GO.covers(l1, l2)
 # output
-true

source


# GeometryOps.crossesMethod.
julia
 crosses(geom1, geom2)::Bool

Return true if the intersection results in a geometry whose dimension is one less than the maximum dimension of the two source geometries and the intersection set is interior to both source geometries.

TODO: broken

Examples

julia
import GeoInterface as GI, GeometryOps as GO
-# TODO: Add working example

source


# GeometryOps.cutMethod.
julia
cut(geom, line, [T::Type])

Return given geom cut by given line as a list of geometries of the same type as the input geom. Return the original geometry as only list element if none are found. Line must cut fully through given geometry or the original geometry will be returned.

Note: This currently doesn't work for degenerate cases there line crosses through vertices.

Example

julia
import GeoInterface as GI, GeometryOps as GO
+true

source


# GeometryOps.crossesMethod.
julia
 crosses(geom1, geom2)::Bool

Return true if the intersection results in a geometry whose dimension is one less than the maximum dimension of the two source geometries and the intersection set is interior to both source geometries.

TODO: broken

Examples

julia
import GeoInterface as GI, GeometryOps as GO
+# TODO: Add working example

source


# GeometryOps.cutMethod.
julia
cut(geom, line, [T::Type])

Return given geom cut by given line as a list of geometries of the same type as the input geom. Return the original geometry as only list element if none are found. Line must cut fully through given geometry or the original geometry will be returned.

Note: This currently doesn't work for degenerate cases there line crosses through vertices.

Example

julia
import GeoInterface as GI, GeometryOps as GO
 
 poly = GI.Polygon([[(0.0, 0.0), (10.0, 0.0), (10.0, 10.0), (0.0, 10.0), (0.0, 0.0)]])
 line = GI.Line([(5.0, -5.0), (5.0, 15.0)])
@@ -209,7 +209,7 @@
 # output
 2-element Vector{Vector{Vector{Vector{Float64}}}}:
  [[[0.0, 0.0], [5.0, 0.0], [5.0, 10.0], [0.0, 10.0], [0.0, 0.0]]]
- [[[5.0, 0.0], [10.0, 0.0], [10.0, 10.0], [5.0, 10.0], [5.0, 0.0]]]

source


# GeometryOps.differenceMethod.
julia
difference(geom_a, geom_b, [T::Type]; target::Type, fix_multipoly = UnionIntersectingPolygons())

Return the difference between two geometries as a list of geometries. Return an empty list if none are found. The type of the list will be constrained as much as possible given the input geometries. Furthermore, the user can provide a taget type as a keyword argument and a list of target geometries found in the difference will be returned. The user can also provide a float type that they would like the points of returned geometries to be. If the user is taking a intersection involving one or more multipolygons, and the multipolygon might be comprised of polygons that intersect, if fix_multipoly is set to an IntersectingPolygons correction (the default is UnionIntersectingPolygons()), then the needed multipolygons will be fixed to be valid before performing the intersection to ensure a correct answer. Only set fix_multipoly to false if you know that the multipolygons are valid, as it will avoid unneeded computation.

Example

julia
import GeoInterface as GI, GeometryOps as GO
+ [[[5.0, 0.0], [10.0, 0.0], [10.0, 10.0], [5.0, 10.0], [5.0, 0.0]]]

source


# GeometryOps.differenceMethod.
julia
difference(geom_a, geom_b, [T::Type]; target::Type, fix_multipoly = UnionIntersectingPolygons())

Return the difference between two geometries as a list of geometries. Return an empty list if none are found. The type of the list will be constrained as much as possible given the input geometries. Furthermore, the user can provide a taget type as a keyword argument and a list of target geometries found in the difference will be returned. The user can also provide a float type that they would like the points of returned geometries to be. If the user is taking a intersection involving one or more multipolygons, and the multipolygon might be comprised of polygons that intersect, if fix_multipoly is set to an IntersectingPolygons correction (the default is UnionIntersectingPolygons()), then the needed multipolygons will be fixed to be valid before performing the intersection to ensure a correct answer. Only set fix_multipoly to false if you know that the multipolygons are valid, as it will avoid unneeded computation.

Example

julia
import GeoInterface as GI, GeometryOps as GO
 
 poly1 = GI.Polygon([[[0.0, 0.0], [5.0, 5.0], [10.0, 0.0], [5.0, -5.0], [0.0, 0.0]]])
 poly2 = GI.Polygon([[[3.0, 0.0], [8.0, 5.0], [13.0, 0.0], [8.0, -5.0], [3.0, 0.0]]])
@@ -218,33 +218,33 @@
 
 # output
 1-element Vector{Vector{Vector{Vector{Float64}}}}:
- [[[6.5, 3.5], [5.0, 5.0], [0.0, 0.0], [5.0, -5.0], [6.5, -3.5], [3.0, 0.0], [6.5, 3.5]]]

source


# GeometryOps.disjointMethod.
julia
disjoint(geom1, geom2)::Bool

Return true if the first geometry is disjoint from the second geometry.

Return true if the first geometry is disjoint from the second geometry. The interiors and boundaries of both geometries must not intersect.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+ [[[6.5, 3.5], [5.0, 5.0], [0.0, 0.0], [5.0, -5.0], [6.5, -3.5], [3.0, 0.0], [6.5, 3.5]]]

source


# GeometryOps.disjointMethod.
julia
disjoint(geom1, geom2)::Bool

Return true if the first geometry is disjoint from the second geometry.

Return true if the first geometry is disjoint from the second geometry. The interiors and boundaries of both geometries must not intersect.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 
 line = GI.LineString([(1, 1), (1, 2), (1, 3), (1, 4)])
 point = (2, 2)
 GO.disjoint(point, line)
 
 # output
-true

source


# GeometryOps.distanceMethod.
julia
distance(point, geom, ::Type{T} = Float64)::T

Calculates the ditance from the geometry g1 to the point. The distance will always be positive or zero.

The method will differ based on the type of the geometry provided: - The distance from a point to a point is just the Euclidean distance between the points. - The distance from a point to a line is the minimum distance from the point to the closest point on the given line. - The distance from a point to a linestring is the minimum distance from the point to the closest segment of the linestring. - The distance from a point to a linear ring is the minimum distance from the point to the closest segment of the linear ring. - The distance from a point to a polygon is zero if the point is within the polygon and otherwise is the minimum distance from the point to an edge of the polygon. This includes edges created by holes. - The distance from a point to a multigeometry or a geometry collection is the minimum distance between the point and any of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.embed_extentMethod.
julia
embed_extent(obj)

Recursively wrap the object with a GeoInterface.jl geometry, calculating and adding an Extents.Extent to all objects.

This can improve performance when extents need to be checked multiple times, such when needing to check if many points are in geometries, and using their extents as a quick filter for obviously exterior points.

Keywords

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

source


# GeometryOps.enforceMethod.
julia
enforce(alg::GO.GEOS, kw::Symbol, f)

Enforce the presence of a keyword argument in a GEOS algorithm, and return alg.params[kw].

Throws an error if the key is not present, and mentions f in the error message (since there isn't a good way to get the name of the function that called this method).

source


# GeometryOps.equalsMethod.
julia
equals(trait_a, geom_a, trait_b, geom_b)

Two geometries which are not of the same type cannot be equal so they always return false.

source


# GeometryOps.equalsMethod.
julia
equals(geom1, geom2)::Bool

Compare two Geometries return true if they are the same geometry.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+true

source


# GeometryOps.distanceMethod.
julia
distance(point, geom, ::Type{T} = Float64)::T

Calculates the ditance from the geometry g1 to the point. The distance will always be positive or zero.

The method will differ based on the type of the geometry provided: - The distance from a point to a point is just the Euclidean distance between the points. - The distance from a point to a line is the minimum distance from the point to the closest point on the given line. - The distance from a point to a linestring is the minimum distance from the point to the closest segment of the linestring. - The distance from a point to a linear ring is the minimum distance from the point to the closest segment of the linear ring. - The distance from a point to a polygon is zero if the point is within the polygon and otherwise is the minimum distance from the point to an edge of the polygon. This includes edges created by holes. - The distance from a point to a multigeometry or a geometry collection is the minimum distance between the point and any of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.embed_extentMethod.
julia
embed_extent(obj)

Recursively wrap the object with a GeoInterface.jl geometry, calculating and adding an Extents.Extent to all objects.

This can improve performance when extents need to be checked multiple times, such when needing to check if many points are in geometries, and using their extents as a quick filter for obviously exterior points.

Keywords

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

source


# GeometryOps.enforceMethod.
julia
enforce(alg::GO.GEOS, kw::Symbol, f)

Enforce the presence of a keyword argument in a GEOS algorithm, and return alg.params[kw].

Throws an error if the key is not present, and mentions f in the error message (since there isn't a good way to get the name of the function that called this method).

source


# GeometryOps.equalsMethod.
julia
equals(trait_a, geom_a, trait_b, geom_b)

Two geometries which are not of the same type cannot be equal so they always return false.

source


# GeometryOps.equalsMethod.
julia
equals(geom1, geom2)::Bool

Compare two Geometries return true if they are the same geometry.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 poly1 = GI.Polygon([[(0,0), (0,5), (5,5), (5,0), (0,0)]])
 poly2 = GI.Polygon([[(0,0), (0,5), (5,5), (5,0), (0,0)]])
 
 GO.equals(poly1, poly2)
 # output
-true

source


# GeometryOps.equalsMethod.
julia
equals(
+true

source


# GeometryOps.equalsMethod.
julia
equals(
     ::GI.LinearRingTrait, l1,
     ::GI.LinearRingTrait, l2,
-)::Bool

Two linear rings are equal if they share the same set of points going along the curve. Note that rings are closed by definition, so they can have, but don't need, a repeated last point to be equal.

source


# GeometryOps.equalsMethod.
julia
equals(
+)::Bool

Two linear rings are equal if they share the same set of points going along the curve. Note that rings are closed by definition, so they can have, but don't need, a repeated last point to be equal.

source


# GeometryOps.equalsMethod.
julia
equals(
     ::GI.LinearRingTrait, l1,
     ::Union{GI.LineTrait, GI.LineStringTrait}, l2,
-)::Bool

A linear ring and a line/linestring are equal if they share the same set of points going along the curve. Note that lines aren't closed by defintion, but rings are, so the line must have a repeated last point to be equal

source


# GeometryOps.equalsMethod.
julia
equals(::GI.MultiPointTrait, mp1, ::GI.MultiPointTrait, mp2)::Bool

Two multipoints are equal if they share the same set of points.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.MultiPointTrait, mp1, ::GI.PointTrait, p2)::Bool

A point and a multipoint are equal if the multipoint is composed of a single point that is equivalent to the given point.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.PolygonTrait, geom_a, ::GI.PolygonTrait, geom_b)::Bool

Two multipolygons are equal if they share the same set of polygons.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.MultiPolygonTrait, geom_a, ::GI.PolygonTrait, geom_b)::Bool

A polygon and a multipolygon are equal if the multipolygon is composed of a single polygon that is equivalent to the given polygon.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.PointTrait, p1, ::GI.MultiPointTrait, mp2)::Bool

A point and a multipoint are equal if the multipoint is composed of a single point that is equivalent to the given point.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.PointTrait, p1, ::GI.PointTrait, p2)::Bool

Two points are the same if they have the same x and y (and z if 3D) coordinates.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.PolygonTrait, geom_a, ::GI.MultiPolygonTrait, geom_b)::Bool

A polygon and a multipolygon are equal if the multipolygon is composed of a single polygon that is equivalent to the given polygon.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.PolygonTrait, geom_a, ::GI.PolygonTrait, geom_b)::Bool

Two polygons are equal if they share the same exterior edge and holes.

source


# GeometryOps.equalsMethod.
julia
equals(
+)::Bool

A linear ring and a line/linestring are equal if they share the same set of points going along the curve. Note that lines aren't closed by defintion, but rings are, so the line must have a repeated last point to be equal

source


# GeometryOps.equalsMethod.
julia
equals(::GI.MultiPointTrait, mp1, ::GI.MultiPointTrait, mp2)::Bool

Two multipoints are equal if they share the same set of points.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.MultiPointTrait, mp1, ::GI.PointTrait, p2)::Bool

A point and a multipoint are equal if the multipoint is composed of a single point that is equivalent to the given point.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.PolygonTrait, geom_a, ::GI.PolygonTrait, geom_b)::Bool

Two multipolygons are equal if they share the same set of polygons.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.MultiPolygonTrait, geom_a, ::GI.PolygonTrait, geom_b)::Bool

A polygon and a multipolygon are equal if the multipolygon is composed of a single polygon that is equivalent to the given polygon.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.PointTrait, p1, ::GI.MultiPointTrait, mp2)::Bool

A point and a multipoint are equal if the multipoint is composed of a single point that is equivalent to the given point.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.PointTrait, p1, ::GI.PointTrait, p2)::Bool

Two points are the same if they have the same x and y (and z if 3D) coordinates.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.PolygonTrait, geom_a, ::GI.MultiPolygonTrait, geom_b)::Bool

A polygon and a multipolygon are equal if the multipolygon is composed of a single polygon that is equivalent to the given polygon.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.PolygonTrait, geom_a, ::GI.PolygonTrait, geom_b)::Bool

Two polygons are equal if they share the same exterior edge and holes.

source


# GeometryOps.equalsMethod.
julia
equals(
     ::Union{GI.LineTrait, GI.LineStringTrait}, l1,
     ::GI.LinearRingTrait, l2,
-)::Bool

A line/linestring and a linear ring are equal if they share the same set of points going along the curve. Note that lines aren't closed by defintion, but rings are, so the line must have a repeated last point to be equal

source


# GeometryOps.equalsMethod.
julia
equals(
+)::Bool

A line/linestring and a linear ring are equal if they share the same set of points going along the curve. Note that lines aren't closed by defintion, but rings are, so the line must have a repeated last point to be equal

source


# GeometryOps.equalsMethod.
julia
equals(
     ::Union{GI.LineTrait, GI.LineStringTrait}, l1,
     ::Union{GI.LineTrait, GI.LineStringTrait}, l2,
-)::Bool

Two lines/linestrings are equal if they share the same set of points going along the curve. Note that lines/linestrings aren't closed by defintion.

source


# GeometryOps.equalsMethod.
julia
equals(::T, geom_a, ::T, geom_b)::Bool

Two geometries of the same type, which don't have a equals function to dispatch off of should throw an error.

source


# GeometryOps.flattenMethod.
julia
flatten(target::Type{<:GI.AbstractTrait}, obj)
-flatten(f, target::Type{<:GI.AbstractTrait}, obj)

Lazily flatten any AbstractArray, iterator, FeatureCollectionTrait, FeatureTrait or AbstractGeometryTrait object obj, so that objects with the target trait are returned by the iterator.

If f is passed in it will be applied to the target geometries.

source


# GeometryOps.flipMethod.
julia
flip(obj)

Swap all of the x and y coordinates in obj, otherwise keeping the original structure (but not necessarily the original type).

Keywords

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

  • calc_extent: true or false. Whether to calculate the extent. Defaults to false.

source


# GeometryOps.intersectionMethod.
julia
intersection(geom_a, geom_b, [T::Type]; target::Type, fix_multipoly = UnionIntersectingPolygons())

Return the intersection between two geometries as a list of geometries. Return an empty list if none are found. The type of the list will be constrained as much as possible given the input geometries. Furthermore, the user can provide a target type as a keyword argument and a list of target geometries found in the intersection will be returned. The user can also provide a float type that they would like the points of returned geometries to be. If the user is taking a intersection involving one or more multipolygons, and the multipolygon might be comprised of polygons that intersect, if fix_multipoly is set to an IntersectingPolygons correction (the default is UnionIntersectingPolygons()), then the needed multipolygons will be fixed to be valid before performing the intersection to ensure a correct answer. Only set fix_multipoly to nothing if you know that the multipolygons are valid, as it will avoid unneeded computation.

Example

julia
import GeoInterface as GI, GeometryOps as GO
+)::Bool

Two lines/linestrings are equal if they share the same set of points going along the curve. Note that lines/linestrings aren't closed by defintion.

source


# GeometryOps.equalsMethod.
julia
equals(::T, geom_a, ::T, geom_b)::Bool

Two geometries of the same type, which don't have a equals function to dispatch off of should throw an error.

source


# GeometryOps.flattenMethod.
julia
flatten(target::Type{<:GI.AbstractTrait}, obj)
+flatten(f, target::Type{<:GI.AbstractTrait}, obj)

Lazily flatten any AbstractArray, iterator, FeatureCollectionTrait, FeatureTrait or AbstractGeometryTrait object obj, so that objects with the target trait are returned by the iterator.

If f is passed in it will be applied to the target geometries.

source


# GeometryOps.flipMethod.
julia
flip(obj)

Swap all of the x and y coordinates in obj, otherwise keeping the original structure (but not necessarily the original type).

Keywords

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

  • calc_extent: true or false. Whether to calculate the extent. Defaults to false.

source


# GeometryOps.intersectionMethod.
julia
intersection(geom_a, geom_b, [T::Type]; target::Type, fix_multipoly = UnionIntersectingPolygons())

Return the intersection between two geometries as a list of geometries. Return an empty list if none are found. The type of the list will be constrained as much as possible given the input geometries. Furthermore, the user can provide a target type as a keyword argument and a list of target geometries found in the intersection will be returned. The user can also provide a float type that they would like the points of returned geometries to be. If the user is taking a intersection involving one or more multipolygons, and the multipolygon might be comprised of polygons that intersect, if fix_multipoly is set to an IntersectingPolygons correction (the default is UnionIntersectingPolygons()), then the needed multipolygons will be fixed to be valid before performing the intersection to ensure a correct answer. Only set fix_multipoly to nothing if you know that the multipolygons are valid, as it will avoid unneeded computation.

Example

julia
import GeoInterface as GI, GeometryOps as GO
 
 line1 = GI.Line([(124.584961,-12.768946), (126.738281,-17.224758)])
 line2 = GI.Line([(123.354492,-15.961329), (127.22168,-14.008696)])
@@ -253,70 +253,83 @@
 
 # output
 1-element Vector{Vector{Float64}}:
- [125.58375366067548, -14.83572303404496]

source


# GeometryOps.intersection_pointsMethod.
julia
intersection_points(
-    geom_a,
-    geom_b,
-)::Union{
-    ::Vector{::Tuple{::Real, ::Real}},
-    ::Nothing,
-}

Return a list of intersection points between two geometries of type GI.Point. If no intersection point was possible given geometry extents, returns an empty list.

source


# GeometryOps.intersectsMethod.
julia
intersects(geom1, geom2)::Bool

Return true if the interiors or boundaries of the two geometries interact.

intersects returns the exact opposite result of disjoint.

Example

julia
import GeoInterface as GI, GeometryOps as GO
+ [125.58375366067548, -14.83572303404496]

source


# GeometryOps.intersection_pointsMethod.
julia
intersection_points(geom_a, geom_b, [T::Type])

Return a list of intersection tuple points between two geometries. If no intersection points exist, returns an empty list.

Example

jldoctest

+line1 = GI.Line([(124.584961,-12.768946), (126.738281,-17.224758)]) line2 = GI.Line([(123.354492,-15.961329), (127.22168,-14.008696)]) inter_points = GO.intersection_points(line1, line2)
+
+**output**
+
+1-element Vector{Tuple{Float64, Float64}}:  (125.58375366067548, -14.83572303404496)
+
+
+[source](https://github.com/JuliaGeo/GeometryOps.jl/blob/v0.1.10/src/methods/clipping/intersection.jl#L177-L195)
+
+</div>
+<br>
+<div style='border-width:1px; border-style:solid; border-color:black; padding: 1em; border-radius: 25px;'>
+<a id='GeometryOps.intersects-Tuple{Any, Any}' href='#GeometryOps.intersects-Tuple{Any, Any}'>#</a>&nbsp;<b><u>GeometryOps.intersects</u></b> &mdash; <i>Method</i>.
+
+
+
+
+```julia
+intersects(geom1, geom2)::Bool

Return true if the interiors or boundaries of the two geometries interact.

intersects returns the exact opposite result of disjoint.

Example

julia
import GeoInterface as GI, GeometryOps as GO
 
 line1 = GI.Line([(124.584961,-12.768946), (126.738281,-17.224758)])
 line2 = GI.Line([(123.354492,-15.961329), (127.22168,-14.008696)])
 GO.intersects(line1, line2)
 
 # output
-true

source


# GeometryOps.isclockwiseMethod.
julia
isclockwise(line::Union{LineString, Vector{Position}})::Bool

Take a ring and return true if the line goes clockwise, or false if the line goes counter-clockwise. "Going clockwise" means, mathematically,

(i=2n(xixi1)(yi+yi1))>0

Example

julia
julia> import GeoInterface as GI, GeometryOps as GO
+true

source


# GeometryOps.isclockwiseMethod.
julia
isclockwise(line::Union{LineString, Vector{Position}})::Bool

Take a ring and return true if the line goes clockwise, or false if the line goes counter-clockwise. "Going clockwise" means, mathematically,

(i=2n(xixi1)(yi+yi1))>0

Example

julia
julia> import GeoInterface as GI, GeometryOps as GO
 julia> ring = GI.LinearRing([(0, 0), (1, 1), (1, 0), (0, 0)]);
 julia> GO.isclockwise(ring)
 # output
-true

source


# GeometryOps.isconcaveMethod.
julia
isconcave(poly::Polygon)::Bool

Take a polygon and return true or false as to whether it is concave or not.

Examples

julia
import GeoInterface as GI, GeometryOps as GO
+true

source


# GeometryOps.isconcaveMethod.
julia
isconcave(poly::Polygon)::Bool

Take a polygon and return true or false as to whether it is concave or not.

Examples

julia
import GeoInterface as GI, GeometryOps as GO
 
 poly = GI.Polygon([[(0, 0), (0, 1), (1, 1), (1, 0), (0, 0)]])
 GO.isconcave(poly)
 
 # output
-false

source


# GeometryOps.overlapsMethod.
julia
overlaps(geom1, geom2)::Bool

Compare two Geometries of the same dimension and return true if their intersection set results in a geometry different from both but of the same dimension. This means one geometry cannot be within or contain the other and they cannot be equal

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+false

source


# GeometryOps.overlapsMethod.
julia
overlaps(geom1, geom2)::Bool

Compare two Geometries of the same dimension and return true if their intersection set results in a geometry different from both but of the same dimension. This means one geometry cannot be within or contain the other and they cannot be equal

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 poly1 = GI.Polygon([[(0,0), (0,5), (5,5), (5,0), (0,0)]])
 poly2 = GI.Polygon([[(1,1), (1,6), (6,6), (6,1), (1,1)]])
 
 GO.overlaps(poly1, poly2)
 # output
-true

source


# GeometryOps.overlapsMethod.
julia
overlaps(::GI.AbstractTrait, geom1, ::GI.AbstractTrait, geom2)::Bool

For any non-specified pair, all have non-matching dimensions, return false.

source


# GeometryOps.overlapsMethod.
julia
overlaps(::GI.LineTrait, line1, ::GI.LineTrait, line)::Bool

If the lines overlap, meaning that they are colinear but each have one endpoint outside of the other line, return true. Else false.

source


# GeometryOps.overlapsMethod.
julia
overlaps(
+true

source


# GeometryOps.overlapsMethod.
julia
overlaps(::GI.AbstractTrait, geom1, ::GI.AbstractTrait, geom2)::Bool

For any non-specified pair, all have non-matching dimensions, return false.

source


# GeometryOps.overlapsMethod.
julia
overlaps(::GI.LineTrait, line1, ::GI.LineTrait, line)::Bool

If the lines overlap, meaning that they are colinear but each have one endpoint outside of the other line, return true. Else false.

source


# GeometryOps.overlapsMethod.
julia
overlaps(
     ::GI.MultiPointTrait, points1,
     ::GI.MultiPointTrait, points2,
-)::Bool

If the multipoints overlap, meaning some, but not all, of the points within the multipoints are shared, return true.

source


# GeometryOps.overlapsMethod.
julia
overlaps(
+)::Bool

If the multipoints overlap, meaning some, but not all, of the points within the multipoints are shared, return true.

source


# GeometryOps.overlapsMethod.
julia
overlaps(
     ::GI.MultiPolygonTrait, polys1,
     ::GI.MultiPolygonTrait, polys2,
-)::Bool

Return true if at least one pair of polygons from multipolygons overlap. Else false.

source


# GeometryOps.overlapsMethod.
julia
overlaps(
+)::Bool

Return true if at least one pair of polygons from multipolygons overlap. Else false.

source


# GeometryOps.overlapsMethod.
julia
overlaps(
     ::GI.MultiPolygonTrait, polys1,
     ::GI.PolygonTrait, poly2,
-)::Bool

Return true if polygon overlaps with at least one of the polygons within the multipolygon. Else false.

source


# GeometryOps.overlapsMethod.
julia
overlaps(
+)::Bool

Return true if polygon overlaps with at least one of the polygons within the multipolygon. Else false.

source


# GeometryOps.overlapsMethod.
julia
overlaps(
     ::GI.PolygonTrait, poly1,
     ::GI.MultiPolygonTrait, polys2,
-)::Bool

Return true if polygon overlaps with at least one of the polygons within the multipolygon. Else false.

source


# GeometryOps.overlapsMethod.
julia
overlaps(
+)::Bool

Return true if polygon overlaps with at least one of the polygons within the multipolygon. Else false.

source


# GeometryOps.overlapsMethod.
julia
overlaps(
     trait_a::GI.PolygonTrait, poly_a,
     trait_b::GI.PolygonTrait, poly_b,
-)::Bool

If the two polygons intersect with one another, but are not equal, return true. Else false.

source


# GeometryOps.overlapsMethod.
julia
overlaps(
+)::Bool

If the two polygons intersect with one another, but are not equal, return true. Else false.

source


# GeometryOps.overlapsMethod.
julia
overlaps(
     ::Union{GI.LineStringTrait, GI.LinearRing}, line1,
     ::Union{GI.LineStringTrait, GI.LinearRing}, line2,
-)::Bool

If the curves overlap, meaning that at least one edge of each curve overlaps, return true. Else false.

source


# GeometryOps.polygon_to_lineMethod.
julia
polygon_to_line(poly::Polygon)

Converts a Polygon to LineString or MultiLineString

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+)::Bool

If the curves overlap, meaning that at least one edge of each curve overlaps, return true. Else false.

source


# GeometryOps.polygon_to_lineMethod.
julia
polygon_to_line(poly::Polygon)

Converts a Polygon to LineString or MultiLineString

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 
 poly = GI.Polygon([[(-2.275543, 53.464547), (-2.275543, 53.489271), (-2.215118, 53.489271), (-2.215118, 53.464547), (-2.275543, 53.464547)]])
 GO.polygon_to_line(poly)
 # output
-GeoInterface.Wrappers.LineString{false, false, Vector{Tuple{Float64, Float64}}, Nothing, Nothing}([(-2.275543, 53.464547), (-2.275543, 53.489271), (-2.215118, 53.489271), (-2.215118, 53.464547), (-2.275543, 53.464547)], nothing, nothing)

source


# GeometryOps.polygonizeMethod.
julia
polygonize(A::AbstractMatrix{Bool}; kw...)
+GeoInterface.Wrappers.LineString{false, false, Vector{Tuple{Float64, Float64}}, Nothing, Nothing}([(-2.275543, 53.464547), (-2.275543, 53.489271), (-2.215118, 53.489271), (-2.215118, 53.464547), (-2.275543, 53.464547)], nothing, nothing)

source


# GeometryOps.polygonizeMethod.
julia
polygonize(A::AbstractMatrix{Bool}; kw...)
 polygonize(f, A::AbstractMatrix; kw...)
 polygonize(xs, ys, A::AbstractMatrix{Bool}; kw...)
 polygonize(f, xs, ys, A::AbstractMatrix; kw...)

Polygonize an AbstractMatrix of values, currently to a single class of polygons.

Returns a MultiPolygon for Bool values and f return values, and a FeatureCollection of Features holding MultiPolygon for all other values.

Function f should return either true or false or a transformation of values into simpler groups, especially useful for floating point arrays.

If xs and ys are ranges, they are used as the pixel/cell center points. If they are Vector of Tuple they are used as the lower and upper bounds of each pixel/cell.

Keywords

  • minpoints: ignore polygons with less than minpoints points.

  • values: the values to turn into polygons. By default these are union(A), If function f is passed these refer to the return values of f, by default union(map(f, A). If values Bool, false is ignored and a single MultiPolygon is returned rather than a FeatureCollection.

Example

julia
using GeometryOps
 A = rand(100, 100)
-multipolygon = polygonize(>(0.5), A);

source


# GeometryOps.rebuildMethod.
julia
rebuild(geom, child_geoms)

Rebuild a geometry from child geometries.

By default geometries will be rebuilt as a GeoInterface.Wrappers geometry, but rebuild can have methods added to it to dispatch on geometries from other packages and specify how to rebuild them.

(Maybe it should go into GeoInterface.jl)

source


# GeometryOps.reconstructMethod.
julia
reconstruct(geom, components)

Reconstruct geom from an iterable of component objects that match its structure.

All objects in components must have the same GeoInterface.trait.

Ususally used in combination with flatten.

source


# GeometryOps.segmentizeMethod.
julia
segmentize([method = LinearSegments()], geom; max_distance::Real, threaded)

Segmentize a geometry by adding extra vertices to the geometry so that no segment is longer than a given distance. This is useful for plotting geometries with a limited number of vertices, or for ensuring that a geometry is not too "coarse" for a given application.

Arguments

  • method::SegmentizeMethod = LinearSegments(): The method to use for segmentizing the geometry. At the moment, only LinearSegments and GeodesicSegments are available.

  • geom: The geometry to segmentize. Must be a LineString, LinearRing, or greater in complexity.

  • max_distance::Real: The maximum distance, in the input space, between vertices in the geometry. Only used if you don't explicitly pass a method.

Returns a geometry of similar type to the input geometry, but resampled.

source


# GeometryOps.signed_areaMethod.
julia
signed_area(geom, [T = Float64])::T

Returns the signed area of a single geometry, based on winding order. This is computed slighly differently for different geometries:

- The signed area of a point is always zero.
+multipolygon = polygonize(>(0.5), A);

source


# GeometryOps.rebuildMethod.
julia
rebuild(geom, child_geoms)

Rebuild a geometry from child geometries.

By default geometries will be rebuilt as a GeoInterface.Wrappers geometry, but rebuild can have methods added to it to dispatch on geometries from other packages and specify how to rebuild them.

(Maybe it should go into GeoInterface.jl)

source


# GeometryOps.reconstructMethod.
julia
reconstruct(geom, components)

Reconstruct geom from an iterable of component objects that match its structure.

All objects in components must have the same GeoInterface.trait.

Ususally used in combination with flatten.

source


# GeometryOps.segmentizeMethod.
julia
segmentize([method = LinearSegments()], geom; max_distance::Real, threaded)

Segmentize a geometry by adding extra vertices to the geometry so that no segment is longer than a given distance. This is useful for plotting geometries with a limited number of vertices, or for ensuring that a geometry is not too "coarse" for a given application.

Arguments

  • method::SegmentizeMethod = LinearSegments(): The method to use for segmentizing the geometry. At the moment, only LinearSegments and GeodesicSegments are available.

  • geom: The geometry to segmentize. Must be a LineString, LinearRing, or greater in complexity.

  • max_distance::Real: The maximum distance, in the input space, between vertices in the geometry. Only used if you don't explicitly pass a method.

Returns a geometry of similar type to the input geometry, but resampled.

source


# GeometryOps.signed_areaMethod.
julia
signed_area(geom, [T = Float64])::T

Returns the signed area of a single geometry, based on winding order. This is computed slighly differently for different geometries:

- The signed area of a point is always zero.
 - The signed area of a curve is always zero.
 - The signed area of a polygon is computed with the shoelace formula and is
 positive if the polygon coordinates wind clockwise and negative if
 counterclockwise.
 - You cannot compute the signed area of a multipolygon as it doesn't have a
-meaning as each sub-polygon could have a different winding order.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.signed_distanceMethod.
julia
signed_distance(point, geom, ::Type{T} = Float64)::T

Calculates the signed distance from the geometry geom to the given point. Points within geom have a negative signed distance, and points outside of geom have a positive signed distance. - The signed distance from a point to a point, line, linestring, or linear ring is equal to the distance between the two. - The signed distance from a point to a polygon is negative if the point is within the polygon and is positive otherwise. The value of the distance is the minimum distance from the point to an edge of the polygon. This includes edges created by holes. - The signed distance from a point to a multigeometry or a geometry collection is the minimum signed distance between the point and any of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.simplifyMethod.
julia
simplify(obj; kw...)
+meaning as each sub-polygon could have a different winding order.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.signed_distanceMethod.
julia
signed_distance(point, geom, ::Type{T} = Float64)::T

Calculates the signed distance from the geometry geom to the given point. Points within geom have a negative signed distance, and points outside of geom have a positive signed distance. - The signed distance from a point to a point, line, linestring, or linear ring is equal to the distance between the two. - The signed distance from a point to a polygon is negative if the point is within the polygon and is positive otherwise. The value of the distance is the minimum distance from the point to an edge of the polygon. This includes edges created by holes. - The signed distance from a point to a multigeometry or a geometry collection is the minimum signed distance between the point and any of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.simplifyMethod.
julia
simplify(obj; kw...)
 simplify(::SimplifyAlg, obj; kw...)

Simplify a geometry, feature, feature collection, or nested vectors or a table of these.

RadialDistance, DouglasPeucker, or VisvalingamWhyatt algorithms are available, listed in order of increasing quality but decreaseing performance.

PoinTrait and MultiPointTrait are returned unchanged.

The default behaviour is simplify(DouglasPeucker(; kw...), obj). Pass in other SimplifyAlg to use other algorithms.

Keywords

  • prefilter_alg: SimplifyAlg algorithm used to pre-filter object before using primary filtering algorithm.

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

  • calc_extent: true or false. Whether to calculate the extent. Defaults to false.

Keywords for DouglasPeucker are allowed when no algorithm is specified:

Keywords

  • ratio: the fraction of points that should remain after simplify. Useful as it will generalise for large collections of objects.

  • number: the number of points that should remain after simplify. Less useful for large collections of mixed size objects.

  • tol: the minimum distance a point will be from the line joining its neighboring points.

Example

Simplify a polygon to have six points:

julia
import GeoInterface as GI
 import GeometryOps as GO
 
@@ -346,9 +359,9 @@
 GI.npoint(simple)
 
 # output
-6

source


# GeometryOps.t_valueMethod.
julia
t_value(sᵢ, sᵢ₊₁, rᵢ, rᵢ₊₁)

Returns the "T-value" as described in Hormann's presentation [1] on how to calculate the mean-value coordinate.

Here, sᵢ is the vector from vertex vᵢ to the point, and rᵢ is the norm (length) of sᵢ. s must be Point and r must be real numbers.

t=det(s,s)rr+ss

+6

source


# GeometryOps.t_valueMethod.
julia
t_value(sᵢ, sᵢ₊₁, rᵢ, rᵢ₊₁)

Returns the "T-value" as described in Hormann's presentation [1] on how to calculate the mean-value coordinate.

Here, sᵢ is the vector from vertex vᵢ to the point, and rᵢ is the norm (length) of sᵢ. s must be Point and r must be real numbers.

t=det(s,s)rr+ss

 
-[source](https://github.com/JuliaGeo/GeometryOps.jl/blob/v0.1.9/src/methods/barycentric.jl#L289-L305)
+[source](https://github.com/JuliaGeo/GeometryOps.jl/blob/v0.1.10/src/methods/barycentric.jl#L289-L305)
 
 </div>
 <br>
@@ -359,14 +372,14 @@
 
 
 ```julia
-to_edges()

Convert any geometry or collection of geometries into a flat vector of Tuple{Tuple{Float64,Float64},Tuple{Float64,Float64}} edges.

source


# GeometryOps.touchesMethod.
julia
touches(geom1, geom2)::Bool

Return true if the first geometry touches the second geometry. In other words, the two interiors cannot interact, but one of the geometries must have a boundary point that interacts with either the other geometies interior or boundary.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+to_edges()

Convert any geometry or collection of geometries into a flat vector of Tuple{Tuple{Float64,Float64},Tuple{Float64,Float64}} edges.

source


# GeometryOps.touchesMethod.
julia
touches(geom1, geom2)::Bool

Return true if the first geometry touches the second geometry. In other words, the two interiors cannot interact, but one of the geometries must have a boundary point that interacts with either the other geometies interior or boundary.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 
 l1 = GI.Line([(0.0, 0.0), (1.0, 0.0)])
 l2 = GI.Line([(1.0, 1.0), (1.0, -1.0)])
 
 GO.touches(l1, l2)
 # output
-true

source


# GeometryOps.transformMethod.
julia
transform(f, obj)

Apply a function f to all the points in obj.

Points will be passed to f as an SVector to allow using CoordinateTransformations.jl and Rotations.jl without hassle.

SVector is also a valid GeoInterface.jl point, so will work in all GeoInterface.jl methods.

Example

julia
julia> import GeoInterface as GI
+true

source


# GeometryOps.transformMethod.
julia
transform(f, obj)

Apply a function f to all the points in obj.

Points will be passed to f as an SVector to allow using CoordinateTransformations.jl and Rotations.jl without hassle.

SVector is also a valid GeoInterface.jl point, so will work in all GeoInterface.jl methods.

Example

julia
julia> import GeoInterface as GI
 
 julia> import GeometryOps as GO
 
@@ -385,7 +398,7 @@
 GeoInterface.Wrappers.Polygon{false, false, Vector{GeoInterface.Wrappers.LinearRing{false, false, Vector{StaticArraysCore.SVector{2, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(GeoInterface.Wrappers.LinearR
 ing{false, false, Vector{StaticArraysCore.SVector{2, Int64}}, Nothing, Nothing}[GeoInterface.Wrappers.LinearRing{false, false, Vector{StaticArraysCore.SVector{2, Int64}}, Nothing, Nothing}(StaticArraysCore.SVe
 ctor{2, Int64}[[2, 1], [4, 3], [6, 5], [2, 1]], nothing, nothing), GeoInterface.Wrappers.LinearRing{false, false, Vector{StaticArraysCore.SVector{2, Int64}}, Nothing, Nothing}(StaticArraysCore.SVector{2, Int64
-}[[4, 3], [6, 5], [7, 6], [4, 3]], nothing, nothing)], nothing, nothing)

source


# GeometryOps.tuplesMethod.
julia
tuples(obj)

Convert all points in obj to Tuples, wherever the are nested.

Returns a similar object or collection of objects using GeoInterface.jl geometries wrapping Tuple points.

Keywords

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

  • calc_extent: true or false. Whether to calculate the extent. Defaults to false.

source


# GeometryOps.unionMethod.
julia
union(geom_a, geom_b, [::Type{T}]; target::Type, fix_multipoly = UnionIntersectingPolygons())

Return the union between two geometries as a list of geometries. Return an empty list if none are found. The type of the list will be constrained as much as possible given the input geometries. Furthermore, the user can provide a taget type as a keyword argument and a list of target geometries found in the difference will be returned. The user can also provide a float type 'T' that they would like the points of returned geometries to be. If the user is taking a intersection involving one or more multipolygons, and the multipolygon might be comprised of polygons that intersect, if fix_multipoly is set to an IntersectingPolygons correction (the default is UnionIntersectingPolygons()), then the needed multipolygons will be fixed to be valid before performing the intersection to ensure a correct answer. Only set fix_multipoly to false if you know that the multipolygons are valid, as it will avoid unneeded computation.

Calculates the union between two polygons.

Example

julia
import GeoInterface as GI, GeometryOps as GO
+}[[4, 3], [6, 5], [7, 6], [4, 3]], nothing, nothing)], nothing, nothing)

source


# GeometryOps.tuplesMethod.
julia
tuples(obj)

Convert all points in obj to Tuples, wherever the are nested.

Returns a similar object or collection of objects using GeoInterface.jl geometries wrapping Tuple points.

Keywords

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

  • calc_extent: true or false. Whether to calculate the extent. Defaults to false.

source


# GeometryOps.unionMethod.
julia
union(geom_a, geom_b, [::Type{T}]; target::Type, fix_multipoly = UnionIntersectingPolygons())

Return the union between two geometries as a list of geometries. Return an empty list if none are found. The type of the list will be constrained as much as possible given the input geometries. Furthermore, the user can provide a taget type as a keyword argument and a list of target geometries found in the difference will be returned. The user can also provide a float type 'T' that they would like the points of returned geometries to be. If the user is taking a intersection involving one or more multipolygons, and the multipolygon might be comprised of polygons that intersect, if fix_multipoly is set to an IntersectingPolygons correction (the default is UnionIntersectingPolygons()), then the needed multipolygons will be fixed to be valid before performing the intersection to ensure a correct answer. Only set fix_multipoly to false if you know that the multipolygons are valid, as it will avoid unneeded computation.

Calculates the union between two polygons.

Example

julia
import GeoInterface as GI, GeometryOps as GO
 
 p1 = GI.Polygon([[(0.0, 0.0), (5.0, 5.0), (10.0, 0.0), (5.0, -5.0), (0.0, 0.0)]])
 p2 = GI.Polygon([[(3.0, 0.0), (8.0, 5.0), (13.0, 0.0), (8.0, -5.0), (3.0, 0.0)]])
@@ -394,16 +407,16 @@
 
 # output
 1-element Vector{Vector{Vector{Vector{Float64}}}}:
- [[[6.5, 3.5], [5.0, 5.0], [0.0, 0.0], [5.0, -5.0], [6.5, -3.5], [8.0, -5.0], [13.0, 0.0], [8.0, 5.0], [6.5, 3.5]]]

source


# GeometryOps.unwrapFunction.
julia
unwrap(target::Type{<:AbstractTrait}, obj)
-unwrap(f, target::Type{<:AbstractTrait}, obj)

Unwrap the object to vectors, down to the target trait.

If f is passed in it will be applied to the target geometries as they are found.

source


# GeometryOps.weighted_meanMethod.
julia
weighted_mean(weight::Real, x1, x2)

Returns the weighted mean of x1 and x2, where weight is the weight of x1.

Specifically, calculates x1 * weight + x2 * (1 - weight).

Note

The idea for this method is that you can override this for custom types, like Color types, in extension modules.

source


# GeometryOps.withinMethod.
julia
within(geom1, geom2)::Bool

Return true if the first geometry is completely within the second geometry. The interiors of both geometries must intersect and the interior and boundary of the primary geometry (geom1) must not intersect the exterior of the secondary geometry (geom2).

Furthermore, within returns the exact opposite result of contains.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+ [[[6.5, 3.5], [5.0, 5.0], [0.0, 0.0], [5.0, -5.0], [6.5, -3.5], [8.0, -5.0], [13.0, 0.0], [8.0, 5.0], [6.5, 3.5]]]

source


# GeometryOps.unwrapFunction.
julia
unwrap(target::Type{<:AbstractTrait}, obj)
+unwrap(f, target::Type{<:AbstractTrait}, obj)

Unwrap the object to vectors, down to the target trait.

If f is passed in it will be applied to the target geometries as they are found.

source


# GeometryOps.weighted_meanMethod.
julia
weighted_mean(weight::Real, x1, x2)

Returns the weighted mean of x1 and x2, where weight is the weight of x1.

Specifically, calculates x1 * weight + x2 * (1 - weight).

Note

The idea for this method is that you can override this for custom types, like Color types, in extension modules.

source


# GeometryOps.withinMethod.
julia
within(geom1, geom2)::Bool

Return true if the first geometry is completely within the second geometry. The interiors of both geometries must intersect and the interior and boundary of the primary geometry (geom1) must not intersect the exterior of the secondary geometry (geom2).

Furthermore, within returns the exact opposite result of contains.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 
 line = GI.LineString([(1, 1), (1, 2), (1, 3), (1, 4)])
 point = (1, 2)
 GO.within(point, line)
 
 # output
-true

source



  1. K. Hormann and N. Sukumar. Generalized Barycentric Coordinates in Computer Graphics and Computational Mechanics. Taylor & Fancis, CRC Press, 2017. ↩︎

- +true

source



  1. K. Hormann and N. Sukumar. Generalized Barycentric Coordinates in Computer Graphics and Computational Mechanics. Taylor & Fancis, CRC Press, 2017. ↩︎

+ \ No newline at end of file diff --git a/dev/assets/api.md.Bo_5RxuP.js b/dev/assets/api.md.t9faiPJb.js similarity index 58% rename from dev/assets/api.md.Bo_5RxuP.js rename to dev/assets/api.md.t9faiPJb.js index 3d5e33739..18eba9c37 100644 --- a/dev/assets/api.md.Bo_5RxuP.js +++ b/dev/assets/api.md.t9faiPJb.js @@ -1,13 +1,13 @@ -import{_ as n,c as e,j as s,a,a6 as i,o as t}from"./chunks/framework.p73Oc50P.js";const S=JSON.parse('{"title":"Full GeometryOps API documentation","description":"","frontmatter":{},"headers":[],"relativePath":"api.md","filePath":"api.md","lastUpdated":null}'),l={name:"api.md"},h=i(`

Full GeometryOps API documentation

Warning

This page is still very much WIP!

Documentation for GeometryOps's full API (only for reference!).

apply and associated functions

# GeometryOps.applyFunction.
julia
apply(f, target::Union{TraitTarget, GI.AbstractTrait}, obj; kw...)

Reconstruct a geometry, feature, feature collection, or nested vectors of either using the function f on the target trait.

f(target_geom) => x where x also has the target trait, or a trait that can be substituted. For example, swapping PolgonTrait to MultiPointTrait will fail if the outer object has MultiPolygonTrait, but should work if it has FeatureTrait.

Objects "shallower" than the target trait are always completely rebuilt, like a Vector of FeatureCollectionTrait of FeatureTrait when the target has PolygonTrait and is held in the features. These will always be GeoInterface geometries/feature/feature collections. But "deeper" objects may remain unchanged or be whatever GeoInterface compatible objects f returns.

The result is a functionally similar geometry with values depending on f.

Example

Flipped point the order in any feature or geometry, or iterables of either:

julia
import GeoInterface as GI
+import{_ as n,c as e,j as s,a,a6 as i,o as t}from"./chunks/framework.DJCAxKqx.js";const S=JSON.parse('{"title":"Full GeometryOps API documentation","description":"","frontmatter":{},"headers":[],"relativePath":"api.md","filePath":"api.md","lastUpdated":null}'),l={name:"api.md"},h=i(`

Full GeometryOps API documentation

Warning

This page is still very much WIP!

Documentation for GeometryOps's full API (only for reference!).

apply and associated functions

# GeometryOps.applyFunction.
julia
apply(f, target::Union{TraitTarget, GI.AbstractTrait}, obj; kw...)

Reconstruct a geometry, feature, feature collection, or nested vectors of either using the function f on the target trait.

f(target_geom) => x where x also has the target trait, or a trait that can be substituted. For example, swapping PolgonTrait to MultiPointTrait will fail if the outer object has MultiPolygonTrait, but should work if it has FeatureTrait.

Objects "shallower" than the target trait are always completely rebuilt, like a Vector of FeatureCollectionTrait of FeatureTrait when the target has PolygonTrait and is held in the features. These will always be GeoInterface geometries/feature/feature collections. But "deeper" objects may remain unchanged or be whatever GeoInterface compatible objects f returns.

The result is a functionally similar geometry with values depending on f.

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

  • calc_extent: true or false. Whether to calculate the extent. Defaults to false.

Example

Flipped point the order in any feature or geometry, or iterables of either:

julia
import GeoInterface as GI
 import GeometryOps as GO
 geom = GI.Polygon([GI.LinearRing([(1, 2), (3, 4), (5, 6), (1, 2)]),
                    GI.LinearRing([(3, 4), (5, 6), (6, 7), (3, 4)])])
 
 flipped_geom = GO.apply(GI.PointTrait, geom) do p
     (GI.y(p), GI.x(p))
-end

source


# GeometryOps.applyreduceFunction.
julia
applyreduce(f, op, target::Union{TraitTarget, GI.AbstractTrait}, obj; threaded)

Apply function f to all objects with the target trait, and reduce the result with an op like +.

The order and grouping of application of op is not guaranteed.

If threaded==true threads will be used over arrays and iterables, feature collections and nested geometries.

source


# GeometryOps.reprojectFunction.
julia
reproject(geometry; source_crs, target_crs, transform, always_xy, time)
+end

source


# GeometryOps.applyreduceFunction.
julia
applyreduce(f, op, target::Union{TraitTarget, GI.AbstractTrait}, obj; threaded)

Apply function f to all objects with the target trait, and reduce the result with an op like +.

The order and grouping of application of op is not guaranteed.

If threaded==true threads will be used over arrays and iterables, feature collections and nested geometries.

source


# GeometryOps.reprojectFunction.
julia
reproject(geometry; source_crs, target_crs, transform, always_xy, time)
 reproject(geometry, source_crs, target_crs; always_xy, time)
-reproject(geometry, transform; always_xy, time)

Reproject any GeoInterface.jl compatible geometry from source_crs to target_crs.

The returned object will be constructed from GeoInterface.WrapperGeometry geometries, wrapping views of a Vector{Proj.Point{D}}, where D is the dimension.

Tip

The Proj.jl package must be loaded for this method to work, since it is implemented in a package extension.

Arguments

  • geometry: Any GeoInterface.jl compatible geometries.

  • source_crs: the source coordinate referece system, as a GeoFormatTypes.jl object or a string.

  • target_crs: the target coordinate referece system, as a GeoFormatTypes.jl object or a string.

If these a passed as keywords, transform will take priority. Without it target_crs is always needed, and source_crs is needed if it is not retreivable from the geometry with GeoInterface.crs(geometry).

Keywords

  • always_xy: force x, y coordinate order, true by default. false will expect and return points in the crs coordinate order.

  • time: the time for the coordinates. Inf by default.

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

  • calc_extent: true or false. Whether to calculate the extent. Defaults to false.

source


# GeometryOps.transformFunction.
julia
transform(f, obj)

Apply a function f to all the points in obj.

Points will be passed to f as an SVector to allow using CoordinateTransformations.jl and Rotations.jl without hassle.

SVector is also a valid GeoInterface.jl point, so will work in all GeoInterface.jl methods.

Example

julia
julia> import GeoInterface as GI
+reproject(geometry, transform; always_xy, time)

Reproject any GeoInterface.jl compatible geometry from source_crs to target_crs.

The returned object will be constructed from GeoInterface.WrapperGeometry geometries, wrapping views of a Vector{Proj.Point{D}}, where D is the dimension.

Tip

The Proj.jl package must be loaded for this method to work, since it is implemented in a package extension.

Arguments

  • geometry: Any GeoInterface.jl compatible geometries.

  • source_crs: the source coordinate referece system, as a GeoFormatTypes.jl object or a string.

  • target_crs: the target coordinate referece system, as a GeoFormatTypes.jl object or a string.

If these a passed as keywords, transform will take priority. Without it target_crs is always needed, and source_crs is needed if it is not retreivable from the geometry with GeoInterface.crs(geometry).

Keywords

  • always_xy: force x, y coordinate order, true by default. false will expect and return points in the crs coordinate order.

  • time: the time for the coordinates. Inf by default.

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

  • calc_extent: true or false. Whether to calculate the extent. Defaults to false.

source


# GeometryOps.transformFunction.
julia
transform(f, obj)

Apply a function f to all the points in obj.

Points will be passed to f as an SVector to allow using CoordinateTransformations.jl and Rotations.jl without hassle.

SVector is also a valid GeoInterface.jl point, so will work in all GeoInterface.jl methods.

Example

julia
julia> import GeoInterface as GI
 
 julia> import GeometryOps as GO
 
@@ -26,160 +26,160 @@ import{_ as n,c as e,j as s,a,a6 as i,o as t}from"./chunks/framework.p73Oc50P.js
 GeoInterface.Wrappers.Polygon{false, false, Vector{GeoInterface.Wrappers.LinearRing{false, false, Vector{StaticArraysCore.SVector{2, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(GeoInterface.Wrappers.LinearR
 ing{false, false, Vector{StaticArraysCore.SVector{2, Int64}}, Nothing, Nothing}[GeoInterface.Wrappers.LinearRing{false, false, Vector{StaticArraysCore.SVector{2, Int64}}, Nothing, Nothing}(StaticArraysCore.SVe
 ctor{2, Int64}[[2, 1], [4, 3], [6, 5], [2, 1]], nothing, nothing), GeoInterface.Wrappers.LinearRing{false, false, Vector{StaticArraysCore.SVector{2, Int64}}, Nothing, Nothing}(StaticArraysCore.SVector{2, Int64
-}[[4, 3], [6, 5], [7, 6], [4, 3]], nothing, nothing)], nothing, nothing)

source


General geometry methods

OGC methods

# GeometryOps.containsFunction.
julia
contains(g1::AbstractGeometry, g2::AbstractGeometry)::Bool

Return true if the second geometry is completely contained by the first geometry. The interiors of both geometries must intersect and the interior and boundary of the secondary (g2) must not intersect the exterior of the first (g1).

contains returns the exact opposite result of within.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+}[[4, 3], [6, 5], [7, 6], [4, 3]], nothing, nothing)], nothing, nothing)

source


General geometry methods

OGC methods

# GeometryOps.containsFunction.
julia
contains(g1::AbstractGeometry, g2::AbstractGeometry)::Bool

Return true if the second geometry is completely contained by the first geometry. The interiors of both geometries must intersect and the interior and boundary of the secondary (g2) must not intersect the exterior of the first (g1).

contains returns the exact opposite result of within.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 line = GI.LineString([(1, 1), (1, 2), (1, 3), (1, 4)])
 point = GI.Point((1, 2))
 
 GO.contains(line, point)
 # output
-true

source


# GeometryOps.coveredbyFunction.
julia
coveredby(g1, g2)::Bool

Return true if the first geometry is completely covered by the second geometry. The interior and boundary of the primary geometry (g1) must not intersect the exterior of the secondary geometry (g2).

Furthermore, coveredby returns the exact opposite result of covers. They are equivalent with the order of the arguments swapped.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+true

source


# GeometryOps.coveredbyFunction.
julia
coveredby(g1, g2)::Bool

Return true if the first geometry is completely covered by the second geometry. The interior and boundary of the primary geometry (g1) must not intersect the exterior of the secondary geometry (g2).

Furthermore, coveredby returns the exact opposite result of covers. They are equivalent with the order of the arguments swapped.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 p1 = GI.Point(0.0, 0.0)
 p2 = GI.Point(1.0, 1.0)
 l1 = GI.Line([p1, p2])
 
 GO.coveredby(p1, l1)
 # output
-true

source


# GeometryOps.coversFunction.
julia
covers(g1::AbstractGeometry, g2::AbstractGeometry)::Bool

Return true if the first geometry is completely covers the second geometry, The exterior and boundary of the second geometry must not be outside of the interior and boundary of the first geometry. However, the interiors need not intersect.

covers returns the exact opposite result of coveredby.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+true

source


# GeometryOps.coversFunction.
julia
covers(g1::AbstractGeometry, g2::AbstractGeometry)::Bool

Return true if the first geometry is completely covers the second geometry, The exterior and boundary of the second geometry must not be outside of the interior and boundary of the first geometry. However, the interiors need not intersect.

covers returns the exact opposite result of coveredby.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 l1 = GI.LineString([(1.0, 1.0), (1.0, 2.0), (1.0, 3.0), (1.0, 4.0)])
 l2 = GI.LineString([(1.0, 1.0), (1.0, 2.0)])
 
 GO.covers(l1, l2)
 # output
-true

source


# GeometryOps.crossesFunction.
julia
 crosses(geom1, geom2)::Bool

Return true if the intersection results in a geometry whose dimension is one less than the maximum dimension of the two source geometries and the intersection set is interior to both source geometries.

TODO: broken

Examples

julia
import GeoInterface as GI, GeometryOps as GO
-# TODO: Add working example

source


# GeometryOps.disjointFunction.
julia
disjoint(geom1, geom2)::Bool

Return true if the first geometry is disjoint from the second geometry.

Return true if the first geometry is disjoint from the second geometry. The interiors and boundaries of both geometries must not intersect.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+true

source


# GeometryOps.crossesFunction.
julia
 crosses(geom1, geom2)::Bool

Return true if the intersection results in a geometry whose dimension is one less than the maximum dimension of the two source geometries and the intersection set is interior to both source geometries.

TODO: broken

Examples

julia
import GeoInterface as GI, GeometryOps as GO
+# TODO: Add working example

source


# GeometryOps.disjointFunction.
julia
disjoint(geom1, geom2)::Bool

Return true if the first geometry is disjoint from the second geometry.

Return true if the first geometry is disjoint from the second geometry. The interiors and boundaries of both geometries must not intersect.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 
 line = GI.LineString([(1, 1), (1, 2), (1, 3), (1, 4)])
 point = (2, 2)
 GO.disjoint(point, line)
 
 # output
-true

source


# GeometryOps.intersectsFunction.
julia
intersects(geom1, geom2)::Bool

Return true if the interiors or boundaries of the two geometries interact.

intersects returns the exact opposite result of disjoint.

Example

julia
import GeoInterface as GI, GeometryOps as GO
+true

source


# GeometryOps.intersectsFunction.
julia
intersects(geom1, geom2)::Bool

Return true if the interiors or boundaries of the two geometries interact.

intersects returns the exact opposite result of disjoint.

Example

julia
import GeoInterface as GI, GeometryOps as GO
 
 line1 = GI.Line([(124.584961,-12.768946), (126.738281,-17.224758)])
 line2 = GI.Line([(123.354492,-15.961329), (127.22168,-14.008696)])
 GO.intersects(line1, line2)
 
 # output
-true

source


# GeometryOps.overlapsFunction.
julia
overlaps(geom1, geom2)::Bool

Compare two Geometries of the same dimension and return true if their intersection set results in a geometry different from both but of the same dimension. This means one geometry cannot be within or contain the other and they cannot be equal

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+true

source


# GeometryOps.overlapsFunction.
julia
overlaps(geom1, geom2)::Bool

Compare two Geometries of the same dimension and return true if their intersection set results in a geometry different from both but of the same dimension. This means one geometry cannot be within or contain the other and they cannot be equal

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 poly1 = GI.Polygon([[(0,0), (0,5), (5,5), (5,0), (0,0)]])
 poly2 = GI.Polygon([[(1,1), (1,6), (6,6), (6,1), (1,1)]])
 
 GO.overlaps(poly1, poly2)
 # output
-true

source

julia
overlaps(::GI.AbstractTrait, geom1, ::GI.AbstractTrait, geom2)::Bool

For any non-specified pair, all have non-matching dimensions, return false.

source

julia
overlaps(
+true

source

julia
overlaps(::GI.AbstractTrait, geom1, ::GI.AbstractTrait, geom2)::Bool

For any non-specified pair, all have non-matching dimensions, return false.

source

julia
overlaps(
     ::GI.MultiPointTrait, points1,
     ::GI.MultiPointTrait, points2,
-)::Bool

If the multipoints overlap, meaning some, but not all, of the points within the multipoints are shared, return true.

source

julia
overlaps(::GI.LineTrait, line1, ::GI.LineTrait, line)::Bool

If the lines overlap, meaning that they are colinear but each have one endpoint outside of the other line, return true. Else false.

source

julia
overlaps(
+)::Bool

If the multipoints overlap, meaning some, but not all, of the points within the multipoints are shared, return true.

source

julia
overlaps(::GI.LineTrait, line1, ::GI.LineTrait, line)::Bool

If the lines overlap, meaning that they are colinear but each have one endpoint outside of the other line, return true. Else false.

source

julia
overlaps(
     ::Union{GI.LineStringTrait, GI.LinearRing}, line1,
     ::Union{GI.LineStringTrait, GI.LinearRing}, line2,
-)::Bool

If the curves overlap, meaning that at least one edge of each curve overlaps, return true. Else false.

source

julia
overlaps(
+)::Bool

If the curves overlap, meaning that at least one edge of each curve overlaps, return true. Else false.

source

julia
overlaps(
     trait_a::GI.PolygonTrait, poly_a,
     trait_b::GI.PolygonTrait, poly_b,
-)::Bool

If the two polygons intersect with one another, but are not equal, return true. Else false.

source

julia
overlaps(
+)::Bool

If the two polygons intersect with one another, but are not equal, return true. Else false.

source

julia
overlaps(
     ::GI.PolygonTrait, poly1,
     ::GI.MultiPolygonTrait, polys2,
-)::Bool

Return true if polygon overlaps with at least one of the polygons within the multipolygon. Else false.

source

julia
overlaps(
+)::Bool

Return true if polygon overlaps with at least one of the polygons within the multipolygon. Else false.

source

julia
overlaps(
     ::GI.MultiPolygonTrait, polys1,
     ::GI.PolygonTrait, poly2,
-)::Bool

Return true if polygon overlaps with at least one of the polygons within the multipolygon. Else false.

source

julia
overlaps(
+)::Bool

Return true if polygon overlaps with at least one of the polygons within the multipolygon. Else false.

source

julia
overlaps(
     ::GI.MultiPolygonTrait, polys1,
     ::GI.MultiPolygonTrait, polys2,
-)::Bool

Return true if at least one pair of polygons from multipolygons overlap. Else false.

source


# GeometryOps.touchesFunction.
julia
touches(geom1, geom2)::Bool

Return true if the first geometry touches the second geometry. In other words, the two interiors cannot interact, but one of the geometries must have a boundary point that interacts with either the other geometies interior or boundary.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+)::Bool

Return true if at least one pair of polygons from multipolygons overlap. Else false.

source


# GeometryOps.touchesFunction.
julia
touches(geom1, geom2)::Bool

Return true if the first geometry touches the second geometry. In other words, the two interiors cannot interact, but one of the geometries must have a boundary point that interacts with either the other geometies interior or boundary.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 
 l1 = GI.Line([(0.0, 0.0), (1.0, 0.0)])
 l2 = GI.Line([(1.0, 1.0), (1.0, -1.0)])
 
 GO.touches(l1, l2)
 # output
-true

source


# GeometryOps.withinFunction.
julia
within(geom1, geom2)::Bool

Return true if the first geometry is completely within the second geometry. The interiors of both geometries must intersect and the interior and boundary of the primary geometry (geom1) must not intersect the exterior of the secondary geometry (geom2).

Furthermore, within returns the exact opposite result of contains.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+true

source


# GeometryOps.withinFunction.
julia
within(geom1, geom2)::Bool

Return true if the first geometry is completely within the second geometry. The interiors of both geometries must intersect and the interior and boundary of the primary geometry (geom1) must not intersect the exterior of the secondary geometry (geom2).

Furthermore, within returns the exact opposite result of contains.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 
 line = GI.LineString([(1, 1), (1, 2), (1, 3), (1, 4)])
 point = (1, 2)
 GO.within(point, line)
 
 # output
-true

source


Other general methods

# GeometryOps.equalsFunction.
julia
equals(geom1, geom2)::Bool

Compare two Geometries return true if they are the same geometry.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+true

source


Other general methods

# GeometryOps.equalsFunction.
julia
equals(geom1, geom2)::Bool

Compare two Geometries return true if they are the same geometry.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 poly1 = GI.Polygon([[(0,0), (0,5), (5,5), (5,0), (0,0)]])
 poly2 = GI.Polygon([[(0,0), (0,5), (5,5), (5,0), (0,0)]])
 
 GO.equals(poly1, poly2)
 # output
-true

source

julia
equals(::T, geom_a, ::T, geom_b)::Bool

Two geometries of the same type, which don't have a equals function to dispatch off of should throw an error.

source

julia
equals(trait_a, geom_a, trait_b, geom_b)

Two geometries which are not of the same type cannot be equal so they always return false.

source

julia
equals(::GI.PointTrait, p1, ::GI.PointTrait, p2)::Bool

Two points are the same if they have the same x and y (and z if 3D) coordinates.

source

julia
equals(::GI.PointTrait, p1, ::GI.MultiPointTrait, mp2)::Bool

A point and a multipoint are equal if the multipoint is composed of a single point that is equivalent to the given point.

source

julia
equals(::GI.MultiPointTrait, mp1, ::GI.PointTrait, p2)::Bool

A point and a multipoint are equal if the multipoint is composed of a single point that is equivalent to the given point.

source

julia
equals(::GI.MultiPointTrait, mp1, ::GI.MultiPointTrait, mp2)::Bool

Two multipoints are equal if they share the same set of points.

source

julia
equals(
+true

source

julia
equals(::T, geom_a, ::T, geom_b)::Bool

Two geometries of the same type, which don't have a equals function to dispatch off of should throw an error.

source

julia
equals(trait_a, geom_a, trait_b, geom_b)

Two geometries which are not of the same type cannot be equal so they always return false.

source

julia
equals(::GI.PointTrait, p1, ::GI.PointTrait, p2)::Bool

Two points are the same if they have the same x and y (and z if 3D) coordinates.

source

julia
equals(::GI.PointTrait, p1, ::GI.MultiPointTrait, mp2)::Bool

A point and a multipoint are equal if the multipoint is composed of a single point that is equivalent to the given point.

source

julia
equals(::GI.MultiPointTrait, mp1, ::GI.PointTrait, p2)::Bool

A point and a multipoint are equal if the multipoint is composed of a single point that is equivalent to the given point.

source

julia
equals(::GI.MultiPointTrait, mp1, ::GI.MultiPointTrait, mp2)::Bool

Two multipoints are equal if they share the same set of points.

source

julia
equals(
     ::Union{GI.LineTrait, GI.LineStringTrait}, l1,
     ::Union{GI.LineTrait, GI.LineStringTrait}, l2,
-)::Bool

Two lines/linestrings are equal if they share the same set of points going along the curve. Note that lines/linestrings aren't closed by defintion.

source

julia
equals(
+)::Bool

Two lines/linestrings are equal if they share the same set of points going along the curve. Note that lines/linestrings aren't closed by defintion.

source

julia
equals(
     ::Union{GI.LineTrait, GI.LineStringTrait}, l1,
     ::GI.LinearRingTrait, l2,
-)::Bool

A line/linestring and a linear ring are equal if they share the same set of points going along the curve. Note that lines aren't closed by defintion, but rings are, so the line must have a repeated last point to be equal

source

julia
equals(
+)::Bool

A line/linestring and a linear ring are equal if they share the same set of points going along the curve. Note that lines aren't closed by defintion, but rings are, so the line must have a repeated last point to be equal

source

julia
equals(
     ::GI.LinearRingTrait, l1,
     ::Union{GI.LineTrait, GI.LineStringTrait}, l2,
-)::Bool

A linear ring and a line/linestring are equal if they share the same set of points going along the curve. Note that lines aren't closed by defintion, but rings are, so the line must have a repeated last point to be equal

source

julia
equals(
+)::Bool

A linear ring and a line/linestring are equal if they share the same set of points going along the curve. Note that lines aren't closed by defintion, but rings are, so the line must have a repeated last point to be equal

source

julia
equals(
     ::GI.LinearRingTrait, l1,
     ::GI.LinearRingTrait, l2,
-)::Bool

Two linear rings are equal if they share the same set of points going along the curve. Note that rings are closed by definition, so they can have, but don't need, a repeated last point to be equal.

source

julia
equals(::GI.PolygonTrait, geom_a, ::GI.PolygonTrait, geom_b)::Bool

Two polygons are equal if they share the same exterior edge and holes.

source

julia
equals(::GI.PolygonTrait, geom_a, ::GI.MultiPolygonTrait, geom_b)::Bool

A polygon and a multipolygon are equal if the multipolygon is composed of a single polygon that is equivalent to the given polygon.

source

julia
equals(::GI.MultiPolygonTrait, geom_a, ::GI.PolygonTrait, geom_b)::Bool

A polygon and a multipolygon are equal if the multipolygon is composed of a single polygon that is equivalent to the given polygon.

source

julia
equals(::GI.PolygonTrait, geom_a, ::GI.PolygonTrait, geom_b)::Bool

Two multipolygons are equal if they share the same set of polygons.

source


# GeometryOps.centroidFunction.
julia
centroid(geom, [T=Float64])::Tuple{T, T}

Returns the centroid of a given line segment, linear ring, polygon, or mutlipolygon.

source


# GeometryOps.distanceFunction.
julia
distance(point, geom, ::Type{T} = Float64)::T

Calculates the ditance from the geometry g1 to the point. The distance will always be positive or zero.

The method will differ based on the type of the geometry provided: - The distance from a point to a point is just the Euclidean distance between the points. - The distance from a point to a line is the minimum distance from the point to the closest point on the given line. - The distance from a point to a linestring is the minimum distance from the point to the closest segment of the linestring. - The distance from a point to a linear ring is the minimum distance from the point to the closest segment of the linear ring. - The distance from a point to a polygon is zero if the point is within the polygon and otherwise is the minimum distance from the point to an edge of the polygon. This includes edges created by holes. - The distance from a point to a multigeometry or a geometry collection is the minimum distance between the point and any of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.signed_distanceFunction.
julia
signed_distance(point, geom, ::Type{T} = Float64)::T

Calculates the signed distance from the geometry geom to the given point. Points within geom have a negative signed distance, and points outside of geom have a positive signed distance. - The signed distance from a point to a point, line, linestring, or linear ring is equal to the distance between the two. - The signed distance from a point to a polygon is negative if the point is within the polygon and is positive otherwise. The value of the distance is the minimum distance from the point to an edge of the polygon. This includes edges created by holes. - The signed distance from a point to a multigeometry or a geometry collection is the minimum signed distance between the point and any of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.areaFunction.
julia
area(geom, [T = Float64])::T

Returns the area of a geometry or collection of geometries. This is computed slightly differently for different geometries:

- The area of a point/multipoint is always zero.
+)::Bool

Two linear rings are equal if they share the same set of points going along the curve. Note that rings are closed by definition, so they can have, but don't need, a repeated last point to be equal.

source

julia
equals(::GI.PolygonTrait, geom_a, ::GI.PolygonTrait, geom_b)::Bool

Two polygons are equal if they share the same exterior edge and holes.

source

julia
equals(::GI.PolygonTrait, geom_a, ::GI.MultiPolygonTrait, geom_b)::Bool

A polygon and a multipolygon are equal if the multipolygon is composed of a single polygon that is equivalent to the given polygon.

source

julia
equals(::GI.MultiPolygonTrait, geom_a, ::GI.PolygonTrait, geom_b)::Bool

A polygon and a multipolygon are equal if the multipolygon is composed of a single polygon that is equivalent to the given polygon.

source

julia
equals(::GI.PolygonTrait, geom_a, ::GI.PolygonTrait, geom_b)::Bool

Two multipolygons are equal if they share the same set of polygons.

source


# GeometryOps.centroidFunction.
julia
centroid(geom, [T=Float64])::Tuple{T, T}

Returns the centroid of a given line segment, linear ring, polygon, or mutlipolygon.

source


# GeometryOps.distanceFunction.
julia
distance(point, geom, ::Type{T} = Float64)::T

Calculates the ditance from the geometry g1 to the point. The distance will always be positive or zero.

The method will differ based on the type of the geometry provided: - The distance from a point to a point is just the Euclidean distance between the points. - The distance from a point to a line is the minimum distance from the point to the closest point on the given line. - The distance from a point to a linestring is the minimum distance from the point to the closest segment of the linestring. - The distance from a point to a linear ring is the minimum distance from the point to the closest segment of the linear ring. - The distance from a point to a polygon is zero if the point is within the polygon and otherwise is the minimum distance from the point to an edge of the polygon. This includes edges created by holes. - The distance from a point to a multigeometry or a geometry collection is the minimum distance between the point and any of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.signed_distanceFunction.
julia
signed_distance(point, geom, ::Type{T} = Float64)::T

Calculates the signed distance from the geometry geom to the given point. Points within geom have a negative signed distance, and points outside of geom have a positive signed distance. - The signed distance from a point to a point, line, linestring, or linear ring is equal to the distance between the two. - The signed distance from a point to a polygon is negative if the point is within the polygon and is positive otherwise. The value of the distance is the minimum distance from the point to an edge of the polygon. This includes edges created by holes. - The signed distance from a point to a multigeometry or a geometry collection is the minimum signed distance between the point and any of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.areaFunction.
julia
area(geom, [T = Float64])::T

Returns the area of a geometry or collection of geometries. This is computed slightly differently for different geometries:

- The area of a point/multipoint is always zero.
 - The area of a curve/multicurve is always zero.
 - The area of a polygon is the absolute value of the signed area.
 - The area multi-polygon is the sum of the areas of all of the sub-polygons.
 - The area of a geometry collection, feature collection of array/iterable 
-    is the sum of the areas of all of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.signed_areaFunction.
julia
signed_area(geom, [T = Float64])::T

Returns the signed area of a single geometry, based on winding order. This is computed slighly differently for different geometries:

- The signed area of a point is always zero.
+    is the sum of the areas of all of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.signed_areaFunction.
julia
signed_area(geom, [T = Float64])::T

Returns the signed area of a single geometry, based on winding order. This is computed slighly differently for different geometries:

- The signed area of a point is always zero.
 - The signed area of a curve is always zero.
 - The signed area of a polygon is computed with the shoelace formula and is
 positive if the polygon coordinates wind clockwise and negative if
 counterclockwise.
 - You cannot compute the signed area of a multipolygon as it doesn't have a
-meaning as each sub-polygon could have a different winding order.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.anglesFunction.
julia
angles(geom, ::Type{T} = Float64)

Returns the angles of a geometry or collection of geometries. This is computed differently for different geometries:

- The angles of a point is an empty vector.
+meaning as each sub-polygon could have a different winding order.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.anglesFunction.
julia
angles(geom, ::Type{T} = Float64)

Returns the angles of a geometry or collection of geometries. This is computed differently for different geometries:

- The angles of a point is an empty vector.
 - The angles of a single line segment is an empty vector.
 - The angles of a linestring or linearring is a vector of angles formed by the curve.
 - The angles of a polygin is a vector of vectors of angles formed by each ring.
 - The angles of a multi-geometry collection is a vector of the angles of each of the
-    sub-geometries as defined above.

Result will be a Vector, or nested set of vectors, of type T where an optional argument with a default value of Float64.

source


# GeometryOps.embed_extentFunction.
julia
embed_extent(obj)

Recursively wrap the object with a GeoInterface.jl geometry, calculating and adding an Extents.Extent to all objects.

This can improve performance when extents need to be checked multiple times, such when needing to check if many points are in geometries, and using their extents as a quick filter for obviously exterior points.

Keywords

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

source


Barycentric coordinates

# GeometryOps.barycentric_coordinatesFunction.
julia
barycentric_coordinates(method = MeanValue(), polygon, point)

Returns the barycentric coordinates of point in polygon using the barycentric coordinate method method.

source


# GeometryOps.barycentric_coordinates!Function.
julia
barycentric_coordinates!(λs::Vector{<: Real}, method::AbstractBarycentricCoordinateMethod, polygon, point)

Loads the barycentric coordinates of point in polygon into λs using the barycentric coordinate method method.

λs must be of the length of the polygon plus its holes.

Tip

Use this method to avoid excess allocations when you need to calculate barycentric coordinates for many points.

source


# GeometryOps.barycentric_interpolateFunction.
julia
barycentric_interpolate(method = MeanValue(), polygon, values::AbstractVector{V}, point)

Returns the interpolated value at point within polygon using the barycentric coordinate method method. values are the per-point values for the polygon which are to be interpolated.

Returns an object of type V.

Warning

Barycentric interpolation is currently defined only for 2-dimensional polygons. If you pass a 3-D polygon in, the Z coordinate will be used as per-vertex value to be interpolated (the M coordinate in GIS parlance).

source


Other methods

# GeometryOps.AbstractBarycentricCoordinateMethodType.
julia
abstract type AbstractBarycentricCoordinateMethod

Abstract supertype for barycentric coordinate methods. The subtypes may serve as dispatch types, or may cache some information about the target polygon.

API

The following methods must be implemented for all subtypes:

  • barycentric_coordinates!(λs::Vector{<: Real}, method::AbstractBarycentricCoordinateMethod, exterior::Vector{<: Point{2, T1}}, point::Point{2, T2})

  • barycentric_interpolate(method::AbstractBarycentricCoordinateMethod, exterior::Vector{<: Point{2, T1}}, values::Vector{V}, point::Point{2, T2})::V

  • barycentric_interpolate(method::AbstractBarycentricCoordinateMethod, exterior::Vector{<: Point{2, T1}}, interiors::Vector{<: Vector{<: Point{2, T1}}} values::Vector{V}, point::Point{2, T2})::V

The rest of the methods will be implemented in terms of these, and have efficient dispatches for broadcasting.

source


# GeometryOps.ClosedRingType.
julia
ClosedRing() <: GeometryCorrection

This correction ensures that a polygon's exterior and interior rings are closed.

It can be called on any geometry correction as usual.

See also GeometryCorrection.

source


# GeometryOps.DiffIntersectingPolygonsType.
julia
DiffIntersectingPolygons() <: GeometryCorrection

This correction ensures that the polygons included in a multipolygon aren't intersecting. If any polygon's are intersecting, they will be made nonintersecting through the difference operation to create a unique set of disjoint (other than potentially connections by a single point) polygons covering the same area. See also GeometryCorrection, UnionIntersectingPolygons.

source


# GeometryOps.DouglasPeuckerType.
julia
DouglasPeucker <: SimplifyAlg
+    sub-geometries as defined above.

Result will be a Vector, or nested set of vectors, of type T where an optional argument with a default value of Float64.

source


# GeometryOps.embed_extentFunction.
julia
embed_extent(obj)

Recursively wrap the object with a GeoInterface.jl geometry, calculating and adding an Extents.Extent to all objects.

This can improve performance when extents need to be checked multiple times, such when needing to check if many points are in geometries, and using their extents as a quick filter for obviously exterior points.

Keywords

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

source


Barycentric coordinates

# GeometryOps.barycentric_coordinatesFunction.
julia
barycentric_coordinates(method = MeanValue(), polygon, point)

Returns the barycentric coordinates of point in polygon using the barycentric coordinate method method.

source


# GeometryOps.barycentric_coordinates!Function.
julia
barycentric_coordinates!(λs::Vector{<: Real}, method::AbstractBarycentricCoordinateMethod, polygon, point)

Loads the barycentric coordinates of point in polygon into λs using the barycentric coordinate method method.

λs must be of the length of the polygon plus its holes.

Tip

Use this method to avoid excess allocations when you need to calculate barycentric coordinates for many points.

source


# GeometryOps.barycentric_interpolateFunction.
julia
barycentric_interpolate(method = MeanValue(), polygon, values::AbstractVector{V}, point)

Returns the interpolated value at point within polygon using the barycentric coordinate method method. values are the per-point values for the polygon which are to be interpolated.

Returns an object of type V.

Warning

Barycentric interpolation is currently defined only for 2-dimensional polygons. If you pass a 3-D polygon in, the Z coordinate will be used as per-vertex value to be interpolated (the M coordinate in GIS parlance).

source


Other methods

# GeometryOps.AbstractBarycentricCoordinateMethodType.
julia
abstract type AbstractBarycentricCoordinateMethod

Abstract supertype for barycentric coordinate methods. The subtypes may serve as dispatch types, or may cache some information about the target polygon.

API

The following methods must be implemented for all subtypes:

  • barycentric_coordinates!(λs::Vector{<: Real}, method::AbstractBarycentricCoordinateMethod, exterior::Vector{<: Point{2, T1}}, point::Point{2, T2})

  • barycentric_interpolate(method::AbstractBarycentricCoordinateMethod, exterior::Vector{<: Point{2, T1}}, values::Vector{V}, point::Point{2, T2})::V

  • barycentric_interpolate(method::AbstractBarycentricCoordinateMethod, exterior::Vector{<: Point{2, T1}}, interiors::Vector{<: Vector{<: Point{2, T1}}} values::Vector{V}, point::Point{2, T2})::V

The rest of the methods will be implemented in terms of these, and have efficient dispatches for broadcasting.

source


# GeometryOps.ClosedRingType.
julia
ClosedRing() <: GeometryCorrection

This correction ensures that a polygon's exterior and interior rings are closed.

It can be called on any geometry correction as usual.

See also GeometryCorrection.

source


# GeometryOps.DiffIntersectingPolygonsType.
julia
DiffIntersectingPolygons() <: GeometryCorrection

This correction ensures that the polygons included in a multipolygon aren't intersecting. If any polygon's are intersecting, they will be made nonintersecting through the difference operation to create a unique set of disjoint (other than potentially connections by a single point) polygons covering the same area. See also GeometryCorrection, UnionIntersectingPolygons.

source


# GeometryOps.DouglasPeuckerType.
julia
DouglasPeucker <: SimplifyAlg
 
-DouglasPeucker(; number, ratio, tol)

Simplifies geometries by removing points below tol distance from the line between its neighboring points.

Keywords

  • ratio: the fraction of points that should remain after simplify. Useful as it will generalise for large collections of objects.

  • number: the number of points that should remain after simplify. Less useful for large collections of mixed size objects.

  • tol: the minimum distance a point will be from the line joining its neighboring points.

Note: user input tol is squared to avoid uneccesary computation in algorithm.

source


# GeometryOps.GEOSType.
julia
GEOS(; params...)

A struct which instructs the method it's passed to as an algorithm to use the appropriate GEOS function via LibGEOS.jl for the operation.

Dispatch is generally carried out using the names of the keyword arguments. For example, segmentize will only accept a GEOS struct with only a max_distance keyword, and no other.

It's generally a lot slower than the native Julia implementations, since it must convert to the LibGEOS implementation and back - so be warned!

source


# GeometryOps.GeodesicSegmentsType.
julia
GeodesicSegments(; max_distance::Real, equatorial_radius::Real=6378137, flattening::Real=1/298.257223563)

A method for segmentizing geometries by adding extra vertices to the geometry so that no segment is longer than a given distance. This method calculates the distance between points on the geodesic, and assumes input in lat/long coordinates.

Warning

Any input geometries must be in lon/lat coordinates! If not, the method may fail or error.

Arguments

  • max_distance::Real: The maximum distance, in meters, between vertices in the geometry.

  • equatorial_radius::Real=6378137: The equatorial radius of the Earth, in meters. Passed to Proj.geod_geodesic.

  • flattening::Real=1/298.257223563: The flattening of the Earth, which is the ratio of the difference between the equatorial and polar radii to the equatorial radius. Passed to Proj.geod_geodesic.

One can also omit the equatorial_radius and flattening keyword arguments, and pass a geodesic object directly to the eponymous keyword.

This method uses the Proj/GeographicLib API for geodesic calculations.

source


# GeometryOps.GeometryCorrectionType.
julia
abstract type GeometryCorrection

This abstract type represents a geometry correction.

Interface

Any GeometryCorrection must implement two functions: * application_level(::GeometryCorrection)::AbstractGeometryTrait: This function should return the GeoInterface trait that the correction is intended to be applied to, like PointTrait or LineStringTrait or PolygonTrait. * (::GeometryCorrection)(::AbstractGeometryTrait, geometry)::(some_geometry): This function should apply the correction to the given geometry, and return a new geometry.

source


# GeometryOps.LineOrientationType.
julia
Enum LineOrientation

Enum for the orientation of a line with respect to a curve. A line can be line_cross (crossing over the curve), line_hinge (crossing the endpoint of the curve), line_over (colinear with the curve), or line_out (not interacting with the curve).

source


# GeometryOps.LinearSegmentsType.
julia
LinearSegments(; max_distance::Real)

A method for segmentizing geometries by adding extra vertices to the geometry so that no segment is longer than a given distance.

Here, max_distance is a purely nondimensional quantity and will apply in the input space. This is to say, that if the polygon is provided in lat/lon coordinates then the max_distance will be in degrees of arc. If the polygon is provided in meters, then the max_distance will be in meters.

source


# GeometryOps.MeanValueType.
julia
MeanValue() <: AbstractBarycentricCoordinateMethod

This method calculates barycentric coordinates using the mean value method.

References

source


# GeometryOps.PointOrientationType.
julia
Enum PointOrientation

Enum for the orientation of a point with respect to a curve. A point can be point_in the curve, point_on the curve, or point_out of the curve.

source


# GeometryOps.RadialDistanceType.
julia
RadialDistance <: SimplifyAlg

Simplifies geometries by removing points less than tol distance from the line between its neighboring points.

Keywords

  • ratio: the fraction of points that should remain after simplify. Useful as it will generalise for large collections of objects.

  • number: the number of points that should remain after simplify. Less useful for large collections of mixed size objects.

  • tol: the minimum distance between points.

Note: user input tol is squared to avoid uneccesary computation in algorithm.

source


# GeometryOps.SimplifyAlgType.
julia
abstract type SimplifyAlg

Abstract type for simplification algorithms.

API

For now, the algorithm must hold the number, ratio and tol properties.

Simplification algorithm types can hook into the interface by implementing the _simplify(trait, alg, geom) methods for whichever traits are necessary.

source


# GeometryOps.TraitTargetType.
julia
TraitTarget{T}

This struct holds a trait parameter or a union of trait parameters.

It is primarily used for dispatch into methods which select trait levels, like apply, or as a parameter to target.

Constructors

julia
TraitTarget(GI.PointTrait())
+DouglasPeucker(; number, ratio, tol)

Simplifies geometries by removing points below tol distance from the line between its neighboring points.

Keywords

  • ratio: the fraction of points that should remain after simplify. Useful as it will generalise for large collections of objects.

  • number: the number of points that should remain after simplify. Less useful for large collections of mixed size objects.

  • tol: the minimum distance a point will be from the line joining its neighboring points.

Note: user input tol is squared to avoid uneccesary computation in algorithm.

source


# GeometryOps.GEOSType.
julia
GEOS(; params...)

A struct which instructs the method it's passed to as an algorithm to use the appropriate GEOS function via LibGEOS.jl for the operation.

Dispatch is generally carried out using the names of the keyword arguments. For example, segmentize will only accept a GEOS struct with only a max_distance keyword, and no other.

It's generally a lot slower than the native Julia implementations, since it must convert to the LibGEOS implementation and back - so be warned!

source


# GeometryOps.GeodesicSegmentsType.
julia
GeodesicSegments(; max_distance::Real, equatorial_radius::Real=6378137, flattening::Real=1/298.257223563)

A method for segmentizing geometries by adding extra vertices to the geometry so that no segment is longer than a given distance. This method calculates the distance between points on the geodesic, and assumes input in lat/long coordinates.

Warning

Any input geometries must be in lon/lat coordinates! If not, the method may fail or error.

Arguments

  • max_distance::Real: The maximum distance, in meters, between vertices in the geometry.

  • equatorial_radius::Real=6378137: The equatorial radius of the Earth, in meters. Passed to Proj.geod_geodesic.

  • flattening::Real=1/298.257223563: The flattening of the Earth, which is the ratio of the difference between the equatorial and polar radii to the equatorial radius. Passed to Proj.geod_geodesic.

One can also omit the equatorial_radius and flattening keyword arguments, and pass a geodesic object directly to the eponymous keyword.

This method uses the Proj/GeographicLib API for geodesic calculations.

source


# GeometryOps.GeometryCorrectionType.
julia
abstract type GeometryCorrection

This abstract type represents a geometry correction.

Interface

Any GeometryCorrection must implement two functions: * application_level(::GeometryCorrection)::AbstractGeometryTrait: This function should return the GeoInterface trait that the correction is intended to be applied to, like PointTrait or LineStringTrait or PolygonTrait. * (::GeometryCorrection)(::AbstractGeometryTrait, geometry)::(some_geometry): This function should apply the correction to the given geometry, and return a new geometry.

source


# GeometryOps.LineOrientationType.
julia
Enum LineOrientation

Enum for the orientation of a line with respect to a curve. A line can be line_cross (crossing over the curve), line_hinge (crossing the endpoint of the curve), line_over (colinear with the curve), or line_out (not interacting with the curve).

source


# GeometryOps.LinearSegmentsType.
julia
LinearSegments(; max_distance::Real)

A method for segmentizing geometries by adding extra vertices to the geometry so that no segment is longer than a given distance.

Here, max_distance is a purely nondimensional quantity and will apply in the input space. This is to say, that if the polygon is provided in lat/lon coordinates then the max_distance will be in degrees of arc. If the polygon is provided in meters, then the max_distance will be in meters.

source


# GeometryOps.MeanValueType.
julia
MeanValue() <: AbstractBarycentricCoordinateMethod

This method calculates barycentric coordinates using the mean value method.

References

source


# GeometryOps.PointOrientationType.
julia
Enum PointOrientation

Enum for the orientation of a point with respect to a curve. A point can be point_in the curve, point_on the curve, or point_out of the curve.

source


# GeometryOps.RadialDistanceType.
julia
RadialDistance <: SimplifyAlg

Simplifies geometries by removing points less than tol distance from the line between its neighboring points.

Keywords

  • ratio: the fraction of points that should remain after simplify. Useful as it will generalise for large collections of objects.

  • number: the number of points that should remain after simplify. Less useful for large collections of mixed size objects.

  • tol: the minimum distance between points.

Note: user input tol is squared to avoid uneccesary computation in algorithm.

source


# GeometryOps.SimplifyAlgType.
julia
abstract type SimplifyAlg

Abstract type for simplification algorithms.

API

For now, the algorithm must hold the number, ratio and tol properties.

Simplification algorithm types can hook into the interface by implementing the _simplify(trait, alg, geom) methods for whichever traits are necessary.

source


# GeometryOps.TraitTargetType.
julia
TraitTarget{T}

This struct holds a trait parameter or a union of trait parameters.

It is primarily used for dispatch into methods which select trait levels, like apply, or as a parameter to target.

Constructors

julia
TraitTarget(GI.PointTrait())
 TraitTarget(GI.LineStringTrait(), GI.LinearRingTrait()) # and other traits as you may like
 TraitTarget(TraitTarget(...))
 # There are also type based constructors available, but that's not advised.
 TraitTarget(GI.PointTrait)
 TraitTarget(Union{GI.LineStringTrait, GI.LinearRingTrait})
-# etc.

source


# GeometryOps.UnionIntersectingPolygonsType.
julia
UnionIntersectingPolygons() <: GeometryCorrection

This correction ensures that the polygon's included in a multipolygon aren't intersecting. If any polygon's are intersecting, they will be combined through the union operation to create a unique set of disjoint (other than potentially connections by a single point) polygons covering the same area.

See also GeometryCorrection.

source


# GeometryOps.VisvalingamWhyattType.
julia
VisvalingamWhyatt <: SimplifyAlg
+# etc.

source


# GeometryOps.UnionIntersectingPolygonsType.
julia
UnionIntersectingPolygons() <: GeometryCorrection

This correction ensures that the polygon's included in a multipolygon aren't intersecting. If any polygon's are intersecting, they will be combined through the union operation to create a unique set of disjoint (other than potentially connections by a single point) polygons covering the same area.

See also GeometryCorrection.

source


# GeometryOps.VisvalingamWhyattType.
julia
VisvalingamWhyatt <: SimplifyAlg
 
-VisvalingamWhyatt(; kw...)

Simplifies geometries by removing points below tol distance from the line between its neighboring points.

Keywords

  • ratio: the fraction of points that should remain after simplify. Useful as it will generalise for large collections of objects.

  • number: the number of points that should remain after simplify. Less useful for large collections of mixed size objects.

  • tol: the minimum area of a triangle made with a point and its neighboring points.

Note: user input tol is doubled to avoid uneccesary computation in algorithm.

source


# GeometryOps._detMethod.
julia
_det(s1::Point2{T1}, s2::Point2{T2}) where {T1 <: Real, T2 <: Real}

Returns the determinant of the matrix formed by hcat'ing two points s1 and s2.

Specifically, this is:

julia
s1[1] * s2[2] - s1[2] * s2[1]

source


# GeometryOps._equals_curvesMethod.
julia
_equals_curves(c1, c2, closed_type1, closed_type2)::Bool

Two curves are equal if they share the same set of point, representing the same geometry. Both curves must must be composed of the same set of points, however, they do not have to wind in the same direction, or start on the same point to be equivalent. Inputs: c1 first geometry c2 second geometry closed_type1::Bool true if c1 is closed by definition (polygon, linear ring) closed_type2::Bool true if c2 is closed by definition (polygon, linear ring)

source


# GeometryOps.anglesMethod.
julia
angles(geom, ::Type{T} = Float64)

Returns the angles of a geometry or collection of geometries. This is computed differently for different geometries:

- The angles of a point is an empty vector.
+VisvalingamWhyatt(; kw...)

Simplifies geometries by removing points below tol distance from the line between its neighboring points.

Keywords

  • ratio: the fraction of points that should remain after simplify. Useful as it will generalise for large collections of objects.

  • number: the number of points that should remain after simplify. Less useful for large collections of mixed size objects.

  • tol: the minimum area of a triangle made with a point and its neighboring points.

Note: user input tol is doubled to avoid uneccesary computation in algorithm.

source


# GeometryOps._detMethod.
julia
_det(s1::Point2{T1}, s2::Point2{T2}) where {T1 <: Real, T2 <: Real}

Returns the determinant of the matrix formed by hcat'ing two points s1 and s2.

Specifically, this is:

julia
s1[1] * s2[2] - s1[2] * s2[1]

source


# GeometryOps._equals_curvesMethod.
julia
_equals_curves(c1, c2, closed_type1, closed_type2)::Bool

Two curves are equal if they share the same set of point, representing the same geometry. Both curves must must be composed of the same set of points, however, they do not have to wind in the same direction, or start on the same point to be equivalent. Inputs: c1 first geometry c2 second geometry closed_type1::Bool true if c1 is closed by definition (polygon, linear ring) closed_type2::Bool true if c2 is closed by definition (polygon, linear ring)

source


# GeometryOps.anglesMethod.
julia
angles(geom, ::Type{T} = Float64)

Returns the angles of a geometry or collection of geometries. This is computed differently for different geometries:

- The angles of a point is an empty vector.
 - The angles of a single line segment is an empty vector.
 - The angles of a linestring or linearring is a vector of angles formed by the curve.
 - The angles of a polygin is a vector of vectors of angles formed by each ring.
 - The angles of a multi-geometry collection is a vector of the angles of each of the
-    sub-geometries as defined above.

Result will be a Vector, or nested set of vectors, of type T where an optional argument with a default value of Float64.

source


# GeometryOps.applyMethod.
julia
apply(f, target::Union{TraitTarget, GI.AbstractTrait}, obj; kw...)

Reconstruct a geometry, feature, feature collection, or nested vectors of either using the function f on the target trait.

f(target_geom) => x where x also has the target trait, or a trait that can be substituted. For example, swapping PolgonTrait to MultiPointTrait will fail if the outer object has MultiPolygonTrait, but should work if it has FeatureTrait.

Objects "shallower" than the target trait are always completely rebuilt, like a Vector of FeatureCollectionTrait of FeatureTrait when the target has PolygonTrait and is held in the features. These will always be GeoInterface geometries/feature/feature collections. But "deeper" objects may remain unchanged or be whatever GeoInterface compatible objects f returns.

The result is a functionally similar geometry with values depending on f.

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

  • calc_extent: true or false. Whether to calculate the extent. Defaults to false.

Example

Flipped point the order in any feature or geometry, or iterables of either:

julia
import GeoInterface as GI
+    sub-geometries as defined above.

Result will be a Vector, or nested set of vectors, of type T where an optional argument with a default value of Float64.

source


# GeometryOps.applyMethod.
julia
apply(f, target::Union{TraitTarget, GI.AbstractTrait}, obj; kw...)

Reconstruct a geometry, feature, feature collection, or nested vectors of either using the function f on the target trait.

f(target_geom) => x where x also has the target trait, or a trait that can be substituted. For example, swapping PolgonTrait to MultiPointTrait will fail if the outer object has MultiPolygonTrait, but should work if it has FeatureTrait.

Objects "shallower" than the target trait are always completely rebuilt, like a Vector of FeatureCollectionTrait of FeatureTrait when the target has PolygonTrait and is held in the features. These will always be GeoInterface geometries/feature/feature collections. But "deeper" objects may remain unchanged or be whatever GeoInterface compatible objects f returns.

The result is a functionally similar geometry with values depending on f.

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

  • calc_extent: true or false. Whether to calculate the extent. Defaults to false.

Example

Flipped point the order in any feature or geometry, or iterables of either:

julia
import GeoInterface as GI
 import GeometryOps as GO
 geom = GI.Polygon([GI.LinearRing([(1, 2), (3, 4), (5, 6), (1, 2)]),
                    GI.LinearRing([(3, 4), (5, 6), (6, 7), (3, 4)])])
 
 flipped_geom = GO.apply(GI.PointTrait, geom) do p
     (GI.y(p), GI.x(p))
-end

source


# GeometryOps.applyreduceMethod.
julia
applyreduce(f, op, target::Union{TraitTarget, GI.AbstractTrait}, obj; threaded)

Apply function f to all objects with the target trait, and reduce the result with an op like +.

The order and grouping of application of op is not guaranteed.

If threaded==true threads will be used over arrays and iterables, feature collections and nested geometries.

source


# GeometryOps.areaMethod.
julia
area(geom, [T = Float64])::T

Returns the area of a geometry or collection of geometries. This is computed slightly differently for different geometries:

- The area of a point/multipoint is always zero.
+end

source


# GeometryOps.applyreduceMethod.
julia
applyreduce(f, op, target::Union{TraitTarget, GI.AbstractTrait}, obj; threaded)

Apply function f to all objects with the target trait, and reduce the result with an op like +.

The order and grouping of application of op is not guaranteed.

If threaded==true threads will be used over arrays and iterables, feature collections and nested geometries.

source


# GeometryOps.areaMethod.
julia
area(geom, [T = Float64])::T

Returns the area of a geometry or collection of geometries. This is computed slightly differently for different geometries:

- The area of a point/multipoint is always zero.
 - The area of a curve/multicurve is always zero.
 - The area of a polygon is the absolute value of the signed area.
 - The area multi-polygon is the sum of the areas of all of the sub-polygons.
 - The area of a geometry collection, feature collection of array/iterable 
-    is the sum of the areas of all of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.barycentric_coordinates!Method.
julia
barycentric_coordinates!(λs::Vector{<: Real}, method::AbstractBarycentricCoordinateMethod, polygon, point)

Loads the barycentric coordinates of point in polygon into λs using the barycentric coordinate method method.

λs must be of the length of the polygon plus its holes.

Tip

Use this method to avoid excess allocations when you need to calculate barycentric coordinates for many points.

source


# GeometryOps.barycentric_coordinatesMethod.
julia
barycentric_coordinates(method = MeanValue(), polygon, point)

Returns the barycentric coordinates of point in polygon using the barycentric coordinate method method.

source


# GeometryOps.barycentric_interpolateMethod.
julia
barycentric_interpolate(method = MeanValue(), polygon, values::AbstractVector{V}, point)

Returns the interpolated value at point within polygon using the barycentric coordinate method method. values are the per-point values for the polygon which are to be interpolated.

Returns an object of type V.

Warning

Barycentric interpolation is currently defined only for 2-dimensional polygons. If you pass a 3-D polygon in, the Z coordinate will be used as per-vertex value to be interpolated (the M coordinate in GIS parlance).

source


# GeometryOps.centroidMethod.
julia
centroid(geom, [T=Float64])::Tuple{T, T}

Returns the centroid of a given line segment, linear ring, polygon, or mutlipolygon.

source


# GeometryOps.centroid_and_areaMethod.
julia
centroid_and_area(geom, [T=Float64])::(::Tuple{T, T}, ::Real)

Returns the centroid and area of a given geometry.

source


# GeometryOps.centroid_and_lengthMethod.
julia
centroid_and_length(geom, [T=Float64])::(::Tuple{T, T}, ::Real)

Returns the centroid and length of a given line/ring. Note this is only valid for line strings and linear rings.

source


# GeometryOps.containsMethod.
julia
contains(g1::AbstractGeometry, g2::AbstractGeometry)::Bool

Return true if the second geometry is completely contained by the first geometry. The interiors of both geometries must intersect and the interior and boundary of the secondary (g2) must not intersect the exterior of the first (g1).

contains returns the exact opposite result of within.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+    is the sum of the areas of all of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.barycentric_coordinates!Method.
julia
barycentric_coordinates!(λs::Vector{<: Real}, method::AbstractBarycentricCoordinateMethod, polygon, point)

Loads the barycentric coordinates of point in polygon into λs using the barycentric coordinate method method.

λs must be of the length of the polygon plus its holes.

Tip

Use this method to avoid excess allocations when you need to calculate barycentric coordinates for many points.

source


# GeometryOps.barycentric_coordinatesMethod.
julia
barycentric_coordinates(method = MeanValue(), polygon, point)

Returns the barycentric coordinates of point in polygon using the barycentric coordinate method method.

source


# GeometryOps.barycentric_interpolateMethod.
julia
barycentric_interpolate(method = MeanValue(), polygon, values::AbstractVector{V}, point)

Returns the interpolated value at point within polygon using the barycentric coordinate method method. values are the per-point values for the polygon which are to be interpolated.

Returns an object of type V.

Warning

Barycentric interpolation is currently defined only for 2-dimensional polygons. If you pass a 3-D polygon in, the Z coordinate will be used as per-vertex value to be interpolated (the M coordinate in GIS parlance).

source


# GeometryOps.centroidMethod.
julia
centroid(geom, [T=Float64])::Tuple{T, T}

Returns the centroid of a given line segment, linear ring, polygon, or mutlipolygon.

source


# GeometryOps.centroid_and_areaMethod.
julia
centroid_and_area(geom, [T=Float64])::(::Tuple{T, T}, ::Real)

Returns the centroid and area of a given geometry.

source


# GeometryOps.centroid_and_lengthMethod.
julia
centroid_and_length(geom, [T=Float64])::(::Tuple{T, T}, ::Real)

Returns the centroid and length of a given line/ring. Note this is only valid for line strings and linear rings.

source


# GeometryOps.containsMethod.
julia
contains(g1::AbstractGeometry, g2::AbstractGeometry)::Bool

Return true if the second geometry is completely contained by the first geometry. The interiors of both geometries must intersect and the interior and boundary of the secondary (g2) must not intersect the exterior of the first (g1).

contains returns the exact opposite result of within.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 line = GI.LineString([(1, 1), (1, 2), (1, 3), (1, 4)])
 point = GI.Point((1, 2))
 
 GO.contains(line, point)
 # output
-true

source


# GeometryOps.coverageMethod.
julia
coverage(geom, xmin, xmax, ymin, ymax, [T = Float64])::T

Returns the area of intersection between given geometry and grid cell defined by its minimum and maximum x and y-values. This is computed differently for different geometries:

  • The signed area of a point is always zero.

  • The signed area of a curve is always zero.

  • The signed area of a polygon is calculated by tracing along its edges and switching to the cell edges if needed.

  • The coverage of a geometry collection, multi-geometry, feature collection of array/iterable is the sum of the coverages of all of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.coveredbyMethod.
julia
coveredby(g1, g2)::Bool

Return true if the first geometry is completely covered by the second geometry. The interior and boundary of the primary geometry (g1) must not intersect the exterior of the secondary geometry (g2).

Furthermore, coveredby returns the exact opposite result of covers. They are equivalent with the order of the arguments swapped.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+true

source


# GeometryOps.coverageMethod.
julia
coverage(geom, xmin, xmax, ymin, ymax, [T = Float64])::T

Returns the area of intersection between given geometry and grid cell defined by its minimum and maximum x and y-values. This is computed differently for different geometries:

  • The signed area of a point is always zero.

  • The signed area of a curve is always zero.

  • The signed area of a polygon is calculated by tracing along its edges and switching to the cell edges if needed.

  • The coverage of a geometry collection, multi-geometry, feature collection of array/iterable is the sum of the coverages of all of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.coveredbyMethod.
julia
coveredby(g1, g2)::Bool

Return true if the first geometry is completely covered by the second geometry. The interior and boundary of the primary geometry (g1) must not intersect the exterior of the secondary geometry (g2).

Furthermore, coveredby returns the exact opposite result of covers. They are equivalent with the order of the arguments swapped.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 p1 = GI.Point(0.0, 0.0)
 p2 = GI.Point(1.0, 1.0)
 l1 = GI.Line([p1, p2])
 
 GO.coveredby(p1, l1)
 # output
-true

source


# GeometryOps.coversMethod.
julia
covers(g1::AbstractGeometry, g2::AbstractGeometry)::Bool

Return true if the first geometry is completely covers the second geometry, The exterior and boundary of the second geometry must not be outside of the interior and boundary of the first geometry. However, the interiors need not intersect.

covers returns the exact opposite result of coveredby.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+true

source


# GeometryOps.coversMethod.
julia
covers(g1::AbstractGeometry, g2::AbstractGeometry)::Bool

Return true if the first geometry is completely covers the second geometry, The exterior and boundary of the second geometry must not be outside of the interior and boundary of the first geometry. However, the interiors need not intersect.

covers returns the exact opposite result of coveredby.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 l1 = GI.LineString([(1.0, 1.0), (1.0, 2.0), (1.0, 3.0), (1.0, 4.0)])
 l2 = GI.LineString([(1.0, 1.0), (1.0, 2.0)])
 
 GO.covers(l1, l2)
 # output
-true

source


# GeometryOps.crossesMethod.
julia
 crosses(geom1, geom2)::Bool

Return true if the intersection results in a geometry whose dimension is one less than the maximum dimension of the two source geometries and the intersection set is interior to both source geometries.

TODO: broken

Examples

julia
import GeoInterface as GI, GeometryOps as GO
-# TODO: Add working example

source


# GeometryOps.cutMethod.
julia
cut(geom, line, [T::Type])

Return given geom cut by given line as a list of geometries of the same type as the input geom. Return the original geometry as only list element if none are found. Line must cut fully through given geometry or the original geometry will be returned.

Note: This currently doesn't work for degenerate cases there line crosses through vertices.

Example

julia
import GeoInterface as GI, GeometryOps as GO
+true

source


# GeometryOps.crossesMethod.
julia
 crosses(geom1, geom2)::Bool

Return true if the intersection results in a geometry whose dimension is one less than the maximum dimension of the two source geometries and the intersection set is interior to both source geometries.

TODO: broken

Examples

julia
import GeoInterface as GI, GeometryOps as GO
+# TODO: Add working example

source


# GeometryOps.cutMethod.
julia
cut(geom, line, [T::Type])

Return given geom cut by given line as a list of geometries of the same type as the input geom. Return the original geometry as only list element if none are found. Line must cut fully through given geometry or the original geometry will be returned.

Note: This currently doesn't work for degenerate cases there line crosses through vertices.

Example

julia
import GeoInterface as GI, GeometryOps as GO
 
 poly = GI.Polygon([[(0.0, 0.0), (10.0, 0.0), (10.0, 10.0), (0.0, 10.0), (0.0, 0.0)]])
 line = GI.Line([(5.0, -5.0), (5.0, 15.0)])
@@ -189,7 +189,7 @@ import{_ as n,c as e,j as s,a,a6 as i,o as t}from"./chunks/framework.p73Oc50P.js
 # output
 2-element Vector{Vector{Vector{Vector{Float64}}}}:
  [[[0.0, 0.0], [5.0, 0.0], [5.0, 10.0], [0.0, 10.0], [0.0, 0.0]]]
- [[[5.0, 0.0], [10.0, 0.0], [10.0, 10.0], [5.0, 10.0], [5.0, 0.0]]]

source


# GeometryOps.differenceMethod.
julia
difference(geom_a, geom_b, [T::Type]; target::Type, fix_multipoly = UnionIntersectingPolygons())

Return the difference between two geometries as a list of geometries. Return an empty list if none are found. The type of the list will be constrained as much as possible given the input geometries. Furthermore, the user can provide a taget type as a keyword argument and a list of target geometries found in the difference will be returned. The user can also provide a float type that they would like the points of returned geometries to be. If the user is taking a intersection involving one or more multipolygons, and the multipolygon might be comprised of polygons that intersect, if fix_multipoly is set to an IntersectingPolygons correction (the default is UnionIntersectingPolygons()), then the needed multipolygons will be fixed to be valid before performing the intersection to ensure a correct answer. Only set fix_multipoly to false if you know that the multipolygons are valid, as it will avoid unneeded computation.

Example

julia
import GeoInterface as GI, GeometryOps as GO
+ [[[5.0, 0.0], [10.0, 0.0], [10.0, 10.0], [5.0, 10.0], [5.0, 0.0]]]

source


# GeometryOps.differenceMethod.
julia
difference(geom_a, geom_b, [T::Type]; target::Type, fix_multipoly = UnionIntersectingPolygons())

Return the difference between two geometries as a list of geometries. Return an empty list if none are found. The type of the list will be constrained as much as possible given the input geometries. Furthermore, the user can provide a taget type as a keyword argument and a list of target geometries found in the difference will be returned. The user can also provide a float type that they would like the points of returned geometries to be. If the user is taking a intersection involving one or more multipolygons, and the multipolygon might be comprised of polygons that intersect, if fix_multipoly is set to an IntersectingPolygons correction (the default is UnionIntersectingPolygons()), then the needed multipolygons will be fixed to be valid before performing the intersection to ensure a correct answer. Only set fix_multipoly to false if you know that the multipolygons are valid, as it will avoid unneeded computation.

Example

julia
import GeoInterface as GI, GeometryOps as GO
 
 poly1 = GI.Polygon([[[0.0, 0.0], [5.0, 5.0], [10.0, 0.0], [5.0, -5.0], [0.0, 0.0]]])
 poly2 = GI.Polygon([[[3.0, 0.0], [8.0, 5.0], [13.0, 0.0], [8.0, -5.0], [3.0, 0.0]]])
@@ -198,33 +198,33 @@ import{_ as n,c as e,j as s,a,a6 as i,o as t}from"./chunks/framework.p73Oc50P.js
 
 # output
 1-element Vector{Vector{Vector{Vector{Float64}}}}:
- [[[6.5, 3.5], [5.0, 5.0], [0.0, 0.0], [5.0, -5.0], [6.5, -3.5], [3.0, 0.0], [6.5, 3.5]]]

source


# GeometryOps.disjointMethod.
julia
disjoint(geom1, geom2)::Bool

Return true if the first geometry is disjoint from the second geometry.

Return true if the first geometry is disjoint from the second geometry. The interiors and boundaries of both geometries must not intersect.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+ [[[6.5, 3.5], [5.0, 5.0], [0.0, 0.0], [5.0, -5.0], [6.5, -3.5], [3.0, 0.0], [6.5, 3.5]]]

source


# GeometryOps.disjointMethod.
julia
disjoint(geom1, geom2)::Bool

Return true if the first geometry is disjoint from the second geometry.

Return true if the first geometry is disjoint from the second geometry. The interiors and boundaries of both geometries must not intersect.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 
 line = GI.LineString([(1, 1), (1, 2), (1, 3), (1, 4)])
 point = (2, 2)
 GO.disjoint(point, line)
 
 # output
-true

source


# GeometryOps.distanceMethod.
julia
distance(point, geom, ::Type{T} = Float64)::T

Calculates the ditance from the geometry g1 to the point. The distance will always be positive or zero.

The method will differ based on the type of the geometry provided: - The distance from a point to a point is just the Euclidean distance between the points. - The distance from a point to a line is the minimum distance from the point to the closest point on the given line. - The distance from a point to a linestring is the minimum distance from the point to the closest segment of the linestring. - The distance from a point to a linear ring is the minimum distance from the point to the closest segment of the linear ring. - The distance from a point to a polygon is zero if the point is within the polygon and otherwise is the minimum distance from the point to an edge of the polygon. This includes edges created by holes. - The distance from a point to a multigeometry or a geometry collection is the minimum distance between the point and any of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.embed_extentMethod.
julia
embed_extent(obj)

Recursively wrap the object with a GeoInterface.jl geometry, calculating and adding an Extents.Extent to all objects.

This can improve performance when extents need to be checked multiple times, such when needing to check if many points are in geometries, and using their extents as a quick filter for obviously exterior points.

Keywords

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

source


# GeometryOps.enforceMethod.
julia
enforce(alg::GO.GEOS, kw::Symbol, f)

Enforce the presence of a keyword argument in a GEOS algorithm, and return alg.params[kw].

Throws an error if the key is not present, and mentions f in the error message (since there isn't a good way to get the name of the function that called this method).

source


# GeometryOps.equalsMethod.
julia
equals(trait_a, geom_a, trait_b, geom_b)

Two geometries which are not of the same type cannot be equal so they always return false.

source


# GeometryOps.equalsMethod.
julia
equals(geom1, geom2)::Bool

Compare two Geometries return true if they are the same geometry.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+true

source


# GeometryOps.distanceMethod.
julia
distance(point, geom, ::Type{T} = Float64)::T

Calculates the ditance from the geometry g1 to the point. The distance will always be positive or zero.

The method will differ based on the type of the geometry provided: - The distance from a point to a point is just the Euclidean distance between the points. - The distance from a point to a line is the minimum distance from the point to the closest point on the given line. - The distance from a point to a linestring is the minimum distance from the point to the closest segment of the linestring. - The distance from a point to a linear ring is the minimum distance from the point to the closest segment of the linear ring. - The distance from a point to a polygon is zero if the point is within the polygon and otherwise is the minimum distance from the point to an edge of the polygon. This includes edges created by holes. - The distance from a point to a multigeometry or a geometry collection is the minimum distance between the point and any of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.embed_extentMethod.
julia
embed_extent(obj)

Recursively wrap the object with a GeoInterface.jl geometry, calculating and adding an Extents.Extent to all objects.

This can improve performance when extents need to be checked multiple times, such when needing to check if many points are in geometries, and using their extents as a quick filter for obviously exterior points.

Keywords

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

source


# GeometryOps.enforceMethod.
julia
enforce(alg::GO.GEOS, kw::Symbol, f)

Enforce the presence of a keyword argument in a GEOS algorithm, and return alg.params[kw].

Throws an error if the key is not present, and mentions f in the error message (since there isn't a good way to get the name of the function that called this method).

source


# GeometryOps.equalsMethod.
julia
equals(trait_a, geom_a, trait_b, geom_b)

Two geometries which are not of the same type cannot be equal so they always return false.

source


# GeometryOps.equalsMethod.
julia
equals(geom1, geom2)::Bool

Compare two Geometries return true if they are the same geometry.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 poly1 = GI.Polygon([[(0,0), (0,5), (5,5), (5,0), (0,0)]])
 poly2 = GI.Polygon([[(0,0), (0,5), (5,5), (5,0), (0,0)]])
 
 GO.equals(poly1, poly2)
 # output
-true

source


# GeometryOps.equalsMethod.
julia
equals(
+true

source


# GeometryOps.equalsMethod.
julia
equals(
     ::GI.LinearRingTrait, l1,
     ::GI.LinearRingTrait, l2,
-)::Bool

Two linear rings are equal if they share the same set of points going along the curve. Note that rings are closed by definition, so they can have, but don't need, a repeated last point to be equal.

source


# GeometryOps.equalsMethod.
julia
equals(
+)::Bool

Two linear rings are equal if they share the same set of points going along the curve. Note that rings are closed by definition, so they can have, but don't need, a repeated last point to be equal.

source


# GeometryOps.equalsMethod.
julia
equals(
     ::GI.LinearRingTrait, l1,
     ::Union{GI.LineTrait, GI.LineStringTrait}, l2,
-)::Bool

A linear ring and a line/linestring are equal if they share the same set of points going along the curve. Note that lines aren't closed by defintion, but rings are, so the line must have a repeated last point to be equal

source


# GeometryOps.equalsMethod.
julia
equals(::GI.MultiPointTrait, mp1, ::GI.MultiPointTrait, mp2)::Bool

Two multipoints are equal if they share the same set of points.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.MultiPointTrait, mp1, ::GI.PointTrait, p2)::Bool

A point and a multipoint are equal if the multipoint is composed of a single point that is equivalent to the given point.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.PolygonTrait, geom_a, ::GI.PolygonTrait, geom_b)::Bool

Two multipolygons are equal if they share the same set of polygons.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.MultiPolygonTrait, geom_a, ::GI.PolygonTrait, geom_b)::Bool

A polygon and a multipolygon are equal if the multipolygon is composed of a single polygon that is equivalent to the given polygon.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.PointTrait, p1, ::GI.MultiPointTrait, mp2)::Bool

A point and a multipoint are equal if the multipoint is composed of a single point that is equivalent to the given point.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.PointTrait, p1, ::GI.PointTrait, p2)::Bool

Two points are the same if they have the same x and y (and z if 3D) coordinates.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.PolygonTrait, geom_a, ::GI.MultiPolygonTrait, geom_b)::Bool

A polygon and a multipolygon are equal if the multipolygon is composed of a single polygon that is equivalent to the given polygon.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.PolygonTrait, geom_a, ::GI.PolygonTrait, geom_b)::Bool

Two polygons are equal if they share the same exterior edge and holes.

source


# GeometryOps.equalsMethod.
julia
equals(
+)::Bool

A linear ring and a line/linestring are equal if they share the same set of points going along the curve. Note that lines aren't closed by defintion, but rings are, so the line must have a repeated last point to be equal

source


# GeometryOps.equalsMethod.
julia
equals(::GI.MultiPointTrait, mp1, ::GI.MultiPointTrait, mp2)::Bool

Two multipoints are equal if they share the same set of points.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.MultiPointTrait, mp1, ::GI.PointTrait, p2)::Bool

A point and a multipoint are equal if the multipoint is composed of a single point that is equivalent to the given point.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.PolygonTrait, geom_a, ::GI.PolygonTrait, geom_b)::Bool

Two multipolygons are equal if they share the same set of polygons.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.MultiPolygonTrait, geom_a, ::GI.PolygonTrait, geom_b)::Bool

A polygon and a multipolygon are equal if the multipolygon is composed of a single polygon that is equivalent to the given polygon.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.PointTrait, p1, ::GI.MultiPointTrait, mp2)::Bool

A point and a multipoint are equal if the multipoint is composed of a single point that is equivalent to the given point.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.PointTrait, p1, ::GI.PointTrait, p2)::Bool

Two points are the same if they have the same x and y (and z if 3D) coordinates.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.PolygonTrait, geom_a, ::GI.MultiPolygonTrait, geom_b)::Bool

A polygon and a multipolygon are equal if the multipolygon is composed of a single polygon that is equivalent to the given polygon.

source


# GeometryOps.equalsMethod.
julia
equals(::GI.PolygonTrait, geom_a, ::GI.PolygonTrait, geom_b)::Bool

Two polygons are equal if they share the same exterior edge and holes.

source


# GeometryOps.equalsMethod.
julia
equals(
     ::Union{GI.LineTrait, GI.LineStringTrait}, l1,
     ::GI.LinearRingTrait, l2,
-)::Bool

A line/linestring and a linear ring are equal if they share the same set of points going along the curve. Note that lines aren't closed by defintion, but rings are, so the line must have a repeated last point to be equal

source


# GeometryOps.equalsMethod.
julia
equals(
+)::Bool

A line/linestring and a linear ring are equal if they share the same set of points going along the curve. Note that lines aren't closed by defintion, but rings are, so the line must have a repeated last point to be equal

source


# GeometryOps.equalsMethod.
julia
equals(
     ::Union{GI.LineTrait, GI.LineStringTrait}, l1,
     ::Union{GI.LineTrait, GI.LineStringTrait}, l2,
-)::Bool

Two lines/linestrings are equal if they share the same set of points going along the curve. Note that lines/linestrings aren't closed by defintion.

source


# GeometryOps.equalsMethod.
julia
equals(::T, geom_a, ::T, geom_b)::Bool

Two geometries of the same type, which don't have a equals function to dispatch off of should throw an error.

source


# GeometryOps.flattenMethod.
julia
flatten(target::Type{<:GI.AbstractTrait}, obj)
-flatten(f, target::Type{<:GI.AbstractTrait}, obj)

Lazily flatten any AbstractArray, iterator, FeatureCollectionTrait, FeatureTrait or AbstractGeometryTrait object obj, so that objects with the target trait are returned by the iterator.

If f is passed in it will be applied to the target geometries.

source


# GeometryOps.flipMethod.
julia
flip(obj)

Swap all of the x and y coordinates in obj, otherwise keeping the original structure (but not necessarily the original type).

Keywords

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

  • calc_extent: true or false. Whether to calculate the extent. Defaults to false.

source


# GeometryOps.intersectionMethod.
julia
intersection(geom_a, geom_b, [T::Type]; target::Type, fix_multipoly = UnionIntersectingPolygons())

Return the intersection between two geometries as a list of geometries. Return an empty list if none are found. The type of the list will be constrained as much as possible given the input geometries. Furthermore, the user can provide a target type as a keyword argument and a list of target geometries found in the intersection will be returned. The user can also provide a float type that they would like the points of returned geometries to be. If the user is taking a intersection involving one or more multipolygons, and the multipolygon might be comprised of polygons that intersect, if fix_multipoly is set to an IntersectingPolygons correction (the default is UnionIntersectingPolygons()), then the needed multipolygons will be fixed to be valid before performing the intersection to ensure a correct answer. Only set fix_multipoly to nothing if you know that the multipolygons are valid, as it will avoid unneeded computation.

Example

julia
import GeoInterface as GI, GeometryOps as GO
+)::Bool

Two lines/linestrings are equal if they share the same set of points going along the curve. Note that lines/linestrings aren't closed by defintion.

source


# GeometryOps.equalsMethod.
julia
equals(::T, geom_a, ::T, geom_b)::Bool

Two geometries of the same type, which don't have a equals function to dispatch off of should throw an error.

source


# GeometryOps.flattenMethod.
julia
flatten(target::Type{<:GI.AbstractTrait}, obj)
+flatten(f, target::Type{<:GI.AbstractTrait}, obj)

Lazily flatten any AbstractArray, iterator, FeatureCollectionTrait, FeatureTrait or AbstractGeometryTrait object obj, so that objects with the target trait are returned by the iterator.

If f is passed in it will be applied to the target geometries.

source


# GeometryOps.flipMethod.
julia
flip(obj)

Swap all of the x and y coordinates in obj, otherwise keeping the original structure (but not necessarily the original type).

Keywords

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

  • calc_extent: true or false. Whether to calculate the extent. Defaults to false.

source


# GeometryOps.intersectionMethod.
julia
intersection(geom_a, geom_b, [T::Type]; target::Type, fix_multipoly = UnionIntersectingPolygons())

Return the intersection between two geometries as a list of geometries. Return an empty list if none are found. The type of the list will be constrained as much as possible given the input geometries. Furthermore, the user can provide a target type as a keyword argument and a list of target geometries found in the intersection will be returned. The user can also provide a float type that they would like the points of returned geometries to be. If the user is taking a intersection involving one or more multipolygons, and the multipolygon might be comprised of polygons that intersect, if fix_multipoly is set to an IntersectingPolygons correction (the default is UnionIntersectingPolygons()), then the needed multipolygons will be fixed to be valid before performing the intersection to ensure a correct answer. Only set fix_multipoly to nothing if you know that the multipolygons are valid, as it will avoid unneeded computation.

Example

julia
import GeoInterface as GI, GeometryOps as GO
 
 line1 = GI.Line([(124.584961,-12.768946), (126.738281,-17.224758)])
 line2 = GI.Line([(123.354492,-15.961329), (127.22168,-14.008696)])
@@ -233,70 +233,83 @@ import{_ as n,c as e,j as s,a,a6 as i,o as t}from"./chunks/framework.p73Oc50P.js
 
 # output
 1-element Vector{Vector{Float64}}:
- [125.58375366067548, -14.83572303404496]

source


# GeometryOps.intersection_pointsMethod.
julia
intersection_points(
-    geom_a,
-    geom_b,
-)::Union{
-    ::Vector{::Tuple{::Real, ::Real}},
-    ::Nothing,
-}

Return a list of intersection points between two geometries of type GI.Point. If no intersection point was possible given geometry extents, returns an empty list.

source


# GeometryOps.intersectsMethod.
julia
intersects(geom1, geom2)::Bool

Return true if the interiors or boundaries of the two geometries interact.

intersects returns the exact opposite result of disjoint.

Example

julia
import GeoInterface as GI, GeometryOps as GO
+ [125.58375366067548, -14.83572303404496]

source


# GeometryOps.intersection_pointsMethod.
julia
intersection_points(geom_a, geom_b, [T::Type])

Return a list of intersection tuple points between two geometries. If no intersection points exist, returns an empty list.

Example

jldoctest

+line1 = GI.Line([(124.584961,-12.768946), (126.738281,-17.224758)]) line2 = GI.Line([(123.354492,-15.961329), (127.22168,-14.008696)]) inter_points = GO.intersection_points(line1, line2)
+
+**output**
+
+1-element Vector{Tuple{Float64, Float64}}:  (125.58375366067548, -14.83572303404496)
+
+
+[source](https://github.com/JuliaGeo/GeometryOps.jl/blob/v0.1.10/src/methods/clipping/intersection.jl#L177-L195)
+
+</div>
+<br>
+<div style='border-width:1px; border-style:solid; border-color:black; padding: 1em; border-radius: 25px;'>
+<a id='GeometryOps.intersects-Tuple{Any, Any}' href='#GeometryOps.intersects-Tuple{Any, Any}'>#</a>&nbsp;<b><u>GeometryOps.intersects</u></b> &mdash; <i>Method</i>.
+
+
+
+
+\`\`\`julia
+intersects(geom1, geom2)::Bool

Return true if the interiors or boundaries of the two geometries interact.

intersects returns the exact opposite result of disjoint.

Example

julia
import GeoInterface as GI, GeometryOps as GO
 
 line1 = GI.Line([(124.584961,-12.768946), (126.738281,-17.224758)])
 line2 = GI.Line([(123.354492,-15.961329), (127.22168,-14.008696)])
 GO.intersects(line1, line2)
 
 # output
-true

source


`,176),p={style:{"border-width":"1px","border-style":"solid","border-color":"black",padding:"1em","border-radius":"25px"}},r=s("a",{id:"GeometryOps.isclockwise-Tuple{Any}",href:"#GeometryOps.isclockwise-Tuple{Any}"},"#",-1),k=s("b",null,[s("u",null,"GeometryOps.isclockwise")],-1),o=s("i",null,"Method",-1),d=i('
julia
isclockwise(line::Union{LineString, Vector{Position}})::Bool

Take a ring and return true if the line goes clockwise, or false if the line goes counter-clockwise. "Going clockwise" means, mathematically,

',2),g={class:"MathJax",jax:"SVG",display:"true",style:{direction:"ltr",display:"block","text-align":"center",margin:"1em 0",position:"relative"}},y={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-2.827ex"},xmlns:"http://www.w3.org/2000/svg",width:"33.539ex",height:"6.785ex",role:"img",focusable:"false",viewBox:"0 -1749.5 14824.1 2999","aria-hidden":"true"},E=i('',1),c=[E],u=s("mjx-assistive-mml",{unselectable:"on",display:"block",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",overflow:"hidden",width:"100%"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML",display:"block"},[s("mrow",{"data-mjx-texclass":"INNER"},[s("mo",{"data-mjx-texclass":"OPEN"},"("),s("munderover",null,[s("mo",{"data-mjx-texclass":"OP"},"∑"),s("mrow",{"data-mjx-texclass":"ORD"},[s("mi",null,"i"),s("mo",null,"="),s("mn",null,"2")]),s("mi",null,"n")]),s("mo",{stretchy:"false"},"("),s("msub",null,[s("mi",null,"x"),s("mi",null,"i")]),s("mo",null,"−"),s("msub",null,[s("mi",null,"x"),s("mrow",{"data-mjx-texclass":"ORD"},[s("mi",null,"i"),s("mo",null,"−"),s("mn",null,"1")])]),s("mo",{stretchy:"false"},")"),s("mo",null,"⋅"),s("mo",{stretchy:"false"},"("),s("msub",null,[s("mi",null,"y"),s("mi",null,"i")]),s("mo",null,"+"),s("msub",null,[s("mi",null,"y"),s("mrow",{"data-mjx-texclass":"ORD"},[s("mi",null,"i"),s("mo",null,"−"),s("mn",null,"1")])]),s("mo",{stretchy:"false"},")"),s("mo",{"data-mjx-texclass":"CLOSE"},")")]),s("mo",null,">"),s("mn",null,"0")])],-1),m=i(`

Example

julia
julia> import GeoInterface as GI, GeometryOps as GO
+true

source


`,174),p={style:{"border-width":"1px","border-style":"solid","border-color":"black",padding:"1em","border-radius":"25px"}},r=s("a",{id:"GeometryOps.isclockwise-Tuple{Any}",href:"#GeometryOps.isclockwise-Tuple{Any}"},"#",-1),k=s("b",null,[s("u",null,"GeometryOps.isclockwise")],-1),o=s("i",null,"Method",-1),d=i('
julia
isclockwise(line::Union{LineString, Vector{Position}})::Bool

Take a ring and return true if the line goes clockwise, or false if the line goes counter-clockwise. "Going clockwise" means, mathematically,

',2),g={class:"MathJax",jax:"SVG",display:"true",style:{direction:"ltr",display:"block","text-align":"center",margin:"1em 0",position:"relative"}},y={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-2.827ex"},xmlns:"http://www.w3.org/2000/svg",width:"33.539ex",height:"6.785ex",role:"img",focusable:"false",viewBox:"0 -1749.5 14824.1 2999","aria-hidden":"true"},E=i('',1),c=[E],u=s("mjx-assistive-mml",{unselectable:"on",display:"block",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",overflow:"hidden",width:"100%"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML",display:"block"},[s("mrow",{"data-mjx-texclass":"INNER"},[s("mo",{"data-mjx-texclass":"OPEN"},"("),s("munderover",null,[s("mo",{"data-mjx-texclass":"OP"},"∑"),s("mrow",{"data-mjx-texclass":"ORD"},[s("mi",null,"i"),s("mo",null,"="),s("mn",null,"2")]),s("mi",null,"n")]),s("mo",{stretchy:"false"},"("),s("msub",null,[s("mi",null,"x"),s("mi",null,"i")]),s("mo",null,"−"),s("msub",null,[s("mi",null,"x"),s("mrow",{"data-mjx-texclass":"ORD"},[s("mi",null,"i"),s("mo",null,"−"),s("mn",null,"1")])]),s("mo",{stretchy:"false"},")"),s("mo",null,"⋅"),s("mo",{stretchy:"false"},"("),s("msub",null,[s("mi",null,"y"),s("mi",null,"i")]),s("mo",null,"+"),s("msub",null,[s("mi",null,"y"),s("mrow",{"data-mjx-texclass":"ORD"},[s("mi",null,"i"),s("mo",null,"−"),s("mn",null,"1")])]),s("mo",{stretchy:"false"},")"),s("mo",{"data-mjx-texclass":"CLOSE"},")")]),s("mo",null,">"),s("mn",null,"0")])],-1),m=i(`

Example

julia
julia> import GeoInterface as GI, GeometryOps as GO
 julia> ring = GI.LinearRing([(0, 0), (1, 1), (1, 0), (0, 0)]);
 julia> GO.isclockwise(ring)
 # output
-true

source

`,3),F=i(`
# GeometryOps.isconcaveMethod.
julia
isconcave(poly::Polygon)::Bool

Take a polygon and return true or false as to whether it is concave or not.

Examples

julia
import GeoInterface as GI, GeometryOps as GO
+true

source

`,3),F=i(`
# GeometryOps.isconcaveMethod.
julia
isconcave(poly::Polygon)::Bool

Take a polygon and return true or false as to whether it is concave or not.

Examples

julia
import GeoInterface as GI, GeometryOps as GO
 
 poly = GI.Polygon([[(0, 0), (0, 1), (1, 1), (1, 0), (0, 0)]])
 GO.isconcave(poly)
 
 # output
-false

source


# GeometryOps.overlapsMethod.
julia
overlaps(geom1, geom2)::Bool

Compare two Geometries of the same dimension and return true if their intersection set results in a geometry different from both but of the same dimension. This means one geometry cannot be within or contain the other and they cannot be equal

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+false

source


# GeometryOps.overlapsMethod.
julia
overlaps(geom1, geom2)::Bool

Compare two Geometries of the same dimension and return true if their intersection set results in a geometry different from both but of the same dimension. This means one geometry cannot be within or contain the other and they cannot be equal

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 poly1 = GI.Polygon([[(0,0), (0,5), (5,5), (5,0), (0,0)]])
 poly2 = GI.Polygon([[(1,1), (1,6), (6,6), (6,1), (1,1)]])
 
 GO.overlaps(poly1, poly2)
 # output
-true

source


# GeometryOps.overlapsMethod.
julia
overlaps(::GI.AbstractTrait, geom1, ::GI.AbstractTrait, geom2)::Bool

For any non-specified pair, all have non-matching dimensions, return false.

source


# GeometryOps.overlapsMethod.
julia
overlaps(::GI.LineTrait, line1, ::GI.LineTrait, line)::Bool

If the lines overlap, meaning that they are colinear but each have one endpoint outside of the other line, return true. Else false.

source


# GeometryOps.overlapsMethod.
julia
overlaps(
+true

source


# GeometryOps.overlapsMethod.
julia
overlaps(::GI.AbstractTrait, geom1, ::GI.AbstractTrait, geom2)::Bool

For any non-specified pair, all have non-matching dimensions, return false.

source


# GeometryOps.overlapsMethod.
julia
overlaps(::GI.LineTrait, line1, ::GI.LineTrait, line)::Bool

If the lines overlap, meaning that they are colinear but each have one endpoint outside of the other line, return true. Else false.

source


# GeometryOps.overlapsMethod.
julia
overlaps(
     ::GI.MultiPointTrait, points1,
     ::GI.MultiPointTrait, points2,
-)::Bool

If the multipoints overlap, meaning some, but not all, of the points within the multipoints are shared, return true.

source


# GeometryOps.overlapsMethod.
julia
overlaps(
+)::Bool

If the multipoints overlap, meaning some, but not all, of the points within the multipoints are shared, return true.

source


# GeometryOps.overlapsMethod.
julia
overlaps(
     ::GI.MultiPolygonTrait, polys1,
     ::GI.MultiPolygonTrait, polys2,
-)::Bool

Return true if at least one pair of polygons from multipolygons overlap. Else false.

source


# GeometryOps.overlapsMethod.
julia
overlaps(
+)::Bool

Return true if at least one pair of polygons from multipolygons overlap. Else false.

source


# GeometryOps.overlapsMethod.
julia
overlaps(
     ::GI.MultiPolygonTrait, polys1,
     ::GI.PolygonTrait, poly2,
-)::Bool

Return true if polygon overlaps with at least one of the polygons within the multipolygon. Else false.

source


# GeometryOps.overlapsMethod.
julia
overlaps(
+)::Bool

Return true if polygon overlaps with at least one of the polygons within the multipolygon. Else false.

source


# GeometryOps.overlapsMethod.
julia
overlaps(
     ::GI.PolygonTrait, poly1,
     ::GI.MultiPolygonTrait, polys2,
-)::Bool

Return true if polygon overlaps with at least one of the polygons within the multipolygon. Else false.

source


# GeometryOps.overlapsMethod.
julia
overlaps(
+)::Bool

Return true if polygon overlaps with at least one of the polygons within the multipolygon. Else false.

source


# GeometryOps.overlapsMethod.
julia
overlaps(
     trait_a::GI.PolygonTrait, poly_a,
     trait_b::GI.PolygonTrait, poly_b,
-)::Bool

If the two polygons intersect with one another, but are not equal, return true. Else false.

source


# GeometryOps.overlapsMethod.
julia
overlaps(
+)::Bool

If the two polygons intersect with one another, but are not equal, return true. Else false.

source


# GeometryOps.overlapsMethod.
julia
overlaps(
     ::Union{GI.LineStringTrait, GI.LinearRing}, line1,
     ::Union{GI.LineStringTrait, GI.LinearRing}, line2,
-)::Bool

If the curves overlap, meaning that at least one edge of each curve overlaps, return true. Else false.

source


# GeometryOps.polygon_to_lineMethod.
julia
polygon_to_line(poly::Polygon)

Converts a Polygon to LineString or MultiLineString

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+)::Bool

If the curves overlap, meaning that at least one edge of each curve overlaps, return true. Else false.

source


# GeometryOps.polygon_to_lineMethod.
julia
polygon_to_line(poly::Polygon)

Converts a Polygon to LineString or MultiLineString

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 
 poly = GI.Polygon([[(-2.275543, 53.464547), (-2.275543, 53.489271), (-2.215118, 53.489271), (-2.215118, 53.464547), (-2.275543, 53.464547)]])
 GO.polygon_to_line(poly)
 # output
-GeoInterface.Wrappers.LineString{false, false, Vector{Tuple{Float64, Float64}}, Nothing, Nothing}([(-2.275543, 53.464547), (-2.275543, 53.489271), (-2.215118, 53.489271), (-2.215118, 53.464547), (-2.275543, 53.464547)], nothing, nothing)

source


# GeometryOps.polygonizeMethod.
julia
polygonize(A::AbstractMatrix{Bool}; kw...)
+GeoInterface.Wrappers.LineString{false, false, Vector{Tuple{Float64, Float64}}, Nothing, Nothing}([(-2.275543, 53.464547), (-2.275543, 53.489271), (-2.215118, 53.489271), (-2.215118, 53.464547), (-2.275543, 53.464547)], nothing, nothing)

source


# GeometryOps.polygonizeMethod.
julia
polygonize(A::AbstractMatrix{Bool}; kw...)
 polygonize(f, A::AbstractMatrix; kw...)
 polygonize(xs, ys, A::AbstractMatrix{Bool}; kw...)
 polygonize(f, xs, ys, A::AbstractMatrix; kw...)

Polygonize an AbstractMatrix of values, currently to a single class of polygons.

Returns a MultiPolygon for Bool values and f return values, and a FeatureCollection of Features holding MultiPolygon for all other values.

Function f should return either true or false or a transformation of values into simpler groups, especially useful for floating point arrays.

If xs and ys are ranges, they are used as the pixel/cell center points. If they are Vector of Tuple they are used as the lower and upper bounds of each pixel/cell.

Keywords

  • minpoints: ignore polygons with less than minpoints points.

  • values: the values to turn into polygons. By default these are union(A), If function f is passed these refer to the return values of f, by default union(map(f, A). If values Bool, false is ignored and a single MultiPolygon is returned rather than a FeatureCollection.

Example

julia
using GeometryOps
 A = rand(100, 100)
-multipolygon = polygonize(>(0.5), A);

source


# GeometryOps.rebuildMethod.
julia
rebuild(geom, child_geoms)

Rebuild a geometry from child geometries.

By default geometries will be rebuilt as a GeoInterface.Wrappers geometry, but rebuild can have methods added to it to dispatch on geometries from other packages and specify how to rebuild them.

(Maybe it should go into GeoInterface.jl)

source


# GeometryOps.reconstructMethod.
julia
reconstruct(geom, components)

Reconstruct geom from an iterable of component objects that match its structure.

All objects in components must have the same GeoInterface.trait.

Ususally used in combination with flatten.

source


# GeometryOps.segmentizeMethod.
julia
segmentize([method = LinearSegments()], geom; max_distance::Real, threaded)

Segmentize a geometry by adding extra vertices to the geometry so that no segment is longer than a given distance. This is useful for plotting geometries with a limited number of vertices, or for ensuring that a geometry is not too "coarse" for a given application.

Arguments

  • method::SegmentizeMethod = LinearSegments(): The method to use for segmentizing the geometry. At the moment, only LinearSegments and GeodesicSegments are available.

  • geom: The geometry to segmentize. Must be a LineString, LinearRing, or greater in complexity.

  • max_distance::Real: The maximum distance, in the input space, between vertices in the geometry. Only used if you don't explicitly pass a method.

Returns a geometry of similar type to the input geometry, but resampled.

source


# GeometryOps.signed_areaMethod.
julia
signed_area(geom, [T = Float64])::T

Returns the signed area of a single geometry, based on winding order. This is computed slighly differently for different geometries:

- The signed area of a point is always zero.
+multipolygon = polygonize(>(0.5), A);

source


# GeometryOps.rebuildMethod.
julia
rebuild(geom, child_geoms)

Rebuild a geometry from child geometries.

By default geometries will be rebuilt as a GeoInterface.Wrappers geometry, but rebuild can have methods added to it to dispatch on geometries from other packages and specify how to rebuild them.

(Maybe it should go into GeoInterface.jl)

source


# GeometryOps.reconstructMethod.
julia
reconstruct(geom, components)

Reconstruct geom from an iterable of component objects that match its structure.

All objects in components must have the same GeoInterface.trait.

Ususally used in combination with flatten.

source


# GeometryOps.segmentizeMethod.
julia
segmentize([method = LinearSegments()], geom; max_distance::Real, threaded)

Segmentize a geometry by adding extra vertices to the geometry so that no segment is longer than a given distance. This is useful for plotting geometries with a limited number of vertices, or for ensuring that a geometry is not too "coarse" for a given application.

Arguments

  • method::SegmentizeMethod = LinearSegments(): The method to use for segmentizing the geometry. At the moment, only LinearSegments and GeodesicSegments are available.

  • geom: The geometry to segmentize. Must be a LineString, LinearRing, or greater in complexity.

  • max_distance::Real: The maximum distance, in the input space, between vertices in the geometry. Only used if you don't explicitly pass a method.

Returns a geometry of similar type to the input geometry, but resampled.

source


# GeometryOps.signed_areaMethod.
julia
signed_area(geom, [T = Float64])::T

Returns the signed area of a single geometry, based on winding order. This is computed slighly differently for different geometries:

- The signed area of a point is always zero.
 - The signed area of a curve is always zero.
 - The signed area of a polygon is computed with the shoelace formula and is
 positive if the polygon coordinates wind clockwise and negative if
 counterclockwise.
 - You cannot compute the signed area of a multipolygon as it doesn't have a
-meaning as each sub-polygon could have a different winding order.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.signed_distanceMethod.
julia
signed_distance(point, geom, ::Type{T} = Float64)::T

Calculates the signed distance from the geometry geom to the given point. Points within geom have a negative signed distance, and points outside of geom have a positive signed distance. - The signed distance from a point to a point, line, linestring, or linear ring is equal to the distance between the two. - The signed distance from a point to a polygon is negative if the point is within the polygon and is positive otherwise. The value of the distance is the minimum distance from the point to an edge of the polygon. This includes edges created by holes. - The signed distance from a point to a multigeometry or a geometry collection is the minimum signed distance between the point and any of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.simplifyMethod.
julia
simplify(obj; kw...)
+meaning as each sub-polygon could have a different winding order.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.signed_distanceMethod.
julia
signed_distance(point, geom, ::Type{T} = Float64)::T

Calculates the signed distance from the geometry geom to the given point. Points within geom have a negative signed distance, and points outside of geom have a positive signed distance. - The signed distance from a point to a point, line, linestring, or linear ring is equal to the distance between the two. - The signed distance from a point to a polygon is negative if the point is within the polygon and is positive otherwise. The value of the distance is the minimum distance from the point to an edge of the polygon. This includes edges created by holes. - The signed distance from a point to a multigeometry or a geometry collection is the minimum signed distance between the point and any of the sub-geometries.

Result will be of type T, where T is an optional argument with a default value of Float64.

source


# GeometryOps.simplifyMethod.
julia
simplify(obj; kw...)
 simplify(::SimplifyAlg, obj; kw...)

Simplify a geometry, feature, feature collection, or nested vectors or a table of these.

RadialDistance, DouglasPeucker, or VisvalingamWhyatt algorithms are available, listed in order of increasing quality but decreaseing performance.

PoinTrait and MultiPointTrait are returned unchanged.

The default behaviour is simplify(DouglasPeucker(; kw...), obj). Pass in other SimplifyAlg to use other algorithms.

Keywords

  • prefilter_alg: SimplifyAlg algorithm used to pre-filter object before using primary filtering algorithm.

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

  • calc_extent: true or false. Whether to calculate the extent. Defaults to false.

Keywords for DouglasPeucker are allowed when no algorithm is specified:

Keywords

  • ratio: the fraction of points that should remain after simplify. Useful as it will generalise for large collections of objects.

  • number: the number of points that should remain after simplify. Less useful for large collections of mixed size objects.

  • tol: the minimum distance a point will be from the line joining its neighboring points.

Example

Simplify a polygon to have six points:

julia
import GeoInterface as GI
 import GeometryOps as GO
 
@@ -326,9 +339,9 @@ import{_ as n,c as e,j as s,a,a6 as i,o as t}from"./chunks/framework.p73Oc50P.js
 GI.npoint(simple)
 
 # output
-6

source


`,37),b={style:{"border-width":"1px","border-style":"solid","border-color":"black",padding:"1em","border-radius":"25px"}},C=s("a",{id:"GeometryOps.t_value-Union{Tuple{T2}, Tuple{T1}, Tuple{N}, Tuple{Union{Tuple{Vararg{T1, N}}, StaticArraysCore.StaticArray{Tuple{N}, T1, 1}}, Union{Tuple{Vararg{T1, N}}, StaticArraysCore.StaticArray{Tuple{N}, T1, 1}}, T2, T2}} where {N, T1<:Real, T2<:Real}",href:"#GeometryOps.t_value-Union{Tuple{T2}, Tuple{T1}, Tuple{N}, Tuple{Union{Tuple{Vararg{T1, N}}, StaticArraysCore.StaticArray{Tuple{N}, T1, 1}}, Union{Tuple{Vararg{T1, N}}, StaticArraysCore.StaticArray{Tuple{N}, T1, 1}}, T2, T2}} where {N, T1<:Real, T2<:Real}"},"#",-1),T=s("b",null,[s("u",null,"GeometryOps.t_value")],-1),f=s("i",null,"Method",-1),v=i('
julia
t_value(sᵢ, sᵢ₊₁, rᵢ, rᵢ₊₁)

Returns the "T-value" as described in Hormann's presentation [1] on how to calculate the mean-value coordinate.

Here, sᵢ is the vector from vertex vᵢ to the point, and rᵢ is the norm (length) of sᵢ. s must be Point and r must be real numbers.

',3),A={class:"MathJax",jax:"SVG",display:"true",style:{direction:"ltr",display:"block","text-align":"center",margin:"1em 0",position:"relative"}},G={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-2.059ex"},xmlns:"http://www.w3.org/2000/svg",width:"27.746ex",height:"5.362ex",role:"img",focusable:"false",viewBox:"0 -1460 12263.9 2370","aria-hidden":"true"},B=i('',1),O=[B],D=s("mjx-assistive-mml",{unselectable:"on",display:"block",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",overflow:"hidden",width:"100%"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML",display:"block"},[s("mi",null,"t"),s("mi",null,"ᵢ"),s("mo",null,"="),s("mfrac",null,[s("mrow",null,[s("mrow",{"data-mjx-texclass":"ORD"},[s("mi",{"data-mjx-auto-op":"false"},"det")]),s("mrow",{"data-mjx-texclass":"INNER"},[s("mo",{"data-mjx-texclass":"OPEN"},"("),s("mi",null,"s"),s("mi",null,"ᵢ"),s("mo",null,","),s("mi",null,"s"),s("mi",null,"ᵢ"),s("mrow",{"data-mjx-texclass":"ORD"},[s("mo",{"data-mjx-pseudoscript":"true"},"₊")]),s("mrow",{"data-mjx-texclass":"ORD"},[s("mo",{"data-mjx-pseudoscript":"true"},"₁")]),s("mo",{"data-mjx-texclass":"CLOSE"},")")])]),s("mrow",null,[s("mi",null,"r"),s("mi",null,"ᵢ"),s("mo",null,"∗"),s("mi",null,"r"),s("mi",null,"ᵢ"),s("mrow",{"data-mjx-texclass":"ORD"},[s("mo",{"data-mjx-pseudoscript":"true"},"₊")]),s("mrow",{"data-mjx-texclass":"ORD"},[s("mo",{"data-mjx-pseudoscript":"true"},"₁")]),s("mo",null,"+"),s("mi",null,"s"),s("mi",null,"ᵢ"),s("mo",null,"⋅"),s("mi",null,"s"),s("mi",null,"ᵢ"),s("mrow",{"data-mjx-texclass":"ORD"},[s("mo",{"data-mjx-pseudoscript":"true"},"₊")]),s("mrow",{"data-mjx-texclass":"ORD"},[s("mo",{"data-mjx-pseudoscript":"true"},"₁")])])])])],-1),j=i(`

+6

source


`,37),b={style:{"border-width":"1px","border-style":"solid","border-color":"black",padding:"1em","border-radius":"25px"}},C=s("a",{id:"GeometryOps.t_value-Union{Tuple{T2}, Tuple{T1}, Tuple{N}, Tuple{Union{Tuple{Vararg{T1, N}}, StaticArraysCore.StaticArray{Tuple{N}, T1, 1}}, Union{Tuple{Vararg{T1, N}}, StaticArraysCore.StaticArray{Tuple{N}, T1, 1}}, T2, T2}} where {N, T1<:Real, T2<:Real}",href:"#GeometryOps.t_value-Union{Tuple{T2}, Tuple{T1}, Tuple{N}, Tuple{Union{Tuple{Vararg{T1, N}}, StaticArraysCore.StaticArray{Tuple{N}, T1, 1}}, Union{Tuple{Vararg{T1, N}}, StaticArraysCore.StaticArray{Tuple{N}, T1, 1}}, T2, T2}} where {N, T1<:Real, T2<:Real}"},"#",-1),T=s("b",null,[s("u",null,"GeometryOps.t_value")],-1),f=s("i",null,"Method",-1),v=i('
julia
t_value(sᵢ, sᵢ₊₁, rᵢ, rᵢ₊₁)

Returns the "T-value" as described in Hormann's presentation [1] on how to calculate the mean-value coordinate.

Here, sᵢ is the vector from vertex vᵢ to the point, and rᵢ is the norm (length) of sᵢ. s must be Point and r must be real numbers.

',3),A={class:"MathJax",jax:"SVG",display:"true",style:{direction:"ltr",display:"block","text-align":"center",margin:"1em 0",position:"relative"}},G={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-2.059ex"},xmlns:"http://www.w3.org/2000/svg",width:"27.746ex",height:"5.362ex",role:"img",focusable:"false",viewBox:"0 -1460 12263.9 2370","aria-hidden":"true"},B=i('',1),O=[B],D=s("mjx-assistive-mml",{unselectable:"on",display:"block",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",overflow:"hidden",width:"100%"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML",display:"block"},[s("mi",null,"t"),s("mi",null,"ᵢ"),s("mo",null,"="),s("mfrac",null,[s("mrow",null,[s("mrow",{"data-mjx-texclass":"ORD"},[s("mi",{"data-mjx-auto-op":"false"},"det")]),s("mrow",{"data-mjx-texclass":"INNER"},[s("mo",{"data-mjx-texclass":"OPEN"},"("),s("mi",null,"s"),s("mi",null,"ᵢ"),s("mo",null,","),s("mi",null,"s"),s("mi",null,"ᵢ"),s("mrow",{"data-mjx-texclass":"ORD"},[s("mo",{"data-mjx-pseudoscript":"true"},"₊")]),s("mrow",{"data-mjx-texclass":"ORD"},[s("mo",{"data-mjx-pseudoscript":"true"},"₁")]),s("mo",{"data-mjx-texclass":"CLOSE"},")")])]),s("mrow",null,[s("mi",null,"r"),s("mi",null,"ᵢ"),s("mo",null,"∗"),s("mi",null,"r"),s("mi",null,"ᵢ"),s("mrow",{"data-mjx-texclass":"ORD"},[s("mo",{"data-mjx-pseudoscript":"true"},"₊")]),s("mrow",{"data-mjx-texclass":"ORD"},[s("mo",{"data-mjx-pseudoscript":"true"},"₁")]),s("mo",null,"+"),s("mi",null,"s"),s("mi",null,"ᵢ"),s("mo",null,"⋅"),s("mi",null,"s"),s("mi",null,"ᵢ"),s("mrow",{"data-mjx-texclass":"ORD"},[s("mo",{"data-mjx-pseudoscript":"true"},"₊")]),s("mrow",{"data-mjx-texclass":"ORD"},[s("mo",{"data-mjx-pseudoscript":"true"},"₁")])])])])],-1),j=i(`

 
-[source](https://github.com/JuliaGeo/GeometryOps.jl/blob/v0.1.9/src/methods/barycentric.jl#L289-L305)
+[source](https://github.com/JuliaGeo/GeometryOps.jl/blob/v0.1.10/src/methods/barycentric.jl#L289-L305)
 
 </div>
 <br>
@@ -339,14 +352,14 @@ import{_ as n,c as e,j as s,a,a6 as i,o as t}from"./chunks/framework.p73Oc50P.js
 
 
 \`\`\`julia
-to_edges()

Convert any geometry or collection of geometries into a flat vector of Tuple{Tuple{Float64,Float64},Tuple{Float64,Float64}} edges.

source

`,3),x=i(`
# GeometryOps.touchesMethod.
julia
touches(geom1, geom2)::Bool

Return true if the first geometry touches the second geometry. In other words, the two interiors cannot interact, but one of the geometries must have a boundary point that interacts with either the other geometies interior or boundary.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+to_edges()

Convert any geometry or collection of geometries into a flat vector of Tuple{Tuple{Float64,Float64},Tuple{Float64,Float64}} edges.

source

`,3),x=i(`
# GeometryOps.touchesMethod.
julia
touches(geom1, geom2)::Bool

Return true if the first geometry touches the second geometry. In other words, the two interiors cannot interact, but one of the geometries must have a boundary point that interacts with either the other geometies interior or boundary.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 
 l1 = GI.Line([(0.0, 0.0), (1.0, 0.0)])
 l2 = GI.Line([(1.0, 1.0), (1.0, -1.0)])
 
 GO.touches(l1, l2)
 # output
-true

source


# GeometryOps.transformMethod.
julia
transform(f, obj)

Apply a function f to all the points in obj.

Points will be passed to f as an SVector to allow using CoordinateTransformations.jl and Rotations.jl without hassle.

SVector is also a valid GeoInterface.jl point, so will work in all GeoInterface.jl methods.

Example

julia
julia> import GeoInterface as GI
+true

source


# GeometryOps.transformMethod.
julia
transform(f, obj)

Apply a function f to all the points in obj.

Points will be passed to f as an SVector to allow using CoordinateTransformations.jl and Rotations.jl without hassle.

SVector is also a valid GeoInterface.jl point, so will work in all GeoInterface.jl methods.

Example

julia
julia> import GeoInterface as GI
 
 julia> import GeometryOps as GO
 
@@ -365,7 +378,7 @@ import{_ as n,c as e,j as s,a,a6 as i,o as t}from"./chunks/framework.p73Oc50P.js
 GeoInterface.Wrappers.Polygon{false, false, Vector{GeoInterface.Wrappers.LinearRing{false, false, Vector{StaticArraysCore.SVector{2, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(GeoInterface.Wrappers.LinearR
 ing{false, false, Vector{StaticArraysCore.SVector{2, Int64}}, Nothing, Nothing}[GeoInterface.Wrappers.LinearRing{false, false, Vector{StaticArraysCore.SVector{2, Int64}}, Nothing, Nothing}(StaticArraysCore.SVe
 ctor{2, Int64}[[2, 1], [4, 3], [6, 5], [2, 1]], nothing, nothing), GeoInterface.Wrappers.LinearRing{false, false, Vector{StaticArraysCore.SVector{2, Int64}}, Nothing, Nothing}(StaticArraysCore.SVector{2, Int64
-}[[4, 3], [6, 5], [7, 6], [4, 3]], nothing, nothing)], nothing, nothing)

source


# GeometryOps.tuplesMethod.
julia
tuples(obj)

Convert all points in obj to Tuples, wherever the are nested.

Returns a similar object or collection of objects using GeoInterface.jl geometries wrapping Tuple points.

Keywords

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

  • calc_extent: true or false. Whether to calculate the extent. Defaults to false.

source


# GeometryOps.unionMethod.
julia
union(geom_a, geom_b, [::Type{T}]; target::Type, fix_multipoly = UnionIntersectingPolygons())

Return the union between two geometries as a list of geometries. Return an empty list if none are found. The type of the list will be constrained as much as possible given the input geometries. Furthermore, the user can provide a taget type as a keyword argument and a list of target geometries found in the difference will be returned. The user can also provide a float type 'T' that they would like the points of returned geometries to be. If the user is taking a intersection involving one or more multipolygons, and the multipolygon might be comprised of polygons that intersect, if fix_multipoly is set to an IntersectingPolygons correction (the default is UnionIntersectingPolygons()), then the needed multipolygons will be fixed to be valid before performing the intersection to ensure a correct answer. Only set fix_multipoly to false if you know that the multipolygons are valid, as it will avoid unneeded computation.

Calculates the union between two polygons.

Example

julia
import GeoInterface as GI, GeometryOps as GO
+}[[4, 3], [6, 5], [7, 6], [4, 3]], nothing, nothing)], nothing, nothing)

source


# GeometryOps.tuplesMethod.
julia
tuples(obj)

Convert all points in obj to Tuples, wherever the are nested.

Returns a similar object or collection of objects using GeoInterface.jl geometries wrapping Tuple points.

Keywords

  • threaded: true or false. Whether to use multithreading. Defaults to false.

  • crs: The CRS to attach to geometries. Defaults to nothing.

  • calc_extent: true or false. Whether to calculate the extent. Defaults to false.

source


# GeometryOps.unionMethod.
julia
union(geom_a, geom_b, [::Type{T}]; target::Type, fix_multipoly = UnionIntersectingPolygons())

Return the union between two geometries as a list of geometries. Return an empty list if none are found. The type of the list will be constrained as much as possible given the input geometries. Furthermore, the user can provide a taget type as a keyword argument and a list of target geometries found in the difference will be returned. The user can also provide a float type 'T' that they would like the points of returned geometries to be. If the user is taking a intersection involving one or more multipolygons, and the multipolygon might be comprised of polygons that intersect, if fix_multipoly is set to an IntersectingPolygons correction (the default is UnionIntersectingPolygons()), then the needed multipolygons will be fixed to be valid before performing the intersection to ensure a correct answer. Only set fix_multipoly to false if you know that the multipolygons are valid, as it will avoid unneeded computation.

Calculates the union between two polygons.

Example

julia
import GeoInterface as GI, GeometryOps as GO
 
 p1 = GI.Polygon([[(0.0, 0.0), (5.0, 5.0), (10.0, 0.0), (5.0, -5.0), (0.0, 0.0)]])
 p2 = GI.Polygon([[(3.0, 0.0), (8.0, 5.0), (13.0, 0.0), (8.0, -5.0), (3.0, 0.0)]])
@@ -374,12 +387,12 @@ import{_ as n,c as e,j as s,a,a6 as i,o as t}from"./chunks/framework.p73Oc50P.js
 
 # output
 1-element Vector{Vector{Vector{Vector{Float64}}}}:
- [[[6.5, 3.5], [5.0, 5.0], [0.0, 0.0], [5.0, -5.0], [6.5, -3.5], [8.0, -5.0], [13.0, 0.0], [8.0, 5.0], [6.5, 3.5]]]

source


# GeometryOps.unwrapFunction.
julia
unwrap(target::Type{<:AbstractTrait}, obj)
-unwrap(f, target::Type{<:AbstractTrait}, obj)

Unwrap the object to vectors, down to the target trait.

If f is passed in it will be applied to the target geometries as they are found.

source


# GeometryOps.weighted_meanMethod.
julia
weighted_mean(weight::Real, x1, x2)

Returns the weighted mean of x1 and x2, where weight is the weight of x1.

Specifically, calculates x1 * weight + x2 * (1 - weight).

Note

The idea for this method is that you can override this for custom types, like Color types, in extension modules.

source


# GeometryOps.withinMethod.
julia
within(geom1, geom2)::Bool

Return true if the first geometry is completely within the second geometry. The interiors of both geometries must intersect and the interior and boundary of the primary geometry (geom1) must not intersect the exterior of the secondary geometry (geom2).

Furthermore, within returns the exact opposite result of contains.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
+ [[[6.5, 3.5], [5.0, 5.0], [0.0, 0.0], [5.0, -5.0], [6.5, -3.5], [8.0, -5.0], [13.0, 0.0], [8.0, 5.0], [6.5, 3.5]]]

source


# GeometryOps.unwrapFunction.
julia
unwrap(target::Type{<:AbstractTrait}, obj)
+unwrap(f, target::Type{<:AbstractTrait}, obj)

Unwrap the object to vectors, down to the target trait.

If f is passed in it will be applied to the target geometries as they are found.

source


# GeometryOps.weighted_meanMethod.
julia
weighted_mean(weight::Real, x1, x2)

Returns the weighted mean of x1 and x2, where weight is the weight of x1.

Specifically, calculates x1 * weight + x2 * (1 - weight).

Note

The idea for this method is that you can override this for custom types, like Color types, in extension modules.

source


# GeometryOps.withinMethod.
julia
within(geom1, geom2)::Bool

Return true if the first geometry is completely within the second geometry. The interiors of both geometries must intersect and the interior and boundary of the primary geometry (geom1) must not intersect the exterior of the secondary geometry (geom2).

Furthermore, within returns the exact opposite result of contains.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 
 line = GI.LineString([(1, 1), (1, 2), (1, 3), (1, 4)])
 point = (1, 2)
 GO.within(point, line)
 
 # output
-true

source



  1. K. Hormann and N. Sukumar. Generalized Barycentric Coordinates in Computer Graphics and Computational Mechanics. Taylor & Fancis, CRC Press, 2017. ↩︎

`,17);function w(Q,_,I,L,P,M){return t(),e("div",null,[h,s("div",p,[r,a(" "),k,a(" — "),o,a(". "),d,s("mjx-container",g,[(t(),e("svg",y,c)),u]),m]),F,s("div",b,[C,a(" "),T,a(" — "),f,a(". "),v,s("mjx-container",A,[(t(),e("svg",G,O)),D]),j]),x])}const R=n(l,[["render",w]]);export{S as __pageData,R as default}; +true

source



  1. K. Hormann and N. Sukumar. Generalized Barycentric Coordinates in Computer Graphics and Computational Mechanics. Taylor & Fancis, CRC Press, 2017. ↩︎

`,17);function w(Q,_,I,L,P,M){return t(),e("div",null,[h,s("div",p,[r,a(" "),k,a(" — "),o,a(". "),d,s("mjx-container",g,[(t(),e("svg",y,c)),u]),m]),F,s("div",b,[C,a(" "),T,a(" — "),f,a(". "),v,s("mjx-container",A,[(t(),e("svg",G,O)),D]),j]),x])}const R=n(l,[["render",w]]);export{S as __pageData,R as default}; diff --git a/dev/assets/api.md.Bo_5RxuP.lean.js b/dev/assets/api.md.t9faiPJb.lean.js similarity index 97% rename from dev/assets/api.md.Bo_5RxuP.lean.js rename to dev/assets/api.md.t9faiPJb.lean.js index 07f682560..59aa3fbdc 100644 --- a/dev/assets/api.md.Bo_5RxuP.lean.js +++ b/dev/assets/api.md.t9faiPJb.lean.js @@ -1 +1 @@ -import{_ as n,c as e,j as s,a,a6 as i,o as t}from"./chunks/framework.p73Oc50P.js";const S=JSON.parse('{"title":"Full GeometryOps API documentation","description":"","frontmatter":{},"headers":[],"relativePath":"api.md","filePath":"api.md","lastUpdated":null}'),l={name:"api.md"},h=i("",176),p={style:{"border-width":"1px","border-style":"solid","border-color":"black",padding:"1em","border-radius":"25px"}},r=s("a",{id:"GeometryOps.isclockwise-Tuple{Any}",href:"#GeometryOps.isclockwise-Tuple{Any}"},"#",-1),k=s("b",null,[s("u",null,"GeometryOps.isclockwise")],-1),o=s("i",null,"Method",-1),d=i("",2),g={class:"MathJax",jax:"SVG",display:"true",style:{direction:"ltr",display:"block","text-align":"center",margin:"1em 0",position:"relative"}},y={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-2.827ex"},xmlns:"http://www.w3.org/2000/svg",width:"33.539ex",height:"6.785ex",role:"img",focusable:"false",viewBox:"0 -1749.5 14824.1 2999","aria-hidden":"true"},E=i("",1),c=[E],u=s("mjx-assistive-mml",{unselectable:"on",display:"block",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",overflow:"hidden",width:"100%"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML",display:"block"},[s("mrow",{"data-mjx-texclass":"INNER"},[s("mo",{"data-mjx-texclass":"OPEN"},"("),s("munderover",null,[s("mo",{"data-mjx-texclass":"OP"},"∑"),s("mrow",{"data-mjx-texclass":"ORD"},[s("mi",null,"i"),s("mo",null,"="),s("mn",null,"2")]),s("mi",null,"n")]),s("mo",{stretchy:"false"},"("),s("msub",null,[s("mi",null,"x"),s("mi",null,"i")]),s("mo",null,"−"),s("msub",null,[s("mi",null,"x"),s("mrow",{"data-mjx-texclass":"ORD"},[s("mi",null,"i"),s("mo",null,"−"),s("mn",null,"1")])]),s("mo",{stretchy:"false"},")"),s("mo",null,"⋅"),s("mo",{stretchy:"false"},"("),s("msub",null,[s("mi",null,"y"),s("mi",null,"i")]),s("mo",null,"+"),s("msub",null,[s("mi",null,"y"),s("mrow",{"data-mjx-texclass":"ORD"},[s("mi",null,"i"),s("mo",null,"−"),s("mn",null,"1")])]),s("mo",{stretchy:"false"},")"),s("mo",{"data-mjx-texclass":"CLOSE"},")")]),s("mo",null,">"),s("mn",null,"0")])],-1),m=i("",3),F=i("",37),b={style:{"border-width":"1px","border-style":"solid","border-color":"black",padding:"1em","border-radius":"25px"}},C=s("a",{id:"GeometryOps.t_value-Union{Tuple{T2}, Tuple{T1}, Tuple{N}, Tuple{Union{Tuple{Vararg{T1, N}}, StaticArraysCore.StaticArray{Tuple{N}, T1, 1}}, Union{Tuple{Vararg{T1, N}}, StaticArraysCore.StaticArray{Tuple{N}, T1, 1}}, T2, T2}} where {N, T1<:Real, T2<:Real}",href:"#GeometryOps.t_value-Union{Tuple{T2}, Tuple{T1}, Tuple{N}, Tuple{Union{Tuple{Vararg{T1, N}}, StaticArraysCore.StaticArray{Tuple{N}, T1, 1}}, Union{Tuple{Vararg{T1, N}}, StaticArraysCore.StaticArray{Tuple{N}, T1, 1}}, T2, T2}} where {N, T1<:Real, T2<:Real}"},"#",-1),T=s("b",null,[s("u",null,"GeometryOps.t_value")],-1),f=s("i",null,"Method",-1),v=i("",3),A={class:"MathJax",jax:"SVG",display:"true",style:{direction:"ltr",display:"block","text-align":"center",margin:"1em 0",position:"relative"}},G={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-2.059ex"},xmlns:"http://www.w3.org/2000/svg",width:"27.746ex",height:"5.362ex",role:"img",focusable:"false",viewBox:"0 -1460 12263.9 2370","aria-hidden":"true"},B=i("",1),O=[B],D=s("mjx-assistive-mml",{unselectable:"on",display:"block",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",overflow:"hidden",width:"100%"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML",display:"block"},[s("mi",null,"t"),s("mi",null,"ᵢ"),s("mo",null,"="),s("mfrac",null,[s("mrow",null,[s("mrow",{"data-mjx-texclass":"ORD"},[s("mi",{"data-mjx-auto-op":"false"},"det")]),s("mrow",{"data-mjx-texclass":"INNER"},[s("mo",{"data-mjx-texclass":"OPEN"},"("),s("mi",null,"s"),s("mi",null,"ᵢ"),s("mo",null,","),s("mi",null,"s"),s("mi",null,"ᵢ"),s("mrow",{"data-mjx-texclass":"ORD"},[s("mo",{"data-mjx-pseudoscript":"true"},"₊")]),s("mrow",{"data-mjx-texclass":"ORD"},[s("mo",{"data-mjx-pseudoscript":"true"},"₁")]),s("mo",{"data-mjx-texclass":"CLOSE"},")")])]),s("mrow",null,[s("mi",null,"r"),s("mi",null,"ᵢ"),s("mo",null,"∗"),s("mi",null,"r"),s("mi",null,"ᵢ"),s("mrow",{"data-mjx-texclass":"ORD"},[s("mo",{"data-mjx-pseudoscript":"true"},"₊")]),s("mrow",{"data-mjx-texclass":"ORD"},[s("mo",{"data-mjx-pseudoscript":"true"},"₁")]),s("mo",null,"+"),s("mi",null,"s"),s("mi",null,"ᵢ"),s("mo",null,"⋅"),s("mi",null,"s"),s("mi",null,"ᵢ"),s("mrow",{"data-mjx-texclass":"ORD"},[s("mo",{"data-mjx-pseudoscript":"true"},"₊")]),s("mrow",{"data-mjx-texclass":"ORD"},[s("mo",{"data-mjx-pseudoscript":"true"},"₁")])])])])],-1),j=i("",3),x=i("",17);function w(Q,_,I,L,P,M){return t(),e("div",null,[h,s("div",p,[r,a(" "),k,a(" — "),o,a(". "),d,s("mjx-container",g,[(t(),e("svg",y,c)),u]),m]),F,s("div",b,[C,a(" "),T,a(" — "),f,a(". "),v,s("mjx-container",A,[(t(),e("svg",G,O)),D]),j]),x])}const R=n(l,[["render",w]]);export{S as __pageData,R as default}; +import{_ as n,c as e,j as s,a,a6 as i,o as t}from"./chunks/framework.DJCAxKqx.js";const S=JSON.parse('{"title":"Full GeometryOps API documentation","description":"","frontmatter":{},"headers":[],"relativePath":"api.md","filePath":"api.md","lastUpdated":null}'),l={name:"api.md"},h=i("",174),p={style:{"border-width":"1px","border-style":"solid","border-color":"black",padding:"1em","border-radius":"25px"}},r=s("a",{id:"GeometryOps.isclockwise-Tuple{Any}",href:"#GeometryOps.isclockwise-Tuple{Any}"},"#",-1),k=s("b",null,[s("u",null,"GeometryOps.isclockwise")],-1),o=s("i",null,"Method",-1),d=i("",2),g={class:"MathJax",jax:"SVG",display:"true",style:{direction:"ltr",display:"block","text-align":"center",margin:"1em 0",position:"relative"}},y={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-2.827ex"},xmlns:"http://www.w3.org/2000/svg",width:"33.539ex",height:"6.785ex",role:"img",focusable:"false",viewBox:"0 -1749.5 14824.1 2999","aria-hidden":"true"},E=i("",1),c=[E],u=s("mjx-assistive-mml",{unselectable:"on",display:"block",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",overflow:"hidden",width:"100%"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML",display:"block"},[s("mrow",{"data-mjx-texclass":"INNER"},[s("mo",{"data-mjx-texclass":"OPEN"},"("),s("munderover",null,[s("mo",{"data-mjx-texclass":"OP"},"∑"),s("mrow",{"data-mjx-texclass":"ORD"},[s("mi",null,"i"),s("mo",null,"="),s("mn",null,"2")]),s("mi",null,"n")]),s("mo",{stretchy:"false"},"("),s("msub",null,[s("mi",null,"x"),s("mi",null,"i")]),s("mo",null,"−"),s("msub",null,[s("mi",null,"x"),s("mrow",{"data-mjx-texclass":"ORD"},[s("mi",null,"i"),s("mo",null,"−"),s("mn",null,"1")])]),s("mo",{stretchy:"false"},")"),s("mo",null,"⋅"),s("mo",{stretchy:"false"},"("),s("msub",null,[s("mi",null,"y"),s("mi",null,"i")]),s("mo",null,"+"),s("msub",null,[s("mi",null,"y"),s("mrow",{"data-mjx-texclass":"ORD"},[s("mi",null,"i"),s("mo",null,"−"),s("mn",null,"1")])]),s("mo",{stretchy:"false"},")"),s("mo",{"data-mjx-texclass":"CLOSE"},")")]),s("mo",null,">"),s("mn",null,"0")])],-1),m=i("",3),F=i("",37),b={style:{"border-width":"1px","border-style":"solid","border-color":"black",padding:"1em","border-radius":"25px"}},C=s("a",{id:"GeometryOps.t_value-Union{Tuple{T2}, Tuple{T1}, Tuple{N}, Tuple{Union{Tuple{Vararg{T1, N}}, StaticArraysCore.StaticArray{Tuple{N}, T1, 1}}, Union{Tuple{Vararg{T1, N}}, StaticArraysCore.StaticArray{Tuple{N}, T1, 1}}, T2, T2}} where {N, T1<:Real, T2<:Real}",href:"#GeometryOps.t_value-Union{Tuple{T2}, Tuple{T1}, Tuple{N}, Tuple{Union{Tuple{Vararg{T1, N}}, StaticArraysCore.StaticArray{Tuple{N}, T1, 1}}, Union{Tuple{Vararg{T1, N}}, StaticArraysCore.StaticArray{Tuple{N}, T1, 1}}, T2, T2}} where {N, T1<:Real, T2<:Real}"},"#",-1),T=s("b",null,[s("u",null,"GeometryOps.t_value")],-1),f=s("i",null,"Method",-1),v=i("",3),A={class:"MathJax",jax:"SVG",display:"true",style:{direction:"ltr",display:"block","text-align":"center",margin:"1em 0",position:"relative"}},G={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-2.059ex"},xmlns:"http://www.w3.org/2000/svg",width:"27.746ex",height:"5.362ex",role:"img",focusable:"false",viewBox:"0 -1460 12263.9 2370","aria-hidden":"true"},B=i("",1),O=[B],D=s("mjx-assistive-mml",{unselectable:"on",display:"block",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",overflow:"hidden",width:"100%"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML",display:"block"},[s("mi",null,"t"),s("mi",null,"ᵢ"),s("mo",null,"="),s("mfrac",null,[s("mrow",null,[s("mrow",{"data-mjx-texclass":"ORD"},[s("mi",{"data-mjx-auto-op":"false"},"det")]),s("mrow",{"data-mjx-texclass":"INNER"},[s("mo",{"data-mjx-texclass":"OPEN"},"("),s("mi",null,"s"),s("mi",null,"ᵢ"),s("mo",null,","),s("mi",null,"s"),s("mi",null,"ᵢ"),s("mrow",{"data-mjx-texclass":"ORD"},[s("mo",{"data-mjx-pseudoscript":"true"},"₊")]),s("mrow",{"data-mjx-texclass":"ORD"},[s("mo",{"data-mjx-pseudoscript":"true"},"₁")]),s("mo",{"data-mjx-texclass":"CLOSE"},")")])]),s("mrow",null,[s("mi",null,"r"),s("mi",null,"ᵢ"),s("mo",null,"∗"),s("mi",null,"r"),s("mi",null,"ᵢ"),s("mrow",{"data-mjx-texclass":"ORD"},[s("mo",{"data-mjx-pseudoscript":"true"},"₊")]),s("mrow",{"data-mjx-texclass":"ORD"},[s("mo",{"data-mjx-pseudoscript":"true"},"₁")]),s("mo",null,"+"),s("mi",null,"s"),s("mi",null,"ᵢ"),s("mo",null,"⋅"),s("mi",null,"s"),s("mi",null,"ᵢ"),s("mrow",{"data-mjx-texclass":"ORD"},[s("mo",{"data-mjx-pseudoscript":"true"},"₊")]),s("mrow",{"data-mjx-texclass":"ORD"},[s("mo",{"data-mjx-pseudoscript":"true"},"₁")])])])])],-1),j=i("",3),x=i("",17);function w(Q,_,I,L,P,M){return t(),e("div",null,[h,s("div",p,[r,a(" "),k,a(" — "),o,a(". "),d,s("mjx-container",g,[(t(),e("svg",y,c)),u]),m]),F,s("div",b,[C,a(" "),T,a(" — "),f,a(". "),v,s("mjx-container",A,[(t(),e("svg",G,O)),D]),j]),x])}const R=n(l,[["render",w]]);export{S as __pageData,R as default}; diff --git a/dev/assets/gfwjkti.DHcwB147.png b/dev/assets/apmuxfk.DHcwB147.png similarity index 100% rename from dev/assets/gfwjkti.DHcwB147.png rename to dev/assets/apmuxfk.DHcwB147.png diff --git a/dev/assets/app.BPHCyeON.js b/dev/assets/app.CNyOqSrS.js similarity index 90% rename from dev/assets/app.BPHCyeON.js rename to dev/assets/app.CNyOqSrS.js index 5d7bc5da2..c8fde53bd 100644 --- a/dev/assets/app.BPHCyeON.js +++ b/dev/assets/app.CNyOqSrS.js @@ -1 +1 @@ -import{U as o,a7 as p,a8 as u,a9 as l,aa as c,ab as f,ac as d,ad as m,ae as h,af as g,ag as A,d as P,u as v,y,x as w,ah as C,ai as R,aj as b,a5 as E}from"./chunks/framework.p73Oc50P.js";import{R as S}from"./chunks/theme.CDgO_tJT.js";function i(e){if(e.extends){const a=i(e.extends);return{...a,...e,async enhanceApp(t){a.enhanceApp&&await a.enhanceApp(t),e.enhanceApp&&await e.enhanceApp(t)}}}return e}const s=i(S),T=P({name:"VitePressApp",setup(){const{site:e,lang:a,dir:t}=v();return y(()=>{w(()=>{document.documentElement.lang=a.value,document.documentElement.dir=t.value})}),e.value.router.prefetchLinks&&C(),R(),b(),s.setup&&s.setup(),()=>E(s.Layout)}});async function _(){globalThis.__VITEPRESS__=!0;const e=x(),a=j();a.provide(u,e);const t=l(e.route);return a.provide(c,t),a.component("Content",f),a.component("ClientOnly",d),Object.defineProperties(a.config.globalProperties,{$frontmatter:{get(){return t.frontmatter.value}},$params:{get(){return t.page.value.params}}}),s.enhanceApp&&await s.enhanceApp({app:a,router:e,siteData:m}),{app:a,router:e,data:t}}function j(){return h(T)}function x(){let e=o,a;return g(t=>{let n=A(t),r=null;return n&&(e&&(a=n),(e||a===n)&&(n=n.replace(/\.js$/,".lean.js")),r=import(n)),o&&(e=!1),r},s.NotFound)}o&&_().then(({app:e,router:a,data:t})=>{a.go().then(()=>{p(a.route,t.site),e.mount("#app")})});export{_ as createApp}; +import{U as o,a7 as p,a8 as u,a9 as l,aa as c,ab as f,ac as d,ad as m,ae as h,af as g,ag as A,d as P,u as v,y,x as w,ah as C,ai as R,aj as b,a5 as E}from"./chunks/framework.DJCAxKqx.js";import{R as S}from"./chunks/theme.EsD5yLvy.js";function i(e){if(e.extends){const a=i(e.extends);return{...a,...e,async enhanceApp(t){a.enhanceApp&&await a.enhanceApp(t),e.enhanceApp&&await e.enhanceApp(t)}}}return e}const s=i(S),T=P({name:"VitePressApp",setup(){const{site:e,lang:a,dir:t}=v();return y(()=>{w(()=>{document.documentElement.lang=a.value,document.documentElement.dir=t.value})}),e.value.router.prefetchLinks&&C(),R(),b(),s.setup&&s.setup(),()=>E(s.Layout)}});async function _(){globalThis.__VITEPRESS__=!0;const e=x(),a=j();a.provide(u,e);const t=l(e.route);return a.provide(c,t),a.component("Content",f),a.component("ClientOnly",d),Object.defineProperties(a.config.globalProperties,{$frontmatter:{get(){return t.frontmatter.value}},$params:{get(){return t.page.value.params}}}),s.enhanceApp&&await s.enhanceApp({app:a,router:e,siteData:m}),{app:a,router:e,data:t}}function j(){return h(T)}function x(){let e=o,a;return g(t=>{let n=A(t),r=null;return n&&(e&&(a=n),(e||a===n)&&(n=n.replace(/\.js$/,".lean.js")),r=import(n)),o&&(e=!1),r},s.NotFound)}o&&_().then(({app:e,router:a,data:t})=>{a.go().then(()=>{p(a.route,t.site),e.mount("#app")})});export{_ as createApp}; diff --git a/dev/assets/siayonr.BEFUMtlf.png b/dev/assets/axcfqou.BEFUMtlf.png similarity index 100% rename from dev/assets/siayonr.BEFUMtlf.png rename to dev/assets/axcfqou.BEFUMtlf.png diff --git a/dev/assets/nnzatzr.DwqDxlAG.png b/dev/assets/bwgahdy.DwqDxlAG.png similarity index 100% rename from dev/assets/nnzatzr.DwqDxlAG.png rename to dev/assets/bwgahdy.DwqDxlAG.png diff --git a/dev/assets/call_notes.md.CfRnXl82.js b/dev/assets/call_notes.md.ChgwnOQ4.js similarity index 96% rename from dev/assets/call_notes.md.CfRnXl82.js rename to dev/assets/call_notes.md.ChgwnOQ4.js index 0f2222e9e..9f78f02dc 100644 --- a/dev/assets/call_notes.md.CfRnXl82.js +++ b/dev/assets/call_notes.md.ChgwnOQ4.js @@ -1 +1 @@ -import{_ as e,c as i,o as l,a6 as t}from"./chunks/framework.p73Oc50P.js";const m=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"call_notes.md","filePath":"call_notes.md","lastUpdated":null}'),o={name:"call_notes.md"},a=t('

20th April, 2024

See GeometryOps#114.

29th Feb, 2024

To do

Done

',8),n=[a];function r(s,p,c,d,h,u){return l(),i("div",null,n)}const g=e(o,[["render",r]]);export{m as __pageData,g as default}; +import{_ as e,c as i,o as l,a6 as t}from"./chunks/framework.DJCAxKqx.js";const m=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"call_notes.md","filePath":"call_notes.md","lastUpdated":null}'),o={name:"call_notes.md"},a=t('

20th April, 2024

See GeometryOps#114.

29th Feb, 2024

To do

Done

',8),n=[a];function r(s,p,c,d,h,u){return l(),i("div",null,n)}const g=e(o,[["render",r]]);export{m as __pageData,g as default}; diff --git a/dev/assets/call_notes.md.CfRnXl82.lean.js b/dev/assets/call_notes.md.ChgwnOQ4.lean.js similarity index 67% rename from dev/assets/call_notes.md.CfRnXl82.lean.js rename to dev/assets/call_notes.md.ChgwnOQ4.lean.js index 536c296cc..6c5193c44 100644 --- a/dev/assets/call_notes.md.CfRnXl82.lean.js +++ b/dev/assets/call_notes.md.ChgwnOQ4.lean.js @@ -1 +1 @@ -import{_ as e,c as i,o as l,a6 as t}from"./chunks/framework.p73Oc50P.js";const m=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"call_notes.md","filePath":"call_notes.md","lastUpdated":null}'),o={name:"call_notes.md"},a=t("",8),n=[a];function r(s,p,c,d,h,u){return l(),i("div",null,n)}const g=e(o,[["render",r]]);export{m as __pageData,g as default}; +import{_ as e,c as i,o as l,a6 as t}from"./chunks/framework.DJCAxKqx.js";const m=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"call_notes.md","filePath":"call_notes.md","lastUpdated":null}'),o={name:"call_notes.md"},a=t("",8),n=[a];function r(s,p,c,d,h,u){return l(),i("div",null,n)}const g=e(o,[["render",r]]);export{m as __pageData,g as default}; diff --git a/dev/assets/chunks/@localSearchIndexroot.BGg5hsxf.js b/dev/assets/chunks/@localSearchIndexroot.BGg5hsxf.js deleted file mode 100644 index dd8c333db..000000000 --- a/dev/assets/chunks/@localSearchIndexroot.BGg5hsxf.js +++ /dev/null @@ -1 +0,0 @@ -const e='{"documentCount":169,"nextId":169,"documentIds":{"0":"/GeometryOps.jl/dev/api#Full-GeometryOps-API-documentation","1":"/GeometryOps.jl/dev/api#apply-and-associated-functions","2":"/GeometryOps.jl/dev/api#General-geometry-methods","3":"/GeometryOps.jl/dev/api#OGC-methods","4":"/GeometryOps.jl/dev/api#Other-general-methods","5":"/GeometryOps.jl/dev/api#Barycentric-coordinates","6":"/GeometryOps.jl/dev/api#Other-methods","7":"/GeometryOps.jl/dev/call_notes#20th-April,-2024","8":"/GeometryOps.jl/dev/call_notes#29th-Feb,-2024","9":"/GeometryOps.jl/dev/call_notes#To-do","10":"/GeometryOps.jl/dev/call_notes#done","11":"/GeometryOps.jl/dev/experiments/accurate_accumulators#Accurate-accumulation","12":"/GeometryOps.jl/dev/experiments/predicates#predicates","13":"/GeometryOps.jl/dev/experiments/predicates#orient","14":"/GeometryOps.jl/dev/experiments/predicates#dashboard","15":"/GeometryOps.jl/dev/experiments/predicates#Testing-robust-vs-regular-predicates","16":"/GeometryOps.jl/dev/experiments/predicates#incircle","17":"/GeometryOps.jl/dev/explanations/paradigms#paradigms","18":"/GeometryOps.jl/dev/explanations/paradigms#apply","19":"/GeometryOps.jl/dev/explanations/paradigms#applyreduce","20":"/GeometryOps.jl/dev/explanations/paradigms#fix-and-prepare","21":"/GeometryOps.jl/dev/explanations/peculiarities#peculiarities","22":"/GeometryOps.jl/dev/explanations/peculiarities#What-does-apply-return-and-why?","23":"/GeometryOps.jl/dev/explanations/peculiarities#Why-do-you-want-me-to-provide-a-target-in-set-operations?","24":"/GeometryOps.jl/dev/explanations/peculiarities#_True-and-_False-(or-BoolsAsTypes)","25":"/GeometryOps.jl/dev/introduction#introduction","26":"/GeometryOps.jl/dev/introduction#Main-concepts","27":"/GeometryOps.jl/dev/introduction#The-apply-paradigm","28":"/GeometryOps.jl/dev/introduction#What\'s-this-GeoInterface.Wrapper-thing?","29":"/GeometryOps.jl/dev/source/GeometryOps#geometryops-jl","30":"/GeometryOps.jl/dev/source/methods/angles#angles","31":"/GeometryOps.jl/dev/source/methods/angles#What-is-angles?","32":"/GeometryOps.jl/dev/source/methods/angles#implementation","33":"/GeometryOps.jl/dev/source/methods/area#Area-and-signed-area","34":"/GeometryOps.jl/dev/source/methods/area#What-is-area?-What-is-signed-area?","35":"/GeometryOps.jl/dev/source/methods/area#implementation","36":"/GeometryOps.jl/dev/source/methods/barycentric#Barycentric-coordinates","37":"/GeometryOps.jl/dev/source/methods/barycentric#example","38":"/GeometryOps.jl/dev/source/methods/barycentric#Barycentric-coordinate-API","39":"/GeometryOps.jl/dev/source/methods/buffer#buffer","40":"/GeometryOps.jl/dev/source/methods/centroid#centroid","41":"/GeometryOps.jl/dev/source/methods/centroid#What-is-the-centroid?","42":"/GeometryOps.jl/dev/source/methods/centroid#implementation","43":"/GeometryOps.jl/dev/source/methods/clipping/clipping_processor#Polygon-clipping-helpers","44":"/GeometryOps.jl/dev/source/methods/clipping/coverage#What-is-coverage?","45":"/GeometryOps.jl/dev/source/methods/clipping/coverage#implementation","46":"/GeometryOps.jl/dev/source/methods/clipping/cut#Polygon-cutting","47":"/GeometryOps.jl/dev/source/methods/clipping/cut#What-is-cut?","48":"/GeometryOps.jl/dev/source/methods/clipping/cut#implementation","49":"/GeometryOps.jl/dev/source/methods/clipping/difference#Difference-Polygon-Clipping","50":"/GeometryOps.jl/dev/source/methods/clipping/difference#Helper-functions-for-Differences-with-Greiner-and-Hormann-Polygon-Clipping","51":"/GeometryOps.jl/dev/source/methods/clipping/intersection#Geometry-Intersection","52":"/GeometryOps.jl/dev/source/methods/clipping/intersection#Helper-functions-for-Intersections-with-Greiner-and-Hormann-Polygon-Clipping","53":"/GeometryOps.jl/dev/source/methods/clipping/predicates#If-we-want-to-inject-adaptivity,-we-would-do-something-like:","54":"/GeometryOps.jl/dev/source/methods/distance#Distance-and-signed-distance","55":"/GeometryOps.jl/dev/source/methods/distance#What-is-distance?-What-is-signed-distance?","56":"/GeometryOps.jl/dev/source/methods/distance#implementation","57":"/GeometryOps.jl/dev/source/methods/clipping/union#Union-Polygon-Clipping","58":"/GeometryOps.jl/dev/source/methods/clipping/union#Helper-functions-for-Unions-with-Greiner-and-Hormann-Polygon-Clipping","59":"/GeometryOps.jl/dev/source/methods/geom_relations/contains#contains","60":"/GeometryOps.jl/dev/source/methods/geom_relations/contains#What-is-contains?","61":"/GeometryOps.jl/dev/source/methods/geom_relations/contains#implementation","62":"/GeometryOps.jl/dev/source/methods/equals#equals","63":"/GeometryOps.jl/dev/source/methods/equals#What-is-equals?","64":"/GeometryOps.jl/dev/source/methods/equals#implementation","65":"/GeometryOps.jl/dev/source/methods/geom_relations/coveredby#coveredby","66":"/GeometryOps.jl/dev/source/methods/geom_relations/coveredby#What-is-coveredby?","67":"/GeometryOps.jl/dev/source/methods/geom_relations/coveredby#implementation","68":"/GeometryOps.jl/dev/source/methods/geom_relations/coveredby#Convert-features-to-geometries","69":"/GeometryOps.jl/dev/source/methods/geom_relations/coveredby#Points-coveredby-geometries","70":"/GeometryOps.jl/dev/source/methods/geom_relations/coveredby#Lines-coveredby-geometries","71":"/GeometryOps.jl/dev/source/methods/geom_relations/coveredby#Rings-covered-by-geometries","72":"/GeometryOps.jl/dev/source/methods/geom_relations/coveredby#Polygons-covered-by-geometries","73":"/GeometryOps.jl/dev/source/methods/geom_relations/coveredby#Geometries-coveredby-multi-geometry/geometry-collections","74":"/GeometryOps.jl/dev/source/methods/geom_relations/coveredby#Multi-geometry/geometry-collections-coveredby-geometries","75":"/GeometryOps.jl/dev/source/methods/geom_relations/covers#covers","76":"/GeometryOps.jl/dev/source/methods/geom_relations/covers#What-is-covers?","77":"/GeometryOps.jl/dev/source/methods/geom_relations/covers#implementation","78":"/GeometryOps.jl/dev/source/methods/geom_relations/crosses#Crossing-checks","79":"/GeometryOps.jl/dev/source/methods/geom_relations/disjoint#disjoint","80":"/GeometryOps.jl/dev/source/methods/geom_relations/disjoint#What-is-disjoint?","81":"/GeometryOps.jl/dev/source/methods/geom_relations/disjoint#implementation","82":"/GeometryOps.jl/dev/source/methods/geom_relations/disjoint#Convert-features-to-geometries","83":"/GeometryOps.jl/dev/source/methods/geom_relations/disjoint#Point-disjoint-geometries","84":"/GeometryOps.jl/dev/source/methods/geom_relations/disjoint#Lines-disjoint-geometries","85":"/GeometryOps.jl/dev/source/methods/geom_relations/disjoint#Rings-disjoint-geometries","86":"/GeometryOps.jl/dev/source/methods/geom_relations/disjoint#Polygon-disjoint-geometries","87":"/GeometryOps.jl/dev/source/methods/geom_relations/disjoint#Geometries-disjoint-multi-geometry/geometry-collections","88":"/GeometryOps.jl/dev/source/methods/geom_relations/disjoint#Multi-geometry/geometry-collections-coveredby-geometries","89":"/GeometryOps.jl/dev/source/methods/geom_relations/geom_geom_processors#Line-curve-interaction","90":"/GeometryOps.jl/dev/source/methods/geom_relations/intersects#Intersection-checks","91":"/GeometryOps.jl/dev/source/methods/geom_relations/intersects#What-is-intersects?","92":"/GeometryOps.jl/dev/source/methods/geom_relations/intersects#implementation","93":"/GeometryOps.jl/dev/source/methods/geom_relations/overlaps#overlaps","94":"/GeometryOps.jl/dev/source/methods/geom_relations/overlaps#What-is-overlaps?","95":"/GeometryOps.jl/dev/source/methods/geom_relations/overlaps#implementation","96":"/GeometryOps.jl/dev/source/methods/geom_relations/touches#touches","97":"/GeometryOps.jl/dev/source/methods/geom_relations/touches#What-is-touches?","98":"/GeometryOps.jl/dev/source/methods/geom_relations/touches#implementation","99":"/GeometryOps.jl/dev/source/methods/geom_relations/touches#Convert-features-to-geometries","100":"/GeometryOps.jl/dev/source/methods/geom_relations/touches#Point-touches-geometries","101":"/GeometryOps.jl/dev/source/methods/geom_relations/touches#Lines-touching-geometries","102":"/GeometryOps.jl/dev/source/methods/geom_relations/touches#Rings-touch-geometries","103":"/GeometryOps.jl/dev/source/methods/geom_relations/touches#Polygons-touch-geometries","104":"/GeometryOps.jl/dev/source/methods/geom_relations/touches#Geometries-touch-multi-geometry/geometry-collections","105":"/GeometryOps.jl/dev/source/methods/geom_relations/touches#Multi-geometry/geometry-collections-cross-geometries","106":"/GeometryOps.jl/dev/source/methods/geom_relations/within#within","107":"/GeometryOps.jl/dev/source/methods/geom_relations/within#What-is-within?","108":"/GeometryOps.jl/dev/source/methods/geom_relations/within#implementation","109":"/GeometryOps.jl/dev/source/methods/geom_relations/within#Convert-features-to-geometries","110":"/GeometryOps.jl/dev/source/methods/geom_relations/within#Points-within-geometries","111":"/GeometryOps.jl/dev/source/methods/geom_relations/within#Lines-within-geometries","112":"/GeometryOps.jl/dev/source/methods/geom_relations/within#Rings-covered-by-geometries","113":"/GeometryOps.jl/dev/source/methods/geom_relations/within#Polygons-within-geometries","114":"/GeometryOps.jl/dev/source/methods/geom_relations/within#Geometries-within-multi-geometry/geometry-collections","115":"/GeometryOps.jl/dev/source/methods/geom_relations/within#Multi-geometry/geometry-collections-within-geometries","116":"/GeometryOps.jl/dev/source/methods/orientation#orientation","117":"/GeometryOps.jl/dev/source/methods/orientation#isclockwise","118":"/GeometryOps.jl/dev/source/methods/orientation#isconcave","119":"/GeometryOps.jl/dev/source/methods/polygonize#Polygonizing-raster-data","120":"/GeometryOps.jl/dev/source/not_implemented_yet#Not-implemented-yet","121":"/GeometryOps.jl/dev/source/primitives#Primitive-functions","122":"/GeometryOps.jl/dev/source/primitives#docstrings","123":"/GeometryOps.jl/dev/source/primitives#functions","124":"/GeometryOps.jl/dev/source/primitives#types","125":"/GeometryOps.jl/dev/source/primitives#implementation","126":"/GeometryOps.jl/dev/source/primitives#What-is-apply?","127":"/GeometryOps.jl/dev/source/primitives#embedding","128":"/GeometryOps.jl/dev/source/primitives#threading","129":"/GeometryOps.jl/dev/source/transformations/correction/closed_ring#Closed-Rings","130":"/GeometryOps.jl/dev/source/transformations/correction/closed_ring#example","131":"/GeometryOps.jl/dev/source/transformations/correction/closed_ring#implementation","132":"/GeometryOps.jl/dev/source/transformations/correction/geometry_correction#Geometry-Corrections","133":"/GeometryOps.jl/dev/source/transformations/correction/geometry_correction#interface","134":"/GeometryOps.jl/dev/source/transformations/correction/geometry_correction#Available-corrections","135":"/GeometryOps.jl/dev/source/transformations/extent#Extent-embedding","136":"/GeometryOps.jl/dev/source/transformations/correction/intersecting_polygons#Intersecting-Polygons","137":"/GeometryOps.jl/dev/source/transformations/correction/intersecting_polygons#example","138":"/GeometryOps.jl/dev/source/transformations/correction/intersecting_polygons#implementation","139":"/GeometryOps.jl/dev/source/transformations/flip#Coordinate-flipping","140":"/GeometryOps.jl/dev/source/transformations/reproject#Geometry-reprojection","141":"/GeometryOps.jl/dev/source/transformations/reproject#Method-error-handling","142":"/GeometryOps.jl/dev/source/transformations/segmentize#segmentize","143":"/GeometryOps.jl/dev/source/transformations/segmentize#examples","144":"/GeometryOps.jl/dev/source/transformations/segmentize#benchmark","145":"/GeometryOps.jl/dev/source/transformations/segmentize#implementation","146":"/GeometryOps.jl/dev/source/transformations/simplify#Geometry-simplification","147":"/GeometryOps.jl/dev/source/transformations/simplify#examples","148":"/GeometryOps.jl/dev/source/transformations/simplify#benchmark","149":"/GeometryOps.jl/dev/source/transformations/simplify#Simplify-with-RadialDistance-Algorithm","150":"/GeometryOps.jl/dev/source/transformations/simplify#Simplify-with-DouglasPeucker-Algorithm","151":"/GeometryOps.jl/dev/source/transformations/simplify#Simplify-with-VisvalingamWhyatt-Algorithm","152":"/GeometryOps.jl/dev/source/transformations/simplify#Shared-utils","153":"/GeometryOps.jl/dev/source/transformations/transform#Pointwise-transformation","154":"/GeometryOps.jl/dev/source/transformations/tuples#Tuple-conversion","155":"/GeometryOps.jl/dev/source/types#types","156":"/GeometryOps.jl/dev/source/types#TraitTarget","157":"/GeometryOps.jl/dev/source/types#BoolsAsTypes","158":"/GeometryOps.jl/dev/source/types#GEOS","159":"/GeometryOps.jl/dev/source/utils#Utility-functions","160":"/GeometryOps.jl/dev/tutorials/creating_geometry#Creating-Geometry","161":"/GeometryOps.jl/dev/tutorials/creating_geometry#creating-geometry","162":"/GeometryOps.jl/dev/tutorials/creating_geometry#geom-crs","163":"/GeometryOps.jl/dev/tutorials/creating_geometry#attributes","164":"/GeometryOps.jl/dev/tutorials/creating_geometry#save-geometry","165":"/GeometryOps.jl/dev/tutorials/spatial_joins#Spatial-joins","166":"/GeometryOps.jl/dev/tutorials/spatial_joins#Simple-example","167":"/GeometryOps.jl/dev/tutorials/spatial_joins#Real-world-example","168":"/GeometryOps.jl/dev/tutorials/spatial_joins#Enabling-custom-predicates"},"fieldIds":{"title":0,"titles":1,"text":2},"fieldLength":{"0":[4,1,88],"1":[4,4,248],"2":[3,4,1],"3":[2,7,207],"4":[3,7,261],"5":[2,4,84],"6":[2,4,1061],"7":[3,1,55],"8":[3,1,1],"9":[2,3,107],"10":[1,3,17],"11":[2,1,74],"12":[1,1,5],"13":[1,1,128],"14":[1,2,116],"15":[5,2,72],"16":[1,1,1],"17":[1,1,53],"18":[1,1,109],"19":[1,2,35],"20":[3,1,79],"21":[1,1,1],"22":[7,1,71],"23":[13,1,101],"24":[6,1,66],"25":[1,1,72],"26":[2,1,1],"27":[3,3,50],"28":[8,3,18],"29":[2,1,116],"30":[1,1,3],"31":[4,1,57],"32":[1,1,270],"33":[4,1,4],"34":[5,4,101],"35":[1,4,247],"36":[2,1,65],"37":[1,2,210],"38":[3,2,414],"39":[1,1,110],"40":[1,1,6],"41":[5,1,91],"42":[1,1,199],"43":[3,1,613],"44":[4,1,70],"45":[1,1,327],"46":[2,1,3],"47":[4,2,57],"48":[1,2,200],"49":[3,1,215],"50":[10,1,191],"51":[2,1,252],"52":[10,1,449],"53":[11,1,25],"54":[4,1,4],"55":[5,4,129],"56":[1,4,260],"57":[3,1,236],"58":[10,1,284],"59":[1,1,3],"60":[4,1,79],"61":[1,1,79],"62":[1,1,3],"63":[4,1,68],"64":[1,1,266],"65":[1,1,3],"66":[4,1,81],"67":[1,1,128],"68":[4,1,11],"69":[3,1,56],"70":[3,1,46],"71":[4,1,48],"72":[4,1,40],"73":[5,1,40],"74":[5,1,44],"75":[1,1,3],"76":[4,1,67],"77":[1,1,78],"78":[2,1,149],"79":[1,1,3],"80":[4,1,68],"81":[1,1,110],"82":[4,1,10],"83":[3,1,57],"84":[3,1,58],"85":[3,1,47],"86":[3,1,33],"87":[5,1,39],"88":[5,1,44],"89":[3,1,434],"90":[2,1,3],"91":[4,2,80],"92":[1,2,76],"93":[1,1,3],"94":[4,1,82],"95":[1,1,244],"96":[1,1,3],"97":[4,1,70],"98":[1,1,125],"99":[4,1,11],"100":[3,1,69],"101":[3,1,53],"102":[3,1,62],"103":[3,1,41],"104":[5,1,39],"105":[5,1,42],"106":[1,1,3],"107":[4,1,72],"108":[1,1,129],"109":[4,1,11],"110":[3,1,63],"111":[3,1,53],"112":[4,1,53],"113":[3,1,38],"114":[5,1,39],"115":[5,1,42],"116":[1,1,4],"117":[1,1,21],"118":[1,1,206],"119":[3,1,513],"120":[3,1,47],"121":[2,1,113],"122":[1,2,1],"123":[1,3,106],"124":[1,2,12],"125":[1,2,33],"126":[4,2,114],"127":[2,2,36],"128":[1,2,542],"129":[2,1,54],"130":[1,2,87],"131":[1,2,83],"132":[2,1,41],"133":[1,2,112],"134":[2,2,109],"135":[2,1,71],"136":[2,1,77],"137":[1,2,70],"138":[1,2,135],"139":[2,1,56],"140":[2,1,132],"141":[3,2,77],"142":[1,1,76],"143":[1,1,147],"144":[1,1,268],"145":[1,1,188],"146":[2,1,44],"147":[1,2,67],"148":[1,2,404],"149":[4,1,75],"150":[4,1,187],"151":[4,1,85],"152":[2,1,149],"153":[2,1,111],"154":[2,1,58],"155":[1,1,38],"156":[1,1,74],"157":[1,1,82],"158":[1,1,147],"159":[2,1,136],"160":[2,1,59],"161":[4,2,287],"162":[6,2,403],"163":[7,2,63],"164":[4,2,140],"165":[2,1,138],"166":[2,2,137],"167":[3,2,117],"168":[3,2,68]},"averageFieldLength":[2.775147928994082,1.4556213017751474,110.59763313609463],"storedFields":{"0":{"title":"Full GeometryOps API documentation","titles":[]},"1":{"title":"apply and associated functions","titles":["Full GeometryOps API documentation"]},"2":{"title":"General geometry methods","titles":["Full GeometryOps API documentation"]},"3":{"title":"OGC methods","titles":["Full GeometryOps API documentation","General geometry methods"]},"4":{"title":"Other general methods","titles":["Full GeometryOps API documentation","General geometry methods"]},"5":{"title":"Barycentric coordinates","titles":["Full GeometryOps API documentation"]},"6":{"title":"Other methods","titles":["Full GeometryOps API documentation"]},"7":{"title":"20th April, 2024","titles":[]},"8":{"title":"29th Feb, 2024","titles":[]},"9":{"title":"To do","titles":["29th Feb, 2024"]},"10":{"title":"Done","titles":["29th Feb, 2024"]},"11":{"title":"Accurate accumulation","titles":[]},"12":{"title":"Predicates","titles":[]},"13":{"title":"Orient","titles":["Predicates"]},"14":{"title":"Dashboard","titles":["Predicates","Orient"]},"15":{"title":"Testing robust vs regular predicates","titles":["Predicates","Orient"]},"16":{"title":"Incircle","titles":["Predicates"]},"17":{"title":"Paradigms","titles":[]},"18":{"title":"apply","titles":["Paradigms"]},"19":{"title":"applyreduce","titles":["Paradigms","apply"]},"20":{"title":"fix and prepare","titles":["Paradigms"]},"21":{"title":"Peculiarities","titles":[]},"22":{"title":"What does apply return and why?","titles":["Peculiarities"]},"23":{"title":"Why do you want me to provide a target in set operations?","titles":["Peculiarities"]},"24":{"title":"_True and _False (or BoolsAsTypes)","titles":["Peculiarities"]},"25":{"title":"Introduction","titles":[]},"26":{"title":"Main concepts","titles":["Introduction"]},"27":{"title":"The apply paradigm","titles":["Introduction","Main concepts"]},"28":{"title":"What's this GeoInterface.Wrapper thing?","titles":["Introduction","Main concepts"]},"29":{"title":"GeometryOps.jl","titles":[]},"30":{"title":"Angles","titles":[]},"31":{"title":"What is angles?","titles":["Angles"]},"32":{"title":"Implementation","titles":["Angles"]},"33":{"title":"Area and signed area","titles":[]},"34":{"title":"What is area? What is signed area?","titles":["Area and signed area"]},"35":{"title":"Implementation","titles":["Area and signed area"]},"36":{"title":"Barycentric coordinates","titles":[]},"37":{"title":"Example","titles":["Barycentric coordinates"]},"38":{"title":"Barycentric-coordinate API","titles":["Barycentric coordinates"]},"39":{"title":"Buffer","titles":[]},"40":{"title":"Centroid","titles":[]},"41":{"title":"What is the centroid?","titles":["Centroid"]},"42":{"title":"Implementation","titles":["Centroid"]},"43":{"title":"Polygon clipping helpers","titles":[]},"44":{"title":"What is coverage?","titles":[]},"45":{"title":"Implementation","titles":[]},"46":{"title":"Polygon cutting","titles":[]},"47":{"title":"What is cut?","titles":["Polygon cutting"]},"48":{"title":"Implementation","titles":["Polygon cutting"]},"49":{"title":"Difference Polygon Clipping","titles":[]},"50":{"title":"Helper functions for Differences with Greiner and Hormann Polygon Clipping","titles":[]},"51":{"title":"Geometry Intersection","titles":[]},"52":{"title":"Helper functions for Intersections with Greiner and Hormann Polygon Clipping","titles":[]},"53":{"title":"If we want to inject adaptivity, we would do something like:","titles":[]},"54":{"title":"Distance and signed distance","titles":[]},"55":{"title":"What is distance? What is signed distance?","titles":["Distance and signed distance"]},"56":{"title":"Implementation","titles":["Distance and signed distance"]},"57":{"title":"Union Polygon Clipping","titles":[]},"58":{"title":"Helper functions for Unions with Greiner and Hormann Polygon Clipping","titles":[]},"59":{"title":"Contains","titles":[]},"60":{"title":"What is contains?","titles":["Contains"]},"61":{"title":"Implementation","titles":["Contains"]},"62":{"title":"Equals","titles":[]},"63":{"title":"What is equals?","titles":["Equals"]},"64":{"title":"Implementation","titles":["Equals"]},"65":{"title":"CoveredBy","titles":[]},"66":{"title":"What is coveredby?","titles":["CoveredBy"]},"67":{"title":"Implementation","titles":["CoveredBy"]},"68":{"title":"Convert features to geometries","titles":[]},"69":{"title":"Points coveredby geometries","titles":[]},"70":{"title":"Lines coveredby geometries","titles":[]},"71":{"title":"Rings covered by geometries","titles":[]},"72":{"title":"Polygons covered by geometries","titles":[]},"73":{"title":"Geometries coveredby multi-geometry/geometry collections","titles":[]},"74":{"title":"Multi-geometry/geometry collections coveredby geometries","titles":[]},"75":{"title":"Covers","titles":[]},"76":{"title":"What is covers?","titles":["Covers"]},"77":{"title":"Implementation","titles":["Covers"]},"78":{"title":"Crossing checks","titles":[]},"79":{"title":"Disjoint","titles":[]},"80":{"title":"What is disjoint?","titles":["Disjoint"]},"81":{"title":"Implementation","titles":["Disjoint"]},"82":{"title":"Convert features to geometries","titles":[]},"83":{"title":"Point disjoint geometries","titles":[]},"84":{"title":"Lines disjoint geometries","titles":[]},"85":{"title":"Rings disjoint geometries","titles":[]},"86":{"title":"Polygon disjoint geometries","titles":[]},"87":{"title":"Geometries disjoint multi-geometry/geometry collections","titles":[]},"88":{"title":"Multi-geometry/geometry collections coveredby geometries","titles":[]},"89":{"title":"Line-curve interaction","titles":[]},"90":{"title":"Intersection checks","titles":[]},"91":{"title":"What is intersects?","titles":["Intersection checks"]},"92":{"title":"Implementation","titles":["Intersection checks"]},"93":{"title":"Overlaps","titles":[]},"94":{"title":"What is overlaps?","titles":["Overlaps"]},"95":{"title":"Implementation","titles":["Overlaps"]},"96":{"title":"Touches","titles":[]},"97":{"title":"What is touches?","titles":["Touches"]},"98":{"title":"Implementation","titles":["Touches"]},"99":{"title":"Convert features to geometries","titles":[]},"100":{"title":"Point touches geometries","titles":[]},"101":{"title":"Lines touching geometries","titles":[]},"102":{"title":"Rings touch geometries","titles":[]},"103":{"title":"Polygons touch geometries","titles":[]},"104":{"title":"Geometries touch multi-geometry/geometry collections","titles":[]},"105":{"title":"Multi-geometry/geometry collections cross geometries","titles":[]},"106":{"title":"Within","titles":[]},"107":{"title":"What is within?","titles":["Within"]},"108":{"title":"Implementation","titles":["Within"]},"109":{"title":"Convert features to geometries","titles":[]},"110":{"title":"Points within geometries","titles":[]},"111":{"title":"Lines within geometries","titles":[]},"112":{"title":"Rings covered by geometries","titles":[]},"113":{"title":"Polygons within geometries","titles":[]},"114":{"title":"Geometries within multi-geometry/geometry collections","titles":[]},"115":{"title":"Multi-geometry/geometry collections within geometries","titles":[]},"116":{"title":"Orientation","titles":[]},"117":{"title":"isclockwise","titles":["Orientation"]},"118":{"title":"isconcave","titles":["Orientation"]},"119":{"title":"Polygonizing raster data","titles":[]},"120":{"title":"Not implemented yet","titles":[]},"121":{"title":"Primitive functions","titles":[]},"122":{"title":"Docstrings","titles":["Primitive functions"]},"123":{"title":"Functions","titles":["Primitive functions","Docstrings"]},"124":{"title":"Types","titles":["Primitive functions"]},"125":{"title":"Implementation","titles":["Primitive functions"]},"126":{"title":"What is apply?","titles":["Primitive functions"]},"127":{"title":"Embedding:","titles":["Primitive functions"]},"128":{"title":"Threading","titles":["Primitive functions"]},"129":{"title":"Closed Rings","titles":[]},"130":{"title":"Example","titles":["Closed Rings"]},"131":{"title":"Implementation","titles":["Closed Rings"]},"132":{"title":"Geometry Corrections","titles":[]},"133":{"title":"Interface","titles":["Geometry Corrections"]},"134":{"title":"Available corrections","titles":["Geometry Corrections"]},"135":{"title":"Extent embedding","titles":[]},"136":{"title":"Intersecting Polygons","titles":[]},"137":{"title":"Example","titles":["Intersecting Polygons"]},"138":{"title":"Implementation","titles":["Intersecting Polygons"]},"139":{"title":"Coordinate flipping","titles":[]},"140":{"title":"Geometry reprojection","titles":[]},"141":{"title":"Method error handling","titles":["Geometry reprojection"]},"142":{"title":"Segmentize","titles":[]},"143":{"title":"Examples","titles":["Segmentize"]},"144":{"title":"Benchmark","titles":["Segmentize"]},"145":{"title":"Implementation","titles":["Segmentize"]},"146":{"title":"Geometry simplification","titles":[]},"147":{"title":"Examples","titles":["Geometry simplification"]},"148":{"title":"Benchmark","titles":["Geometry simplification"]},"149":{"title":"Simplify with RadialDistance Algorithm","titles":[]},"150":{"title":"Simplify with DouglasPeucker Algorithm","titles":[]},"151":{"title":"Simplify with VisvalingamWhyatt Algorithm","titles":[]},"152":{"title":"Shared utils","titles":[]},"153":{"title":"Pointwise transformation","titles":[]},"154":{"title":"Tuple conversion","titles":[]},"155":{"title":"Types","titles":[]},"156":{"title":"TraitTarget","titles":["Types"]},"157":{"title":"BoolsAsTypes","titles":["Types"]},"158":{"title":"GEOS","titles":["Types"]},"159":{"title":"Utility functions","titles":[]},"160":{"title":"Creating Geometry","titles":[]},"161":{"title":"Creating and plotting geometries","titles":["Creating Geometry"]},"162":{"title":"Coordinate reference systems (CRS) and you","titles":["Creating Geometry"]},"163":{"title":"Creating a table with attributes and geometry","titles":["Creating Geometry"]},"164":{"title":"Saving your geospatial data","titles":["Creating Geometry"]},"165":{"title":"Spatial joins","titles":[]},"166":{"title":"Simple example","titles":["Spatial joins"]},"167":{"title":"Real-world example","titles":["Spatial joins"]},"168":{"title":"Enabling custom predicates","titles":["Spatial joins"]}},"dirtCount":0,"index":[["⋮",{"2":{"162":1}}],["θ",{"2":{"161":7,"162":8}}],["☁",{"2":{"161":1}}],["✈",{"2":{"161":1}}],["÷",{"2":{"128":2}}],["ϵ",{"2":{"52":5}}],["∘",{"2":{"52":1,"95":2,"119":2,"133":1,"148":2,"168":2}}],["⊻",{"2":{"43":1,"50":2}}],["≥",{"2":{"43":1,"89":2,"138":1,"150":1}}],["α≈1",{"2":{"52":1}}],["α≈0",{"2":{"52":1}}],["α2",{"2":{"43":4,"52":2}}],["α",{"2":{"43":3,"52":30,"89":7}}],["α1",{"2":{"43":4,"52":2}}],["β2",{"2":{"43":4,"52":2}}],["β",{"2":{"43":4,"52":30,"89":7}}],["β1",{"2":{"43":4,"52":2}}],["≤",{"2":{"43":5,"45":14,"89":6,"150":1,"152":1,"159":4}}],["^",{"2":{"162":1}}],["^3",{"2":{"162":1}}],["^n",{"2":{"118":1}}],["^2",{"2":{"42":2,"56":2}}],["^hormannpresentation",{"2":{"38":2}}],["∑λ",{"2":{"38":2}}],["∑i=2n",{"2":{"6":1}}],["`$",{"2":{"158":1}}],["`libgeos",{"2":{"158":1}}],["`linearring`",{"2":{"145":1}}],["`linearsegments`",{"2":{"145":1}}],["`linestring`",{"2":{"145":1}}],["`linestringtrait`",{"2":{"133":1}}],["`line2`",{"2":{"118":1}}],["`line1`",{"2":{"118":1}}],["`line",{"2":{"51":4}}],["`equatorial",{"2":{"144":2}}],["`extents",{"2":{"135":1}}],["`inf`",{"2":{"140":1}}],["`intersects`",{"2":{"92":1}}],["`intersectingpolygons`",{"2":{"49":1,"51":1,"57":1}}],["`prefilter",{"2":{"148":1}}],["`proj",{"2":{"140":1,"144":2}}],["`polgontrait`",{"2":{"128":1}}],["`polygontrait`",{"2":{"128":1,"133":1}}],["`polygonize`",{"2":{"119":2}}],["`polygon`",{"2":{"38":3}}],["`polys`",{"2":{"50":1}}],["`poly",{"2":{"50":3,"52":1,"58":1}}],["`pointrait`",{"2":{"148":1}}],["`pointtrait`",{"2":{"128":3,"133":1}}],["`point",{"2":{"89":3}}],["`point`",{"2":{"38":4,"56":1}}],["`point2f`",{"2":{"37":1}}],["`douglaspeucker`",{"2":{"148":1}}],["`d`",{"2":{"140":1}}],["`difference`",{"2":{"138":1}}],["`disjoint`",{"2":{"92":1}}],["`obj`",{"2":{"128":1,"153":1,"154":1}}],["`op`",{"2":{"128":2}}],["`+`",{"2":{"128":1}}],["`alg",{"2":{"158":1}}],["`alg`",{"2":{"152":1}}],["`always",{"2":{"140":1}}],["`application",{"2":{"133":1}}],["`apply`",{"2":{"128":1,"156":1}}],["`abstractgeometrytrait`",{"2":{"128":1}}],["`abstractarray`",{"2":{"128":1}}],["`abstractmatrix`",{"2":{"119":1}}],["`calc",{"2":{"125":1}}],["`crs`",{"2":{"125":1}}],["`components`",{"2":{"128":1}}],["`collect`",{"2":{"128":1}}],["`covers`",{"2":{"67":1,"77":1}}],["`coveredby`",{"2":{"67":1,"77":1}}],["`contains`",{"2":{"61":1,"108":1}}],["`union",{"2":{"119":2}}],["`unionintersectingpolygons`",{"2":{"138":1}}],["`unionintersectingpolygons",{"2":{"49":1,"50":2,"51":1,"52":2,"57":1,"58":2}}],["`ys`",{"2":{"119":1}}],["`flattening`",{"2":{"144":1}}],["`flattening",{"2":{"144":1}}],["`flatten`",{"2":{"128":1}}],["`f",{"2":{"128":1}}],["`featurecollectiontrait`",{"2":{"128":2}}],["`featurecollection`",{"2":{"119":2}}],["`featuretrait`",{"2":{"128":3}}],["`feature`s",{"2":{"119":1}}],["`f`",{"2":{"119":5,"128":6,"153":2,"158":1}}],["`false`",{"2":{"118":1,"119":1,"125":4,"140":1}}],["`fix",{"2":{"49":2,"50":2,"51":2,"52":2,"57":2,"58":2}}],["`tuple",{"2":{"159":1}}],["`tuple`s",{"2":{"154":1}}],["`tuple`",{"2":{"119":1,"154":1}}],["`tol`",{"2":{"148":2,"149":3,"150":2,"151":3,"152":4}}],["`time`",{"2":{"140":1}}],["`transform`",{"2":{"140":1}}],["`true`",{"2":{"67":1,"78":1,"81":2,"98":1,"108":1,"118":2,"119":1,"125":2,"140":1}}],["`threaded==true`",{"2":{"128":1}}],["`threaded`",{"2":{"125":1}}],["`target",{"2":{"140":3}}],["`target`",{"2":{"51":1,"128":4,"156":1}}],["`tables",{"2":{"128":1}}],["`taget`",{"2":{"49":1,"57":1}}],["`within`",{"2":{"61":1,"108":1}}],["`weight`",{"2":{"38":1}}],["`geos`",{"2":{"158":3}}],["`geodesic`",{"2":{"144":1}}],["`geodesicsegments`",{"2":{"143":1,"144":1,"145":1}}],["`geointerface`",{"2":{"133":1}}],["`geointerface",{"2":{"128":2,"140":2}}],["`geometrycorrection`",{"2":{"131":1,"133":1,"138":2}}],["`geometry`",{"2":{"128":1,"140":2}}],["`geometrybasics",{"2":{"38":3}}],["`geom`",{"2":{"56":3,"128":1,"145":1}}],["`gi",{"2":{"119":1}}],["`g1`",{"2":{"56":1}}],["`method",{"2":{"145":1}}],["`method`",{"2":{"38":3,"145":1}}],["`max",{"2":{"144":4,"145":2,"158":1}}],["`makie",{"2":{"119":1}}],["`multipointtrait`",{"2":{"128":1,"148":1}}],["`multipolygontrait`",{"2":{"128":1}}],["`multipolygon`",{"2":{"119":3}}],["`multipolygon",{"2":{"50":3,"52":3,"58":2}}],["`multipoly",{"2":{"50":7,"52":3,"58":3}}],["`minpoints`",{"2":{"119":2}}],["`number`",{"2":{"148":2,"152":3}}],["`namedtuple`",{"2":{"128":1}}],["`nothing`",{"2":{"43":1,"125":1}}],["`next",{"2":{"43":1}}],["`bool`",{"2":{"119":2}}],["`buffer`",{"2":{"39":1}}],["`barycentric",{"2":{"38":3}}],["`radialdistance`",{"2":{"148":1}}],["`ratio`",{"2":{"148":2,"152":3}}],["`reproject`",{"2":{"141":1}}],["`rebuild`",{"2":{"128":1}}],["`r`",{"2":{"38":1}}],["`rᵢ`",{"2":{"38":1}}],["`segmentize`",{"2":{"158":1}}],["`svector`",{"2":{"153":3}}],["`simplifyalg`",{"2":{"148":2}}],["`simplify",{"2":{"148":1}}],["`simplify`",{"2":{"148":2}}],["`source",{"2":{"140":3}}],["`s`",{"2":{"38":1}}],["`sᵢ`",{"2":{"38":2}}],["`s2`",{"2":{"38":1}}],["`s1`",{"2":{"38":1}}],["`hcat`",{"2":{"38":1}}],["`x`",{"2":{"128":1}}],["`xs`",{"2":{"119":1}}],["`x1",{"2":{"38":1}}],["`x1`",{"2":{"38":2}}],["`x2`",{"2":{"38":1}}],["`visvalingamwhyatt`",{"2":{"148":1}}],["`vector",{"2":{"140":1}}],["`vector`",{"2":{"119":1,"128":1}}],["`vᵢ`",{"2":{"38":1}}],["`v`",{"2":{"38":1}}],["`values`",{"2":{"38":1,"119":1}}],["`λs`",{"2":{"38":2}}],["`",{"2":{"38":2,"49":1,"50":2,"51":1,"52":2,"57":1,"58":2,"119":3,"128":1,"133":2,"140":2,"145":1,"148":3,"158":2,"159":1}}],["```jldoctest",{"2":{"48":1,"49":1,"51":1,"57":1,"61":1,"64":1,"67":1,"77":1,"81":1,"92":1,"95":1,"98":1,"108":1,"118":1,"148":1}}],["```julia",{"2":{"6":1,"38":1,"78":1,"118":1,"128":1,"153":2,"156":1}}],["```math",{"2":{"38":1,"118":1}}],["```",{"2":{"11":1,"38":3,"48":1,"49":1,"51":1,"57":1,"61":1,"64":1,"67":1,"77":1,"81":1,"92":1,"95":1,"98":1,"108":1,"118":3,"119":11,"128":1,"148":1,"153":2,"159":1}}],["λ₁",{"2":{"38":2}}],["λn",{"2":{"36":1}}],["λ3",{"2":{"36":1}}],["λ2",{"2":{"36":2}}],["λ1",{"2":{"36":2}}],["λs",{"2":{"5":3,"6":4,"38":27}}],["π",{"2":{"32":1,"148":1}}],["δbay",{"2":{"52":3}}],["δbax",{"2":{"52":3}}],["δby",{"2":{"52":5}}],["δbx",{"2":{"52":5}}],["δb",{"2":{"52":2}}],["δay",{"2":{"52":5}}],["δax",{"2":{"52":5}}],["δa",{"2":{"52":2}}],["δintrs",{"2":{"43":2}}],["δy2",{"2":{"118":2}}],["δy1",{"2":{"118":2}}],["δyl",{"2":{"95":4}}],["δy",{"2":{"32":8,"45":3,"89":7}}],["δys",{"2":{"32":1}}],["δx2",{"2":{"118":2}}],["δx1",{"2":{"118":2}}],["δxl",{"2":{"95":4}}],["δx",{"2":{"32":9,"45":3,"89":7}}],["∈",{"2":{"14":1}}],["~",{"2":{"14":3}}],["$ratio",{"2":{"152":1}}],["$rectangle",{"2":{"144":2}}],["$number",{"2":{"152":1}}],["$name",{"2":{"29":2}}],["$min",{"2":{"152":1}}],["$douglas",{"2":{"148":1,"150":1}}],["$simplify",{"2":{"148":1,"149":1,"151":1}}],["$lg",{"2":{"144":1}}],["$lin",{"2":{"144":2}}],["$geom",{"2":{"148":8}}],["$geo",{"2":{"144":1}}],["$apply",{"2":{"128":1,"139":1,"140":1,"148":1}}],["$calc",{"2":{"125":1}}],["$crs",{"2":{"125":1,"135":1}}],["$tol",{"2":{"152":1}}],["$threaded",{"2":{"125":1}}],["$t",{"2":{"64":1,"128":4}}],["$target",{"2":{"50":1,"52":1,"58":1,"128":3}}],["$trait",{"2":{"48":1,"50":2,"52":2,"58":2}}],["$",{"2":{"13":4,"14":1,"38":4,"43":2,"119":3,"133":4,"145":1,"148":12,"158":1}}],["qy",{"2":{"13":2,"14":2}}],["qx",{"2":{"13":2,"14":2}}],["q",{"2":{"13":13,"14":12,"43":4}}],["queue",{"2":{"150":41}}],["questions",{"2":{"52":1}}],["quite",{"2":{"130":1,"167":1}}],["quick",{"2":{"4":1,"6":1,"38":1,"135":1,"147":1}}],["quality",{"2":{"6":1,"148":1}}],["quantity",{"2":{"6":1,"144":1}}],["quot",{"2":{"1":4,"6":10,"20":2,"43":8,"55":2,"56":2,"64":2,"76":4,"89":10,"126":2,"128":8,"142":6,"161":2,"166":2}}],["|=",{"2":{"89":4,"95":1}}],["||",{"2":{"32":2,"43":13,"45":8,"48":1,"51":1,"52":8,"57":1,"64":18,"78":2,"89":8,"95":1,"100":1,"119":7,"150":1,"152":3}}],["|",{"2":{"11":4,"89":1}}],["|>",{"2":{"11":8,"13":2,"128":1,"143":1,"144":1,"148":3,"167":2}}],["↩︎",{"2":{"6":1}}],["ᵢᵢᵢ₊₁ᵢᵢ₊₁ᵢᵢ₊₁tᵢ=det",{"2":{"6":1}}],["⋅",{"2":{"6":1,"38":1}}],["zone",{"2":{"162":1}}],["zoom",{"2":{"14":1}}],["zs",{"2":{"119":5}}],["zip",{"2":{"13":1,"14":1,"161":4,"162":2}}],["zeros",{"2":{"38":1,"45":1}}],["zero",{"2":{"4":6,"6":8,"35":11,"42":3,"43":4,"45":11,"52":22,"55":1,"56":3,"118":1,"128":1,"150":4}}],["z",{"2":{"4":1,"5":1,"6":2,"38":3,"64":3,"119":3,"139":1,"153":1,"154":1}}],["0e6",{"2":{"162":6}}],["0example",{"2":{"6":1}}],["097075198097933",{"2":{"162":1}}],["09707519809793252",{"2":{"162":2}}],["091887951911644",{"2":{"162":3}}],["0999933334666654",{"2":{"161":1}}],["09801605542096",{"2":{"161":1}}],["098016055420953",{"2":{"161":3}}],["09297443860091348",{"2":{"161":4}}],["09",{"2":{"37":1}}],["08506974233813636",{"2":{"162":2}}],["08",{"2":{"37":1}}],["062749678615475",{"2":{"162":1}}],["06274967861547665",{"2":{"162":2}}],["06592462566760626",{"2":{"161":1}}],["0650624499034016",{"2":{"161":4}}],["06",{"2":{"37":1}}],["02017324484778",{"2":{"162":1}}],["020173244847778715",{"2":{"162":2}}],["027886421973952302",{"2":{"161":4}}],["02",{"2":{"37":3}}],["04500741774392",{"2":{"162":1}}],["045007417743918",{"2":{"162":2}}],["049999166670833324",{"2":{"161":1}}],["0438052480035",{"2":{"161":1}}],["043805248003498",{"2":{"161":3}}],["04",{"2":{"37":6}}],["07518688541961",{"2":{"162":1}}],["075186885419612",{"2":{"162":2}}],["071",{"2":{"143":2,"144":2}}],["07",{"2":{"37":6,"143":6,"144":6}}],["009176636029576",{"2":{"162":1}}],["0091766360295773",{"2":{"162":2}}],["003135308800957",{"2":{"162":1}}],["0031353088009582475",{"2":{"162":2}}],["0035114210915891397",{"2":{"161":4}}],["006784125578492062",{"2":{"162":2}}],["0020133807972559925",{"2":{"162":2}}],["00839489109211",{"2":{"162":3}}],["008696",{"2":{"3":1,"6":2,"51":1,"91":1,"92":1}}],["005465967083412071",{"2":{"161":4}}],["00111595449914",{"2":{"161":1}}],["001115954499138",{"2":{"161":3}}],["0010075412835199304",{"2":{"161":4}}],["001",{"2":{"148":1}}],["00085222666982",{"2":{"162":3}}],["000577332369005",{"2":{"162":1}}],["0005773323690041465",{"2":{"162":2}}],["000510363870095e6",{"2":{"162":2}}],["00025191811248184703",{"2":{"162":2}}],["000215611503127e6",{"2":{"162":2}}],["0007260527263e6",{"2":{"162":2}}],["000342160541625e6",{"2":{"162":2}}],["000124843834609e6",{"2":{"162":2}}],["000063948817746e6",{"2":{"162":2}}],["000026987852369e6",{"2":{"162":2}}],["000008144045314",{"2":{"162":1}}],["000007998400139e6",{"2":{"162":2}}],["000000999950001e6",{"2":{"162":2}}],["00001e6",{"2":{"162":1}}],["0004397316773170068",{"2":{"161":4}}],["000",{"2":{"148":1}}],["00",{"2":{"37":2}}],["053798628882221644",{"2":{"162":2}}],["05877989361332",{"2":{"161":1}}],["058779893613323",{"2":{"161":3}}],["05416726609360478",{"2":{"161":4}}],["05",{"2":{"37":1}}],["052704767595",{"2":{"15":1}}],["037564867762832",{"2":{"162":1}}],["03756486776283019",{"2":{"162":2}}],["031245035570328428",{"2":{"162":2}}],["033518309870985",{"2":{"162":3}}],["03503632062070827",{"2":{"161":4}}],["03",{"2":{"37":4}}],["01458815628695",{"2":{"162":3}}],["016044338630866517",{"2":{"162":2}}],["01592650896568995",{"2":{"161":1}}],["01597247419241532",{"2":{"161":4}}],["01908693278165",{"2":{"161":1}}],["019086932781654",{"2":{"161":3}}],["01098781325325",{"2":{"161":1}}],["010987813253244",{"2":{"161":3}}],["011814947665167774",{"2":{"161":4}}],["01362848005",{"2":{"15":1}}],["01",{"2":{"14":1,"37":1,"143":1,"144":1,"161":1,"162":2}}],["0^",{"2":{"13":2,"14":2}}],["0+2",{"2":{"13":2,"14":2}}],["0",{"2":{"3":35,"4":12,"6":190,"11":1,"13":5,"14":8,"15":32,"31":20,"32":3,"34":9,"35":4,"37":155,"38":2,"41":6,"42":6,"43":49,"44":13,"45":5,"47":22,"48":49,"49":42,"51":2,"52":27,"55":20,"56":2,"57":46,"58":2,"60":16,"63":13,"64":18,"66":6,"67":6,"76":6,"77":12,"78":9,"80":15,"89":37,"94":13,"95":9,"97":12,"98":11,"107":16,"118":21,"119":7,"130":24,"137":64,"138":4,"143":16,"144":13,"145":1,"148":11,"150":7,"152":4,"159":2,"161":129,"162":48,"166":13}}],[">=",{"2":{"38":6,"78":4,"95":1,"152":1}}],[">",{"2":{"1":1,"6":4,"11":2,"13":1,"15":2,"32":1,"38":1,"43":17,"45":3,"48":5,"49":1,"50":1,"52":6,"55":1,"57":1,"58":3,"64":1,"78":8,"89":10,"95":2,"118":4,"119":12,"128":5,"133":1,"138":3,"145":2,"148":1,"150":12,"152":3,"153":1,"159":1,"167":1}}],["914930257661865",{"2":{"162":1}}],["96875496442967",{"2":{"162":1}}],["961329",{"2":{"3":1,"6":2,"51":1,"91":1,"92":1}}],["983955661369134",{"2":{"162":1}}],["9833",{"2":{"15":1}}],["9877550012664",{"2":{"161":1}}],["9840085315131",{"2":{"161":1}}],["98271048511609",{"2":{"161":1}}],["98661575256801",{"2":{"161":1}}],["99321587442151",{"2":{"162":1}}],["99375130197483",{"2":{"161":1}}],["997986619202745",{"2":{"162":1}}],["997750168744936",{"2":{"161":1}}],["997247091122496",{"2":{"161":1}}],["99600053330489",{"2":{"161":1}}],["991002699676024",{"2":{"161":1}}],["990022362600165",{"2":{"161":1}}],["99292997455441",{"2":{"161":1}}],["99533829767195",{"2":{"161":1}}],["99865616402829",{"2":{"161":1}}],["999999967681458e6",{"2":{"162":2}}],["999997707902938e6",{"2":{"162":2}}],["999987539891298e6",{"2":{"162":2}}],["999963474314044e6",{"2":{"162":2}}],["999919535736425e6",{"2":{"162":2}}],["999974634566875",{"2":{"161":1}}],["999849768598615e6",{"2":{"162":2}}],["999748081887518",{"2":{"162":1}}],["999748243174828e6",{"2":{"162":2}}],["999750002083324",{"2":{"161":1}}],["999609061508909e6",{"2":{"162":2}}],["999426363321033e6",{"2":{"162":2}}],["999194331880103e6",{"2":{"162":2}}],["99900003333289",{"2":{"161":1}}],["999565375483215",{"2":{"161":1}}],["9im",{"2":{"89":2,"165":1}}],["97976366505997",{"2":{"161":1}}],["9783069507679",{"2":{"161":1}}],["97",{"2":{"37":1}}],["946201371117777",{"2":{"162":1}}],["94",{"2":{"37":1}}],["92",{"2":{"37":1}}],["95770326033",{"2":{"15":1}}],["95",{"2":{"13":1,"14":1}}],["900",{"2":{"144":1}}],["90063612163",{"2":{"11":2}}],["90",{"2":{"31":9,"37":1}}],["909318372607",{"2":{"11":3}}],["9",{"2":{"1":1,"6":2,"89":2,"118":12,"143":1,"153":1}}],["873633668827033",{"2":{"162":1}}],["8135804051007",{"2":{"161":1}}],["813580405100698",{"2":{"161":3}}],["88",{"2":{"37":1}}],["86641841658641",{"2":{"161":1}}],["866418416586406",{"2":{"161":3}}],["86",{"2":{"37":1}}],["868447876892",{"2":{"15":2}}],["84",{"2":{"37":1}}],["821068835162155",{"2":{"162":1}}],["82",{"2":{"37":1}}],["800",{"2":{"37":1}}],["80000",{"2":{"15":5}}],["80",{"2":{"37":1}}],["80869813739",{"2":{"15":2}}],["856614689791036e",{"2":{"15":2}}],["83572303404496",{"2":{"6":1,"51":1}}],["8",{"2":{"1":3,"6":9,"13":1,"14":1,"49":2,"57":4,"89":1,"119":3,"143":1,"153":3,"162":2}}],["karnataka",{"2":{"167":1}}],["kbn",{"2":{"11":2}}],["kinds",{"2":{"23":1}}],["kind",{"2":{"9":1,"119":1}}],["k",{"2":{"6":1,"14":6,"38":1,"43":5,"89":5,"161":5,"162":5}}],["kernel",{"2":{"145":4}}],["keepat",{"2":{"57":1,"138":2}}],["keep",{"2":{"43":3,"119":1,"138":14,"143":1,"166":1}}],["keeping",{"2":{"6":1,"128":1,"139":1}}],["keys",{"2":{"119":4}}],["key",{"2":{"6":1,"119":4,"158":5}}],["keyword",{"2":{"6":8,"23":1,"49":1,"51":1,"57":1,"125":6,"128":1,"135":2,"144":2,"158":4,"162":2}}],["keywords",{"2":{"1":2,"4":1,"6":10,"89":2,"119":1,"125":1,"128":1,"135":1,"139":2,"140":3,"148":8,"149":1,"150":1,"151":1,"152":1,"154":2}}],["known",{"2":{"45":2}}],["know",{"2":{"6":3,"32":2,"43":1,"45":1,"49":1,"51":1,"52":2,"57":1,"58":1,"128":1,"166":1}}],["kwargs",{"2":{"39":3,"45":1,"48":1,"49":3,"50":3,"51":4,"52":5,"57":3,"58":5,"133":2,"141":1,"144":1}}],["kwdef",{"2":{"29":1,"43":1,"144":1,"149":1,"150":1,"151":1}}],["kw",{"2":{"1":1,"6":11,"89":10,"119":20,"128":21,"139":3,"148":15,"151":1,"153":3,"154":3,"158":6}}],["json",{"2":{"164":3}}],["jstep",{"2":{"64":3}}],["jstart",{"2":{"64":7}}],["joined",{"2":{"166":4}}],["joins",{"0":{"165":1},"1":{"166":1,"167":1,"168":1},"2":{"165":3}}],["joinpath",{"2":{"148":2}}],["join",{"2":{"128":2,"165":4,"166":5,"168":1}}],["joining",{"2":{"6":2,"148":1,"165":1}}],["jpn",{"2":{"167":2}}],["jp",{"2":{"64":2}}],["jhole",{"2":{"64":2}}],["jh",{"2":{"58":5}}],["j+1",{"2":{"43":1,"119":1,"152":1}}],["j",{"2":{"43":24,"52":3,"64":8,"78":9,"89":12,"118":2,"119":8,"152":2}}],["jet",{"2":{"37":1}}],["just",{"2":{"4":1,"6":1,"42":1,"43":2,"52":3,"56":2,"58":1,"119":1,"126":1,"128":3,"144":1,"165":1}}],["julialand",{"2":{"162":2}}],["julialines",{"2":{"34":1}}],["julialinearsegments",{"2":{"6":1}}],["juliahole",{"2":{"161":1}}],["juliaplot",{"2":{"162":2}}],["juliap1",{"2":{"161":1}}],["juliapoly",{"2":{"162":1}}],["juliapolygon3",{"2":{"162":1}}],["juliapolygon1",{"2":{"161":1}}],["juliapolygonize",{"2":{"6":1}}],["juliapolygon",{"2":{"6":1}}],["juliapoints",{"2":{"166":1}}],["juliapoint",{"2":{"161":1}}],["juliaxoffset",{"2":{"161":3,"162":1}}],["juliax",{"2":{"161":2}}],["juliaxrange",{"2":{"55":1}}],["julia$apply",{"2":{"154":1}}],["julia$threaded",{"2":{"135":1}}],["julia6",{"2":{"148":1}}],["julia```jldoctest",{"2":{"159":1}}],["julia```julia",{"2":{"119":1}}],["julia```",{"2":{"78":1,"156":1}}],["julia1",{"2":{"49":1,"51":1,"57":1}}],["julia2",{"2":{"48":1}}],["juliabase",{"2":{"38":1,"56":4,"128":1,"158":1}}],["juliabarycentric",{"2":{"5":3,"6":3}}],["juliafig",{"2":{"161":1,"162":1}}],["juliafalse",{"2":{"118":1}}],["juliafunction",{"2":{"32":2,"38":3,"39":2,"42":1,"43":11,"45":2,"48":1,"50":1,"52":2,"56":8,"58":1,"89":6,"95":2,"100":1,"120":1,"128":5,"141":1,"144":1,"152":2}}],["juliafor",{"2":{"29":1,"128":2}}],["juliaflexijoins",{"2":{"168":1}}],["juliaflipped",{"2":{"121":1}}],["juliaflip",{"2":{"6":1}}],["juliaflatten",{"2":{"6":1,"123":1}}],["juliamy",{"2":{"168":1}}],["juliamultipoly",{"2":{"148":1}}],["juliamodule",{"2":{"29":1}}],["juliameanvalue",{"2":{"6":1}}],["juliagi",{"2":{"11":2}}],["juliago",{"2":{"11":1,"31":1,"34":1,"44":1,"60":1,"63":1,"66":1,"76":1,"80":1,"91":1,"94":1,"97":1,"107":1,"165":1}}],["juliageopoly1",{"2":{"162":1}}],["juliageointerface",{"2":{"159":1}}],["juliageo",{"2":{"6":1}}],["juliageodesicsegments",{"2":{"6":1}}],["juliageos",{"2":{"6":1}}],["juliaweighted",{"2":{"6":1}}],["juliawithin",{"2":{"3":1,"6":1}}],["juliaunwrap",{"2":{"6":1,"128":6}}],["juliaunion",{"2":{"6":1}}],["juliaunionintersectingpolygons",{"2":{"6":1,"134":1}}],["juliausing",{"2":{"6":1,"13":1,"14":1,"143":2,"144":1,"147":1,"148":1,"163":1}}],["juliascatter",{"2":{"166":1}}],["juliasource",{"2":{"162":2}}],["juliasimplify",{"2":{"6":1,"148":3}}],["juliasigned",{"2":{"4":2,"6":2}}],["juliasegmentize",{"2":{"6":1}}],["julias1",{"2":{"6":1}}],["juliavisvalingamwhyatt",{"2":{"6":1}}],["juliaring3",{"2":{"162":1}}],["juliaring1",{"2":{"161":1}}],["juliar",{"2":{"161":2,"162":2}}],["juliareconstruct",{"2":{"6":1,"123":1}}],["juliarebuild",{"2":{"6":1,"123":1}}],["juliareproject",{"2":{"1":1}}],["juliaradialdistance",{"2":{"6":1}}],["juliadf",{"2":{"163":1}}],["juliadestination",{"2":{"162":1}}],["juliadouglaspeucker",{"2":{"6":1}}],["juliadifference",{"2":{"6":1}}],["juliadiffintersectingpolygons",{"2":{"6":1,"134":1}}],["juliadistance",{"2":{"4":1,"6":1}}],["juliadisjoint",{"2":{"3":1,"6":1}}],["juliaexport",{"2":{"30":1,"33":1,"36":1,"40":1,"46":1,"49":1,"51":1,"54":1,"57":1,"59":1,"62":1,"65":1,"75":1,"79":1,"90":1,"93":1,"96":1,"106":1,"116":1,"119":1,"121":1,"129":1,"132":1,"136":1,"140":1,"142":1,"148":1,"155":1}}],["juliaend",{"2":{"56":1}}],["juliaenforce",{"2":{"6":1}}],["juliaenum",{"2":{"6":2}}],["juliaembed",{"2":{"4":1,"6":1}}],["juliaequals",{"2":{"4":15,"6":15,"43":1}}],["juliaaccuratearithmetic",{"2":{"11":2}}],["juliaabstract",{"2":{"6":3,"133":1,"134":1,"144":1,"157":1}}],["juliaangles",{"2":{"4":1,"6":1}}],["juliaarea",{"2":{"4":1,"6":1}}],["juliaapplyreduce",{"2":{"1":1,"6":1}}],["juliaapply",{"2":{"1":1,"6":1,"18":1}}],["juliacent",{"2":{"41":1}}],["juliacentroid",{"2":{"4":1,"6":3}}],["juliacut",{"2":{"6":1}}],["juliaclosedring",{"2":{"6":1,"134":1}}],["juliaconst",{"2":{"32":1,"35":1,"38":1,"43":1,"45":2,"56":1,"67":1,"81":1,"98":1,"108":1,"125":1}}],["juliacontains",{"2":{"3":1,"6":1}}],["juliacoverage",{"2":{"6":1}}],["juliacovers",{"2":{"3":1,"6":1}}],["juliacoveredby",{"2":{"3":1,"6":1}}],["juliatrue",{"2":{"61":1,"64":1,"67":1,"77":1,"81":1,"92":1,"95":1,"98":1,"108":1,"118":1}}],["juliatraittarget",{"2":{"6":2,"156":1}}],["juliatransform",{"2":{"1":1,"6":1}}],["juliatuples",{"2":{"6":1}}],["juliat",{"2":{"6":1}}],["juliatouches",{"2":{"3":1,"6":1}}],["juliaoverlaps",{"2":{"3":9,"6":9}}],["juliainnerjoin",{"2":{"167":1}}],["juliaintersection",{"2":{"6":2}}],["juliaintersects",{"2":{"3":1,"6":1}}],["juliaisconcave",{"2":{"6":1}}],["juliaisclockwise",{"2":{"6":1}}],["juliaimport",{"2":{"1":1,"3":9,"4":1,"6":18,"11":1,"31":1,"34":1,"41":1,"44":1,"47":1,"55":1,"60":1,"63":1,"66":1,"76":1,"80":1,"91":1,"94":1,"97":1,"107":1,"130":2,"137":2,"143":1,"164":4,"166":1,"167":1}}],["julia",{"2":{"3":1,"6":4,"9":1,"15":1,"25":1,"29":1,"32":4,"35":10,"38":8,"42":19,"43":60,"45":18,"48":10,"49":6,"50":1,"51":5,"52":30,"55":1,"56":4,"57":6,"58":4,"61":1,"64":15,"68":1,"69":5,"70":1,"71":1,"72":2,"73":1,"74":1,"77":1,"78":3,"82":1,"83":3,"84":1,"85":1,"86":1,"87":1,"88":1,"89":50,"92":1,"95":7,"99":1,"100":3,"101":1,"102":1,"103":1,"104":1,"105":1,"109":1,"110":3,"111":1,"112":1,"113":2,"114":1,"115":1,"118":9,"119":40,"120":2,"128":63,"131":5,"133":1,"135":1,"138":3,"139":1,"140":1,"144":1,"145":2,"148":1,"149":2,"150":15,"151":3,"153":1,"154":1,"155":1,"156":1,"158":4,"159":1,"160":2,"162":2,"164":2,"165":1,"166":1}}],["julia>",{"2":{"1":5,"6":7,"118":3,"153":7}}],["juliajulia>",{"2":{"1":2,"6":3}}],["jl`",{"2":{"140":1,"158":1}}],["jl",{"0":{"29":1},"2":{"1":10,"4":1,"6":11,"10":2,"11":1,"22":2,"25":2,"29":41,"32":1,"35":1,"38":1,"39":3,"42":1,"43":1,"45":1,"48":1,"50":1,"52":1,"53":1,"56":1,"58":1,"61":1,"64":1,"74":1,"77":1,"78":1,"88":1,"89":1,"92":1,"95":1,"105":1,"115":1,"118":2,"119":1,"120":1,"123":1,"128":3,"131":1,"134":1,"135":2,"138":1,"139":1,"140":4,"141":3,"142":1,"144":3,"145":2,"148":2,"152":1,"153":6,"154":2,"157":1,"158":2,"159":1,"162":1,"165":1}}],["+5000000",{"2":{"162":1}}],["+proj=natearth2",{"2":{"162":2}}],["+=",{"2":{"35":2,"38":11,"42":6,"43":17,"45":10,"48":1,"64":1,"78":1,"89":5,"118":1,"138":2,"150":4,"159":3}}],["+",{"2":{"1":1,"6":2,"13":1,"14":1,"32":4,"35":1,"38":20,"42":10,"43":15,"45":7,"48":1,"52":10,"56":3,"64":2,"78":2,"89":6,"118":6,"119":2,"138":3,"145":2,"150":3,"151":2,"152":2,"161":6,"162":5}}],["yticklabelsvisible",{"2":{"162":1}}],["york",{"2":{"167":1}}],["yoffset",{"2":{"161":7,"162":2}}],["your",{"0":{"164":1},"2":{"18":1,"39":1,"119":1,"121":1,"141":1,"144":1,"163":1,"164":1,"168":2}}],["you",{"0":{"23":1,"162":1},"2":{"1":1,"4":1,"5":2,"6":10,"9":1,"11":1,"17":1,"18":5,"23":1,"27":2,"32":1,"35":1,"38":8,"39":1,"42":1,"49":1,"51":1,"57":1,"121":1,"130":1,"137":1,"141":1,"143":1,"144":1,"145":1,"153":1,"156":1,"162":1,"163":2,"164":3,"166":2,"167":3,"168":4}}],["y=y",{"2":{"159":1}}],["yvec",{"2":{"119":4}}],["ybounds",{"2":{"119":4}}],["yhalf",{"2":{"119":3}}],["ylast",{"2":{"56":3}}],["yfirst",{"2":{"56":5}}],["y0",{"2":{"56":5}}],["yw",{"2":{"45":4}}],["yeild",{"2":{"52":1}}],["ye",{"2":{"45":4}}],["yet",{"0":{"120":1},"2":{"29":1,"38":1,"48":1,"50":1,"52":1,"58":1,"64":1,"119":1,"120":1,"133":2,"167":1}}],["y2",{"2":{"42":2,"45":18,"56":7,"78":10,"89":5,"95":4,"119":5,"145":6,"159":2}}],["y1",{"2":{"42":2,"45":22,"56":7,"78":11,"89":6,"95":5,"119":5,"145":7,"159":2}}],["yield",{"2":{"144":1}}],["yind+1",{"2":{"119":1}}],["yind",{"2":{"119":2}}],["yinterior",{"2":{"42":2}}],["yi+yi−1",{"2":{"6":1}}],["ycentroid",{"2":{"42":13}}],["yrange",{"2":{"37":3,"55":3}}],["yautolimits",{"2":{"37":2}}],["yp2",{"2":{"32":4}}],["ys",{"2":{"6":3,"119":30}}],["ymax",{"2":{"6":1,"44":2,"45":48}}],["ymin",{"2":{"6":1,"44":2,"45":49}}],["y",{"2":{"1":2,"4":1,"6":4,"13":9,"14":10,"32":8,"35":2,"37":8,"41":1,"42":10,"43":6,"44":1,"45":8,"50":6,"52":8,"55":2,"56":7,"64":3,"78":21,"89":16,"95":7,"118":10,"121":2,"128":1,"139":4,"140":1,"145":2,"152":1,"153":2,"154":2,"159":7,"161":8,"162":4,"165":1}}],["75",{"2":{"55":2,"60":1,"80":1,"107":1}}],["78",{"2":{"37":1}}],["74",{"2":{"37":1}}],["72",{"2":{"37":1}}],["726711609794",{"2":{"15":1}}],["76",{"2":{"37":1}}],["76085",{"2":{"15":1}}],["768946",{"2":{"3":1,"6":2,"51":1,"91":1,"92":1}}],["70440582002419",{"2":{"161":1}}],["704405820024185",{"2":{"161":3}}],["704377648755",{"2":{"15":2}}],["700",{"2":{"14":1}}],["700454",{"2":{"6":1,"147":1,"148":1}}],["701141",{"2":{"6":1,"147":1,"148":1}}],["70",{"2":{"6":20,"37":1,"147":20,"148":20,"161":20}}],["738281",{"2":{"3":1,"6":2,"51":1,"91":1,"92":1}}],["7",{"2":{"1":5,"6":5,"89":1,"128":1,"143":4,"144":4,"153":4,"162":1}}],["65533525026046",{"2":{"161":1}}],["655335250260467",{"2":{"161":3}}],["659942",{"2":{"6":1,"147":1,"148":1}}],["6area",{"2":{"42":2}}],["66",{"2":{"37":1}}],["668869",{"2":{"6":1,"147":1,"148":1}}],["64744840486518",{"2":{"162":3}}],["64",{"2":{"37":1,"143":2,"144":2}}],["646209",{"2":{"6":1,"147":1,"148":1}}],["629",{"2":{"162":1}}],["62",{"2":{"37":1}}],["624923",{"2":{"6":1,"147":1,"148":1}}],["61366192682",{"2":{"15":1}}],["614624",{"2":{"6":1,"147":1,"148":1}}],["605000000000004",{"2":{"143":2}}],["60",{"2":{"37":1,"143":2}}],["60000",{"2":{"15":3}}],["609817",{"2":{"6":1,"147":1,"148":1}}],["603637",{"2":{"6":2,"147":2,"148":2}}],["68",{"2":{"37":1}}],["682601",{"2":{"6":1,"147":1,"148":1}}],["683975",{"2":{"6":1,"147":1,"148":1}}],["69159119078359",{"2":{"162":3}}],["694274",{"2":{"6":1,"147":1,"148":1}}],["697021",{"2":{"6":1,"147":1,"148":1}}],["639343",{"2":{"6":1,"147":1,"148":1}}],["6",{"2":{"1":12,"3":4,"6":23,"49":3,"57":3,"89":1,"95":4,"128":3,"148":1,"153":9,"162":2}}],["51695367760999",{"2":{"162":1}}],["516953677609987",{"2":{"162":2}}],["51030066635026",{"2":{"161":4}}],["5e6",{"2":{"162":2}}],["55715336218991",{"2":{"162":1}}],["557153362189904",{"2":{"162":2}}],["55",{"2":{"161":3}}],["55494217175954",{"2":{"161":4}}],["57",{"2":{"143":4,"144":4}}],["57725",{"2":{"15":2}}],["5x",{"2":{"128":1}}],["563198",{"2":{"52":1}}],["56",{"2":{"37":1}}],["54",{"2":{"37":1,"161":19}}],["50",{"2":{"37":1,"143":4,"144":4,"161":3}}],["500000",{"2":{"162":1}}],["50000",{"2":{"15":1}}],["500",{"2":{"14":1,"162":1}}],["5d",{"2":{"25":1}}],["52",{"2":{"37":1}}],["52521",{"2":{"15":1}}],["52709",{"2":{"15":2}}],["594711",{"2":{"6":1,"147":1,"148":1}}],["590591",{"2":{"6":1,"147":1,"148":1}}],["595397",{"2":{"6":1,"147":1,"148":1}}],["535",{"2":{"143":4}}],["5355",{"2":{"143":2}}],["53333",{"2":{"15":4}}],["53",{"2":{"6":10,"143":2,"159":10}}],["58",{"2":{"37":1}}],["58059",{"2":{"15":2}}],["587158",{"2":{"6":2,"147":2,"148":2}}],["58375366067548",{"2":{"6":1,"51":1}}],["584961",{"2":{"3":1,"6":2,"51":1,"91":1,"92":1}}],["5",{"2":{"1":29,"3":4,"4":8,"6":84,"13":1,"37":1,"47":5,"48":8,"49":16,"55":8,"57":18,"64":8,"89":1,"95":4,"119":1,"128":2,"143":1,"144":1,"153":27,"161":32,"162":25,"168":1}}],["4983491639274692e6",{"2":{"162":2}}],["4986507085647392e6",{"2":{"162":2}}],["497205585568957e6",{"2":{"162":2}}],["4976022389592e6",{"2":{"162":2}}],["4957639801366436e6",{"2":{"162":2}}],["4940253560034204e6",{"2":{"162":2}}],["4946113281484335e6",{"2":{"162":2}}],["491990928929295e6",{"2":{"162":2}}],["4904357734399722e6",{"2":{"162":2}}],["4926709788709967e6",{"2":{"162":2}}],["4962554647802354e6",{"2":{"162":2}}],["499984780817334e6",{"2":{"162":2}}],["4997392479570867e6",{"2":{"162":2}}],["4991939151049731e6",{"2":{"162":2}}],["4994001399837343e6",{"2":{"162":2}}],["4998500087497458e6",{"2":{"162":2}}],["49",{"2":{"119":1}}],["43541888381864",{"2":{"162":3}}],["4326",{"2":{"162":5}}],["43787",{"2":{"15":1}}],["439295815226",{"2":{"15":1}}],["434306",{"2":{"6":1,"147":1,"148":1}}],["4896621210021754e6",{"2":{"162":2}}],["489271",{"2":{"6":4,"159":4}}],["4870405593989636e6",{"2":{"162":2}}],["4879072738504685e6",{"2":{"162":2}}],["484003",{"2":{"118":4}}],["482551",{"2":{"118":4}}],["48268",{"2":{"15":1}}],["48",{"2":{"37":1}}],["48001",{"2":{"15":1}}],["45",{"2":{"37":2,"118":12,"161":2}}],["450",{"2":{"13":1}}],["458369",{"2":{"6":2,"147":2,"148":2}}],["42004014766201",{"2":{"161":1}}],["420040147662014",{"2":{"161":3}}],["4219350464667047e",{"2":{"161":4}}],["42",{"2":{"13":1,"14":1,"37":3}}],["426283",{"2":{"6":1,"147":1,"148":1}}],["400",{"2":{"37":3}}],["40000",{"2":{"15":1}}],["40",{"2":{"14":1,"37":3}}],["406224",{"2":{"6":1,"147":1,"148":1}}],["404504",{"2":{"6":1,"147":1,"148":1}}],["41544701408748197",{"2":{"161":1}}],["41",{"2":{"37":1,"162":20}}],["41878",{"2":{"15":1}}],["414248",{"2":{"6":1,"147":1,"148":1}}],["419406",{"2":{"6":1,"147":1,"148":1}}],["4493927459900552",{"2":{"161":1}}],["44121252392",{"2":{"15":1}}],["44",{"2":{"14":1,"37":2}}],["442901",{"2":{"6":1,"147":1,"148":1}}],["446339",{"2":{"6":1,"147":1,"148":1}}],["477985",{"2":{"118":4}}],["47",{"2":{"37":3}}],["473835",{"2":{"6":1,"147":1,"148":1}}],["472117",{"2":{"6":2,"147":2,"148":2}}],["46525251631344455",{"2":{"161":1}}],["465816",{"2":{"6":1,"147":1,"148":1}}],["46",{"2":{"37":3}}],["468107",{"2":{"6":1,"147":1,"148":1}}],["464547",{"2":{"6":6,"159":6}}],["4",{"2":{"1":11,"3":4,"6":15,"9":2,"13":2,"14":1,"31":1,"45":1,"61":1,"77":1,"81":1,"89":2,"108":1,"118":1,"128":3,"143":1,"150":1,"153":8,"162":20,"164":2}}],["3585",{"2":{"143":1}}],["35",{"2":{"37":3}}],["354492",{"2":{"3":1,"6":2,"51":1,"91":1,"92":1}}],["38042741557976",{"2":{"161":1}}],["380427415579764",{"2":{"161":3}}],["38",{"2":{"37":3}}],["3655999675063154",{"2":{"161":1}}],["36",{"2":{"37":2}}],["360",{"2":{"32":1}}],["36022",{"2":{"15":1}}],["327284472232776",{"2":{"162":3}}],["32610",{"2":{"162":3}}],["32",{"2":{"37":3}}],["37",{"2":{"37":5}}],["3497142366876638",{"2":{"161":1}}],["34",{"2":{"37":3}}],["31571636123306385",{"2":{"161":1}}],["31",{"2":{"37":2}}],["30151010318639",{"2":{"161":4}}],["30527612515520186",{"2":{"161":4}}],["300",{"2":{"55":1}}],["30",{"2":{"14":2,"37":3,"161":2}}],["3376428491230612",{"2":{"161":4}}],["3390",{"2":{"89":1}}],["33333333333",{"2":{"15":1}}],["333333333336",{"2":{"15":3}}],["33",{"2":{"6":20,"147":20,"148":20}}],["3d",{"2":{"4":1,"6":1,"38":2,"64":1,"128":1,"142":1}}],["3",{"2":{"1":13,"3":4,"5":1,"6":29,"14":2,"38":13,"41":6,"43":1,"49":6,"57":5,"61":1,"63":1,"77":1,"81":1,"89":2,"94":1,"108":1,"119":7,"128":3,"137":16,"143":4,"148":3,"150":2,"152":1,"153":11,"162":2,"166":1}}],["39945867303846",{"2":{"162":3}}],["3995734698458635",{"2":{"161":1}}],["399918",{"2":{"6":2,"147":2,"148":2}}],["394759",{"2":{"6":1,"147":1,"148":1}}],["392466",{"2":{"6":1,"147":1,"148":1}}],["395332",{"2":{"6":1,"147":1,"148":1}}],["39",{"0":{"28":1},"2":{"0":1,"4":5,"6":20,"7":1,"9":2,"17":2,"18":1,"19":1,"23":1,"27":1,"32":1,"34":1,"35":1,"36":1,"37":3,"38":2,"41":6,"42":3,"43":28,"45":1,"47":1,"48":1,"50":1,"51":4,"52":1,"56":4,"58":2,"64":7,"66":1,"76":2,"83":2,"89":19,"95":1,"97":1,"100":2,"119":3,"121":2,"123":3,"124":1,"128":5,"134":6,"136":1,"143":6,"144":1,"146":1,"148":2,"156":2,"157":3,"158":6,"160":1,"161":6,"162":10,"163":4,"164":5,"165":1,"167":1,"168":2}}],["2pi",{"2":{"161":1,"162":2}}],["2nd",{"2":{"52":6}}],["2335447787454",{"2":{"162":1}}],["233544778745394",{"2":{"162":2}}],["23",{"2":{"37":3,"89":1}}],["23699059147",{"2":{"15":1}}],["28",{"2":{"37":2}}],["28083",{"2":{"15":2}}],["2658011835867806",{"2":{"161":1}}],["26745668457025",{"2":{"161":1}}],["267456684570245",{"2":{"161":3}}],["26",{"2":{"37":5,"89":2}}],["24989584635339165",{"2":{"161":1}}],["24279488312757858",{"2":{"161":4}}],["24",{"2":{"37":7,"89":1,"162":9}}],["274364",{"2":{"49":1,"51":1,"57":1}}],["274363",{"2":{"49":1,"51":1,"57":1}}],["27",{"2":{"37":2}}],["275543",{"2":{"6":6,"159":6}}],["2d",{"2":{"25":1,"142":1}}],["2^",{"2":{"14":1}}],["2158594260436434",{"2":{"161":1}}],["215118",{"2":{"6":4,"159":4}}],["21664550952386064",{"2":{"161":4}}],["21",{"2":{"37":4,"89":2,"162":40}}],["21427",{"2":{"11":5}}],["295828190107045",{"2":{"162":1}}],["29582819010705",{"2":{"162":2}}],["299820032397223",{"2":{"161":1}}],["29",{"2":{"37":3}}],["29th",{"0":{"8":1},"1":{"9":1,"10":1}}],["298",{"2":{"6":2,"144":2}}],["20340",{"2":{"164":1}}],["20682326747054",{"2":{"162":1}}],["206823267470536",{"2":{"162":2}}],["20093817218219",{"2":{"161":1}}],["200938172182195",{"2":{"161":3}}],["2018",{"2":{"89":1}}],["2017",{"2":{"6":1,"38":1}}],["20",{"2":{"37":3,"89":2,"161":60,"162":1}}],["2024",{"0":{"7":1,"8":1},"1":{"9":1,"10":1}}],["20th",{"0":{"7":1}}],["25",{"2":{"37":3,"60":1,"89":1,"107":1,"162":12}}],["258",{"2":{"11":1}}],["25px",{"2":{"6":1}}],["257223563`",{"2":{"144":1}}],["257223563",{"2":{"6":2,"144":1}}],["22",{"2":{"37":3,"89":1}}],["22168",{"2":{"3":1,"6":2,"51":1,"91":1,"92":1}}],["224758",{"2":{"3":1,"6":2,"51":1,"91":1,"92":1}}],["2",{"2":{"1":19,"3":9,"5":1,"6":49,"13":1,"14":1,"15":3,"25":2,"32":3,"35":1,"37":6,"38":32,"41":2,"42":4,"43":10,"44":6,"45":7,"47":1,"48":2,"52":2,"55":1,"56":3,"57":1,"61":2,"64":4,"77":2,"78":2,"80":2,"81":3,"89":11,"108":2,"118":2,"119":23,"128":5,"138":1,"145":1,"148":5,"150":7,"151":7,"152":5,"153":18,"159":11,"161":7,"162":16,"163":1}}],["1st",{"2":{"52":6}}],["198232937815632",{"2":{"162":1}}],["19823293781563178",{"2":{"162":2}}],["1999466709331708",{"2":{"161":1}}],["1998",{"2":{"49":1,"51":1,"57":1}}],["19",{"2":{"37":2,"89":2}}],["110m",{"2":{"162":2}}],["110",{"2":{"162":1}}],["11591614996189725",{"2":{"161":1}}],["11966707868197",{"2":{"161":1}}],["119667078681967",{"2":{"161":3}}],["11",{"2":{"15":2,"37":2,"89":1}}],["1145",{"2":{"49":1,"51":1,"57":1}}],["114",{"2":{"7":1}}],["16589608273778408",{"2":{"161":1}}],["165644",{"2":{"118":2}}],["16692537029320365",{"2":{"161":4}}],["166644",{"2":{"118":2}}],["163434",{"2":{"118":2}}],["169356",{"2":{"118":2}}],["164434",{"2":{"118":2}}],["16111",{"2":{"15":1}}],["16",{"2":{"13":1,"14":1,"37":2,"89":2}}],["180",{"2":{"32":1,"118":1}}],["18593721105",{"2":{"15":1}}],["18",{"2":{"13":1,"14":1,"37":3,"89":2}}],["1em",{"2":{"6":1}}],["1px",{"2":{"6":1}}],["13309630561615",{"2":{"162":3}}],["13401805979",{"2":{"15":2}}],["13",{"2":{"6":3,"37":1,"49":1,"57":2,"89":1}}],["10n",{"2":{"162":1}}],["10832215707812454",{"2":{"161":4}}],["10m",{"2":{"148":1}}],["10^9",{"2":{"13":1}}],["1000000",{"2":{"162":1}}],["1000",{"2":{"13":2,"143":2,"162":1,"166":2}}],["100",{"2":{"6":2,"14":3,"119":2}}],["10",{"2":{"6":12,"11":1,"34":1,"37":5,"47":4,"48":10,"49":2,"51":1,"57":2,"63":2,"89":3,"94":2,"144":1,"148":3,"161":1}}],["14182952335953",{"2":{"162":1}}],["14182952335952814",{"2":{"162":2}}],["14404531208901e",{"2":{"162":2}}],["1499775010124783",{"2":{"161":1}}],["1464721641710074",{"2":{"161":4}}],["14",{"2":{"3":1,"6":3,"37":2,"51":2,"89":1,"91":1,"92":1,"143":2,"144":2}}],["15488729606723",{"2":{"162":3}}],["15",{"2":{"3":1,"6":3,"37":1,"47":1,"48":1,"51":1,"89":1,"91":1,"92":1}}],["17893116483784577",{"2":{"162":2}}],["17289902010158",{"2":{"161":1}}],["172899020101585",{"2":{"161":3}}],["170356",{"2":{"118":2}}],["17",{"2":{"3":1,"6":2,"37":3,"51":1,"89":2,"91":1,"92":1}}],["125",{"2":{"6":1,"51":1}}],["127",{"2":{"3":1,"6":2,"51":1,"91":1,"92":1,"162":1}}],["123",{"2":{"3":1,"6":2,"51":1,"91":1,"92":1}}],["12636633117296836",{"2":{"162":2}}],["126",{"2":{"3":1,"6":2,"51":1,"91":1,"92":1}}],["12",{"2":{"3":1,"6":2,"37":2,"51":1,"89":1,"91":1,"92":1,"167":1}}],["124",{"2":{"3":1,"6":2,"51":1,"91":1,"92":1}}],["1",{"2":{"1":8,"3":38,"6":61,"13":1,"14":4,"15":1,"31":4,"32":15,"34":7,"36":2,"37":11,"38":16,"41":4,"42":7,"43":72,"44":9,"45":15,"47":1,"48":10,"50":3,"52":21,"55":7,"56":6,"57":4,"58":11,"60":2,"61":6,"64":16,"66":2,"67":2,"76":2,"77":8,"78":12,"80":2,"81":5,"89":38,"95":6,"97":4,"98":5,"100":1,"107":2,"108":6,"118":16,"119":25,"128":9,"130":12,"131":2,"138":9,"144":1,"145":4,"148":8,"150":15,"151":3,"152":15,"153":6,"159":9,"161":8,"162":56,"163":1,"166":8,"167":3}}],["human",{"2":{"164":1}}],["hypot",{"2":{"145":1}}],["h2",{"2":{"89":6}}],["h1",{"2":{"89":11}}],["hm",{"2":{"37":2}}],["h",{"2":{"32":2,"43":2,"58":8}}],["high",{"2":{"164":1}}],["highest",{"2":{"162":1}}],["hit",{"2":{"43":1,"128":5}}],["hits",{"2":{"18":1}}],["hidedecorations",{"2":{"37":2}}],["hinter",{"2":{"29":3,"39":1,"141":1,"144":1}}],["hint",{"2":{"29":3,"39":1,"144":1}}],["hinge=2",{"2":{"51":1}}],["hinge`",{"2":{"51":1}}],["hinge",{"2":{"6":1,"43":1,"52":14,"89":15}}],["hist",{"2":{"13":1}}],["histogram",{"2":{"13":1}}],["href=",{"2":{"6":1}}],["https",{"2":{"6":1,"49":1,"51":1,"52":1,"57":1,"89":2,"148":1,"150":1}}],["hcat",{"2":{"6":1}}],["heavily",{"2":{"128":1}}],["heatmap",{"2":{"13":5,"14":6,"37":2,"55":2,"119":1}}],["help",{"2":{"157":1}}],["helpers",{"0":{"43":1},"2":{"78":1,"95":1}}],["helper",{"0":{"50":1,"52":1,"58":1},"2":{"42":1,"43":1,"48":1}}],["helps",{"2":{"28":1}}],["held",{"2":{"1":1,"6":1,"128":1}}],["here",{"2":{"6":2,"9":1,"13":1,"14":1,"20":1,"38":1,"52":1,"78":1,"119":2,"128":5,"130":1,"144":1,"162":2,"165":2,"166":3}}],["hours",{"2":{"167":1}}],["hood",{"2":{"164":1}}],["hook",{"2":{"6":1,"148":1}}],["home",{"2":{"162":1}}],["horizontal",{"2":{"45":1,"52":1,"119":1,"148":1}}],["hormann",{"0":{"50":1,"52":1,"58":1},"2":{"6":2,"38":2,"43":3,"48":2,"49":1,"51":1,"57":1}}],["how",{"2":{"6":2,"34":1,"38":1,"43":1,"52":1,"64":1,"119":2,"123":1,"128":1,"139":1,"148":1,"162":1,"164":1,"165":2,"166":2,"167":1,"168":1}}],["however",{"2":{"3":1,"6":2,"32":1,"38":1,"42":1,"43":1,"52":1,"55":1,"60":1,"64":1,"77":1,"136":1}}],["hole",{"2":{"32":1,"35":3,"37":2,"38":9,"42":4,"43":58,"45":3,"49":6,"51":2,"56":3,"58":15,"70":1,"71":1,"72":1,"89":33,"119":5,"131":2,"161":1}}],["holes=",{"2":{"43":1}}],["holes",{"2":{"4":3,"5":1,"6":4,"9":2,"32":2,"34":1,"38":2,"42":1,"43":19,"48":4,"49":2,"51":2,"56":3,"57":6,"58":29,"64":3,"86":1,"89":11,"110":1,"119":17,"131":2,"161":4}}],["holding",{"2":{"6":1,"119":1,"128":2}}],["holds",{"2":{"6":1,"43":1,"146":1,"156":2}}],["hold",{"2":{"6":1,"119":1,"148":1,"157":1,"164":1}}],["halign",{"2":{"148":1}}],["half",{"2":{"44":2}}],["hail",{"2":{"131":1}}],["handling",{"0":{"141":1},"2":{"121":1}}],["handler",{"2":{"39":1,"141":1}}],["handle",{"2":{"29":1,"118":1,"126":2,"128":1,"162":1}}],["handled",{"2":{"18":1}}],["hao",{"2":{"89":1}}],["had",{"2":{"49":1,"51":1,"64":1,"143":1,"157":1}}],["happens",{"2":{"43":1}}],["happen",{"2":{"24":1}}],["have",{"2":{"3":3,"4":9,"6":17,"19":1,"23":1,"32":2,"35":3,"38":6,"39":1,"43":4,"52":1,"55":1,"56":2,"64":10,"89":5,"94":1,"95":3,"97":1,"98":1,"119":1,"120":1,"121":2,"123":2,"127":1,"128":4,"148":1,"150":1,"157":1,"158":1,"161":1,"162":1,"165":1,"166":1,"167":3}}],["haskey",{"2":{"158":1}}],["hash",{"2":{"119":1}}],["hasn",{"2":{"119":1}}],["hassle",{"2":{"1":1,"6":1,"153":1}}],["has",{"2":{"1":4,"6":4,"31":1,"34":2,"38":2,"43":2,"50":2,"52":1,"55":1,"56":1,"58":1,"64":11,"100":1,"118":1,"128":4,"129":1,"143":2,"152":1,"162":1}}],["bx",{"2":{"118":2}}],["b2y",{"2":{"52":4}}],["b2x",{"2":{"52":4}}],["b2",{"2":{"52":47,"56":3,"95":6}}],["b``",{"2":{"50":1}}],["b`",{"2":{"50":3,"52":4,"58":4}}],["bigger",{"2":{"43":1}}],["bit",{"2":{"25":1,"152":8,"161":2}}],["b1y",{"2":{"52":7}}],["b1x",{"2":{"52":7}}],["b1",{"2":{"43":8,"52":63,"95":6}}],["building",{"2":{"161":1}}],["build",{"2":{"43":13,"48":1,"49":1,"51":1,"57":1,"123":3,"124":1,"143":2,"151":1,"152":1}}],["built",{"2":{"17":1,"20":1}}],["buffers",{"2":{"119":1}}],["buffered",{"2":{"39":2}}],["buffering",{"2":{"38":1,"39":1}}],["buffer",{"0":{"39":1},"2":{"29":2,"39":5,"42":2,"43":1,"120":1}}],["but",{"2":{"1":2,"3":5,"4":3,"6":15,"18":1,"22":1,"25":1,"32":1,"34":1,"35":1,"45":1,"52":1,"58":2,"64":4,"66":2,"89":1,"94":1,"95":5,"97":1,"98":1,"101":2,"102":1,"107":1,"118":1,"119":1,"120":1,"123":1,"126":1,"128":16,"139":1,"140":1,"145":1,"148":1,"156":1,"158":2,"162":4,"164":1,"165":1,"166":1,"167":2}}],["b>",{"2":{"6":2}}],["bloat",{"2":{"162":1}}],["block",{"2":{"161":1}}],["blob",{"2":{"6":1,"148":1}}],["blue",{"2":{"14":1,"47":1,"60":2,"63":2,"80":2,"94":2,"107":2,"166":2}}],["black",{"2":{"6":1,"47":1,"162":1}}],["brgrn",{"2":{"162":1}}],["breaks",{"2":{"138":1}}],["break",{"2":{"43":3,"45":1,"50":2,"64":4,"89":11,"95":1,"119":6,"138":2}}],["brevity",{"2":{"38":1}}],["br>",{"2":{"6":1}}],["broadcasting",{"2":{"6":1,"38":1}}],["broken",{"2":{"3":1,"6":1,"78":1}}],["balancing",{"2":{"128":2}}],["barrier",{"2":{"128":1}}],["barycentric",{"0":{"5":1,"36":1,"38":1},"1":{"37":1,"38":1},"2":{"0":6,"5":10,"6":17,"9":1,"29":1,"36":9,"37":4,"38":52}}],["basicsgeoms",{"2":{"128":1}}],["basic",{"2":{"119":1}}],["base",{"2":{"29":4,"38":15,"39":1,"43":2,"119":6,"128":5,"141":1,"144":2,"145":1,"156":1,"158":3}}],["based",{"2":{"4":2,"6":3,"19":1,"32":2,"35":2,"37":2,"42":1,"45":1,"56":2,"64":1,"67":1,"81":1,"89":2,"95":1,"98":1,"108":1,"156":1,"164":1,"165":1,"166":1}}],["backs",{"2":{"48":4}}],["backwards",{"2":{"43":1,"50":1,"52":1,"58":1}}],["backing",{"2":{"43":1}}],["backend",{"2":{"39":2,"158":1}}],["back",{"2":{"6":1,"18":1,"22":1,"23":1,"48":4,"158":1}}],["b",{"2":{"3":2,"4":7,"6":13,"43":206,"45":9,"49":26,"50":18,"51":26,"52":87,"53":3,"57":27,"58":39,"64":29,"89":2,"95":22,"163":1}}],["box",{"2":{"44":2,"45":3,"166":1}}],["bounaries",{"2":{"89":1}}],["bounce",{"2":{"43":8,"49":1,"50":1,"51":1,"52":1,"57":1,"58":1}}],["bouncings",{"2":{"43":1}}],["bouncing",{"2":{"43":13,"50":3,"52":4,"58":4}}],["bounday",{"2":{"89":2,"101":2,"102":2,"103":2}}],["boundaries",{"2":{"3":2,"6":2,"76":2,"80":1,"81":1,"89":1,"91":1,"92":1,"119":1}}],["boundary",{"2":{"3":7,"6":7,"55":1,"60":1,"61":1,"66":1,"67":3,"70":4,"77":2,"78":9,"81":2,"83":1,"84":6,"85":3,"89":16,"97":2,"98":4,"100":3,"101":3,"102":1,"103":1,"107":1,"108":3}}],["bound",{"2":{"53":1}}],["bounding",{"2":{"43":1,"44":2,"45":3}}],["boundscheck",{"2":{"38":14}}],["bounds",{"2":{"6":1,"119":4}}],["bold",{"2":{"39":1,"141":1,"144":1}}],["border",{"2":{"6":4}}],["both",{"2":{"3":5,"6":6,"43":2,"52":4,"55":1,"57":1,"58":1,"61":1,"64":3,"78":4,"81":1,"89":2,"95":1,"102":1,"108":1,"143":1,"145":1}}],["booltype",{"2":{"128":3,"145":1,"157":3}}],["booleans",{"2":{"43":1,"89":2}}],["boolean",{"2":{"24":2,"43":1,"50":1,"52":1,"58":1,"128":1,"157":1,"165":1}}],["boolsastypes",{"0":{"24":1,"157":1},"2":{"145":2,"157":6}}],["bools",{"2":{"10":1}}],["bool",{"2":{"3":17,"4":14,"6":40,"43":3,"61":1,"64":17,"67":1,"77":2,"78":13,"81":1,"89":2,"92":1,"95":10,"98":2,"108":1,"118":7,"119":6,"145":2,"157":2,"159":5}}],["bypred",{"2":{"168":1}}],["by",{"0":{"71":1,"72":1,"112":1},"2":{"1":3,"3":2,"4":8,"6":30,"7":1,"17":1,"18":2,"19":1,"22":1,"24":1,"25":1,"31":1,"32":6,"34":1,"35":1,"38":4,"39":1,"41":5,"42":4,"43":14,"44":1,"45":6,"47":1,"48":6,"49":1,"51":1,"52":5,"56":5,"57":4,"58":3,"61":1,"64":8,"66":1,"67":1,"71":2,"72":2,"73":1,"74":2,"76":1,"88":2,"89":10,"118":2,"119":4,"123":2,"128":7,"134":2,"136":1,"138":3,"139":1,"140":2,"141":1,"142":1,"144":3,"145":1,"146":1,"148":1,"149":1,"150":3,"151":1,"153":1,"161":1,"162":2,"164":1,"165":2,"166":1,"167":2,"168":1}}],["berlin",{"2":{"167":1}}],["beed",{"2":{"162":1}}],["been",{"2":{"50":1,"119":1,"121":2,"157":1}}],["bearing",{"2":{"118":4}}],["beauty",{"2":{"9":1}}],["better",{"2":{"78":1,"128":2,"148":1}}],["between",{"2":{"4":4,"6":18,"23":1,"32":2,"38":13,"43":1,"45":18,"49":1,"50":4,"51":1,"52":11,"56":8,"57":2,"58":4,"64":1,"89":4,"95":4,"119":1,"144":3,"145":1,"149":2,"150":2,"151":1,"162":1,"165":2,"166":1}}],["because",{"2":{"43":1,"121":1,"155":1}}],["become",{"2":{"22":1}}],["being",{"2":{"32":1,"52":1,"89":1,"95":1,"136":1}}],["behind",{"2":{"25":1,"37":1,"121":1}}],["behaviour",{"2":{"6":1,"18":1,"23":1,"148":1}}],["best",{"2":{"19":1,"128":2,"148":1}}],["beware",{"2":{"18":1}}],["benchmarking",{"2":{"144":1,"148":1}}],["benchmarkgroup",{"2":{"144":2,"148":3}}],["benchmark",{"0":{"144":1,"148":1},"2":{"144":1,"148":1}}],["benchmarktools",{"2":{"13":1,"144":1,"148":1}}],["benchmarks",{"2":{"9":2}}],["beginning",{"2":{"45":1,"161":1}}],["begin+1",{"2":{"38":5}}],["begin",{"2":{"9":1,"38":7,"128":2,"149":1,"164":1}}],["before",{"2":{"6":4,"38":1,"49":1,"51":1,"52":1,"57":1,"148":1,"162":1}}],["below",{"2":{"6":2,"17":1,"39":1,"133":1,"150":1,"151":1,"152":1,"164":1}}],["be",{"2":{"1":7,"3":3,"4":11,"5":4,"6":65,"7":1,"9":1,"13":2,"20":3,"23":2,"24":1,"25":3,"32":8,"35":7,"36":2,"37":1,"38":10,"39":2,"41":1,"42":3,"43":14,"44":1,"45":2,"48":1,"49":7,"50":4,"51":7,"52":10,"55":2,"56":4,"57":6,"58":5,"64":15,"67":6,"76":2,"77":1,"81":6,"89":21,"95":2,"98":6,"108":6,"110":1,"111":1,"112":1,"113":1,"118":2,"119":1,"123":2,"126":2,"127":2,"128":12,"130":1,"131":1,"132":1,"133":3,"134":4,"135":1,"136":2,"138":2,"140":3,"141":1,"142":1,"144":8,"145":2,"148":10,"150":1,"152":3,"153":1,"157":1,"158":2,"161":2,"162":1,"165":4}}],["xticklabelsvisible",{"2":{"162":1}}],["xticklabelrotation",{"2":{"13":2}}],["xoffset",{"2":{"161":4,"162":1}}],["x=x",{"2":{"159":1}}],["x`",{"2":{"128":1}}],["xvec",{"2":{"119":4}}],["xbounds",{"2":{"119":4}}],["xhalf",{"2":{"119":3}}],["xlast",{"2":{"56":3}}],["xfirst",{"2":{"56":5}}],["x0",{"2":{"56":5}}],["xn",{"2":{"45":4}}],["xind+1",{"2":{"119":1}}],["xind",{"2":{"119":2}}],["xinterior",{"2":{"42":2}}],["xi−xi−1",{"2":{"6":1}}],["xcentroid",{"2":{"42":13}}],["xrange",{"2":{"37":3,"55":2}}],["xautolimits",{"2":{"37":2}}],["xp2",{"2":{"32":5}}],["x2",{"2":{"6":3,"38":4,"42":2,"45":18,"56":8,"78":10,"89":5,"95":4,"119":5,"145":6,"159":2}}],["x26",{"2":{"6":2,"32":2,"35":6,"38":1,"39":4,"43":58,"45":36,"49":4,"50":4,"52":38,"56":3,"58":2,"64":14,"73":2,"74":2,"78":48,"87":2,"88":2,"89":170,"95":22,"100":2,"104":2,"105":2,"114":2,"115":2,"118":4,"119":12,"133":2,"138":6,"141":2,"144":2,"150":10,"151":2,"159":4,"165":1}}],["x1",{"2":{"6":4,"38":3,"42":2,"45":22,"56":8,"78":11,"89":6,"95":5,"119":5,"145":7,"159":2}}],["xs",{"2":{"6":3,"45":4,"119":30,"159":4}}],["xmax",{"2":{"6":1,"44":2,"45":48}}],["xmin",{"2":{"6":1,"44":2,"45":49}}],["x3c",{"2":{"5":1,"6":25,"29":1,"32":4,"35":2,"38":66,"43":17,"45":11,"48":3,"49":1,"51":1,"52":14,"55":1,"56":13,"57":1,"64":2,"78":33,"89":13,"95":10,"118":1,"119":4,"123":2,"128":19,"131":2,"134":3,"138":5,"144":2,"149":2,"150":6,"151":3,"152":9,"156":4,"157":2,"168":1}}],["xy`",{"2":{"140":1}}],["xy",{"2":{"1":4,"38":1,"140":3}}],["x",{"2":{"1":4,"4":1,"6":6,"7":1,"9":5,"11":6,"13":11,"14":10,"15":4,"32":9,"35":2,"37":8,"41":1,"42":10,"43":21,"44":1,"45":8,"48":6,"50":9,"52":18,"55":2,"56":7,"58":9,"64":3,"78":21,"89":16,"95":7,"118":11,"119":2,"121":2,"128":17,"133":2,"135":2,"139":4,"140":1,"145":2,"148":2,"150":2,"152":1,"153":2,"154":2,"157":4,"159":33,"161":6,"162":4,"165":1,"167":2}}],["=>",{"2":{"128":2}}],["=float64",{"2":{"42":3,"51":1,"57":1}}],["=false",{"2":{"32":1}}],["===",{"2":{"78":8,"118":4}}],["==",{"2":{"9":1,"19":1,"32":4,"35":2,"38":9,"39":2,"42":1,"43":34,"45":30,"50":1,"52":24,"55":1,"57":2,"58":1,"64":16,"89":44,"95":2,"118":3,"119":18,"128":1,"131":1,"133":1,"138":1,"141":1,"144":2,"148":1,"152":3}}],["=",{"2":{"1":5,"3":17,"4":7,"5":2,"6":59,"11":1,"13":19,"14":33,"15":18,"29":4,"31":4,"32":56,"34":6,"35":25,"37":35,"38":110,"39":3,"41":6,"42":36,"43":323,"44":6,"45":96,"47":7,"48":29,"49":21,"50":30,"51":18,"52":150,"55":15,"56":52,"57":21,"58":77,"60":7,"61":3,"63":7,"64":40,"66":4,"67":23,"68":3,"69":7,"70":14,"71":14,"72":4,"73":2,"74":2,"76":5,"77":3,"78":57,"80":7,"81":18,"82":3,"83":11,"84":17,"85":9,"86":3,"87":2,"88":2,"89":189,"91":3,"92":3,"94":7,"95":40,"97":3,"98":22,"99":3,"100":9,"101":14,"102":10,"103":6,"104":2,"105":2,"107":7,"108":22,"109":3,"110":11,"111":14,"112":14,"113":4,"114":2,"115":2,"118":32,"119":106,"121":1,"125":4,"128":90,"130":2,"131":4,"133":9,"135":1,"137":3,"138":30,"141":2,"143":16,"144":21,"145":18,"146":2,"147":5,"148":60,"149":11,"150":49,"151":7,"152":43,"153":2,"154":1,"156":6,"157":2,"158":3,"159":42,"161":45,"162":32,"163":3,"164":4,"166":12,"167":6,"168":2}}],["utm",{"2":{"162":1}}],["utility",{"0":{"159":1},"2":{"38":1,"128":2}}],["utils",{"0":{"152":1},"2":{"29":1}}],["u2",{"2":{"89":4}}],["u1",{"2":{"89":4}}],["update",{"2":{"43":6,"119":10}}],["updated",{"2":{"43":6,"128":3}}],["updates",{"2":{"38":1}}],["up",{"2":{"43":2,"52":1,"89":1,"102":1,"126":1,"137":1,"150":2,"161":2}}],["upper",{"2":{"6":1,"119":1,"166":1}}],["uv",{"2":{"38":1}}],["u>",{"2":{"6":1}}],["u>geometryops",{"2":{"6":1}}],["usage",{"2":{"167":1}}],["usa",{"2":{"148":15,"167":3}}],["us",{"2":{"35":1,"162":1,"167":1}}],["ususally",{"2":{"6":1,"123":1,"128":1}}],["usually",{"2":{"164":1}}],["usual",{"2":{"6":1,"131":1,"134":1}}],["usecases",{"2":{"25":1}}],["uses",{"2":{"6":1,"89":1,"140":1,"144":1,"148":1,"164":1}}],["users",{"2":{"29":1,"121":1,"136":1}}],["user",{"2":{"6":12,"23":1,"42":1,"49":3,"51":3,"57":3,"149":1,"150":1,"151":1,"165":1}}],["useful",{"2":{"6":10,"38":1,"119":1,"142":1,"145":1,"148":2,"158":1}}],["used",{"2":{"1":1,"5":1,"6":8,"32":1,"35":1,"36":1,"38":1,"42":2,"43":7,"45":1,"48":1,"52":1,"55":1,"56":1,"64":1,"95":1,"119":2,"123":1,"128":3,"129":1,"145":1,"148":1,"150":2,"155":2,"156":1,"162":1,"164":1,"165":2,"166":1}}],["use",{"2":{"1":2,"4":1,"5":1,"6":9,"11":1,"20":1,"23":1,"38":1,"43":1,"58":1,"78":2,"95":1,"119":1,"120":1,"125":1,"128":7,"131":1,"139":1,"143":1,"145":1,"148":1,"150":2,"158":3,"161":1,"164":1,"165":2,"168":2}}],["using",{"2":{"1":4,"4":1,"5":3,"6":12,"11":4,"13":4,"14":1,"15":1,"29":7,"31":1,"32":1,"34":2,"35":2,"37":4,"38":7,"39":3,"41":2,"42":1,"43":5,"44":2,"45":1,"47":2,"48":1,"50":3,"52":3,"53":1,"55":2,"56":2,"58":3,"60":2,"61":1,"63":2,"64":1,"66":2,"67":1,"74":1,"76":2,"77":1,"78":1,"80":2,"81":1,"88":1,"89":1,"91":2,"92":1,"94":2,"95":1,"97":2,"98":1,"105":1,"107":2,"108":1,"115":1,"118":1,"119":5,"120":1,"121":2,"126":1,"128":4,"131":1,"134":1,"135":2,"138":1,"139":1,"140":1,"141":3,"143":1,"144":5,"145":1,"148":2,"150":1,"152":1,"153":4,"154":2,"158":2,"159":1,"160":4,"161":1,"162":1,"163":2,"165":1,"166":4,"167":2}}],["unnecessary",{"2":{"119":1}}],["unneeded",{"2":{"6":3,"43":1,"49":1,"51":1,"57":1}}],["until",{"2":{"119":3,"126":1,"150":1,"158":1}}],["uneeded",{"2":{"49":1,"51":1,"57":1}}],["uneccesary",{"2":{"6":3,"149":1,"150":1,"151":1}}],["unprocessed",{"2":{"43":1}}],["unknown",{"2":{"43":4,"45":15}}],["unknown=3",{"2":{"43":1}}],["unmatched",{"2":{"43":9,"45":26}}],["understand",{"2":{"155":1}}],["under",{"2":{"35":2,"164":1}}],["undergrad",{"2":{"9":1}}],["undef",{"2":{"32":2,"43":1,"149":1,"150":1,"152":2,"159":2}}],["unless",{"2":{"22":1,"43":1,"50":2,"52":2,"58":2}}],["unlike",{"2":{"18":1,"155":1}}],["unstable",{"2":{"13":1,"128":1,"157":1}}],["universal",{"2":{"162":1}}],["united",{"2":{"148":1}}],["unify",{"2":{"25":1}}],["unique",{"2":{"6":2,"134":2,"138":2}}],["unioning",{"2":{"58":1}}],["unionintersectingpolygons",{"2":{"0":1,"6":8,"49":1,"50":2,"51":1,"52":2,"57":1,"58":2,"134":2,"136":2,"137":1,"138":4}}],["unions",{"0":{"58":1},"2":{"18":1,"156":1}}],["union",{"0":{"57":1},"2":{"0":1,"1":2,"3":2,"4":4,"6":23,"11":3,"23":2,"29":1,"32":2,"35":1,"38":1,"42":4,"43":7,"45":1,"51":2,"52":1,"56":1,"57":18,"58":30,"64":8,"69":2,"70":4,"71":1,"73":2,"74":1,"83":2,"84":6,"87":2,"88":1,"95":4,"100":2,"101":4,"102":1,"104":2,"105":1,"110":2,"111":4,"112":1,"114":2,"115":1,"118":1,"119":5,"121":1,"126":3,"128":6,"134":1,"136":1,"138":9,"145":4,"148":2,"149":3,"150":3,"151":3,"156":4,"159":1}}],["unchanged",{"2":{"1":1,"6":2,"128":1,"148":1}}],["unwrap",{"2":{"0":1,"6":3,"123":1,"128":16}}],["nselected",{"2":{"152":3}}],["nmax",{"2":{"152":2}}],["nice",{"2":{"150":1}}],["nvkelso",{"2":{"148":1}}],["null",{"2":{"144":1}}],["numeric",{"2":{"11":1}}],["numbers",{"2":{"6":1,"7":1,"36":2,"38":1,"144":1}}],["number=6",{"2":{"6":1,"147":1,"148":1}}],["number",{"2":{"6":11,"38":1,"43":2,"48":1,"55":1,"64":2,"89":2,"142":1,"143":1,"145":1,"148":2,"149":4,"150":7,"151":4,"152":12}}],["n+1",{"2":{"130":1}}],["nfeature",{"2":{"128":2}}],["nkeys",{"2":{"119":8}}],["nc",{"2":{"89":13}}],["ncoord",{"2":{"64":2}}],["nl",{"2":{"89":11}}],["nhole",{"2":{"43":2,"49":2,"51":2,"57":2,"58":1,"64":2}}],["nbpts",{"2":{"43":2}}],["nbsp",{"2":{"1":4,"3":9,"4":8,"5":3,"6":87,"123":3,"133":1,"134":4}}],["ngeom",{"2":{"42":1,"128":2,"159":1}}],["nt",{"2":{"158":2}}],["ntasks",{"2":{"128":6}}],["nthreads",{"2":{"128":3}}],["nthe",{"2":{"39":1,"141":1,"144":1}}],["ntuple",{"2":{"38":3,"145":1}}],["n2",{"2":{"38":8,"64":10}}],["n1",{"2":{"38":8,"64":9}}],["np2",{"2":{"78":4}}],["npolygon",{"2":{"50":1,"64":3,"138":2}}],["npoints",{"2":{"32":6,"43":5,"52":8,"89":3,"144":6,"150":7}}],["npoint",{"2":{"6":1,"32":2,"34":1,"35":1,"45":2,"56":1,"64":6,"78":6,"89":6,"100":1,"118":2,"131":1,"144":3,"145":1,"148":14,"152":1,"159":13}}],["npts",{"2":{"43":6,"150":3}}],["np",{"2":{"35":2,"56":5}}],["n",{"2":{"6":1,"9":1,"36":2,"38":36,"39":2,"43":51,"48":10,"57":4,"58":4,"89":11,"100":2,"118":6,"119":5,"130":1,"138":25,"141":2,"144":2,"145":3,"148":2,"152":7,"159":32}}],["naive",{"2":{"53":1}}],["napts",{"2":{"43":3}}],["natearth2",{"2":{"162":1}}],["natural",{"2":{"148":2,"162":2,"165":1}}],["naturalearth",{"2":{"11":2,"162":1}}],["nature",{"2":{"119":1}}],["native",{"2":{"6":1,"120":1,"158":4,"164":1}}],["nan",{"2":{"9":1}}],["named",{"2":{"128":1}}],["namedtuple",{"2":{"22":2,"128":2,"158":2}}],["name",{"2":{"6":1,"29":2,"148":1,"158":1,"163":1,"164":2,"167":1}}],["names",{"2":{"6":1,"29":3,"128":6,"158":1}}],["nodestatus",{"2":{"119":6}}],["nodes",{"2":{"43":1,"119":4}}],["node",{"2":{"43":26,"119":17}}],["north",{"2":{"45":12}}],["nor",{"2":{"39":1,"141":1,"144":1}}],["normalized",{"2":{"38":1}}],["normalize",{"2":{"38":1}}],["norm",{"2":{"6":1,"38":22}}],["now",{"2":{"6":1,"13":1,"25":1,"34":1,"37":2,"38":4,"39":1,"43":1,"48":1,"56":1,"58":1,"118":1,"119":2,"137":1,"142":1,"143":3,"144":1,"148":1,"161":5,"162":8,"163":1,"164":3,"166":2}}],["no",{"2":{"6":6,"32":1,"38":2,"43":4,"49":1,"50":1,"51":1,"52":14,"57":1,"64":2,"67":3,"81":3,"89":2,"98":2,"100":1,"102":1,"103":2,"108":2,"110":1,"111":3,"112":3,"113":1,"119":2,"120":1,"121":1,"128":3,"142":1,"144":2,"145":1,"148":1,"158":1,"164":1}}],["nonzero",{"2":{"145":1}}],["none",{"2":{"6":4,"43":1,"48":1,"49":1,"51":1,"52":1,"57":1,"58":1,"78":4,"80":1}}],["nondimensional",{"2":{"6":1,"144":1}}],["nonintersecting",{"2":{"6":1,"23":1,"134":1,"138":1}}],["non",{"2":{"3":2,"6":2,"22":1,"36":2,"43":15,"49":2,"50":1,"51":1,"52":4,"55":1,"57":1,"58":2,"95":2,"102":1,"126":1,"157":1}}],["note",{"2":{"4":4,"6":10,"19":1,"27":1,"32":1,"35":2,"38":1,"41":2,"42":2,"43":3,"45":1,"48":2,"50":3,"52":5,"56":1,"58":3,"64":5,"89":1,"94":1,"95":1,"140":1,"145":1,"149":1,"150":2,"151":1,"157":1,"162":3}}],["not",{"0":{"120":1},"2":{"1":2,"3":8,"4":1,"6":18,"18":1,"19":1,"22":1,"24":1,"29":1,"32":4,"35":1,"38":4,"39":1,"41":1,"43":18,"48":1,"51":1,"52":6,"58":3,"60":2,"61":1,"63":2,"64":4,"66":2,"67":2,"76":1,"77":2,"81":3,"83":5,"84":3,"85":2,"86":2,"89":5,"94":1,"95":2,"98":1,"107":2,"108":2,"110":1,"118":4,"119":2,"120":1,"126":1,"127":1,"128":10,"130":2,"133":2,"137":3,"139":1,"140":1,"141":1,"142":1,"144":2,"145":1,"155":1,"156":1,"157":1,"158":2,"162":2,"165":1}}],["nothing`",{"2":{"50":2,"52":2,"58":2}}],["nothing",{"2":{"1":34,"4":1,"6":43,"15":3,"43":4,"48":1,"50":2,"51":1,"52":3,"58":2,"64":1,"89":1,"118":9,"119":3,"128":8,"130":24,"133":1,"137":60,"141":1,"145":1,"148":2,"149":6,"150":6,"151":6,"152":1,"153":32,"159":7,"161":252,"162":36}}],["ne",{"2":{"148":1,"162":2}}],["net",{"2":{"133":2}}],["ness",{"2":{"128":1}}],["nesting",{"2":{"126":2}}],["nestedloopfast",{"2":{"168":1}}],["nested",{"2":{"1":2,"4":1,"6":5,"18":1,"32":1,"126":2,"128":4,"148":1,"154":1}}],["never",{"2":{"126":1,"149":1}}],["neumann",{"2":{"119":1}}],["neither",{"2":{"58":1}}],["neightbor",{"2":{"43":1}}],["neighborhood",{"2":{"119":2}}],["neighbor",{"2":{"43":26}}],["neighboring",{"2":{"6":6,"43":1,"148":1,"149":1,"150":1,"151":2}}],["nearly",{"2":{"164":1}}],["nearest",{"2":{"43":1,"52":2}}],["neatly",{"2":{"17":1}}],["nedge",{"2":{"43":2,"159":13}}],["nextnode",{"2":{"119":27}}],["nextnodes",{"2":{"119":6}}],["next",{"2":{"42":1,"43":81,"45":3,"48":4,"89":14,"119":3,"138":13,"150":5}}],["necessarily",{"2":{"6":1,"118":1,"139":1}}],["necessary",{"2":{"6":1,"126":1,"148":1}}],["newfeature",{"2":{"128":2}}],["newnodes",{"2":{"119":2}}],["new",{"2":{"6":1,"39":1,"43":58,"45":9,"49":3,"50":1,"58":16,"89":2,"119":4,"127":1,"128":18,"133":2,"134":1,"136":1,"138":19,"145":8,"149":1,"150":2,"151":1,"162":1,"163":1,"167":1}}],["negative",{"2":{"4":3,"6":3,"34":2,"35":1,"36":2,"55":2,"56":3}}],["needs",{"2":{"42":1}}],["needing",{"2":{"4":1,"6":1,"17":1,"135":1}}],["need",{"2":{"1":1,"3":1,"4":2,"5":1,"6":5,"38":2,"41":1,"43":2,"50":1,"64":4,"76":1,"77":1,"89":1,"119":2,"121":1,"135":1,"152":1,"153":1,"162":2,"168":2}}],["needed",{"2":{"1":2,"6":4,"32":1,"38":1,"43":4,"45":1,"49":1,"51":1,"56":2,"57":1,"89":5,"119":1,"128":2,"133":1,"140":3,"162":1}}],["gdal",{"2":{"164":1}}],["gml",{"2":{"164":1}}],["gpkg",{"2":{"164":3}}],["gadm",{"2":{"167":4}}],["ga",{"2":{"162":3}}],["gaps",{"2":{"119":1}}],["global",{"2":{"162":1}}],["gft",{"2":{"160":1,"162":2}}],["gc",{"2":{"133":6}}],["g",{"2":{"32":3,"35":3,"39":1,"42":3,"45":3,"56":6,"126":1,"128":6,"148":2,"159":2,"164":1}}],["gb",{"2":{"29":1,"128":10}}],["guarantee",{"2":{"19":1,"28":1}}],["guaranteed",{"2":{"1":1,"6":1,"32":1,"128":1}}],["grand",{"2":{"167":1}}],["grained",{"2":{"143":1}}],["graphics",{"2":{"6":1,"38":1}}],["great",{"2":{"161":1,"162":1,"164":1}}],["greater",{"2":{"6":1,"118":1,"145":1}}],["greiner",{"0":{"50":1,"52":1,"58":1},"2":{"43":3,"48":2,"49":1,"51":1,"57":1}}],["green",{"2":{"14":1,"162":1}}],["grouped",{"2":{"161":1}}],["groups",{"2":{"6":1,"119":1}}],["grouping",{"2":{"1":1,"6":1,"128":2}}],["grid",{"2":{"6":1,"37":1,"45":4}}],["g2",{"2":{"3":5,"6":5,"61":4,"67":12,"68":6,"69":9,"70":6,"71":6,"72":3,"73":4,"74":2,"77":3,"78":21,"81":10,"82":6,"83":10,"84":8,"85":4,"86":2,"87":4,"88":2,"98":10,"99":6,"100":10,"101":6,"102":5,"103":4,"104":4,"105":2,"108":10,"109":6,"110":9,"111":6,"112":6,"113":3,"114":4,"115":2}}],["g1",{"2":{"3":5,"4":1,"6":6,"61":4,"67":12,"68":6,"69":9,"70":6,"71":6,"72":3,"73":2,"74":4,"77":3,"78":21,"81":9,"82":6,"83":10,"84":8,"85":4,"86":2,"87":2,"88":4,"98":10,"99":6,"100":9,"101":6,"102":5,"103":4,"104":2,"105":4,"108":10,"109":6,"110":9,"111":6,"112":6,"113":3,"114":2,"115":4}}],["generic",{"2":{"22":1}}],["generation",{"2":{"148":2}}],["generated",{"2":{"29":1,"32":1,"35":1,"38":1,"39":1,"42":1,"43":1,"45":1,"48":1,"50":1,"52":1,"53":1,"56":1,"58":1,"61":1,"64":1,"74":1,"77":1,"78":1,"88":1,"89":1,"92":1,"95":1,"105":1,"115":1,"118":1,"119":1,"120":1,"128":1,"131":1,"134":1,"135":1,"138":1,"139":1,"141":1,"145":1,"148":1,"152":1,"153":1,"154":1,"158":1,"159":1,"166":1}}],["generate",{"2":{"7":1,"13":2,"148":1,"166":2}}],["generalization",{"2":{"36":1}}],["generalized",{"2":{"6":1,"36":3,"38":1}}],["generalise",{"2":{"6":4,"148":1}}],["generally",{"2":{"6":2,"158":3}}],["general",{"0":{"2":1,"4":1},"1":{"3":1,"4":1},"2":{"18":1,"20":1,"25":1,"121":1,"141":1}}],["getfeature",{"2":{"128":5,"159":5}}],["getcolumn",{"2":{"128":4}}],["getgeom",{"2":{"73":1,"74":1,"87":1,"88":1,"95":2,"104":1,"105":1,"114":1,"115":1,"128":6,"148":3,"159":6}}],["getring",{"2":{"43":1}}],["getindex",{"2":{"38":2}}],["gethole",{"2":{"32":1,"35":1,"42":1,"43":4,"45":1,"48":1,"49":2,"51":2,"56":1,"58":6,"64":2,"89":5,"131":1,"161":1}}],["getexterior",{"2":{"32":1,"35":1,"38":1,"42":1,"43":3,"45":1,"48":1,"49":2,"51":2,"56":1,"57":3,"58":6,"64":2,"89":5,"118":1,"119":1,"131":1,"161":1}}],["getpolygon",{"2":{"50":3,"52":2,"58":2,"64":3}}],["getpoint",{"2":{"31":1,"32":5,"34":2,"35":1,"38":1,"41":1,"42":6,"43":3,"44":2,"45":3,"47":3,"55":1,"56":6,"60":4,"63":4,"64":13,"66":1,"76":1,"78":7,"80":4,"89":28,"91":2,"94":4,"95":2,"97":2,"100":2,"107":4,"118":5,"131":3,"143":4,"145":2,"152":1,"159":3,"161":2}}],["getproperty",{"2":{"13":2,"14":1}}],["get",{"2":{"6":1,"13":1,"34":1,"39":1,"43":9,"49":1,"50":1,"51":1,"52":2,"57":2,"119":4,"128":4,"141":1,"144":3,"148":1,"149":1,"151":1,"152":2,"158":5,"159":1,"161":2,"167":2}}],["geoparquet",{"2":{"164":4}}],["geopoly1",{"2":{"162":1,"163":1}}],["geopoly2",{"2":{"162":1,"163":1}}],["geoaxis",{"2":{"162":4}}],["geographic",{"2":{"162":1,"164":1}}],["geographiclib",{"2":{"6":1,"144":1}}],["geointeface",{"2":{"126":1}}],["geointerace",{"2":{"22":1}}],["geointerfacemakie",{"2":{"147":1,"166":1,"167":1}}],["geointerface",{"0":{"28":1},"2":{"1":20,"3":9,"4":2,"6":41,"11":1,"13":1,"14":1,"15":1,"22":3,"25":1,"28":1,"29":7,"31":1,"32":1,"34":1,"35":1,"38":23,"41":1,"42":1,"43":1,"44":1,"45":1,"47":1,"48":1,"49":1,"51":1,"55":1,"56":11,"57":1,"60":1,"61":2,"63":1,"64":2,"66":1,"67":2,"76":1,"77":2,"78":1,"80":1,"81":3,"91":1,"92":2,"94":1,"95":2,"97":1,"98":2,"107":1,"108":2,"118":5,"119":1,"123":3,"126":3,"128":6,"130":9,"133":1,"134":1,"135":1,"137":23,"140":2,"143":1,"144":1,"147":1,"148":2,"153":13,"154":1,"159":1,"160":1,"161":122,"162":14,"166":1,"167":1}}],["geo",{"2":{"119":1,"144":4,"162":2}}],["geotable",{"2":{"27":1}}],["geojson",{"2":{"11":1,"148":5,"160":1,"162":4,"164":3}}],["geodataframes",{"2":{"164":3}}],["geod",{"2":{"6":2,"144":3}}],["geodesic`",{"2":{"144":2}}],["geodesic",{"2":{"6":5,"29":1,"143":6,"144":8,"145":1}}],["geodesicsegments",{"2":{"0":1,"6":2,"142":1,"143":3,"144":6,"145":2}}],["geoformattypes",{"2":{"1":2,"140":2,"160":1,"162":10}}],["geomakie",{"2":{"160":2,"162":5}}],["geomfromgeos",{"2":{"144":1}}],["geomtype",{"2":{"128":2}}],["geoms",{"2":{"6":1,"89":1,"123":1,"128":18}}],["geometies",{"2":{"3":1,"6":1,"97":1,"98":1}}],["geometrie",{"2":{"84":1}}],["geometries",{"0":{"68":1,"69":1,"70":1,"71":1,"72":1,"73":1,"74":1,"82":1,"83":1,"84":1,"85":1,"86":1,"87":1,"88":1,"99":1,"100":1,"101":1,"102":1,"103":1,"104":1,"105":1,"109":1,"110":1,"111":1,"112":1,"113":1,"114":1,"115":1,"161":1},"2":{"1":6,"3":8,"4":14,"6":61,"18":3,"20":1,"22":3,"25":2,"27":4,"31":1,"32":3,"35":4,"42":1,"45":2,"48":1,"49":5,"51":5,"52":4,"55":1,"56":4,"57":5,"61":1,"63":1,"64":7,"66":1,"67":1,"78":2,"81":2,"89":1,"91":1,"92":1,"94":2,"95":3,"97":2,"98":2,"108":2,"110":1,"121":1,"123":4,"125":1,"127":2,"128":13,"135":1,"140":2,"142":3,"143":1,"144":4,"145":1,"146":1,"149":1,"150":1,"151":1,"154":1,"159":1,"160":5,"162":3,"163":2,"164":1,"165":5,"166":1,"168":1}}],["geometrical",{"2":{"165":1}}],["geometric",{"2":{"25":2,"41":1}}],["geometry=",{"2":{"163":1}}],["geometryof",{"2":{"128":1}}],["geometryopsprojext",{"2":{"140":1,"141":1,"144":1,"145":1}}],["geometryopslibgeosext",{"2":{"39":1}}],["geometryops",{"0":{"0":1,"29":1},"1":{"1":1,"2":1,"3":1,"4":1,"5":1,"6":1},"2":{"0":115,"1":6,"3":18,"4":9,"5":3,"6":110,"7":2,"11":1,"13":1,"14":1,"15":1,"17":2,"25":1,"29":1,"31":1,"34":1,"37":5,"39":1,"41":1,"44":1,"47":1,"48":1,"49":1,"51":1,"55":1,"57":1,"60":1,"61":2,"63":1,"64":1,"66":1,"67":2,"76":1,"77":2,"78":2,"80":1,"81":2,"91":1,"92":1,"94":1,"95":1,"97":1,"98":2,"107":1,"108":2,"118":3,"119":2,"123":4,"128":1,"130":1,"133":1,"134":4,"137":1,"141":1,"143":1,"144":2,"147":1,"148":2,"153":1,"155":1,"158":2,"159":1,"160":1,"161":3,"165":1,"166":2,"167":2}}],["geometrybasics",{"2":{"29":3,"37":2,"38":10,"55":1,"67":1,"98":1,"108":1}}],["geometrycolumns",{"2":{"128":3}}],["geometrycollections",{"2":{"165":1}}],["geometrycollection",{"2":{"23":1,"167":1}}],["geometrycollectiontrait",{"2":{"23":1,"73":1,"74":1,"87":1,"88":1,"104":1,"105":1,"114":1,"115":1}}],["geometrycorrections",{"2":{"133":1}}],["geometrycorrection",{"2":{"0":1,"6":11,"131":2,"132":2,"133":13,"134":11,"138":4}}],["geometry",{"0":{"2":1,"51":1,"73":2,"74":2,"87":2,"88":2,"104":2,"105":2,"114":2,"115":2,"132":1,"140":1,"146":1,"160":1,"163":1},"1":{"3":1,"4":1,"133":1,"134":1,"141":1,"147":1,"148":1,"161":1,"162":1,"163":1,"164":1},"2":{"1":10,"3":23,"4":12,"6":70,"9":1,"11":2,"18":4,"20":1,"23":3,"27":1,"29":1,"32":7,"35":4,"39":4,"42":3,"44":1,"45":4,"48":4,"52":3,"55":4,"56":6,"60":5,"61":2,"64":8,"66":4,"67":5,"68":4,"69":1,"73":3,"74":4,"76":4,"77":4,"78":3,"80":2,"81":5,"82":4,"83":2,"84":1,"87":3,"88":4,"89":2,"91":2,"95":3,"97":2,"98":3,"99":4,"100":2,"104":3,"105":4,"107":4,"108":5,"109":4,"114":3,"115":4,"117":1,"121":3,"123":2,"126":2,"128":42,"130":1,"131":1,"132":2,"133":23,"134":6,"135":1,"139":1,"140":6,"142":3,"143":1,"144":5,"145":8,"148":6,"159":6,"161":1,"162":5,"163":2,"164":2,"165":1,"166":7,"167":4,"168":2}}],["geom2",{"2":{"3":8,"4":1,"6":9,"56":6,"64":1,"78":6,"81":1,"92":3,"95":6,"98":1,"108":2}}],["geom1",{"2":{"3":8,"4":1,"6":9,"56":6,"64":1,"78":4,"81":1,"92":3,"95":6,"98":1,"108":2}}],["geom",{"2":{"1":7,"4":21,"6":48,"18":3,"29":12,"32":25,"35":17,"42":28,"43":16,"45":6,"48":15,"49":8,"50":2,"51":12,"52":10,"56":28,"57":9,"58":9,"64":45,"67":4,"78":1,"81":4,"89":3,"95":1,"98":4,"108":4,"118":3,"119":1,"121":2,"123":3,"128":91,"138":11,"139":4,"145":13,"148":36,"152":3,"153":7,"154":4,"159":13,"167":6}}],["geospatial",{"0":{"164":1},"2":{"160":5,"162":4,"164":5}}],["geoscontext",{"2":{"144":1}}],["geosdensify",{"2":{"144":3}}],["geos",{"0":{"158":1},"2":{"0":1,"6":5,"39":4,"146":5,"148":2,"155":1,"158":12}}],["got",{"2":{"152":3}}],["goes",{"2":{"6":2,"118":2}}],["good",{"2":{"6":1,"38":1,"158":2,"162":1}}],["going",{"2":{"4":4,"6":5,"45":2,"64":5,"118":1,"119":1,"160":1}}],["go",{"2":{"1":5,"3":17,"4":2,"6":42,"11":9,"13":1,"14":1,"15":6,"18":1,"29":2,"31":1,"34":1,"38":1,"41":2,"44":1,"47":2,"48":2,"49":2,"51":2,"55":6,"57":2,"60":2,"61":2,"63":1,"64":2,"66":1,"67":2,"76":2,"77":2,"78":1,"80":1,"81":2,"91":1,"92":2,"94":1,"95":2,"97":1,"98":2,"107":2,"108":2,"118":6,"119":2,"121":1,"123":1,"128":3,"130":3,"137":3,"143":7,"144":8,"147":2,"148":49,"153":3,"158":1,"159":2,"160":1,"161":3,"162":1,"164":1,"165":9,"166":2,"167":5,"168":1}}],["gtrait",{"2":{"56":2}}],["gt",{"2":{"1":1,"6":2,"9":2,"10":1,"11":5,"43":3,"118":3}}],["gif",{"2":{"150":1}}],["githack",{"2":{"148":1}}],["github",{"2":{"6":1}}],["gives",{"2":{"167":1}}],["give",{"2":{"89":1,"164":1}}],["given",{"2":{"4":7,"6":22,"18":2,"27":1,"31":1,"32":1,"35":2,"42":3,"43":8,"45":3,"48":5,"49":1,"50":2,"51":1,"52":4,"56":8,"57":1,"58":2,"60":1,"61":1,"64":4,"67":1,"76":1,"77":1,"81":1,"89":7,"91":1,"92":1,"98":1,"100":1,"108":1,"121":1,"133":4,"134":1,"137":1,"142":2,"144":2,"145":2,"151":1}}],["gis",{"2":{"5":1,"6":1,"25":1,"38":1}}],["gi",{"2":{"1":13,"3":42,"4":31,"6":123,"11":8,"13":15,"14":15,"15":8,"18":2,"29":1,"31":3,"32":30,"34":5,"35":21,"37":1,"41":5,"42":38,"43":34,"44":5,"45":17,"47":6,"48":13,"49":19,"50":16,"51":25,"52":25,"55":8,"56":42,"57":17,"58":36,"60":7,"61":3,"63":7,"64":99,"66":3,"67":4,"68":6,"69":12,"70":10,"71":7,"72":4,"73":8,"74":6,"76":3,"77":3,"78":21,"80":7,"81":2,"82":3,"83":12,"84":14,"85":4,"86":2,"87":8,"88":6,"89":59,"91":5,"92":3,"94":7,"95":51,"97":5,"98":3,"99":6,"100":15,"101":10,"102":7,"103":4,"104":8,"105":6,"107":7,"108":2,"109":6,"110":12,"111":10,"112":7,"113":4,"114":8,"115":6,"118":32,"119":15,"121":4,"123":2,"128":111,"130":2,"131":10,"133":9,"135":1,"137":3,"138":8,"139":5,"143":6,"144":6,"145":12,"147":2,"148":34,"152":4,"153":9,"154":5,"156":9,"159":55,"160":1,"161":21,"162":4,"166":5,"167":2}}],["o",{"2":{"128":24}}],["odd",{"2":{"89":1}}],["own",{"2":{"58":1,"121":2}}],["occur",{"2":{"52":1}}],["occurs",{"2":{"52":1}}],["occupied",{"2":{"34":1}}],["old",{"2":{"43":8,"128":3}}],["ourselves",{"2":{"144":1}}],["our",{"2":{"24":1,"144":1,"161":4,"162":3,"166":1}}],["out=3",{"2":{"89":1}}],["out=4",{"2":{"51":1}}],["out`",{"2":{"51":1,"89":1}}],["out",{"2":{"6":3,"43":12,"45":23,"52":4,"55":5,"58":4,"67":4,"78":1,"81":3,"89":102,"95":2,"98":4,"108":4,"118":1,"128":1,"145":1,"158":2}}],["outside",{"2":{"3":2,"4":1,"6":3,"43":3,"45":1,"50":2,"52":4,"55":2,"56":1,"58":3,"66":1,"77":1,"80":1,"89":12,"95":3,"113":1}}],["outputs",{"2":{"43":1}}],["output",{"2":{"3":8,"4":1,"6":17,"18":1,"23":1,"48":2,"49":1,"51":1,"57":1,"58":2,"61":1,"64":1,"67":1,"77":1,"81":1,"92":1,"95":1,"98":1,"108":1,"118":2,"148":1,"152":1,"159":1}}],["outermost",{"2":{"128":1}}],["outer",{"2":{"1":1,"6":1,"126":1,"128":2,"165":1,"166":1}}],["omit",{"2":{"6":1,"144":1}}],["obtain",{"2":{"128":1}}],["obtained",{"2":{"23":1}}],["observable",{"2":{"14":2}}],["obs",{"2":{"14":10}}],["obviously",{"2":{"4":1,"6":1,"135":1}}],["objects",{"2":{"1":4,"4":1,"6":17,"123":3,"126":5,"128":8,"135":1,"142":1,"148":2,"154":1}}],["object",{"2":{"1":4,"4":1,"5":1,"6":8,"20":1,"38":1,"55":1,"89":4,"123":1,"126":5,"128":3,"135":1,"140":3,"144":1,"148":1,"154":1}}],["obj",{"2":{"1":4,"4":1,"6":17,"123":3,"128":10,"135":1,"139":2,"144":3,"148":3,"153":1,"154":1}}],["others",{"2":{"39":1,"138":1}}],["otherwise",{"2":{"4":2,"6":3,"39":1,"43":1,"50":1,"52":1,"56":2,"119":1,"139":1,"141":1,"144":1,"159":1}}],["other",{"0":{"4":1,"6":1},"2":{"3":4,"6":12,"32":1,"43":5,"49":1,"51":1,"52":1,"56":2,"57":2,"58":3,"60":1,"64":2,"69":1,"89":8,"91":1,"94":1,"95":4,"97":2,"98":2,"101":1,"110":1,"119":1,"123":1,"126":1,"128":1,"134":2,"136":1,"138":2,"148":2,"150":2,"155":1,"156":1,"158":1,"162":1,"165":1,"168":1}}],["ogc",{"0":{"3":1}}],["over=3",{"2":{"51":1}}],["over`",{"2":{"51":1}}],["overflow",{"2":{"48":1}}],["overhead",{"2":{"22":1,"128":2}}],["override",{"2":{"6":1,"38":1}}],["overlapping",{"2":{"43":11,"52":4,"58":6}}],["overlap",{"2":{"3":4,"6":4,"9":1,"43":2,"52":8,"58":2,"67":1,"76":1,"89":2,"94":5,"95":6,"108":1,"136":1}}],["overlaps",{"0":{"93":1,"94":1},"1":{"94":1,"95":1},"2":{"0":10,"3":5,"6":13,"29":1,"52":1,"93":1,"94":3,"95":30,"119":1,"165":1}}],["over",{"2":{"1":1,"6":3,"34":2,"35":1,"42":3,"43":5,"45":1,"51":1,"52":10,"58":1,"67":1,"78":1,"81":1,"89":15,"95":2,"98":1,"108":1,"128":22,"161":3}}],["ops",{"2":{"128":1}}],["optimisation",{"2":{"89":1}}],["optimise",{"2":{"78":1}}],["options",{"2":{"14":1,"43":1}}],["optional",{"2":{"4":5,"6":6,"32":1,"35":2,"45":1,"56":2}}],["open",{"2":{"43":1,"52":1,"130":1,"162":1}}],["operates",{"2":{"128":1,"129":1,"136":1}}],["operate",{"2":{"18":1,"27":1,"128":1}}],["operations",{"0":{"23":1},"2":{"23":1,"52":1,"58":1,"121":1}}],["operation",{"2":{"6":3,"43":1,"121":1,"134":2,"138":2,"158":2}}],["opposite",{"2":{"3":5,"6":5,"43":2,"50":1,"52":2,"58":1,"61":2,"67":1,"77":2,"92":2,"108":1}}],["op",{"2":{"1":3,"6":3,"19":2,"42":1,"128":35}}],["on=2",{"2":{"89":1}}],["on`",{"2":{"89":1}}],["once",{"2":{"78":1,"95":1,"119":1}}],["onto",{"2":{"56":1}}],["ones",{"2":{"137":1}}],["oneunit",{"2":{"38":1}}],["one",{"2":{"1":1,"3":9,"6":14,"23":1,"32":4,"35":2,"37":1,"38":1,"42":1,"43":5,"45":3,"49":1,"50":1,"51":1,"52":31,"55":2,"57":2,"58":2,"66":1,"73":1,"78":1,"80":1,"89":18,"94":1,"95":18,"97":2,"98":2,"101":3,"102":2,"103":2,"104":1,"105":1,"107":1,"108":1,"114":1,"118":1,"119":5,"128":1,"137":1,"140":1,"144":1,"152":1,"153":1,"162":1,"165":1}}],["on",{"2":{"1":2,"4":3,"6":11,"9":1,"18":1,"20":1,"23":2,"25":3,"27":2,"32":5,"35":3,"37":1,"38":2,"42":3,"43":28,"45":8,"48":1,"49":1,"50":5,"51":1,"52":7,"55":1,"56":3,"57":1,"58":2,"64":2,"66":1,"67":7,"69":2,"70":3,"71":3,"72":1,"78":4,"81":6,"83":4,"84":1,"85":1,"89":125,"95":9,"98":7,"100":2,"108":7,"110":2,"111":1,"112":1,"119":3,"121":1,"123":1,"128":15,"129":1,"131":1,"134":1,"136":1,"142":1,"144":1,"150":1,"157":2,"160":1,"162":4,"164":1,"165":4,"166":1,"167":2,"168":2}}],["only",{"2":{"0":1,"5":1,"6":10,"23":1,"35":2,"37":2,"38":1,"39":1,"42":2,"43":4,"45":3,"48":1,"49":1,"51":1,"52":1,"56":2,"57":1,"64":3,"94":3,"95":1,"97":1,"119":2,"128":2,"137":1,"142":1,"143":1,"145":2,"155":1,"158":2,"162":1,"167":1,"168":1}}],["often",{"2":{"162":1}}],["offers",{"2":{"161":1}}],["offer",{"2":{"144":1}}],["offset",{"2":{"32":8,"64":1}}],["off",{"2":{"4":1,"6":1,"43":4,"64":1,"89":6,"128":1}}],["of",{"2":{"1":7,"3":29,"4":66,"5":5,"6":194,"7":2,"9":4,"17":3,"18":5,"19":1,"20":2,"22":1,"23":2,"24":2,"25":1,"27":3,"31":1,"32":38,"34":5,"35":28,"36":9,"37":1,"38":13,"39":1,"41":3,"42":12,"43":84,"44":5,"45":31,"48":5,"49":12,"50":13,"51":10,"52":50,"55":6,"56":18,"57":9,"58":20,"60":4,"61":5,"63":2,"64":19,"66":6,"67":18,"69":1,"70":5,"71":5,"72":1,"73":2,"74":1,"77":5,"78":1,"80":3,"81":14,"83":1,"84":1,"85":1,"87":2,"88":1,"89":85,"91":1,"92":3,"94":1,"95":13,"97":2,"98":15,"100":3,"101":7,"102":5,"103":1,"104":2,"105":1,"107":4,"108":18,"110":3,"111":6,"112":6,"113":4,"114":1,"115":1,"117":2,"118":3,"119":19,"120":2,"121":3,"123":1,"126":5,"127":2,"128":26,"129":1,"130":1,"134":2,"136":4,"138":4,"139":3,"140":1,"142":2,"143":2,"144":5,"145":2,"148":8,"150":4,"151":2,"152":1,"154":1,"156":2,"158":4,"159":2,"161":6,"162":6,"163":1,"164":4,"165":3,"166":4,"167":2}}],["org",{"2":{"49":1,"51":1,"57":1,"89":2,"150":1}}],["organise",{"2":{"10":1}}],["orange",{"2":{"47":1,"55":1,"60":2,"63":2,"80":2,"94":2,"107":2}}],["oroginal",{"2":{"128":2}}],["oro",{"2":{"11":2}}],["originate",{"2":{"58":1}}],["originals",{"2":{"22":1}}],["original",{"2":{"6":4,"18":1,"22":1,"43":9,"48":5,"49":1,"51":1,"58":4,"126":1,"128":1,"133":1,"139":2,"145":1,"147":4,"148":1}}],["orignal",{"2":{"43":1}}],["orient",{"0":{"13":1},"1":{"14":1,"15":1},"2":{"13":7,"14":12,"43":15,"52":53}}],["orientation",{"0":{"116":1},"1":{"117":1,"118":1},"2":{"6":2,"10":1,"29":1,"35":1,"43":10,"45":2,"49":1,"51":2,"52":2,"57":1,"89":16,"117":1,"148":1}}],["ordered",{"2":{"34":1}}],["order",{"2":{"1":4,"3":1,"4":2,"6":6,"32":1,"34":1,"35":2,"38":1,"43":4,"52":1,"56":2,"58":1,"61":1,"64":3,"67":1,"77":1,"92":1,"128":2,"140":2,"148":1,"165":1}}],["or",{"0":{"24":1},"2":{"1":11,"3":3,"4":10,"6":53,"18":1,"20":1,"22":1,"23":1,"25":1,"27":2,"29":1,"32":4,"35":1,"38":1,"39":1,"41":2,"42":4,"43":24,"44":1,"48":1,"49":1,"50":3,"51":2,"52":10,"55":2,"56":4,"57":1,"58":2,"60":1,"64":3,"67":1,"69":2,"70":1,"71":1,"72":1,"73":1,"74":1,"80":2,"83":2,"84":3,"85":2,"86":1,"87":1,"88":1,"89":26,"91":2,"92":1,"94":1,"95":2,"97":1,"98":1,"104":1,"105":1,"108":1,"110":2,"114":1,"115":1,"117":2,"118":3,"119":7,"121":3,"123":1,"125":2,"127":1,"128":9,"129":1,"131":1,"133":5,"134":2,"140":2,"141":1,"142":2,"144":2,"145":2,"146":1,"148":3,"150":2,"152":2,"154":1,"156":3,"159":2,"165":1,"167":2}}],["est",{"2":{"167":1}}],["essentially",{"2":{"156":1}}],["especially",{"2":{"6":1,"18":1,"23":1,"119":1}}],["effects",{"2":{"128":3}}],["efficiently",{"2":{"20":1}}],["efficient",{"2":{"6":1,"38":1,"49":2,"51":2,"57":2,"131":1}}],["e2",{"2":{"89":4}}],["e1",{"2":{"89":8}}],["euclid",{"2":{"45":2,"56":11,"89":1,"149":1}}],["euclidean",{"2":{"4":1,"6":1,"38":13,"56":6,"145":1}}],["everything",{"2":{"148":1}}],["every",{"2":{"43":1,"64":2,"126":1,"158":1}}],["evenly",{"2":{"166":1}}],["eventually",{"2":{"43":1}}],["even",{"2":{"35":2,"45":1,"52":1,"56":1,"64":1,"121":1,"130":1,"136":1}}],["evaluated",{"2":{"165":1}}],["eval",{"2":{"29":2,"128":2}}],["epsg",{"2":{"162":13}}],["eps",{"2":{"32":2,"52":14}}],["eponymous",{"2":{"6":1,"144":1}}],["e",{"2":{"9":1,"22":1,"39":1,"119":1,"126":1,"128":2,"161":2,"162":1,"164":1}}],["eltype",{"2":{"119":4}}],["elements",{"2":{"73":1,"74":1,"87":1,"88":1,"95":1,"104":1,"105":1,"114":1,"115":1}}],["element",{"2":{"6":5,"31":1,"43":4,"48":2,"49":1,"51":1,"57":3,"143":1,"162":1}}],["elsewhere",{"2":{"48":1}}],["elseif",{"2":{"43":5,"45":7,"49":1,"51":1,"52":14,"57":2,"58":1,"78":3,"89":10,"118":1,"119":2,"138":1,"150":2,"152":2}}],["else",{"2":{"3":6,"6":6,"32":1,"38":2,"43":19,"45":9,"48":1,"50":2,"52":9,"57":1,"58":9,"78":2,"89":17,"95":8,"119":20,"128":8,"131":1,"139":1,"141":1,"148":2,"150":4,"152":2,"153":1,"154":1,"158":1}}],["etc",{"2":{"6":1,"20":2,"34":1,"156":1,"164":1}}],["emtpty",{"2":{"119":1}}],["empty",{"2":{"4":2,"6":6,"32":2,"43":2,"49":1,"51":1,"52":3,"57":1,"119":1}}],["embedding",{"0":{"127":1,"135":1}}],["embedded",{"2":{"119":1,"127":3,"162":1}}],["embed",{"2":{"0":2,"4":1,"6":1,"127":1,"135":2}}],["errors",{"2":{"29":1,"52":1,"145":1}}],["error",{"0":{"141":1},"2":{"4":1,"6":4,"7":1,"18":1,"29":6,"38":1,"39":4,"43":2,"52":2,"53":1,"64":2,"119":1,"126":1,"133":2,"141":3,"144":5,"152":4,"158":3,"159":1}}],["edgekeys",{"2":{"119":3}}],["edge",{"2":{"3":1,"4":3,"6":4,"20":1,"29":1,"35":1,"41":1,"43":25,"45":13,"49":1,"51":1,"52":9,"56":4,"57":1,"64":1,"69":2,"84":2,"85":1,"89":7,"95":21,"110":2,"111":1,"112":1,"119":7,"159":2}}],["edges",{"2":{"0":1,"4":2,"6":9,"43":12,"45":8,"50":3,"52":18,"56":3,"58":3,"60":1,"63":2,"64":1,"69":1,"70":3,"71":7,"72":3,"80":1,"83":3,"86":1,"89":3,"95":20,"107":1,"110":1,"119":22,"159":29}}],["earlier",{"2":{"161":3}}],["earth",{"2":{"6":2,"25":1,"144":2,"148":2,"162":2,"165":1}}],["easiest",{"2":{"163":1}}],["easier",{"2":{"155":1,"157":1}}],["easily",{"2":{"121":1}}],["east",{"2":{"45":9}}],["easy",{"2":{"1":1,"6":1,"136":1,"153":1}}],["eachindex",{"2":{"32":1,"52":2,"118":1,"119":3,"128":2,"149":1,"152":1}}],["each",{"2":{"3":2,"4":3,"6":6,"9":1,"18":2,"20":1,"32":4,"35":2,"36":4,"38":1,"43":5,"45":1,"52":3,"56":1,"64":2,"67":1,"81":1,"89":6,"94":1,"95":3,"98":1,"108":1,"118":1,"119":1,"128":1,"136":2,"148":1,"163":1,"164":1,"166":2,"167":2,"168":1}}],["equatorial",{"2":{"6":6,"144":4}}],["equality",{"2":{"43":1,"52":1,"165":1}}],["equal",{"2":{"3":2,"4":16,"6":19,"32":6,"52":1,"55":1,"56":4,"63":3,"64":22,"69":1,"83":1,"89":15,"94":1,"95":2,"100":2,"110":1,"130":1}}],["equals",{"0":{"62":1,"63":1},"1":{"63":1,"64":1},"2":{"0":17,"4":3,"6":19,"29":1,"32":2,"43":4,"48":2,"52":8,"56":1,"62":1,"63":2,"64":50,"69":1,"83":1,"89":10,"95":2,"100":3,"110":1,"165":1}}],["equivalent",{"2":{"3":1,"4":4,"6":6,"35":1,"43":1,"52":1,"58":1,"64":5,"67":1,"89":1}}],["enable",{"2":{"168":1}}],["enabled",{"2":{"165":1}}],["enabling",{"0":{"168":1}}],["enclosed",{"2":{"89":1}}],["encode",{"2":{"24":1}}],["encompasses",{"2":{"18":1,"89":1}}],["encounters",{"2":{"18":1}}],["en",{"2":{"89":1,"150":1}}],["envelope",{"2":{"52":2}}],["envelopes",{"2":{"52":2}}],["enough",{"2":{"43":1}}],["entirely",{"2":{"89":1}}],["entire",{"2":{"45":1,"89":4}}],["entry",{"2":{"43":11,"50":3,"52":4,"58":3,"119":1}}],["ent",{"2":{"43":19,"48":2}}],["enter",{"2":{"43":4}}],["ensuring",{"2":{"6":1,"142":1,"145":1}}],["ensure",{"2":{"6":3,"38":1,"49":1,"51":1,"57":1,"129":2,"132":1}}],["ensures",{"2":{"6":3,"131":1,"134":3,"138":2}}],["enumerate",{"2":{"13":2,"32":1,"43":10,"45":1,"48":1,"50":1,"58":2,"89":1,"119":2,"138":2,"152":1}}],["enum",{"2":{"6":2,"43":3,"51":3,"89":3}}],["endpt",{"2":{"150":3}}],["endpoints",{"2":{"43":3,"45":1,"50":1,"52":7,"56":2,"58":1,"89":11,"95":2,"97":1}}],["endpoint=3",{"2":{"43":1}}],["endpointtype",{"2":{"43":2}}],["endpoint",{"2":{"3":1,"6":2,"43":27,"51":1,"52":16,"56":2,"66":1,"89":3,"95":2,"148":4,"150":4,"161":1}}],["ending",{"2":{"43":1,"45":1}}],["end",{"2":{"1":1,"6":1,"9":1,"13":4,"14":3,"29":4,"32":18,"35":8,"38":35,"39":3,"42":10,"43":130,"45":43,"48":9,"49":8,"50":12,"51":5,"52":35,"53":1,"56":19,"57":6,"58":24,"64":20,"73":2,"74":2,"78":20,"87":2,"88":2,"89":104,"95":21,"100":1,"104":2,"105":2,"110":1,"114":2,"115":2,"118":9,"119":44,"120":4,"121":1,"128":49,"129":1,"131":5,"133":3,"138":18,"139":4,"140":1,"141":2,"144":8,"145":8,"148":7,"149":6,"150":30,"151":3,"152":27,"153":4,"154":4,"156":1,"157":3,"158":4,"159":19}}],["enforce",{"2":{"0":1,"6":2,"158":3}}],["exist",{"2":{"43":1,"52":2,"158":1}}],["existingnodes",{"2":{"119":3}}],["existing",{"2":{"43":3,"57":1,"119":1,"162":2,"163":1}}],["exists",{"2":{"43":1,"45":1,"52":1}}],["exits",{"2":{"43":1}}],["exit",{"2":{"43":32,"48":2,"50":3,"52":3,"58":2}}],["excluding",{"2":{"86":1,"89":1,"110":2}}],["exclude",{"2":{"78":9}}],["excluded",{"2":{"52":1}}],["exclusively",{"2":{"102":1}}],["exclusive",{"2":{"45":1,"52":2}}],["exc",{"2":{"39":2,"141":2,"144":2}}],["excellent",{"2":{"23":1}}],["except",{"2":{"18":1,"19":1,"52":1}}],["excess",{"2":{"5":1,"6":1,"38":1}}],["exp10",{"2":{"144":1,"148":2}}],["explicity",{"2":{"64":1}}],["explicitly",{"2":{"6":1,"18":1,"24":1,"32":2,"35":1,"38":1,"39":1,"56":2,"141":1,"144":1,"145":1}}],["expressed",{"2":{"36":2}}],["express",{"2":{"36":1}}],["experimental",{"2":{"29":3}}],["expect",{"2":{"1":1,"91":1,"140":1}}],["export",{"2":{"36":1,"142":1,"162":1,"164":1}}],["exposes",{"2":{"17":1}}],["exponential",{"2":{"9":1}}],["ext2",{"2":{"89":3}}],["ext1",{"2":{"89":3}}],["ext",{"2":{"37":15,"43":10,"45":2,"48":3,"49":8,"51":8,"52":18,"57":8,"58":14,"78":7,"89":7}}],["extrema",{"2":{"119":1,"159":1}}],["extreem",{"2":{"32":10}}],["extract",{"2":{"119":1,"128":3,"148":1}}],["extra",{"2":{"6":3,"43":1,"57":1,"142":1,"144":2,"145":1}}],["external",{"2":{"35":1,"89":2}}],["exteriors",{"2":{"9":1,"51":2,"57":2,"119":1}}],["exterior",{"2":{"3":4,"4":2,"6":10,"32":1,"34":1,"35":1,"37":1,"38":36,"42":2,"43":4,"49":2,"56":1,"57":3,"58":14,"60":1,"61":1,"64":2,"67":3,"77":1,"81":2,"89":9,"98":2,"107":1,"108":3,"111":3,"112":3,"118":6,"119":6,"131":3,"132":1,"134":1,"135":1,"161":2}}],["extending",{"2":{"95":1}}],["extended",{"2":{"56":1}}],["extensions",{"2":{"164":1}}],["extension",{"2":{"1":1,"6":1,"38":1,"39":1,"66":1,"120":1,"140":3,"141":2,"144":1,"145":1,"146":1,"164":1}}],["extent=true",{"2":{"135":1}}],["extent=nothing",{"2":{"128":1}}],["extent=",{"2":{"128":3}}],["extent=false",{"2":{"128":1,"148":1}}],["extent=gi",{"2":{"119":3}}],["extent`",{"2":{"125":1,"135":1}}],["extents",{"2":{"4":3,"6":4,"29":5,"45":1,"52":5,"89":5,"95":1,"119":3,"128":2,"135":2,"159":2}}],["extent",{"0":{"135":1},"2":{"0":2,"1":4,"4":3,"6":11,"24":1,"29":2,"37":1,"44":1,"45":1,"52":10,"89":4,"95":2,"119":12,"125":3,"127":4,"128":28,"135":2,"148":1,"157":1,"159":7}}],["exactly",{"2":{"152":1}}],["exactpredicates",{"2":{"7":1,"13":2,"14":2,"29":1}}],["exact",{"2":{"3":5,"6":5,"7":2,"12":1,"13":1,"43":36,"45":6,"48":7,"49":5,"51":5,"52":7,"53":1,"57":5,"58":7,"61":2,"67":3,"69":1,"70":3,"71":3,"72":1,"77":2,"78":1,"81":2,"83":1,"84":3,"85":2,"86":1,"89":24,"92":2,"95":3,"98":2,"100":1,"101":3,"102":1,"103":1,"108":3,"110":1,"111":3,"112":3,"113":1,"119":1,"137":1}}],["exampleusing",{"2":{"37":1}}],["examples",{"0":{"143":1,"147":1},"2":{"3":8,"4":1,"6":11,"61":1,"64":1,"67":1,"77":1,"78":1,"81":1,"95":1,"98":1,"108":1,"118":2,"159":1}}],["example",{"0":{"37":1,"130":1,"137":1,"166":1,"167":1},"2":{"1":3,"3":2,"6":12,"11":1,"20":1,"23":2,"31":1,"34":1,"37":1,"41":1,"42":1,"44":1,"47":1,"48":1,"49":1,"51":1,"55":1,"57":1,"60":1,"63":1,"64":1,"66":1,"76":1,"78":1,"80":1,"89":1,"91":1,"92":1,"94":1,"97":1,"107":1,"118":1,"119":8,"121":1,"128":2,"130":1,"132":1,"136":1,"137":1,"139":1,"147":1,"148":2,"153":1,"158":1,"166":1,"168":1}}],["either",{"2":{"1":2,"3":1,"6":4,"22":1,"25":1,"43":9,"49":1,"51":1,"52":2,"55":1,"57":1,"58":1,"67":1,"89":5,"91":1,"97":1,"98":1,"108":1,"119":1,"128":3,"133":1,"165":1}}],["lj",{"2":{"119":2}}],["lrs",{"2":{"148":2}}],["lr",{"2":{"119":3}}],["lp",{"2":{"89":2}}],["lstart",{"2":{"89":2}}],["ls",{"2":{"89":12}}],["ll",{"2":{"17":1,"37":1,"143":2,"148":1,"162":1,"163":1}}],["l",{"2":{"14":4,"38":6,"78":2,"89":32}}],["lgeos",{"2":{"148":1}}],["lg",{"2":{"13":1,"14":1,"15":2,"144":9,"148":17}}],["l305",{"2":{"6":1}}],["loudly",{"2":{"128":1}}],["log10",{"2":{"144":2,"148":4}}],["log",{"2":{"123":3,"124":1,"143":2}}],["location",{"2":{"43":1,"89":6}}],["local",{"2":{"32":3,"35":1,"43":4,"50":1,"58":1,"119":1}}],["loose",{"2":{"129":1}}],["lookup",{"2":{"119":1,"128":1}}],["looks",{"2":{"41":1}}],["look",{"2":{"34":2,"119":2,"130":1,"143":1}}],["looping",{"2":{"119":1}}],["loop",{"2":{"32":1,"38":2,"42":3,"43":8,"45":1,"52":1,"58":1,"89":5,"119":3,"150":1}}],["lower",{"2":{"6":1,"7":1,"119":1,"166":1}}],["lon",{"2":{"6":2,"143":1,"144":2}}],["longitude",{"2":{"162":2}}],["long",{"2":{"6":1,"52":1,"144":1,"167":1}}],["longer",{"2":{"6":3,"142":1,"144":2,"145":1}}],["lots",{"2":{"162":1}}],["lot",{"2":{"6":1,"23":1,"32":1,"35":1,"42":1,"45":1,"56":1,"64":1,"95":1,"121":1,"143":1,"158":2}}],["load",{"2":{"128":2,"148":1,"160":2}}],["loading",{"2":{"39":1,"141":1,"144":1}}],["loads",{"2":{"5":1,"6":1,"38":1}}],["loaded",{"2":{"1":1,"39":3,"140":1,"141":2,"144":2}}],["laptop",{"2":{"167":1}}],["land",{"2":{"162":8}}],["layers",{"2":{"126":1}}],["label",{"2":{"14":4,"15":2,"55":1,"119":3,"143":2,"147":2,"148":2}}],["labels",{"2":{"13":2,"119":1}}],["lazily",{"2":{"6":1,"123":1,"128":1}}],["latitude",{"2":{"162":2}}],["later",{"2":{"35":1,"119":1}}],["lat",{"2":{"6":3,"143":1,"144":3}}],["larger",{"2":{"43":1,"57":1,"152":1}}],["large",{"2":{"6":8,"38":1,"148":2,"164":1,"167":1}}],["lastindex",{"2":{"152":1}}],["last",{"2":{"4":3,"6":3,"9":1,"32":11,"35":2,"37":2,"43":9,"45":4,"52":1,"56":7,"64":5,"89":20,"100":1,"119":8,"130":1,"138":2,"150":1}}],["lt",{"2":{"6":6,"52":4,"143":1}}],["len",{"2":{"150":7}}],["length",{"2":{"0":1,"5":1,"6":5,"9":1,"18":1,"38":32,"40":1,"41":1,"42":22,"43":11,"45":1,"48":2,"49":2,"51":1,"52":3,"57":1,"58":1,"89":1,"119":10,"128":3,"138":2,"143":1,"149":1,"150":1,"151":1,"152":7}}],["legend",{"2":{"148":4}}],["le",{"2":{"89":10}}],["leaving",{"2":{"130":1}}],["leaf",{"2":{"128":4}}],["leading",{"2":{"161":1}}],["lead",{"2":{"52":1,"130":1}}],["least",{"2":{"3":4,"6":4,"43":1,"58":2,"89":14,"95":6,"98":1,"101":3,"102":2,"103":2,"104":1,"105":1,"108":1,"114":1,"118":1}}],["leftover",{"2":{"43":1}}],["left=1",{"2":{"43":1}}],["left",{"2":{"38":1,"43":5,"118":1,"119":2,"150":17,"152":5,"165":1}}],["lets",{"2":{"35":1}}],["let",{"2":{"34":1,"41":1,"89":1,"119":3,"143":1,"161":6,"162":7,"163":2,"164":2,"168":1}}],["levels",{"2":{"6":1,"119":1,"126":1,"156":1}}],["level",{"2":{"6":1,"7":1,"9":1,"18":2,"20":1,"27":1,"126":1,"128":2,"129":1,"131":1,"133":4,"134":1,"136":1,"138":2,"162":2}}],["less",{"2":{"3":1,"6":7,"32":1,"35":1,"38":1,"42":1,"45":1,"56":1,"64":1,"78":1,"95":1,"119":1,"148":1,"149":1}}],["l289",{"2":{"6":1}}],["l2",{"2":{"3":4,"4":4,"6":8,"60":8,"63":4,"64":12,"77":2,"80":5,"94":4,"97":3,"98":2,"107":8}}],["l1",{"2":{"3":6,"4":4,"6":10,"60":8,"63":4,"64":12,"66":4,"67":2,"76":4,"77":2,"80":5,"94":4,"97":3,"98":2,"107":8}}],["li",{"2":{"119":2}}],["lie",{"2":{"52":1}}],["lies",{"2":{"43":3,"166":1}}],["limitations",{"2":{"52":1}}],["limits",{"2":{"37":1}}],["limited",{"2":{"6":1,"142":1,"145":1}}],["library",{"2":{"48":1,"164":1}}],["libraries",{"2":{"35":1,"136":1,"164":1}}],["libgeos",{"2":{"6":2,"13":1,"14":1,"15":1,"23":1,"35":1,"39":5,"120":1,"144":7,"148":4,"158":2}}],["literate",{"2":{"29":1,"32":1,"35":1,"38":1,"39":1,"42":1,"43":1,"45":1,"48":1,"50":1,"52":1,"53":1,"56":1,"58":1,"61":1,"64":1,"74":1,"77":1,"78":1,"88":1,"89":1,"92":1,"95":1,"105":1,"115":1,"118":1,"119":1,"120":1,"128":1,"131":1,"134":1,"135":1,"138":1,"139":1,"141":1,"145":1,"152":1,"153":1,"154":1,"158":1,"159":1}}],["lift",{"2":{"14":2}}],["lin",{"2":{"144":5}}],["linrange",{"2":{"13":2,"14":5,"37":2,"55":1,"119":2,"144":1,"148":2}}],["linering",{"2":{"162":1}}],["linewidth",{"2":{"34":1,"161":1}}],["linesegment",{"2":{"118":2,"145":1}}],["lines",{"0":{"70":1,"84":1,"101":1,"111":1},"2":{"3":1,"4":4,"6":5,"43":3,"47":1,"52":9,"55":1,"60":3,"63":4,"64":4,"66":1,"67":1,"76":2,"78":1,"80":3,"89":2,"91":3,"94":4,"95":2,"97":4,"107":3,"108":1,"119":3,"146":1,"161":4}}],["linestrings",{"2":{"4":2,"6":2,"9":1,"64":2,"117":1,"129":1,"161":1}}],["linestringtrait",{"2":{"3":2,"4":4,"6":9,"11":3,"32":1,"42":4,"51":2,"56":2,"64":8,"69":1,"70":4,"71":1,"78":6,"83":1,"84":5,"95":4,"100":1,"101":4,"102":1,"110":1,"111":4,"112":1,"126":1,"133":2,"134":1,"145":2,"156":2}}],["linestring",{"2":{"3":5,"4":6,"6":15,"18":1,"20":1,"32":2,"42":2,"56":4,"60":2,"61":1,"63":2,"64":2,"69":1,"70":3,"77":2,"80":2,"81":1,"83":1,"84":4,"89":2,"94":2,"100":1,"101":3,"102":1,"107":2,"108":1,"110":1,"111":4,"112":1,"118":7,"128":4,"159":3,"161":5}}],["linetrait",{"2":{"3":2,"4":4,"6":6,"32":1,"43":2,"48":2,"51":2,"56":2,"64":8,"69":1,"70":4,"71":1,"83":1,"84":5,"95":4,"100":1,"101":4,"102":1,"110":1,"111":4,"112":1}}],["line2",{"2":{"3":3,"6":5,"51":2,"78":5,"91":3,"92":2,"95":3,"118":5}}],["line1",{"2":{"3":4,"6":6,"51":2,"78":5,"91":3,"92":2,"95":5,"118":5}}],["linea",{"2":{"1":1,"6":1,"153":1}}],["linearmap",{"2":{"148":1}}],["linearalgebra",{"2":{"29":1}}],["linear",{"2":{"4":7,"6":10,"9":1,"35":2,"38":1,"41":1,"42":3,"45":1,"52":1,"56":5,"64":8,"71":1,"89":2,"101":1,"102":2,"111":1,"117":1,"128":2,"131":3,"143":5,"144":3,"145":4}}],["linearr",{"2":{"1":1,"6":1,"153":1}}],["linearrings",{"2":{"9":1,"85":1,"119":6,"129":1,"161":1}}],["linearringtrait",{"2":{"4":4,"6":6,"11":3,"32":3,"35":2,"42":4,"43":4,"51":2,"56":2,"64":8,"69":1,"70":1,"71":4,"83":1,"84":2,"85":3,"100":1,"101":1,"102":4,"110":1,"111":1,"112":4,"133":1,"145":2,"148":1,"156":2}}],["linearring",{"2":{"1":10,"3":2,"4":1,"6":15,"32":2,"42":2,"43":1,"56":1,"69":1,"71":3,"83":1,"84":1,"85":2,"89":2,"95":4,"100":1,"101":1,"102":3,"110":1,"112":4,"118":1,"119":3,"128":5,"129":1,"130":6,"131":1,"137":13,"148":1,"153":8,"161":24,"162":14,"166":2}}],["linearsegments",{"2":{"0":1,"6":4,"142":1,"143":1,"144":3,"145":5}}],["line",{"0":{"89":1},"2":{"0":1,"3":13,"4":9,"6":50,"23":1,"31":2,"32":7,"41":3,"42":10,"43":12,"45":8,"47":6,"48":18,"51":8,"52":64,"56":11,"58":6,"61":2,"64":5,"66":2,"67":1,"69":2,"70":11,"71":8,"76":1,"78":11,"81":2,"83":1,"84":9,"85":4,"89":141,"91":2,"92":2,"94":3,"95":12,"97":2,"98":2,"100":1,"101":10,"102":3,"108":2,"110":2,"111":10,"112":7,"118":6,"119":2,"145":1,"148":1,"149":1,"150":4,"151":1,"159":3,"161":3}}],["lineorientation",{"2":{"0":1,"6":2,"51":2}}],["lists",{"2":{"20":1,"43":3,"95":1}}],["listed",{"2":{"6":1,"32":1,"148":1}}],["list",{"2":{"6":16,"9":1,"32":20,"43":233,"48":20,"49":14,"50":8,"51":13,"52":6,"57":13,"58":1,"167":2}}],["likely",{"2":{"126":1}}],["like",{"0":{"53":1},"2":{"1":2,"6":9,"17":1,"18":2,"19":1,"20":1,"23":1,"24":1,"27":1,"35":1,"37":1,"38":1,"41":1,"45":1,"49":1,"51":1,"55":1,"56":1,"57":1,"64":1,"121":2,"128":2,"133":2,"134":1,"142":1,"143":1,"156":2,"162":2}}],["image",{"2":{"119":1}}],["impossible",{"2":{"48":1,"94":1}}],["important",{"2":{"143":1}}],["import",{"2":{"1":3,"6":5,"13":2,"14":2,"15":1,"29":5,"31":1,"34":1,"39":1,"41":1,"44":1,"48":1,"49":1,"51":1,"55":1,"57":1,"60":1,"61":1,"63":1,"64":1,"66":1,"67":1,"76":1,"77":1,"78":1,"80":1,"81":1,"91":1,"92":1,"94":1,"95":1,"97":1,"98":1,"107":1,"108":1,"118":3,"128":2,"141":1,"144":2,"147":2,"148":3,"153":2,"159":1,"160":5}}],["implements",{"2":{"158":1}}],["implementing",{"2":{"6":1,"148":1}}],["implement",{"2":{"6":1,"17":1,"23":1,"32":1,"35":1,"38":1,"42":1,"45":1,"56":1,"64":1,"67":1,"81":1,"95":1,"98":1,"108":1,"121":1,"132":1,"133":3,"134":1}}],["implementation",{"0":{"32":1,"35":1,"42":1,"45":1,"48":1,"56":1,"61":1,"64":1,"67":1,"77":1,"81":1,"92":1,"95":1,"98":1,"108":1,"125":1,"131":1,"138":1,"145":1},"2":{"6":1,"32":3,"35":3,"38":1,"42":3,"45":3,"56":3,"57":1,"61":1,"64":3,"67":2,"77":1,"81":2,"92":1,"95":3,"98":2,"108":2,"119":2,"120":1,"140":1,"148":1,"158":1}}],["implementations",{"2":{"6":1,"67":1,"81":1,"98":1,"108":1,"120":1,"146":1,"158":3}}],["implemented",{"0":{"120":1},"2":{"1":1,"6":2,"29":1,"35":1,"38":3,"48":2,"50":2,"52":2,"56":2,"58":2,"120":1,"121":2,"133":2,"140":1,"146":1}}],["improvements",{"2":{"9":2,"10":1}}],["improve",{"2":{"4":1,"6":1,"135":1}}],["i=2",{"2":{"118":1}}],["ipoints",{"2":{"89":4}}],["ip",{"2":{"64":2}}],["ipt",{"2":{"43":8}}],["ihole",{"2":{"64":2}}],["ih",{"2":{"58":20}}],["i2",{"2":{"45":2}}],["i1",{"2":{"45":2}}],["ii",{"2":{"43":8}}],["io",{"2":{"39":5,"141":5,"144":5}}],["i+1",{"2":{"38":8,"119":1,"150":2,"152":1}}],["i",{"2":{"9":1,"13":4,"22":1,"32":14,"35":1,"38":16,"43":28,"45":4,"50":2,"52":3,"56":2,"57":2,"58":4,"64":8,"78":7,"89":28,"118":14,"119":17,"128":14,"145":2,"149":3,"150":12,"152":28,"159":2,"161":2,"162":1,"167":3}}],["id",{"2":{"163":1}}],["identical",{"2":{"128":1,"137":1}}],["identity",{"2":{"119":4,"128":2,"135":1}}],["ideal",{"2":{"119":1}}],["idea",{"2":{"6":1,"20":1,"25":1,"38":1,"121":1}}],["idx`",{"2":{"43":1}}],["idx",{"2":{"32":6,"43":167,"45":9,"48":23,"49":5,"51":5,"57":2,"138":34,"150":51}}],["id=",{"2":{"6":1}}],["i>",{"2":{"6":1}}],["i>method",{"2":{"6":1}}],["ignored",{"2":{"6":1,"119":1}}],["ignore",{"2":{"6":1,"119":2}}],["innerjoin",{"2":{"166":1,"167":1}}],["inner",{"2":{"89":6,"128":3,"165":1}}],["innacurracies",{"2":{"52":1}}],["inline",{"2":{"89":4,"118":1,"128":21,"157":2}}],["inlcuding",{"2":{"52":1,"70":1,"71":1}}],["in=1",{"2":{"89":1}}],["in`",{"2":{"89":1}}],["inject",{"0":{"53":1},"2":{"141":1}}],["ind",{"2":{"167":2}}],["individual",{"2":{"162":1}}],["indicate",{"2":{"128":1}}],["indicates",{"2":{"20":1}}],["indicies",{"2":{"43":2}}],["indices",{"2":{"43":2,"128":4,"152":16}}],["indeed",{"2":{"130":1}}],["index",{"2":{"38":8,"43":11,"89":1,"128":1,"150":1}}],["inds",{"2":{"119":3}}],["inplace",{"2":{"38":1}}],["inputs",{"2":{"6":1,"43":1,"61":1,"64":1,"77":1,"92":1,"152":1}}],["input",{"2":{"6":12,"32":1,"48":1,"49":1,"51":1,"52":1,"57":1,"119":1,"121":1,"144":3,"145":2,"149":1,"150":1,"151":1,"162":1}}],["inbounds",{"2":{"38":16,"56":5,"89":1}}],["inspiration",{"2":{"48":1}}],["inspired",{"2":{"47":1,"48":2}}],["inside",{"2":{"32":3,"41":1,"43":3,"45":1,"49":1,"50":1,"51":1,"52":1,"55":3,"56":1,"57":1,"58":2,"69":1,"89":1,"107":1,"110":1,"119":2}}],["insertion",{"2":{"43":1}}],["insert",{"2":{"32":1,"150":1}}],["instability",{"2":{"24":2}}],["instantiating",{"2":{"20":1}}],["instead",{"2":{"18":1,"24":1}}],["instructs",{"2":{"6":1,"158":2}}],["investigate",{"2":{"119":1}}],["invalid",{"2":{"20":1,"50":2,"130":1,"136":1,"137":1}}],["invoke",{"2":{"20":1}}],["involved",{"2":{"121":1}}],["involve",{"2":{"20":1}}],["involving",{"2":{"6":3,"49":1,"51":1,"57":1}}],["invocation",{"2":{"18":1}}],["init=nothing",{"2":{"128":1}}],["init=typemax",{"2":{"56":2}}],["init=zero",{"2":{"35":1,"45":1}}],["initial",{"2":{"52":2,"144":1}}],["initially",{"2":{"43":1}}],["initialize",{"2":{"38":3,"42":2,"43":1,"52":1}}],["init",{"2":{"19":1,"29":1,"32":1,"42":2,"128":30,"144":4}}],["incorrect",{"2":{"129":1,"130":1}}],["increase",{"2":{"43":1,"89":1}}],["increasing",{"2":{"6":1,"148":1}}],["increment",{"2":{"38":5}}],["including",{"2":{"32":1,"43":2,"56":1,"69":1,"72":1,"89":2}}],["include",{"2":{"29":40,"32":1,"43":1,"56":2,"148":2,"157":1,"162":2,"163":1}}],["included",{"2":{"6":2,"58":2,"134":2,"138":2,"162":1}}],["includes",{"2":{"4":2,"6":2,"56":2,"58":1,"64":1,"89":1}}],["incircle",{"0":{"16":1}}],["ing",{"2":{"1":1,"6":2,"38":1,"153":1}}],["intr",{"2":{"43":28,"45":9,"48":16,"52":8}}],["intr2",{"2":{"43":2,"52":12}}],["intr1",{"2":{"43":3,"52":21,"89":2}}],["intrs",{"2":{"43":10,"52":5}}],["introduction",{"0":{"25":1},"1":{"26":1,"27":1,"28":1}}],["introducing",{"2":{"24":1}}],["introduces",{"2":{"24":1}}],["int",{"2":{"43":6,"58":7,"78":7,"145":1,"148":1,"150":5,"151":1,"152":1}}],["integrate",{"2":{"35":1}}],["integrating",{"2":{"35":1}}],["integrals",{"2":{"34":1}}],["integral",{"2":{"34":1}}],["intended",{"2":{"6":1,"133":2,"134":1}}],["intermediate",{"2":{"45":1}}],["inter2",{"2":{"45":15}}],["inter1",{"2":{"45":23}}],["interpreted",{"2":{"38":1}}],["interpolation",{"2":{"5":1,"6":1,"37":1,"38":2,"142":1}}],["interpolated",{"2":{"5":3,"6":3,"38":17,"142":1}}],["interpolate",{"2":{"0":2,"5":2,"6":4,"36":1,"37":2,"38":25}}],["interest",{"2":{"38":1,"56":1}}],["internal",{"2":{"37":1}}],["internals",{"2":{"24":1}}],["inter",{"2":{"6":2,"43":21,"48":1,"49":1,"51":5,"52":3}}],["interface",{"0":{"133":1},"2":{"6":2,"20":1,"128":1,"132":1,"133":4,"134":1,"148":1,"162":1}}],["interacted",{"2":{"89":1}}],["interaction",{"0":{"89":1},"2":{"89":2}}],["interactions",{"2":{"43":1,"58":3,"89":15}}],["interactive",{"2":{"13":1,"14":1}}],["interacting",{"2":{"6":1,"51":1,"89":2}}],["interacts",{"2":{"3":1,"6":1,"89":3,"97":1,"98":1,"101":3,"102":1,"103":1}}],["interact",{"2":{"3":2,"6":2,"57":1,"58":1,"80":1,"89":5,"92":1,"97":1,"98":1,"100":1,"101":2,"102":2,"103":1}}],["interior",{"2":{"3":6,"6":7,"32":9,"34":1,"38":7,"42":5,"43":1,"58":18,"60":1,"61":1,"66":1,"67":3,"70":5,"71":1,"72":2,"76":2,"77":1,"78":1,"81":2,"83":2,"84":6,"85":3,"89":15,"97":1,"98":3,"101":1,"102":2,"103":2,"107":1,"108":3,"113":2,"118":2,"131":1,"134":1}}],["interiors",{"2":{"3":6,"6":7,"38":20,"60":1,"61":1,"66":1,"76":1,"77":1,"80":1,"81":1,"86":1,"89":5,"91":1,"92":1,"97":1,"98":1,"100":1,"101":2,"102":1,"107":1,"108":1,"111":3,"112":3}}],["intersectingpolygons",{"2":{"6":3}}],["intersecting",{"0":{"136":1},"1":{"137":1,"138":1},"2":{"6":4,"29":1,"43":2,"58":2,"134":4,"136":1,"138":4}}],["intersections",{"0":{"52":1},"2":{"43":2,"45":2,"50":1,"51":2,"52":1,"58":1,"89":2}}],["intersection",{"0":{"51":1,"90":1},"1":{"91":1,"92":1},"2":{"0":2,"3":3,"6":17,"9":1,"15":4,"23":1,"29":1,"43":38,"45":6,"48":3,"49":4,"50":4,"51":15,"52":70,"57":2,"58":2,"78":2,"89":6,"91":1,"95":5}}],["intersect",{"2":{"3":8,"6":11,"43":4,"45":3,"49":2,"51":1,"52":1,"57":1,"58":5,"60":1,"61":2,"66":1,"67":1,"77":1,"81":1,"84":1,"86":1,"89":4,"91":2,"95":1,"107":1,"108":2,"111":3,"112":3,"137":1,"138":4}}],["intersects",{"0":{"91":1},"2":{"0":2,"3":3,"6":3,"29":1,"43":1,"52":2,"58":2,"78":2,"90":1,"91":4,"92":4,"95":5,"113":1,"138":2,"165":1}}],["into",{"2":{"5":1,"6":7,"17":1,"32":1,"35":1,"38":1,"42":4,"43":2,"48":1,"49":1,"51":1,"89":1,"119":4,"123":1,"128":6,"138":1,"148":1,"156":1,"159":2,"161":2,"165":1}}],["int64",{"2":{"1":6,"6":6,"130":6,"149":1,"150":1,"152":1,"153":6,"161":14}}],["info",{"2":{"142":1}}],["information",{"2":{"6":1,"27":1,"38":1,"43":2,"44":1,"52":1,"89":1,"160":1,"162":3,"164":2}}],["infinity",{"2":{"89":1,"95":1}}],["inf",{"2":{"1":1,"9":1,"48":2,"149":1,"152":3}}],["in",{"0":{"23":1},"2":{"1":6,"3":3,"4":1,"5":4,"6":49,"7":1,"9":2,"13":6,"14":2,"17":2,"18":4,"20":1,"23":3,"24":2,"25":1,"27":1,"28":1,"29":2,"32":7,"34":1,"35":3,"36":2,"38":22,"39":1,"41":2,"42":5,"43":72,"45":31,"48":6,"49":9,"50":3,"51":5,"52":30,"55":6,"56":6,"57":11,"58":28,"60":2,"61":1,"63":1,"64":17,"67":10,"70":1,"71":1,"72":1,"73":1,"74":1,"77":1,"78":7,"81":9,"83":1,"84":1,"85":1,"87":1,"88":1,"89":135,"91":2,"92":1,"94":1,"95":11,"97":1,"98":11,"102":1,"104":1,"105":1,"107":1,"108":10,"111":3,"112":3,"114":1,"115":1,"118":4,"119":10,"120":3,"121":1,"123":3,"126":2,"127":1,"128":12,"132":1,"133":1,"134":2,"135":1,"136":1,"138":7,"139":2,"140":3,"141":1,"142":2,"143":2,"144":14,"145":7,"146":1,"148":5,"149":2,"150":4,"151":1,"152":5,"153":2,"154":1,"155":4,"156":1,"157":1,"158":4,"159":8,"160":1,"161":2,"162":6,"164":2,"165":4,"166":3,"167":1,"168":1}}],["itererable",{"2":{"159":1}}],["iter",{"2":{"128":31}}],["iterate",{"2":{"38":2,"126":1,"128":5}}],["iteration",{"2":{"35":1}}],["iterators",{"2":{"13":1,"38":1,"43":5,"45":3,"51":1,"58":2,"119":1,"128":11,"138":6,"145":1}}],["iterator",{"2":{"6":2,"43":4,"51":2,"123":2,"128":2}}],["iterabletype",{"2":{"128":10}}],["iterable",{"2":{"4":1,"6":3,"18":1,"35":1,"45":1,"123":1,"128":37,"161":1}}],["iterables",{"2":{"1":2,"6":2,"22":1,"128":6}}],["ith",{"2":{"43":3,"58":7}}],["itself",{"2":{"45":1,"118":1,"126":1}}],["its",{"2":{"5":1,"6":10,"18":1,"34":1,"38":1,"43":2,"45":4,"58":1,"70":1,"123":1,"128":1,"132":1,"148":1,"149":1,"150":1,"151":3,"165":1}}],["it",{"2":{"1":4,"4":1,"6":19,"9":1,"18":11,"19":2,"20":1,"22":1,"27":3,"28":1,"31":1,"32":1,"34":2,"35":3,"37":1,"39":1,"42":2,"43":2,"44":1,"45":2,"49":1,"50":1,"51":1,"52":4,"56":3,"57":1,"58":3,"64":1,"66":2,"69":3,"83":3,"89":14,"94":1,"95":1,"100":2,"110":3,"117":1,"118":2,"119":4,"121":3,"123":3,"126":3,"127":1,"128":15,"130":1,"131":1,"132":1,"134":1,"136":1,"140":5,"143":2,"144":1,"148":1,"150":1,"155":1,"156":2,"157":1,"158":7,"162":6,"164":3,"167":2,"168":2}}],["iff",{"2":{"128":1}}],["if",{"0":{"53":1},"2":{"1":5,"3":17,"4":19,"5":1,"6":73,"18":1,"22":2,"31":1,"32":15,"34":1,"35":6,"38":5,"39":3,"42":1,"43":95,"45":36,"48":8,"49":13,"50":12,"51":9,"52":46,"55":2,"56":8,"57":10,"58":22,"60":1,"61":1,"63":2,"64":35,"66":1,"67":2,"69":4,"70":3,"71":3,"72":2,"73":1,"74":1,"76":1,"77":1,"78":9,"80":1,"81":3,"83":5,"84":4,"85":2,"86":2,"87":1,"88":1,"89":132,"91":1,"92":1,"94":4,"95":16,"97":1,"98":2,"100":4,"101":3,"102":2,"103":2,"104":1,"105":1,"107":1,"108":2,"110":5,"111":3,"112":3,"113":1,"114":1,"115":1,"118":5,"119":35,"123":1,"126":1,"128":21,"131":1,"133":1,"134":2,"135":1,"136":1,"138":12,"139":1,"140":3,"141":2,"144":6,"145":2,"148":1,"150":12,"152":12,"153":1,"154":1,"157":1,"158":2,"162":1,"164":1,"166":2,"167":1}}],["isolate",{"2":{"148":1}}],["isodd",{"2":{"48":1}}],["istable",{"2":{"128":2}}],["isequal",{"2":{"119":1}}],["iseven",{"2":{"89":1}}],["isempty",{"2":{"35":1,"38":4,"45":1,"49":1,"50":2,"51":1,"119":1,"133":1,"150":1}}],["isparallel",{"2":{"89":1,"118":8}}],["is3d",{"2":{"64":1,"128":1,"139":1,"153":1,"154":1,"159":10}}],["issue",{"2":{"43":1}}],["issues",{"2":{"25":1}}],["isa",{"2":{"18":1,"38":9,"128":4,"159":1}}],["isnothing",{"2":{"39":1,"43":9,"48":1,"50":2,"52":2,"58":2,"64":1,"119":1,"141":1,"144":1,"148":1,"149":1,"150":5,"151":1,"152":6}}],["isn",{"2":{"6":1,"35":1,"43":4,"45":1,"48":1,"50":1,"52":3,"56":3,"58":2,"64":1,"66":1,"89":9,"95":1,"148":1,"158":1}}],["isconcave",{"0":{"118":1},"2":{"0":1,"6":2,"116":1,"118":3}}],["isclockwise",{"0":{"117":1},"2":{"0":1,"6":2,"45":1,"116":1,"118":5,"119":2}}],["is",{"0":{"31":1,"34":2,"41":1,"44":1,"47":1,"55":2,"60":1,"63":1,"66":1,"76":1,"80":1,"91":1,"94":1,"97":1,"107":1,"126":1},"2":{"0":1,"1":10,"3":8,"4":43,"5":1,"6":105,"9":3,"11":1,"13":1,"14":1,"18":3,"19":1,"20":1,"22":3,"23":2,"25":2,"31":1,"32":19,"34":7,"35":19,"36":2,"37":2,"38":15,"39":3,"41":2,"42":5,"43":82,"44":3,"45":22,"47":1,"48":2,"49":4,"50":13,"51":4,"52":39,"55":8,"56":23,"57":7,"58":20,"60":2,"61":3,"64":13,"66":4,"67":4,"69":7,"70":3,"71":3,"72":1,"73":1,"74":1,"77":3,"78":3,"80":1,"81":5,"83":9,"84":4,"85":2,"86":1,"87":1,"88":1,"89":91,"92":2,"94":3,"95":12,"98":4,"100":2,"107":4,"108":5,"110":8,"111":3,"112":3,"113":1,"114":2,"115":1,"117":2,"118":7,"119":11,"120":1,"121":2,"123":1,"126":3,"127":1,"128":24,"129":7,"130":2,"131":1,"132":3,"133":2,"134":1,"136":4,"137":1,"138":2,"139":1,"140":7,"141":2,"142":3,"143":3,"144":9,"145":6,"147":1,"148":4,"149":1,"150":2,"151":1,"153":2,"155":1,"156":1,"157":1,"158":3,"161":4,"162":8,"163":1,"164":3,"165":2,"166":5,"167":2}}],["cpu",{"2":{"167":1}}],["cy",{"2":{"118":2}}],["cyan",{"2":{"39":1,"141":1,"144":1}}],["cx",{"2":{"118":2}}],["cdot",{"2":{"118":1}}],["cs",{"2":{"89":9}}],["cshape",{"2":{"41":3}}],["cw",{"2":{"45":2}}],["cb",{"2":{"37":1,"119":1}}],["cgrad",{"2":{"37":1}}],["cgal",{"2":{"37":1}}],["c",{"2":{"35":1,"41":1,"45":4,"48":5,"53":3,"89":24,"144":1}}],["chunks",{"2":{"128":8}}],["chunk",{"2":{"128":12}}],["choose",{"2":{"119":2}}],["chose",{"2":{"24":1,"119":1}}],["changes",{"2":{"43":1}}],["changed",{"2":{"43":1}}],["change",{"2":{"24":1,"43":1}}],["chain=2",{"2":{"43":1}}],["chain=1",{"2":{"43":1}}],["chain",{"2":{"43":66,"50":3,"52":4,"58":4}}],["chains",{"2":{"20":1,"43":1}}],["chairmarks",{"2":{"13":1,"144":1,"148":1}}],["children",{"2":{"148":1}}],["child",{"2":{"6":2,"123":2,"128":7}}],["checkargs",{"2":{"149":1,"150":1,"151":1,"152":1}}],["checking",{"2":{"64":1,"150":1}}],["checks",{"0":{"78":1,"90":1},"1":{"91":1,"92":1},"2":{"39":1,"43":1,"60":1,"63":1,"66":1,"76":1,"80":1,"89":5,"91":1,"94":1,"95":1,"97":1,"107":1,"166":1}}],["check",{"2":{"4":1,"6":1,"7":1,"42":1,"43":8,"45":3,"48":1,"49":1,"52":4,"53":1,"57":1,"64":8,"89":11,"119":5,"123":3,"124":1,"135":1,"137":1,"143":2,"150":1,"152":1}}],["checked",{"2":{"4":1,"6":1,"43":1,"52":1,"89":1,"135":1}}],["clear",{"2":{"44":1}}],["clearly",{"2":{"31":1,"34":1,"55":1}}],["clamped",{"2":{"52":18}}],["clamp",{"2":{"32":1,"52":1}}],["classified",{"2":{"43":1}}],["classify",{"2":{"43":4}}],["class",{"2":{"6":1,"119":1}}],["clipping",{"0":{"43":1,"49":1,"50":1,"52":1,"57":1,"58":1},"2":{"9":1,"29":8,"43":9,"48":3,"49":1,"51":1,"57":1,"136":1}}],["closure",{"2":{"128":2}}],["closing",{"2":{"32":1}}],["close",{"2":{"32":5,"43":2,"45":1,"48":1,"52":1,"56":9,"119":1,"130":1,"131":4}}],["closest",{"2":{"4":3,"6":3,"52":2,"55":1,"56":6}}],["closed2",{"2":{"64":2}}],["closed1",{"2":{"64":2}}],["closed",{"0":{"129":1},"1":{"130":1,"131":1},"2":{"4":4,"6":11,"9":1,"29":1,"32":6,"35":3,"42":3,"43":1,"45":1,"52":4,"58":3,"64":21,"69":2,"70":5,"71":5,"83":2,"84":5,"85":3,"89":52,"101":5,"102":1,"110":3,"111":5,"112":5,"118":1,"119":1,"129":1,"130":1,"131":2,"132":1,"134":1,"161":1}}],["closedring",{"2":{"0":1,"6":1,"129":1,"130":1,"131":4,"132":1,"133":1,"134":1}}],["clockwise",{"2":{"4":1,"6":4,"9":1,"34":1,"35":1,"45":7,"117":2,"118":3,"119":1}}],["ceil",{"2":{"145":1}}],["ce",{"2":{"89":11}}],["certianly",{"2":{"52":1}}],["certain",{"2":{"17":1,"18":1,"27":1}}],["central",{"2":{"43":1}}],["centroids",{"2":{"41":1,"42":1}}],["centroid",{"0":{"40":1,"41":1},"1":{"41":1,"42":1},"2":{"0":4,"4":2,"6":6,"29":1,"40":3,"41":4,"42":38,"121":1,"148":4}}],["cent",{"2":{"41":2}}],["centered",{"2":{"43":1}}],["center",{"2":{"6":1,"41":1,"119":1}}],["cells",{"2":{"119":1}}],["cell",{"2":{"6":4,"44":3,"45":28,"119":2}}],["c2",{"2":{"6":3,"15":2,"56":3,"64":14,"119":21}}],["c1",{"2":{"6":3,"15":2,"56":4,"64":13,"119":26}}],["ctor",{"2":{"1":1,"6":1,"153":1}}],["ca96624a56bd078437bca8184e78163e5039ad19",{"2":{"148":1}}],["caculated",{"2":{"52":1,"128":1}}],["cache",{"2":{"6":1,"38":1}}],["catagorize",{"2":{"48":1}}],["categorical",{"2":{"37":1}}],["came",{"2":{"48":1}}],["case",{"2":{"32":1,"36":2,"42":1,"43":1,"49":1,"52":2,"58":1,"89":16,"128":1,"168":1}}],["cases",{"2":{"6":1,"38":1,"48":2,"89":3,"126":1,"128":5}}],["cause",{"2":{"18":1,"23":1,"150":1}}],["careful",{"2":{"38":1,"126":1}}],["care",{"2":{"17":1}}],["carried",{"2":{"6":1,"158":1}}],["cairomakie",{"2":{"13":1,"31":1,"34":1,"37":2,"41":1,"44":1,"47":1,"55":1,"60":1,"63":1,"66":1,"76":1,"80":1,"91":1,"94":1,"97":1,"107":1,"143":1,"144":1,"148":1,"160":1,"166":1,"167":1}}],["california",{"2":{"167":1}}],["callable",{"2":{"119":4,"133":1}}],["calling",{"2":{"43":2,"128":1}}],["calls",{"2":{"43":1,"52":1,"56":1,"58":1,"67":1,"81":1,"98":1,"108":1,"126":1,"128":1,"145":1}}],["call",{"2":{"18":1,"24":1,"35":1,"42":1,"128":4,"146":1}}],["called",{"2":{"6":2,"42":3,"43":1,"128":1,"131":1,"133":1,"134":1,"158":1,"162":1}}],["calcualted",{"2":{"128":1}}],["calculation",{"2":{"52":1}}],["calculations",{"2":{"6":1,"25":2,"52":1,"144":1}}],["calculating",{"2":{"4":1,"6":1,"18":1,"43":1,"135":1}}],["calculated",{"2":{"6":1,"41":2,"45":1,"52":1,"56":1,"128":2}}],["calculates",{"2":{"4":2,"6":6,"35":1,"38":2,"45":1,"52":2,"56":2,"57":1,"144":1,"151":1}}],["calculate",{"2":{"1":2,"5":1,"6":6,"11":1,"32":3,"38":3,"42":1,"45":1,"52":1,"89":1,"119":1,"125":1,"128":3}}],["calc",{"2":{"1":2,"6":4,"24":1,"32":4,"125":1,"127":1,"128":15,"135":1,"148":2,"157":1}}],["cant",{"2":{"64":1,"119":1,"159":1}}],["cannot",{"2":{"3":3,"4":2,"6":5,"35":1,"64":1,"69":1,"72":1,"95":2,"98":1,"100":2,"102":1,"113":1}}],["can",{"2":{"1":1,"4":2,"6":16,"7":2,"9":1,"13":1,"14":1,"24":1,"29":1,"32":1,"35":1,"36":2,"37":1,"38":3,"39":1,"42":1,"43":3,"45":1,"49":3,"51":3,"52":1,"57":3,"58":1,"60":1,"63":1,"64":3,"66":1,"78":1,"80":1,"89":23,"91":2,"94":2,"95":3,"97":1,"101":1,"102":1,"107":1,"110":1,"111":1,"112":1,"119":1,"120":1,"121":1,"123":1,"127":1,"128":7,"130":2,"131":1,"134":1,"135":1,"136":2,"137":1,"141":1,"143":1,"144":2,"148":2,"158":1,"161":6,"162":4,"164":3,"165":3,"166":3}}],["critetia",{"2":{"150":1}}],["criteria",{"2":{"67":2,"81":2,"98":2,"108":2,"150":2}}],["creation",{"2":{"161":1,"162":1}}],["creating",{"0":{"160":1,"161":1,"163":1},"1":{"161":1,"162":1,"163":1,"164":1},"2":{"89":1}}],["creates",{"2":{"7":1,"43":3}}],["create",{"2":{"6":2,"13":2,"14":1,"43":1,"48":1,"52":2,"119":2,"128":1,"134":2,"136":3,"138":2,"160":2,"161":4,"162":8,"163":1,"164":1,"166":1}}],["created",{"2":{"4":2,"6":2,"43":1,"56":3}}],["cropping",{"2":{"37":2}}],["cross=1",{"2":{"51":1}}],["cross`",{"2":{"51":1}}],["crossings",{"2":{"43":3,"89":1}}],["crossing",{"0":{"78":1},"2":{"6":2,"43":81,"49":1,"50":7,"51":3,"52":7,"57":1,"58":6,"67":1,"78":1,"89":1,"108":1}}],["cross",{"0":{"105":1},"2":{"6":1,"9":1,"32":3,"43":13,"48":14,"49":2,"50":1,"51":2,"52":11,"53":4,"57":2,"58":1,"67":1,"78":2,"81":1,"89":17,"95":2,"98":1,"108":1,"118":3}}],["crosses",{"2":{"0":2,"3":2,"6":3,"29":1,"43":1,"48":1,"78":26,"89":2,"165":1}}],["crc",{"2":{"6":1,"38":1}}],["crs2",{"2":{"162":2}}],["crs1",{"2":{"162":3}}],["crs`",{"2":{"140":6}}],["crs=nothing",{"2":{"128":1,"135":1,"148":1}}],["crs=gi",{"2":{"128":7}}],["crs",{"0":{"162":1},"2":{"1":16,"4":2,"6":10,"119":10,"125":2,"127":3,"128":27,"135":1,"140":7,"148":1,"160":1,"162":20,"164":1}}],["customize",{"2":{"128":2}}],["custom",{"0":{"168":1},"2":{"6":1,"38":1,"168":2}}],["curr^2",{"2":{"32":2}}],["curr",{"2":{"32":8,"43":114,"48":9,"58":3,"138":26}}],["currentnode",{"2":{"119":8}}],["current",{"2":{"32":1,"38":8,"43":3,"48":2,"50":1,"52":1,"58":6,"119":2,"138":3}}],["currently",{"2":{"5":1,"6":3,"23":1,"38":1,"43":1,"48":1,"50":2,"119":1,"128":1}}],["curve",{"0":{"89":1},"2":{"3":1,"4":7,"6":18,"32":6,"35":7,"43":5,"45":3,"51":7,"55":1,"56":22,"64":6,"67":2,"69":4,"70":9,"71":9,"81":1,"83":4,"84":6,"85":3,"89":152,"95":1,"98":1,"101":6,"103":3,"108":1,"110":4,"111":6,"112":6}}],["curves",{"2":{"0":1,"3":1,"6":5,"35":3,"45":3,"55":1,"56":1,"64":13,"72":1,"89":1,"95":1,"113":1,"148":2}}],["cutpolygon",{"2":{"47":1}}],["cuts",{"2":{"47":1}}],["cutting",{"0":{"46":1},"1":{"47":1,"48":1},"2":{"43":1,"48":2}}],["cut",{"0":{"47":1},"2":{"0":1,"6":6,"29":1,"38":1,"46":1,"47":5,"48":22,"89":1}}],["cos",{"2":{"161":3,"162":3}}],["copy",{"2":{"133":1,"152":1}}],["coors1",{"2":{"118":2}}],["coors2",{"2":{"118":3}}],["coord",{"2":{"145":6}}],["coords",{"2":{"48":9,"145":8}}],["coordiantes",{"2":{"44":1}}],["coordinatetransformations",{"2":{"1":2,"6":2,"148":1,"153":2,"160":1,"161":5,"162":2}}],["coordinate",{"0":{"38":1,"139":1,"162":1},"2":{"1":4,"5":5,"6":7,"25":1,"37":2,"38":10,"128":1,"140":4,"145":1,"160":3,"162":1}}],["coordinates",{"0":{"5":1,"36":1},"1":{"37":1,"38":1},"2":{"0":4,"1":1,"4":2,"5":7,"6":20,"35":2,"36":8,"38":25,"43":2,"48":2,"49":1,"51":1,"56":1,"57":1,"64":2,"121":1,"139":2,"140":1,"143":1,"144":3,"162":2}}],["co",{"2":{"89":2}}],["corner",{"2":{"45":4,"119":1}}],["corners",{"2":{"45":1}}],["correspondent",{"2":{"118":1}}],["correspond",{"2":{"43":1}}],["corresponding",{"2":{"32":3,"50":2}}],["correctly",{"2":{"143":1}}],["corrected",{"2":{"133":1}}],["correctness",{"2":{"129":1,"158":1}}],["correcting",{"2":{"20":1,"133":1}}],["corrections",{"0":{"132":1,"134":1},"1":{"133":1,"134":1},"2":{"130":1,"133":6,"137":1}}],["correction",{"2":{"6":10,"29":4,"49":1,"50":2,"51":1,"52":2,"57":1,"58":2,"129":1,"131":2,"132":2,"133":8,"134":7,"136":1,"138":2}}],["correct",{"2":{"6":3,"24":1,"32":1,"35":1,"42":1,"43":1,"45":1,"49":1,"51":1,"56":1,"57":1,"64":1,"67":1,"81":1,"95":1,"98":1,"108":1,"129":1,"130":2,"132":1}}],["cov",{"2":{"45":16}}],["cover",{"2":{"69":1,"73":1}}],["covering",{"2":{"6":2,"76":1,"134":2,"138":2}}],["covered",{"0":{"71":1,"72":1,"112":1},"2":{"3":1,"6":1,"50":1,"58":1,"66":1,"67":1,"71":2,"72":2,"73":1,"74":2,"76":1,"88":2,"89":3,"138":1}}],["coveredby",{"0":{"65":1,"66":1,"69":1,"70":1,"73":1,"74":1,"88":1},"1":{"66":1,"67":1},"2":{"0":2,"3":4,"6":4,"29":1,"43":1,"65":1,"66":3,"67":10,"68":6,"69":13,"70":15,"71":13,"72":5,"73":2,"74":2,"77":3,"165":1}}],["covers",{"0":{"75":1,"76":1},"1":{"76":1,"77":1},"2":{"0":2,"3":5,"6":5,"29":1,"75":1,"76":4,"77":5,"119":1,"165":1}}],["coverages",{"2":{"6":1,"45":1}}],["coverage",{"0":{"44":1},"2":{"0":1,"6":2,"29":1,"44":3,"45":16}}],["code",{"2":{"7":1,"10":1,"38":1,"67":1,"81":1,"89":1,"98":1,"108":1,"118":1,"155":1,"157":1,"167":1}}],["coarse",{"2":{"6":1,"142":1,"145":1}}],["commonly",{"2":{"164":1}}],["common",{"2":{"145":1,"160":1,"162":2}}],["commen",{"2":{"63":1}}],["commented",{"2":{"118":1}}],["comments",{"2":{"89":1}}],["comment",{"2":{"28":1}}],["combos",{"2":{"50":1,"52":1,"58":1}}],["combines",{"2":{"42":1}}],["combine",{"2":{"42":2,"43":5,"138":1}}],["combined",{"2":{"6":1,"43":4,"58":1,"134":1,"138":2,"161":1}}],["combination",{"2":{"6":1,"43":1,"123":1,"128":1}}],["coming",{"2":{"45":1}}],["com",{"2":{"6":1,"52":1,"148":1}}],["compilation",{"2":{"157":1}}],["compiled",{"2":{"24":1}}],["compiler",{"2":{"24":1,"128":2,"157":2}}],["complex",{"2":{"121":1,"148":1,"165":1}}],["complexity",{"2":{"6":1,"121":1,"145":1}}],["completly",{"2":{"43":2,"50":1,"58":1,"60":2,"76":1,"89":1}}],["complete",{"2":{"35":1}}],["completely",{"2":{"1":1,"3":4,"6":5,"61":1,"67":1,"77":1,"108":1,"128":1}}],["component",{"2":{"6":1,"35":3,"42":11,"45":8,"52":1,"123":1,"128":3}}],["components",{"2":{"6":2,"41":1,"42":2,"123":2,"128":24}}],["composed",{"2":{"4":4,"6":5,"64":5,"161":2}}],["comprised",{"2":{"6":3,"49":1,"51":1,"57":1}}],["computing",{"2":{"39":1}}],["computational",{"2":{"6":1,"38":1}}],["computation",{"2":{"6":6,"38":1,"42":1,"49":1,"51":1,"57":1,"149":2,"150":2,"151":2}}],["computer",{"2":{"6":1,"38":1}}],["compute",{"2":{"4":1,"6":1,"35":1,"38":1,"145":1}}],["computed",{"2":{"4":4,"6":5,"32":1,"35":3,"38":3,"45":1}}],["compact",{"2":{"167":3}}],["comparisons",{"2":{"165":1}}],["comparing",{"2":{"58":1,"64":1}}],["compares",{"2":{"119":1}}],["compared",{"2":{"64":1}}],["compare",{"2":{"3":1,"4":1,"6":2,"32":1,"58":1,"64":2,"95":1}}],["compatibility",{"2":{"35":1}}],["compatible",{"2":{"1":3,"6":1,"22":1,"25":1,"32":1,"35":1,"38":2,"42":1,"45":1,"56":1,"61":1,"64":1,"67":1,"77":1,"81":1,"92":1,"95":1,"98":1,"108":1,"126":1,"128":1,"140":2}}],["couple",{"2":{"163":1}}],["course",{"2":{"127":1}}],["country",{"2":{"167":8}}],["countries",{"2":{"11":1,"148":1}}],["counted",{"2":{"52":2}}],["counters",{"2":{"38":8}}],["counter",{"2":{"6":1,"43":7,"89":1,"117":1,"118":1}}],["counterclockwise",{"2":{"4":1,"6":1,"9":1,"34":2,"35":1}}],["count",{"2":{"43":16,"119":1,"152":1}}],["couldn",{"2":{"9":1,"157":1}}],["could",{"2":{"4":1,"6":1,"35":3,"52":4,"56":1,"58":1,"89":2,"140":1}}],["colname",{"2":{"128":3}}],["col",{"2":{"128":3}}],["collinear",{"2":{"43":5,"49":2,"51":2,"52":12,"57":2}}],["collect",{"2":{"11":3,"13":1,"31":1,"34":2,"38":1,"41":1,"44":2,"47":2,"55":1,"119":3,"128":3,"143":4,"159":2}}],["collections",{"0":{"73":1,"74":1,"87":1,"88":1,"104":1,"105":1,"114":1,"115":1},"2":{"1":2,"6":10,"22":1,"127":1,"128":7,"148":2,"164":1}}],["collection",{"2":{"1":1,"4":7,"6":13,"18":2,"27":2,"32":2,"35":3,"45":2,"56":2,"73":2,"74":2,"87":2,"88":2,"104":2,"105":2,"114":2,"115":2,"121":1,"128":3,"148":1,"154":1,"159":1}}],["column",{"2":{"22":1,"128":16,"163":2,"165":2}}],["colored",{"2":{"166":1}}],["colors",{"2":{"166":2}}],["color=",{"2":{"162":2}}],["colorrange",{"2":{"37":2,"55":1}}],["colorbar",{"2":{"37":1,"55":1,"119":1}}],["colormap",{"2":{"14":1,"37":3,"55":1}}],["color",{"2":{"6":2,"34":1,"37":2,"38":1,"39":1,"41":1,"47":3,"55":2,"60":4,"63":4,"66":1,"76":1,"80":4,"94":4,"107":4,"141":1,"144":1,"161":1,"162":1,"166":5}}],["colinear",{"2":{"3":1,"6":2,"51":1,"94":1,"95":2}}],["conditions",{"2":{"165":1}}],["conencting",{"2":{"150":1}}],["connected",{"2":{"89":5}}],["connect",{"2":{"45":11}}],["connecting",{"2":{"32":1,"161":2}}],["connections",{"2":{"6":2,"134":2,"138":2}}],["convention",{"2":{"41":1}}],["convenience",{"2":{"38":1,"158":1}}],["convexhull",{"2":{"120":1}}],["convex",{"2":{"32":3,"118":1}}],["conversely",{"2":{"43":1}}],["conversion",{"0":{"154":1},"2":{"22":1}}],["converted",{"2":{"22":1,"38":3}}],["converts",{"2":{"6":1,"159":1}}],["convert",{"0":{"68":1,"82":1,"99":1,"109":1},"2":{"6":3,"38":6,"55":1,"119":2,"144":1,"148":3,"154":1,"158":1,"159":1}}],["context",{"2":{"144":4,"162":2}}],["contents",{"2":{"128":1,"129":1}}],["contours",{"2":{"119":1}}],["contour",{"2":{"119":4}}],["continue",{"2":{"35":1,"43":7,"45":1,"50":2,"89":1,"133":1,"138":3,"152":1,"167":1}}],["contributions",{"2":{"25":1}}],["controlled",{"2":{"24":1}}],["control",{"2":{"23":1}}],["containing",{"2":{"44":1,"166":1}}],["contain",{"2":{"3":1,"6":1,"58":1,"60":1,"95":1,"161":1}}],["contained",{"2":{"3":1,"6":1,"9":1,"58":4,"61":1,"76":1,"94":1,"95":1,"128":1,"166":1}}],["contains",{"0":{"59":1,"60":1},"1":{"60":1,"61":1},"2":{"0":2,"3":4,"6":4,"29":1,"43":1,"58":1,"59":1,"60":5,"61":4,"126":1,"137":1,"165":1,"166":1}}],["consistent",{"2":{"43":1,"121":1}}],["consistency",{"2":{"22":1}}],["considered",{"2":{"32":1,"38":1}}],["consider",{"2":{"31":1,"34":1,"41":1,"44":1,"45":3,"47":1,"55":2,"60":1,"63":1,"66":1,"76":1,"80":1,"89":3,"91":1,"94":1,"97":1,"107":1}}],["constprop",{"2":{"78":1}}],["constants",{"2":{"43":1}}],["const",{"2":{"29":4,"43":1,"67":4,"81":3,"98":4,"108":4,"125":3,"128":1,"148":4}}],["constrained",{"2":{"6":3,"49":1,"51":1,"57":1}}],["constructing",{"2":{"162":1}}],["construct",{"2":{"156":1}}],["constructors",{"2":{"6":2,"156":2}}],["constructed",{"2":{"1":1,"20":1,"140":1}}],["concepts",{"0":{"26":1},"1":{"27":1,"28":1}}],["concieve",{"2":{"9":1}}],["concavehull",{"2":{"120":1}}],["concave",{"2":{"6":1,"32":2,"41":2,"118":2}}],["vw",{"2":{"148":3}}],["von",{"2":{"119":1}}],["v2",{"2":{"89":9}}],["v1",{"2":{"89":9}}],["v`",{"2":{"38":2}}],["vcat",{"2":{"32":1,"38":1,"128":1}}],["vararg",{"2":{"38":1}}],["vary",{"2":{"32":1}}],["variables",{"2":{"24":1,"38":8,"61":1,"77":1,"92":1}}],["variable",{"2":{"24":1,"50":2}}],["vals",{"2":{"150":9}}],["valign",{"2":{"148":1}}],["validated",{"2":{"50":2,"52":2,"58":2}}],["validate",{"2":{"9":1}}],["valid",{"2":{"1":1,"6":8,"42":1,"49":2,"51":2,"52":3,"57":2,"119":1,"129":3,"130":1,"136":1,"137":1,"152":1,"153":1}}],["val",{"2":{"32":2,"43":2,"52":8,"89":30,"95":4}}],["values=",{"2":{"119":2}}],["values=sort",{"2":{"119":1}}],["values",{"2":{"1":1,"5":3,"6":16,"32":2,"37":3,"38":40,"42":2,"43":5,"45":5,"56":2,"89":4,"119":19,"128":2,"150":2,"152":1,"157":1}}],["value",{"2":{"0":1,"4":7,"5":2,"6":15,"14":1,"24":1,"32":1,"34":2,"35":4,"38":45,"43":5,"45":2,"52":7,"55":1,"56":3,"119":6,"150":11,"158":2,"165":1}}],["vs",{"0":{"15":1},"2":{"12":1}}],["v0",{"2":{"6":1}}],["vᵢ",{"2":{"6":1}}],["v",{"2":{"5":2,"6":6,"14":4,"38":23,"56":8}}],["visvalingam",{"2":{"146":1}}],["visvalingamwhyatt",{"0":{"151":1},"2":{"0":1,"6":3,"148":4,"151":5}}],["visualized",{"2":{"130":1}}],["visualize",{"2":{"91":1,"162":1}}],["visa",{"2":{"43":1}}],["visited",{"2":{"43":4}}],["view",{"2":{"43":2,"119":1,"138":1,"150":3,"167":1}}],["viewport",{"2":{"14":1}}],["views",{"2":{"1":1,"43":1,"57":1,"140":1}}],["via",{"2":{"6":1,"39":1,"120":1,"141":1,"144":1,"158":2}}],["vect",{"2":{"128":2}}],["vectypes",{"2":{"38":5}}],["vector",{"2":{"1":12,"4":6,"5":1,"6":46,"18":1,"23":1,"27":1,"31":1,"32":10,"38":14,"43":7,"48":6,"49":4,"50":1,"51":2,"52":3,"57":4,"89":1,"95":2,"118":3,"119":4,"121":1,"128":6,"130":8,"131":1,"137":22,"142":1,"143":1,"145":1,"148":1,"149":1,"150":4,"151":1,"152":2,"153":10,"159":15,"161":18,"162":15}}],["vectors",{"2":{"1":1,"4":2,"6":5,"22":1,"32":4,"38":3,"43":1,"56":1,"117":1,"119":1,"128":2,"148":1}}],["ve",{"2":{"17":1,"145":1}}],["vein",{"2":{"7":1}}],["version",{"2":{"158":1}}],["versa",{"2":{"43":1}}],["vert",{"2":{"152":21}}],["verts",{"2":{"148":2}}],["vertical",{"2":{"37":1,"45":1,"52":1,"119":1}}],["vertices",{"2":{"6":7,"9":1,"36":4,"38":5,"43":1,"48":2,"69":1,"71":5,"80":1,"83":3,"86":1,"89":1,"110":1,"130":1,"142":2,"143":1,"144":3,"145":3,"148":1,"151":1}}],["vertex",{"2":{"5":1,"6":2,"32":1,"36":2,"38":2,"43":19,"52":12,"69":2,"84":2,"85":1,"89":1,"110":3}}],["very",{"2":{"0":1,"143":1,"167":2}}],["tnew",{"2":{"128":1}}],["ty",{"2":{"119":3}}],["typing",{"2":{"39":1,"141":1,"144":1}}],["typically",{"2":{"36":1,"163":1}}],["typemax",{"2":{"56":1,"119":9}}],["typeof",{"2":{"19":1,"38":3,"128":2,"156":1,"168":1}}],["type2",{"2":{"6":2,"64":4}}],["type1",{"2":{"6":2,"64":5}}],["types",{"0":{"124":1,"155":1},"1":{"156":1,"157":1,"158":1},"2":{"6":4,"23":1,"24":1,"29":1,"38":3,"45":1,"48":1,"89":3,"148":1,"155":3,"157":1,"165":1}}],["type",{"2":{"4":11,"5":1,"6":61,"11":1,"22":2,"23":1,"24":2,"28":2,"32":9,"35":11,"37":1,"38":8,"42":8,"43":21,"45":8,"48":6,"49":7,"50":6,"51":8,"52":19,"56":28,"57":7,"58":5,"64":2,"123":2,"128":42,"132":1,"133":6,"134":6,"139":1,"144":1,"145":1,"148":3,"154":1,"156":3,"157":5,"158":1,"159":3}}],["tx",{"2":{"119":3}}],["tᵢ",{"2":{"38":1}}],["temporary",{"2":{"43":1}}],["term",{"2":{"35":1}}],["terms",{"2":{"6":1,"38":1}}],["technically",{"2":{"23":1,"129":1}}],["technique",{"2":{"11":1}}],["tell",{"2":{"18":1,"89":1,"157":1,"168":1}}],["test",{"2":{"43":1,"148":2,"158":1}}],["testing",{"0":{"15":1}}],["tests",{"2":{"9":2}}],["tutorial",{"2":{"160":1,"165":1}}],["tups",{"2":{"131":4}}],["tuplepoint",{"2":{"29":3,"159":1}}],["tuple",{"0":{"154":1},"2":{"4":1,"6":16,"29":2,"38":2,"42":3,"43":5,"45":3,"48":1,"52":29,"89":17,"118":2,"119":5,"128":2,"130":6,"137":13,"143":1,"148":2,"150":1,"152":2,"159":6,"161":99,"166":2}}],["tuples",{"2":{"0":1,"6":2,"29":1,"39":1,"42":1,"43":1,"48":1,"49":3,"50":1,"51":2,"52":1,"57":4,"58":5,"131":2,"138":2,"148":2,"154":2,"167":2}}],["turf",{"2":{"118":1}}],["turned",{"2":{"119":1,"128":1}}],["turning",{"2":{"119":8}}],["turn",{"2":{"6":1,"119":1}}],["t2",{"2":{"6":5,"38":47,"68":1,"78":2,"99":1,"109":1}}],["t1",{"2":{"6":6,"38":51,"78":2}}],["t=float64",{"2":{"4":1,"6":3,"42":3}}],["two",{"2":{"3":5,"4":10,"6":23,"23":2,"32":2,"34":1,"38":1,"42":1,"43":6,"45":3,"49":2,"51":1,"52":13,"56":5,"57":4,"58":3,"60":2,"61":1,"63":3,"64":12,"66":1,"76":1,"77":1,"78":1,"80":1,"89":2,"91":2,"92":2,"94":4,"95":5,"97":3,"98":1,"107":2,"119":3,"133":2,"134":1,"137":2,"138":2,"143":1,"158":1,"161":1,"165":3,"166":3}}],["task",{"2":{"128":6}}],["tasks",{"2":{"128":10}}],["taskrange",{"2":{"128":10}}],["tags",{"2":{"43":4}}],["taget",{"2":{"6":2}}],["taylor",{"2":{"6":1,"38":1}}],["table2",{"2":{"165":1}}],["table1",{"2":{"165":3}}],["tables",{"2":{"22":4,"29":1,"128":11}}],["table",{"0":{"163":1},"2":{"6":1,"18":1,"27":2,"128":12,"148":1,"163":1,"164":1,"165":1}}],["taking",{"2":{"6":3,"42":1,"49":1,"50":1,"51":1,"52":1,"57":1,"58":1,"136":1}}],["takes",{"2":{"43":3,"165":1}}],["taken",{"2":{"20":1,"37":1}}],["take",{"2":{"1":1,"6":2,"27":1,"43":3,"49":1,"50":1,"51":1,"52":1,"58":1,"118":2,"119":2,"121":1,"140":1}}],["target=nothing",{"2":{"49":1,"51":1,"57":1}}],["target=gi",{"2":{"43":1}}],["targets",{"2":{"23":1,"32":2,"35":3,"45":3,"56":3}}],["target",{"0":{"23":1},"2":{"1":14,"6":28,"15":3,"22":2,"23":2,"38":1,"42":2,"43":1,"49":5,"50":11,"51":6,"52":10,"57":4,"58":13,"119":1,"121":1,"123":4,"126":5,"127":1,"128":142,"138":2,"140":3,"148":2,"156":3}}],["tilted",{"2":{"45":1}}],["tie",{"2":{"32":1}}],["timings",{"2":{"13":5}}],["timing",{"2":{"13":2}}],["times",{"2":{"4":1,"6":1,"135":1}}],["time",{"2":{"1":5,"13":3,"24":1,"37":1,"119":1,"140":4,"158":1,"161":1,"162":3,"166":1,"167":1}}],["title",{"2":{"13":2,"37":2,"119":1,"144":1,"148":2}}],["tip",{"2":{"1":1,"5":1,"6":1,"38":1,"140":1,"165":1}}],["tree",{"2":{"165":1}}],["treating",{"2":{"148":1}}],["treated",{"2":{"89":5,"161":1}}],["treats",{"2":{"35":1,"56":1}}],["trials",{"2":{"144":2,"148":2}}],["triangles",{"2":{"36":1}}],["triangle",{"2":{"6":1,"36":4,"151":4,"166":1}}],["trivially",{"2":{"121":1}}],["try",{"2":{"53":3,"119":1,"126":1,"128":9,"167":1}}],["tr",{"2":{"35":3}}],["trues",{"2":{"138":3}}],["true",{"0":{"24":1},"2":{"1":5,"3":25,"4":3,"6":42,"32":7,"35":1,"37":2,"39":1,"43":30,"45":6,"48":1,"49":1,"50":2,"51":1,"56":4,"57":2,"58":3,"60":1,"61":1,"64":21,"66":2,"67":6,"69":1,"70":1,"71":4,"73":1,"74":1,"76":2,"77":1,"78":9,"80":2,"81":2,"83":1,"84":1,"85":3,"87":1,"88":1,"89":78,"91":3,"92":1,"94":2,"95":18,"97":2,"98":6,"101":1,"102":1,"104":1,"105":1,"107":2,"108":7,"110":1,"111":1,"112":4,"114":1,"115":1,"118":4,"119":5,"128":8,"138":1,"141":1,"144":1,"148":1,"157":2,"165":1,"168":1}}],["traditional",{"2":{"119":1}}],["traverse",{"2":{"43":1}}],["traced",{"2":{"43":1}}],["traces",{"2":{"43":1}}],["trace",{"2":{"43":2,"49":1,"51":1,"57":1}}],["track",{"2":{"43":3,"138":2}}],["tracing",{"2":{"6":1,"43":4,"45":1,"50":5,"52":2,"58":2}}],["transverse",{"2":{"162":1}}],["translate",{"2":{"37":2}}],["translation",{"2":{"1":2,"6":2,"148":2,"153":2,"161":3,"162":1}}],["transformations",{"2":{"29":10}}],["transformation",{"0":{"153":1},"2":{"6":1,"119":1,"132":1,"140":1,"160":1}}],["transform",{"2":{"0":2,"1":6,"6":3,"15":2,"29":1,"121":1,"140":2,"148":1,"153":4,"161":4,"162":1}}],["trait`",{"2":{"128":1}}],["trait2",{"2":{"56":10,"64":2,"83":2,"84":2,"95":2,"100":2,"102":2,"103":2}}],["trait1",{"2":{"56":12,"64":2,"83":2,"84":2,"95":2,"100":2,"102":2,"103":2}}],["traits",{"2":{"6":2,"18":1,"95":1,"126":2,"133":2,"148":2,"156":3}}],["trait",{"2":{"1":5,"3":2,"4":2,"6":17,"18":7,"20":1,"22":1,"29":1,"32":2,"35":5,"38":6,"42":7,"45":2,"48":3,"49":2,"50":2,"51":6,"52":4,"56":7,"57":2,"58":2,"64":11,"67":3,"78":2,"81":3,"89":4,"95":10,"98":3,"108":3,"118":1,"121":1,"123":2,"126":3,"128":49,"133":9,"134":1,"145":1,"148":2,"156":8,"159":7,"161":1}}],["traittarget",{"0":{"156":1},"2":{"0":1,"1":2,"6":8,"32":1,"35":1,"42":1,"45":1,"49":2,"50":4,"51":3,"52":4,"56":1,"57":2,"58":4,"121":2,"124":1,"128":10,"145":1,"148":1,"155":1,"156":20}}],["thus",{"2":{"32":1,"35":1,"43":3,"50":1,"52":1,"58":1}}],["those",{"2":{"32":1,"43":1,"52":1,"69":1,"110":1}}],["though",{"2":{"20":1,"130":1}}],["thing",{"0":{"28":1}}],["things",{"2":{"9":1}}],["this",{"0":{"28":1},"2":{"0":1,"1":1,"3":1,"4":6,"5":1,"6":27,"7":1,"18":1,"23":3,"24":2,"25":2,"27":1,"29":1,"31":2,"32":6,"34":2,"35":9,"37":3,"38":11,"39":2,"41":1,"42":4,"43":26,"44":1,"45":4,"47":1,"48":5,"50":1,"52":3,"53":1,"55":4,"56":6,"57":1,"58":2,"60":1,"61":2,"64":4,"66":3,"67":3,"74":1,"76":1,"77":2,"78":1,"81":3,"88":1,"89":3,"92":2,"94":1,"95":4,"98":3,"105":1,"107":1,"108":3,"115":1,"117":1,"118":3,"119":8,"120":2,"121":2,"126":2,"128":17,"129":3,"131":3,"132":1,"133":6,"134":7,"135":2,"136":4,"138":3,"139":2,"140":4,"141":3,"142":3,"143":5,"144":5,"145":4,"146":2,"148":3,"152":9,"153":1,"154":1,"155":3,"156":2,"157":3,"158":2,"159":1,"160":1,"161":2,"162":7,"163":3,"164":1,"165":3,"166":3,"167":3,"168":1}}],["three",{"2":{"36":1,"52":1}}],["thread",{"2":{"128":6}}],["threading",{"0":{"128":1},"2":{"128":7,"157":1}}],["threads",{"2":{"1":1,"6":1,"128":10}}],["threaded=",{"2":{"128":8}}],["threaded=true",{"2":{"128":1}}],["threaded=false",{"2":{"35":1,"42":4,"45":2,"56":8,"128":2,"135":1,"148":1}}],["threaded==true",{"2":{"1":1,"6":1,"128":1}}],["threaded",{"2":{"1":3,"4":1,"6":7,"24":1,"32":2,"35":1,"42":3,"45":3,"56":5,"125":1,"128":47,"135":1,"145":6,"148":1,"157":2}}],["through",{"2":{"6":4,"32":1,"38":1,"43":3,"45":1,"47":1,"48":2,"67":1,"89":5,"108":1,"119":1,"126":1,"128":1,"134":2,"138":2,"150":1,"158":1,"161":1}}],["thrown",{"2":{"126":1}}],["throws",{"2":{"6":1,"158":1}}],["throw",{"2":{"4":1,"6":1,"58":1,"64":1,"119":1,"128":5}}],["than",{"2":{"1":1,"3":1,"6":11,"11":1,"43":2,"69":1,"78":1,"95":1,"110":1,"118":1,"119":2,"127":1,"128":1,"134":2,"136":1,"137":1,"138":2,"142":1,"144":2,"145":1,"149":1,"158":2}}],["that",{"2":{"1":1,"3":3,"4":8,"6":43,"9":1,"17":1,"18":4,"19":3,"20":1,"22":3,"25":1,"32":4,"34":2,"35":4,"38":4,"39":2,"41":2,"42":3,"43":17,"44":3,"45":5,"49":4,"50":5,"51":4,"52":14,"56":2,"57":3,"58":5,"60":4,"61":1,"63":1,"64":11,"66":2,"67":1,"77":1,"80":1,"81":1,"89":3,"91":1,"92":1,"94":2,"95":10,"97":2,"98":2,"100":2,"107":3,"108":1,"110":3,"118":1,"119":4,"121":1,"123":2,"128":4,"129":3,"130":2,"131":1,"132":3,"133":2,"134":4,"136":2,"137":3,"138":4,"140":1,"142":2,"143":2,"144":3,"145":2,"148":2,"150":1,"152":1,"156":1,"157":1,"158":1,"162":5,"163":2,"164":3,"165":1,"166":2}}],["theorem",{"2":{"56":1}}],["themselves",{"2":{"38":1}}],["them",{"2":{"6":1,"25":1,"43":1,"119":2,"120":2,"123":1,"128":1,"130":2,"136":1,"137":1,"148":1,"161":1,"162":1,"164":3}}],["thereof",{"2":{"121":1}}],["therefore",{"2":{"55":1,"129":1}}],["there",{"2":{"6":3,"22":1,"32":1,"38":2,"39":1,"43":3,"45":1,"48":2,"50":1,"52":4,"53":1,"58":1,"89":1,"95":2,"119":3,"120":1,"121":1,"128":4,"130":1,"143":1,"152":1,"156":1,"158":1,"162":2,"164":3}}],["then",{"2":{"6":5,"18":1,"22":1,"27":1,"32":3,"38":2,"43":6,"45":1,"49":1,"51":2,"52":5,"53":2,"57":2,"58":2,"89":1,"119":2,"126":1,"128":3,"136":1,"144":2,"148":1,"162":1,"165":1,"166":1}}],["their",{"2":{"3":1,"4":1,"6":2,"38":1,"41":2,"56":2,"58":1,"86":1,"95":1,"97":1,"101":1,"102":1,"111":3,"112":3,"121":1,"128":1,"130":1,"135":1,"137":1}}],["they",{"2":{"3":3,"4":11,"6":25,"20":2,"22":1,"23":1,"24":1,"36":1,"42":2,"43":8,"45":2,"49":2,"51":1,"52":6,"57":2,"58":3,"63":3,"64":16,"67":1,"80":1,"84":2,"85":1,"86":1,"89":2,"91":1,"94":2,"95":4,"100":1,"102":1,"103":1,"111":1,"112":1,"119":6,"128":1,"129":1,"134":2,"138":2,"143":1,"152":1,"155":1,"166":1}}],["these",{"2":{"1":2,"6":5,"24":1,"32":1,"38":5,"43":3,"58":1,"60":1,"63":1,"64":1,"67":1,"76":1,"78":2,"80":1,"81":1,"91":1,"94":1,"95":1,"97":2,"98":1,"107":1,"108":1,"118":1,"119":3,"126":1,"128":2,"140":1,"144":1,"148":2,"158":1,"164":1,"165":1}}],["the",{"0":{"27":1,"41":1},"2":{"1":28,"3":64,"4":112,"5":12,"6":393,"7":5,"9":3,"10":1,"11":3,"17":5,"18":10,"19":2,"20":4,"22":4,"23":5,"24":3,"25":3,"27":3,"31":1,"32":63,"34":12,"35":43,"36":15,"37":12,"38":71,"39":6,"41":6,"42":25,"43":116,"44":7,"45":47,"47":2,"48":7,"49":27,"50":23,"51":27,"52":80,"53":1,"55":11,"56":81,"57":29,"58":70,"60":9,"61":11,"63":5,"64":47,"66":8,"67":25,"70":8,"71":9,"72":3,"73":3,"74":2,"76":4,"77":11,"78":5,"80":2,"81":21,"83":8,"84":6,"85":4,"87":3,"88":2,"89":123,"91":5,"92":6,"94":5,"95":26,"97":5,"98":21,"100":6,"101":10,"102":7,"103":3,"104":3,"105":2,"107":7,"108":24,"110":2,"111":9,"112":9,"113":6,"114":2,"115":2,"117":1,"118":8,"119":47,"120":1,"121":8,"123":4,"125":2,"126":11,"128":84,"129":5,"130":5,"131":4,"132":2,"133":13,"134":10,"135":1,"136":4,"137":8,"138":6,"139":5,"140":14,"141":2,"142":3,"143":5,"144":26,"145":17,"146":3,"148":18,"149":3,"150":6,"151":3,"152":2,"153":3,"154":1,"155":2,"157":5,"158":21,"161":10,"162":21,"163":2,"164":4,"165":10,"166":17,"167":3}}],["t",{"2":{"0":1,"4":28,"6":55,"9":1,"23":1,"29":8,"32":32,"35":41,"38":26,"42":38,"43":74,"45":44,"48":18,"49":12,"50":12,"51":12,"52":152,"56":87,"57":10,"58":20,"64":17,"66":1,"84":1,"89":24,"95":1,"97":1,"101":2,"102":1,"119":14,"128":10,"134":2,"138":2,"144":3,"145":5,"148":1,"154":7,"156":14,"157":2,"158":3,"159":10,"161":4,"167":1}}],["tokyo",{"2":{"167":1}}],["toy",{"2":{"165":1}}],["together",{"2":{"52":1,"58":1,"161":1,"166":1}}],["touching",{"0":{"101":1},"2":{"52":1,"58":1}}],["touch",{"0":{"102":1,"103":1,"104":1},"2":{"43":1,"97":1,"100":2,"102":1,"104":1}}],["touches",{"0":{"96":1,"97":1,"100":1},"1":{"97":1,"98":1},"2":{"0":2,"3":3,"6":3,"29":1,"96":1,"97":3,"98":11,"99":6,"100":11,"101":15,"102":9,"103":8,"104":3,"105":4,"165":1}}],["totally",{"2":{"57":1}}],["total",{"2":{"35":1,"38":2,"43":2,"45":1}}],["towards",{"2":{"25":1}}],["topright",{"2":{"148":1}}],["topologypreserve",{"2":{"146":1}}],["topology",{"2":{"146":1}}],["top",{"2":{"20":1,"43":1,"119":1}}],["took",{"2":{"167":1}}],["tools",{"2":{"17":1}}],["too",{"2":{"6":1,"52":1,"142":1,"145":1}}],["tol^2",{"2":{"149":1,"150":1}}],["tolerances",{"2":{"151":1,"152":29}}],["tolerance",{"2":{"149":1,"150":1,"151":1,"152":17}}],["tol",{"2":{"6":12,"144":2,"148":18,"149":7,"150":15,"151":8,"152":18}}],["todo",{"2":{"3":2,"6":2,"43":1,"52":1,"78":4,"95":1,"119":1,"128":1,"131":1,"148":1,"157":1}}],["to",{"0":{"9":1,"23":1,"53":1,"68":1,"82":1,"99":1,"109":1},"2":{"0":2,"1":22,"3":1,"4":33,"5":4,"6":141,"7":2,"9":3,"10":2,"11":2,"13":1,"17":2,"18":9,"19":1,"20":2,"22":3,"23":4,"24":2,"25":3,"27":4,"28":1,"31":1,"32":8,"34":1,"35":4,"36":4,"37":1,"38":26,"39":2,"41":2,"42":5,"43":32,"44":1,"45":12,"47":1,"48":3,"49":8,"50":4,"51":8,"52":26,"55":6,"56":32,"57":7,"58":11,"60":1,"61":1,"63":2,"64":17,"66":2,"67":7,"76":3,"77":1,"78":2,"80":1,"81":7,"89":21,"91":2,"92":1,"94":3,"95":7,"97":1,"98":7,"100":1,"107":1,"108":7,"118":4,"119":16,"121":4,"123":4,"125":7,"126":6,"127":1,"128":51,"129":2,"130":3,"132":4,"133":8,"134":5,"135":3,"136":3,"137":1,"138":4,"139":1,"140":4,"141":1,"142":3,"143":3,"144":9,"145":7,"146":1,"148":4,"149":1,"150":15,"151":1,"152":2,"153":4,"154":1,"155":2,"156":2,"157":6,"158":9,"159":28,"160":4,"161":6,"162":16,"163":7,"164":5,"165":7,"166":5,"167":2,"168":8}}],["rd",{"2":{"148":3}}],["rdbu",{"2":{"55":1}}],["rhumb",{"2":{"118":2}}],["runner",{"2":{"162":1}}],["running",{"2":{"128":3}}],["run",{"2":{"128":8,"167":1}}],["runs",{"2":{"52":2,"117":1}}],["rule",{"2":{"43":1}}],["rules",{"2":{"43":1}}],["right=2",{"2":{"43":1}}],["right",{"2":{"38":1,"43":4,"48":1,"56":1,"118":1,"150":19,"152":5,"161":1,"165":1}}],["ring4",{"2":{"162":2}}],["ring3",{"2":{"162":1}}],["ring2",{"2":{"161":2}}],["ring1",{"2":{"161":2}}],["rings",{"0":{"71":1,"85":1,"102":1,"112":1,"129":1},"1":{"130":1,"131":1},"2":{"4":4,"6":6,"9":2,"35":1,"42":1,"43":3,"52":1,"64":7,"117":1,"119":5,"131":1,"134":1,"148":1}}],["ring",{"2":{"4":7,"6":13,"9":1,"29":1,"32":3,"35":2,"38":1,"41":1,"42":4,"43":12,"45":13,"56":5,"58":3,"64":4,"69":1,"70":2,"71":5,"83":1,"85":1,"89":2,"100":1,"101":1,"102":3,"110":1,"111":2,"112":4,"118":3,"119":11,"129":2,"130":1,"131":14,"132":1,"161":1}}],["rtrees",{"2":{"20":1}}],["r+y",{"2":{"13":2,"14":1}}],["r+x",{"2":{"13":2,"14":1}}],["ry",{"2":{"13":3,"14":3}}],["rx",{"2":{"13":3,"14":3}}],["round",{"2":{"148":1,"150":1,"152":1}}],["routines",{"2":{"11":1}}],["row",{"2":{"128":3}}],["rows",{"2":{"128":2}}],["robust",{"0":{"15":1}}],["rotate",{"2":{"45":1}}],["rotation",{"2":{"1":1,"6":1,"153":1}}],["rotations",{"2":{"1":3,"6":3,"153":3}}],["rotmatrix2d",{"2":{"148":1}}],["rotmatrix",{"2":{"1":1,"6":1,"153":1}}],["r",{"2":{"6":1,"9":1,"13":11,"14":12,"144":1,"152":2,"161":6,"162":6}}],["rᵢ₋₁",{"2":{"38":20}}],["rᵢ∗rᵢ₊₁+sᵢ⋅sᵢ₊₁",{"2":{"6":1}}],["rᵢ₊₁",{"2":{"6":1,"38":29}}],["rᵢ",{"2":{"6":2,"38":49}}],["ramer",{"2":{"150":1}}],["raster",{"0":{"119":1},"2":{"119":4}}],["ray",{"2":{"89":4}}],["rawcdn",{"2":{"148":1}}],["raw",{"2":{"18":1}}],["range",{"2":{"13":8,"14":4,"119":1,"128":4}}],["ranges",{"2":{"6":1,"119":2}}],["randomly",{"2":{"166":2}}],["random",{"2":{"148":2}}],["rand",{"2":{"6":1,"119":1,"166":2}}],["rather",{"2":{"6":1,"119":1,"137":1}}],["ratio",{"2":{"6":7,"52":1,"144":1,"148":1,"149":4,"150":6,"151":4,"152":11}}],["radii",{"2":{"6":1,"144":1}}],["radius`",{"2":{"144":1}}],["radius",{"2":{"6":6,"38":13,"144":4}}],["radialdistance",{"0":{"149":1},"2":{"0":1,"6":2,"146":1,"148":4,"149":4}}],["rrayscore",{"2":{"1":1,"6":1,"153":1}}],["rring",{"2":{"1":1,"6":1,"153":1}}],["rewrap",{"2":{"128":3}}],["req",{"2":{"89":44}}],["requirment",{"2":{"136":1}}],["requirments",{"2":{"89":5}}],["requirement",{"2":{"129":1}}],["required",{"2":{"67":3,"81":3,"98":3,"108":3,"143":1,"160":1}}],["require",{"2":{"66":2,"67":6,"81":3,"89":32,"98":3,"108":3}}],["requires",{"2":{"39":1,"60":1,"64":1,"67":2,"70":3,"71":3,"72":1,"81":1,"84":3,"85":2,"86":1,"98":1,"101":3,"102":1,"103":1,"107":1,"108":1,"111":3,"112":3,"113":1,"141":1,"144":1,"158":1}}],["requests",{"2":{"25":1}}],["reveal",{"2":{"58":1}}],["reveals",{"2":{"58":1}}],["reverse",{"2":{"34":1,"37":1,"38":1,"43":2,"161":2}}],["rev",{"2":{"57":1}}],["reflected",{"2":{"148":3}}],["ref",{"2":{"55":1}}],["referring",{"2":{"89":1}}],["refer",{"2":{"6":1,"119":1}}],["referece",{"2":{"1":2,"140":2}}],["references",{"2":{"6":1,"38":1}}],["reference",{"0":{"162":1},"2":{"0":1,"160":2,"162":1}}],["render",{"2":{"37":1}}],["rendering",{"2":{"37":3,"38":1}}],["rename",{"2":{"10":1}}],["regardless",{"2":{"52":1,"89":1}}],["regions",{"2":{"50":3,"52":5,"57":1,"58":3,"89":2,"167":1}}],["region",{"2":{"39":2,"52":3,"58":2,"167":1}}],["register",{"2":{"29":3,"38":3}}],["regular",{"0":{"15":1}}],["readable",{"2":{"164":1}}],["readability",{"2":{"43":1}}],["read",{"2":{"148":2,"162":2}}],["reached",{"2":{"128":4}}],["reaches",{"2":{"126":1}}],["reach",{"2":{"126":1}}],["reasons",{"2":{"158":1}}],["reason",{"2":{"24":1,"129":1,"136":1,"157":1}}],["real`",{"2":{"144":1,"145":1}}],["really",{"2":{"35":1,"89":1,"119":1,"157":1}}],["real=1",{"2":{"6":2,"144":2}}],["real=6378137`",{"2":{"144":1}}],["real=6378137",{"2":{"6":2,"144":1}}],["real",{"0":{"167":1},"2":{"5":1,"6":15,"32":1,"38":45,"42":2,"52":3,"144":3,"145":1,"152":5,"165":1}}],["related",{"2":{"121":1}}],["relation",{"2":{"43":2}}],["relations",{"2":{"29":10,"78":1,"95":1}}],["relationship",{"2":{"23":1,"165":2}}],["relative",{"2":{"38":3}}],["relevant",{"2":{"10":1}}],["reducing",{"2":{"128":1}}],["reduced",{"2":{"149":1,"150":1,"151":1}}],["reduces",{"2":{"19":1,"58":1}}],["reduce",{"2":{"1":1,"6":1,"119":1,"128":2,"133":1}}],["redundant",{"2":{"43":1}}],["red",{"2":{"14":1,"41":2,"55":1,"66":1,"76":1,"91":1,"161":1,"162":1,"166":2}}],["removal",{"2":{"43":1}}],["removes",{"2":{"43":1,"121":1}}],["removed",{"2":{"43":3,"50":5,"119":1}}],["remove",{"2":{"35":1,"43":33,"45":1,"48":2,"49":5,"51":5,"57":2,"138":2,"149":1,"150":3,"152":4}}],["removing",{"2":{"6":3,"43":1,"50":1,"149":1,"150":1,"151":1}}],["remainingnode",{"2":{"119":3}}],["remaining",{"2":{"43":1,"64":1,"89":2,"150":1}}],["remain",{"2":{"1":1,"6":9,"128":1,"148":2}}],["resolution",{"2":{"162":1}}],["resolved",{"2":{"119":1}}],["reset",{"2":{"43":1}}],["resize",{"2":{"13":1,"14":1,"43":2}}],["resampled",{"2":{"6":1,"145":1}}],["respectivly",{"2":{"95":1}}],["respectively",{"2":{"43":1,"128":1,"161":1}}],["respect",{"2":{"6":2,"51":1,"52":1,"89":6}}],["rest",{"2":{"6":1,"38":2,"57":1}}],["resulting",{"2":{"48":1,"58":1,"119":1,"166":1}}],["results",{"2":{"3":2,"6":2,"52":1,"78":1,"95":1,"128":2,"130":1,"150":25,"161":3}}],["result",{"2":{"1":2,"3":5,"4":5,"6":13,"19":1,"32":1,"35":2,"45":1,"52":13,"56":2,"61":1,"67":1,"77":1,"92":1,"108":1,"128":2,"144":3,"152":6}}],["recieves",{"2":{"128":2}}],["recucing",{"2":{"128":1}}],["recursive",{"2":{"126":1}}],["recursively",{"2":{"4":1,"6":1,"126":1,"135":1}}],["recalculate",{"2":{"127":1}}],["recent",{"2":{"43":1,"50":1,"52":1,"58":1}}],["rect",{"2":{"31":3,"34":5,"44":3,"55":7}}],["rectangle",{"2":{"31":2,"34":2,"37":2,"44":2,"45":1,"55":2,"143":5,"144":8,"166":2}}],["recommended",{"2":{"22":1}}],["reconstructing",{"2":{"148":1}}],["reconstructed",{"2":{"18":1}}],["reconstruct",{"2":{"0":2,"1":1,"6":3,"18":1,"123":2,"128":29}}],["replace",{"2":{"43":1,"119":2,"150":1}}],["replaced",{"2":{"22":1}}],["repl",{"2":{"39":1,"141":1,"144":1}}],["repeat",{"2":{"42":1,"43":3,"64":6}}],["repeating",{"2":{"35":1,"58":1}}],["repeated",{"2":{"4":3,"6":3,"9":1,"32":2,"38":1,"43":2,"56":2,"58":2,"64":4,"89":1}}],["represented",{"2":{"166":1}}],["represent",{"2":{"17":1,"38":1,"43":4,"64":1}}],["representing",{"2":{"6":1,"50":1,"52":1,"55":1,"58":1,"64":1,"167":1}}],["represents",{"2":{"6":1,"133":2,"134":1}}],["reprojects",{"2":{"140":1}}],["reprojection",{"0":{"140":1},"1":{"141":1}}],["reproject",{"2":{"0":1,"1":4,"29":2,"121":1,"140":6,"141":2}}],["re",{"2":{"1":1,"6":1,"17":1,"153":1,"160":1,"162":1}}],["retreivable",{"2":{"1":1,"140":1}}],["returnval",{"2":{"89":9}}],["returntype",{"2":{"19":1}}],["returning",{"2":{"18":1,"39":1,"50":2}}],["return",{"0":{"22":1},"2":{"1":1,"3":18,"4":2,"6":37,"13":3,"14":3,"23":2,"28":1,"32":5,"35":5,"38":20,"39":1,"42":4,"43":36,"45":12,"48":12,"49":5,"50":4,"51":4,"52":19,"56":8,"57":6,"58":9,"61":1,"64":30,"67":1,"73":2,"74":2,"77":1,"78":18,"81":2,"87":2,"88":2,"89":71,"91":1,"92":1,"95":28,"98":1,"100":2,"104":2,"105":2,"108":1,"114":2,"115":2,"118":10,"119":12,"128":26,"129":1,"131":4,"133":6,"134":2,"138":2,"139":2,"140":1,"145":4,"148":3,"149":1,"150":5,"151":3,"152":7,"153":2,"154":2,"158":3,"159":8}}],["returned",{"2":{"1":1,"6":10,"22":2,"23":1,"43":3,"48":1,"49":2,"51":2,"52":1,"57":2,"119":1,"123":1,"128":2,"140":1,"148":1,"157":1}}],["returns",{"2":{"1":1,"3":5,"4":4,"5":3,"6":23,"18":1,"22":2,"32":1,"35":2,"38":6,"42":3,"43":4,"45":6,"48":1,"49":1,"52":1,"56":8,"57":1,"60":2,"61":1,"63":1,"67":1,"76":2,"77":1,"80":1,"89":4,"92":1,"95":2,"108":1,"119":2,"128":2,"145":1,"154":1,"165":1}}],["rebuilt",{"2":{"1":1,"6":2,"123":1,"128":2}}],["rebuild",{"2":{"0":2,"6":4,"123":4,"126":1,"128":10,"145":1,"148":2}}],["psa",{"2":{"128":2}}],["pb",{"2":{"78":2}}],["p0",{"2":{"56":9}}],["p3",{"2":{"43":8,"151":4}}],["ptm",{"2":{"118":3}}],["ptj",{"2":{"118":5}}],["pti",{"2":{"118":3}}],["ptrait",{"2":{"56":2}}],["pts",{"2":{"43":22,"48":7}}],["pt",{"2":{"43":114,"48":2,"52":26,"89":8,"150":4}}],["pt2",{"2":{"43":14}}],["pt1",{"2":{"43":18}}],["pn",{"2":{"100":3}}],["pn2",{"2":{"43":4}}],["pn1",{"2":{"43":4}}],["pfirst",{"2":{"35":3}}],["pu",{"2":{"166":2}}],["purpose",{"2":{"128":1}}],["pure",{"2":{"119":1}}],["purely",{"2":{"6":1,"18":1,"144":1}}],["push",{"2":{"43":15,"48":5,"49":2,"51":2,"52":1,"57":4,"58":5,"119":3,"131":1,"145":3,"150":3}}],["pull",{"2":{"25":1}}],["public",{"2":{"24":1}}],["pick",{"2":{"162":2}}],["piece",{"2":{"43":6,"138":6}}],["pieces",{"2":{"43":12,"48":1,"50":2,"57":4,"89":1,"138":9}}],["pi",{"2":{"13":2}}],["pixels",{"2":{"119":1}}],["pixel",{"2":{"6":2,"119":7}}],["pythagorean",{"2":{"56":1}}],["py",{"2":{"13":2,"14":2}}],["px",{"2":{"13":2,"14":2}}],["peucker",{"2":{"146":2,"148":3,"150":2}}],["peaks",{"2":{"119":2}}],["peculiarities",{"0":{"21":1},"1":{"22":1,"23":1,"24":1}}],["people",{"2":{"9":1}}],["performed",{"2":{"166":1}}],["performs",{"2":{"38":1,"145":1}}],["perform",{"2":{"37":1,"38":2,"43":1,"121":1,"165":3,"166":2,"168":1}}],["performing",{"2":{"6":3,"23":1,"38":1,"49":1,"51":1,"57":1,"166":1}}],["performance",{"2":{"4":1,"6":2,"22":1,"119":1,"135":1,"136":1,"148":1,"164":1}}],["per",{"2":{"5":2,"6":2,"37":1,"38":2,"43":5,"119":1,"128":4,"145":1}}],["pl",{"2":{"166":2}}],["plt",{"2":{"161":1}}],["please",{"2":{"43":1}}],["plan",{"2":{"142":1}}],["plane",{"2":{"38":1}}],["place",{"2":{"52":1,"165":1}}],["placement",{"2":{"43":1}}],["plottable",{"2":{"119":1}}],["plotted",{"2":{"41":1}}],["plotting",{"0":{"161":1},"2":{"6":1,"119":1,"142":1,"145":1,"160":1,"161":4,"162":1}}],["plots",{"2":{"37":2}}],["plot",{"2":{"13":1,"37":3,"63":1,"94":1,"119":1,"144":2,"148":4,"160":2,"161":9,"162":6,"164":1,"166":1}}],["plus",{"2":{"5":1,"6":1,"38":1}}],["p2y",{"2":{"159":3}}],["p2x",{"2":{"159":3}}],["p2box",{"2":{"37":1}}],["p2",{"2":{"3":2,"4":2,"6":6,"15":12,"32":12,"35":9,"43":18,"45":19,"56":15,"57":2,"64":11,"67":2,"76":2,"89":12,"95":2,"118":3,"143":1,"151":4,"159":3,"161":2}}],["p1y",{"2":{"159":3}}],["p1x",{"2":{"159":3}}],["p1",{"2":{"3":3,"4":2,"6":7,"15":12,"32":21,"35":8,"37":4,"43":9,"45":25,"47":1,"56":15,"57":2,"64":14,"66":5,"67":3,"76":5,"89":4,"95":2,"100":3,"118":3,"151":4,"159":3,"161":1}}],["practice",{"2":{"162":1}}],["pred",{"2":{"165":2,"166":1,"167":2,"168":1}}],["predicate",{"2":{"7":1,"78":1,"165":3,"166":1,"168":5}}],["predicates",{"0":{"12":1,"15":1,"168":1},"1":{"13":1,"14":1,"15":1,"16":1},"2":{"7":4,"12":1,"29":1,"43":5,"52":4,"53":3,"89":1,"165":1,"167":1}}],["pretty",{"2":{"140":1}}],["prettytime",{"2":{"13":2}}],["prevent",{"2":{"50":2,"52":2,"58":2}}],["prev^2",{"2":{"32":2}}],["prev",{"2":{"32":14,"43":69,"118":4}}],["previously",{"2":{"143":1}}],["previous",{"2":{"19":1,"32":1,"128":1,"149":3}}],["preparations",{"2":{"20":1}}],["prepared",{"2":{"20":1,"119":2}}],["prepare",{"0":{"20":1},"2":{"17":1,"20":1}}],["precision",{"2":{"11":1}}],["preserve",{"2":{"148":4,"150":3}}],["preserving",{"2":{"146":1}}],["presentation",{"2":{"6":1,"38":1}}],["present",{"2":{"6":1,"158":1}}],["presence",{"2":{"6":1,"158":1}}],["prescribes",{"2":{"20":1}}],["press",{"2":{"6":1,"38":1}}],["pre",{"2":{"6":1,"57":1,"148":1,"150":2}}],["prefilter",{"2":{"6":1,"148":7}}],["protters",{"2":{"128":2}}],["progressively",{"2":{"126":1}}],["program",{"2":{"17":1}}],["programming",{"2":{"17":1}}],["promote",{"2":{"38":5}}],["property",{"2":{"128":2}}],["properties=gi",{"2":{"128":1}}],["properties=namedtuple",{"2":{"128":1}}],["properties=",{"2":{"119":1}}],["properties",{"2":{"6":1,"128":9,"148":1,"152":1}}],["propagate",{"2":{"38":16,"56":4}}],["probably",{"2":{"35":1,"128":1}}],["prod",{"2":{"32":4}}],["product",{"2":{"32":1}}],["process",{"2":{"69":3,"70":3,"71":3,"72":1,"78":1,"83":3,"84":3,"85":2,"86":1,"89":11,"100":1,"101":3,"102":1,"103":1,"110":3,"111":3,"112":3,"113":1,"128":2,"150":1}}],["processed",{"2":{"43":6}}],["processors",{"2":{"29":1,"67":2,"81":2,"98":2,"108":2}}],["processor",{"2":{"29":1}}],["processing",{"2":{"23":1}}],["profile",{"2":{"9":1}}],["provides",{"2":{"162":1}}],["providers",{"2":{"130":1,"137":1}}],["provide",{"0":{"23":1},"2":{"6":6,"31":1,"34":1,"36":1,"41":1,"44":1,"47":1,"49":2,"51":2,"55":1,"57":2,"60":1,"63":1,"66":1,"76":1,"80":1,"89":2,"91":1,"94":1,"97":1,"107":1,"119":1,"152":1}}],["provided",{"2":{"4":1,"6":3,"11":1,"43":1,"56":1,"64":1,"137":1,"144":2,"158":1}}],["projecting",{"2":{"162":1}}],["projection",{"2":{"56":2,"160":1,"162":1}}],["project",{"2":{"9":1}}],["projects",{"2":{"9":1}}],["proj",{"2":{"1":2,"6":3,"140":2,"141":4,"143":1,"144":6,"160":1}}],["prints",{"2":{"141":1}}],["printstyled",{"2":{"39":1,"141":1,"144":1}}],["println",{"2":{"39":1,"141":1,"144":1,"148":2}}],["print",{"2":{"39":2,"141":2,"144":2}}],["primitives",{"2":{"29":1}}],["primitive",{"0":{"121":1},"1":{"122":1,"123":1,"124":1,"125":1,"126":1,"127":1,"128":1},"2":{"27":1}}],["primarily",{"2":{"6":1,"25":2,"156":1}}],["primary",{"2":{"3":2,"6":3,"67":1,"108":1,"148":1}}],["priority",{"2":{"1":1,"140":1}}],["pay",{"2":{"128":1}}],["paper",{"2":{"89":2}}],["pa",{"2":{"78":2}}],["paths",{"2":{"157":1}}],["pathof",{"2":{"148":2}}],["path",{"2":{"34":3,"162":2}}],["padding",{"2":{"6":1}}],["parquet",{"2":{"164":3}}],["parent",{"2":{"157":1}}],["parse",{"2":{"89":1,"95":1}}],["part",{"2":{"45":2,"58":2,"89":3,"127":1}}],["partition",{"2":{"128":4}}],["partialsort",{"2":{"152":1}}],["partial",{"2":{"45":4}}],["partially",{"2":{"43":2,"58":2}}],["particularly",{"2":{"38":1}}],["particular",{"2":{"28":1,"32":1,"119":1,"162":2}}],["parallel",{"2":{"89":1,"118":1}}],["paradigm",{"0":{"27":1}}],["paradigms",{"0":{"17":1},"1":{"18":1,"19":1,"20":1},"2":{"17":2,"20":1}}],["parameters",{"2":{"6":1,"128":1,"156":2}}],["parameter",{"2":{"6":2,"156":3}}],["params",{"2":{"6":2,"158":10}}],["parlance",{"2":{"5":1,"6":1,"38":1}}],["passes",{"2":{"45":2,"89":1}}],["passed",{"2":{"1":2,"6":7,"119":1,"123":1,"128":2,"140":1,"144":2,"153":1,"158":2,"168":1}}],["passable",{"2":{"38":18}}],["passing",{"2":{"18":1,"128":1,"146":1}}],["pass",{"2":{"5":1,"6":4,"18":1,"38":1,"61":1,"77":1,"89":2,"92":1,"144":1,"145":1,"148":1,"157":1}}],["pairs",{"2":{"52":1,"161":1}}],["pair",{"2":{"3":2,"6":2,"45":1,"95":2,"128":3}}],["packages",{"2":{"6":1,"25":1,"123":1,"128":1,"129":1,"155":1,"160":3,"162":1,"164":1}}],["package",{"2":{"1":2,"22":1,"25":2,"39":1,"119":1,"140":3,"141":1,"144":1,"162":1,"164":2}}],["page",{"2":{"0":1,"9":1,"27":1,"29":1,"32":1,"35":1,"37":1,"38":1,"39":1,"42":1,"43":1,"45":1,"48":1,"50":1,"52":1,"53":1,"56":1,"58":1,"61":1,"64":1,"74":1,"77":1,"78":1,"88":1,"89":1,"92":1,"95":1,"105":1,"115":1,"118":1,"119":1,"120":1,"128":1,"131":1,"134":1,"135":1,"138":1,"139":1,"141":1,"145":1,"152":1,"153":1,"154":1,"158":1,"159":1}}],["p",{"2":{"1":5,"6":5,"13":13,"14":12,"15":2,"31":1,"34":1,"41":1,"43":5,"44":1,"45":5,"50":2,"55":3,"57":2,"60":1,"63":1,"66":1,"76":1,"78":4,"80":1,"89":20,"91":1,"94":1,"97":1,"107":1,"118":4,"119":3,"121":3,"128":3,"139":7,"143":1,"147":1,"148":1,"152":3,"153":9,"154":7,"159":11,"165":1,"166":1}}],["poylgon",{"2":{"52":1,"58":1,"89":1}}],["potential",{"2":{"45":1}}],["potentially",{"2":{"6":2,"43":1,"134":2,"138":2}}],["post",{"2":{"150":2}}],["postitive",{"2":{"55":1}}],["postive",{"2":{"34":1}}],["possibly",{"2":{"128":1}}],["possiblenodes",{"2":{"119":2}}],["possible",{"2":{"6":4,"49":1,"51":1,"52":2,"57":1,"119":1,"128":2}}],["possibility",{"2":{"126":1}}],["possibilities",{"2":{"52":1}}],["position=",{"2":{"148":1}}],["position",{"2":{"6":1,"118":1,"143":1}}],["positive",{"2":{"4":4,"6":4,"34":2,"35":1,"55":2,"56":3,"145":1,"152":1}}],["polgons",{"2":{"119":1}}],["polgontrait",{"2":{"1":1,"6":1}}],["polar",{"2":{"6":1,"144":1}}],["polynodes",{"2":{"43":7,"49":1,"51":1,"57":1}}],["polynode",{"2":{"43":36}}],["polypoints",{"2":{"38":46}}],["polyogns",{"2":{"119":1}}],["polyogn",{"2":{"32":1}}],["polygns",{"2":{"43":1}}],["polygin",{"2":{"4":1,"6":1,"32":1}}],["polygon3",{"2":{"161":2,"162":1}}],["polygon2",{"2":{"161":6}}],["polygon1",{"2":{"161":4}}],["polygonization",{"2":{"119":1}}],["polygonizing",{"0":{"119":1}}],["polygonized",{"2":{"119":1}}],["polygonize",{"2":{"0":1,"6":6,"9":1,"29":1,"119":31}}],["polygon`",{"2":{"38":3}}],["polygons",{"0":{"72":1,"103":1,"113":1,"136":1},"1":{"137":1,"138":1},"2":{"3":4,"4":3,"5":1,"6":18,"9":1,"23":5,"29":1,"35":5,"36":1,"38":2,"41":1,"42":1,"43":13,"45":1,"48":2,"49":9,"50":5,"51":3,"52":7,"55":1,"56":1,"57":6,"58":19,"64":5,"72":1,"95":5,"113":1,"118":1,"119":18,"126":1,"130":2,"134":3,"136":2,"137":2,"138":10,"146":1,"148":1,"161":3,"162":1,"166":5,"167":3}}],["polygontrait",{"2":{"1":1,"3":4,"4":6,"6":14,"15":3,"23":1,"32":2,"35":3,"38":3,"42":2,"43":2,"45":2,"48":1,"49":5,"50":5,"51":3,"52":5,"56":2,"57":4,"58":8,"64":10,"69":2,"70":1,"71":1,"72":3,"73":1,"78":4,"83":2,"84":2,"85":1,"86":2,"87":1,"95":8,"100":2,"101":1,"102":1,"103":3,"104":1,"110":2,"111":1,"112":1,"113":3,"114":1,"121":1,"126":2,"128":1,"131":2,"133":2,"134":1,"138":2,"148":2,"159":1}}],["polygon",{"0":{"43":1,"46":1,"49":1,"50":1,"52":1,"57":1,"58":1,"86":1},"1":{"47":1,"48":1},"2":{"0":1,"1":4,"3":4,"4":20,"5":9,"6":62,"9":2,"11":3,"15":4,"20":1,"23":1,"31":1,"32":3,"34":2,"35":5,"36":5,"37":16,"38":57,"41":2,"42":4,"43":39,"44":3,"45":4,"47":3,"48":10,"49":5,"50":7,"51":5,"52":5,"55":3,"56":14,"57":6,"58":33,"64":12,"67":1,"69":3,"70":3,"71":4,"72":8,"78":1,"83":3,"84":4,"85":4,"86":4,"89":66,"95":4,"98":1,"100":3,"101":4,"102":5,"103":7,"108":1,"110":3,"111":4,"112":4,"113":8,"118":5,"119":4,"128":1,"129":4,"130":8,"131":5,"132":1,"134":4,"136":3,"137":12,"138":7,"143":1,"144":4,"147":1,"148":9,"153":3,"159":6,"161":12,"162":12,"163":2,"166":6}}],["polys",{"2":{"6":2,"43":39,"47":3,"48":10,"49":14,"50":14,"51":9,"52":6,"57":14,"58":28,"138":26}}],["polys1",{"2":{"3":2,"6":2,"95":6}}],["polys2",{"2":{"3":2,"6":2,"95":6}}],["poly",{"2":{"3":2,"6":16,"15":2,"31":1,"34":1,"35":6,"37":2,"38":3,"41":1,"43":107,"44":2,"45":4,"47":4,"48":20,"49":22,"50":12,"51":15,"52":10,"55":1,"56":3,"57":19,"58":79,"64":4,"78":10,"89":21,"95":8,"118":5,"119":5,"138":18,"143":2,"147":2,"148":8,"159":8,"161":2,"166":5}}],["poly2",{"2":{"3":3,"4":2,"6":7,"49":2,"64":2,"89":19,"95":7}}],["poly1",{"2":{"3":3,"4":2,"6":7,"49":2,"64":2,"89":14,"95":7}}],["pointwise",{"0":{"153":1},"2":{"140":1}}],["point1",{"2":{"56":4}}],["pointedgeside",{"2":{"43":1}}],["point₂",{"2":{"42":13}}],["point₁",{"2":{"42":13}}],["point3s",{"2":{"38":10}}],["point3f",{"2":{"37":1}}],["pointrait",{"2":{"6":1}}],["point2f",{"2":{"37":4,"38":2,"55":1}}],["point2",{"2":{"6":2,"38":5,"56":4}}],["pointtrait",{"2":{"1":1,"4":4,"6":9,"18":1,"32":2,"35":1,"38":3,"45":1,"51":2,"56":17,"64":8,"69":6,"73":1,"83":6,"87":1,"100":6,"104":1,"110":6,"114":1,"121":2,"126":1,"128":21,"133":2,"134":1,"135":1,"139":2,"148":2,"153":2,"154":2,"156":2,"159":1}}],["point",{"0":{"83":1,"100":1},"2":{"1":4,"3":10,"4":37,"5":7,"6":85,"9":2,"20":1,"32":12,"35":3,"36":3,"37":1,"38":126,"42":6,"43":97,"45":50,"48":13,"50":9,"51":1,"52":77,"55":17,"56":73,"58":9,"61":3,"64":27,"66":1,"67":2,"69":8,"78":21,"81":2,"83":10,"89":138,"91":1,"94":2,"95":21,"97":1,"98":3,"100":10,"101":1,"103":1,"108":4,"110":11,"118":1,"119":3,"128":1,"129":1,"130":2,"134":2,"136":1,"138":2,"140":1,"142":1,"148":2,"149":3,"150":9,"151":1,"153":2,"159":4,"161":111,"162":15,"166":2}}],["points2",{"2":{"3":1,"6":1,"95":3}}],["points1",{"2":{"3":1,"6":1,"95":3}}],["points",{"0":{"69":1,"110":1},"2":{"0":1,"1":3,"3":1,"4":11,"5":1,"6":49,"9":3,"13":1,"32":2,"34":3,"35":3,"37":8,"38":32,"42":1,"43":55,"45":5,"48":3,"49":5,"50":1,"51":8,"52":25,"55":2,"56":8,"57":4,"58":1,"60":1,"63":2,"64":13,"67":6,"69":3,"70":4,"81":6,"83":1,"84":7,"85":3,"89":10,"95":5,"98":5,"100":1,"101":2,"102":4,"103":3,"107":1,"108":5,"110":3,"111":3,"112":3,"113":1,"117":1,"119":3,"128":1,"135":2,"140":1,"143":2,"144":2,"148":11,"149":11,"150":26,"151":10,"152":33,"153":2,"154":2,"159":25,"161":8,"162":1,"165":1,"166":11}}],["pointorientation",{"2":{"0":1,"6":2,"89":2}}],["my",{"2":{"167":1,"168":2}}],["moore",{"2":{"119":1}}],["moved",{"2":{"43":1,"140":1}}],["move",{"2":{"42":1,"89":1}}],["mode",{"2":{"168":3}}],["model",{"2":{"165":1}}],["modify",{"2":{"161":1}}],["modified",{"2":{"128":2}}],["module",{"2":{"140":1,"145":1}}],["modules",{"2":{"6":1,"38":1}}],["mod1",{"2":{"38":5}}],["mod",{"2":{"38":1,"43":1}}],["most",{"2":{"25":1,"43":1,"50":1,"52":1,"58":1,"89":1,"148":1,"164":2}}],["monotone",{"2":{"20":1}}],["moment",{"2":{"6":1,"143":1,"145":1}}],["more",{"2":{"6":3,"7":1,"9":1,"10":1,"11":1,"23":1,"27":1,"43":1,"49":1,"51":1,"57":1,"89":1,"95":1,"128":4,"131":1,"141":1,"143":1,"145":1,"161":2,"165":1}}],["mistakenly",{"2":{"136":1}}],["missing",{"2":{"123":6,"124":2,"143":4}}],["missed",{"2":{"119":1}}],["mid",{"2":{"45":2,"89":3}}],["midpoint",{"2":{"43":2}}],["middle",{"2":{"43":2}}],["mining",{"2":{"167":1}}],["minimal",{"2":{"167":1}}],["minimize",{"2":{"52":1}}],["minimum",{"2":{"4":7,"6":12,"44":1,"45":2,"56":12,"148":1,"149":1,"151":1}}],["mind",{"2":{"143":1,"166":1}}],["minmax",{"2":{"52":4}}],["min",{"2":{"45":1,"52":16,"56":15,"148":1,"150":3,"151":1,"152":28}}],["minus",{"2":{"34":1}}],["minpoints=0",{"2":{"119":1}}],["minpoints",{"2":{"6":2}}],["might",{"2":{"6":3,"25":1,"35":1,"49":1,"51":1,"57":1,"132":1,"150":1}}],["mixed",{"2":{"6":4,"148":1}}],["m",{"2":{"5":1,"6":1,"15":10,"38":2,"45":6,"118":2,"162":1}}],["mp",{"2":{"78":2}}],["mp1",{"2":{"4":2,"6":2,"64":7}}],["mp2",{"2":{"4":2,"6":2,"64":8}}],["manner",{"2":{"165":1}}],["manipulate",{"2":{"164":1}}],["manually",{"2":{"129":1}}],["many",{"2":{"4":1,"5":1,"6":2,"23":1,"38":1,"43":1,"48":1,"50":1,"52":2,"58":1,"64":1,"130":1,"135":1}}],["mason",{"2":{"128":2}}],["markersize",{"2":{"161":2}}],["marker",{"2":{"161":2}}],["marked",{"2":{"43":6,"50":1,"52":1,"58":1}}],["marking",{"2":{"50":2,"52":2,"58":2}}],["mark",{"2":{"43":2}}],["marks",{"2":{"43":1}}],["mag",{"2":{"32":4}}],["making",{"2":{"43":1,"119":1,"126":1,"137":1,"161":1,"162":2}}],["makie",{"2":{"13":1,"14":1,"31":1,"34":1,"37":3,"41":1,"44":1,"47":4,"55":1,"60":1,"63":1,"66":1,"76":1,"80":1,"91":1,"94":1,"97":1,"107":1,"119":3,"147":1,"148":1}}],["makevalid",{"2":{"148":2}}],["makes",{"2":{"35":1,"43":1,"56":1,"128":1,"130":1,"136":1,"137":1}}],["make",{"2":{"9":1,"25":1,"32":1,"43":3,"52":1,"56":1,"95":1,"119":2,"126":1,"131":1,"143":1,"152":1,"155":1,"161":2,"162":1}}],["mainly",{"2":{"38":1,"55":1,"121":1}}],["maintain",{"2":{"35":1}}],["main",{"0":{"26":1},"1":{"27":1,"28":1},"2":{"7":1,"43":1,"119":1,"128":1,"144":1}}],["mapped",{"2":{"164":1}}],["maptasks",{"2":{"128":6}}],["mapreducetasks",{"2":{"128":5}}],["mapreduce",{"2":{"50":1,"119":2,"128":8}}],["map",{"2":{"6":1,"13":1,"18":3,"19":1,"27":1,"38":1,"43":1,"52":1,"95":2,"119":17,"128":24,"131":1,"148":1,"156":1,"160":1,"162":2,"164":1}}],["matlab",{"2":{"47":1}}],["materializer`",{"2":{"128":1}}],["materializer",{"2":{"22":1,"128":1}}],["mathrm",{"2":{"38":1}}],["math",{"2":{"7":1}}],["mathematically",{"2":{"6":1,"118":1}}],["matches",{"2":{"64":1,"119":1}}],["match",{"2":{"6":1,"64":12,"95":3,"119":1,"123":1,"128":2}}],["matching",{"2":{"3":1,"6":1,"22":1,"64":3,"95":1,"126":2}}],["matrix",{"2":{"6":1,"14":2,"38":1}}],["maximal",{"2":{"52":1}}],["maximum",{"2":{"3":1,"6":4,"14":1,"44":1,"45":4,"78":1,"119":1,"144":1,"145":1,"150":4}}],["max",{"2":{"6":9,"32":2,"45":1,"119":1,"128":2,"143":5,"144":8,"145":7,"150":36,"152":1}}],["made",{"2":{"6":2,"42":1,"43":1,"52":1,"102":1,"126":1,"134":1,"138":1,"151":1}}],["maybe",{"2":{"6":1,"89":4,"123":1,"128":6}}],["may",{"2":{"1":1,"6":5,"23":2,"24":1,"38":2,"43":1,"52":1,"118":1,"120":1,"126":1,"128":4,"136":1,"137":1,"144":1,"156":1}}],["mercator",{"2":{"162":1}}],["merge",{"2":{"128":1}}],["measure",{"2":{"128":1,"142":1}}],["meaning",{"2":{"3":3,"4":1,"6":4,"24":1,"35":1,"39":1,"95":4,"118":1}}],["means",{"2":{"3":1,"6":2,"34":1,"35":1,"39":1,"66":1,"89":3,"94":1,"95":1,"118":1,"126":1}}],["mean",{"2":{"0":1,"6":5,"17":1,"37":2,"38":5,"128":1}}],["meanvalue",{"2":{"0":1,"5":2,"6":3,"36":1,"37":2,"38":15}}],["meets",{"2":{"89":9,"95":1,"150":1}}],["meet",{"2":{"52":3,"66":1,"67":1,"81":1,"89":7,"98":1,"108":1}}],["memory",{"2":{"38":1,"162":1}}],["mesh",{"2":{"37":1,"128":1}}],["message",{"2":{"6":1,"158":1}}],["me",{"0":{"23":1}}],["mentioned",{"2":{"19":1}}],["mentions",{"2":{"6":1,"158":1}}],["menu",{"2":{"14":3}}],["median",{"2":{"13":4,"128":1}}],["mechanics",{"2":{"6":1,"38":1}}],["met",{"2":{"89":44}}],["meters",{"2":{"6":4,"143":1,"144":4,"162":1}}],["methoderror",{"2":{"29":3}}],["methods",{"0":{"2":1,"3":1,"4":1,"6":1},"1":{"3":1,"4":1},"2":{"1":1,"6":8,"9":1,"25":1,"29":26,"38":3,"67":1,"81":1,"98":1,"108":1,"119":1,"123":1,"126":1,"128":2,"143":1,"148":2,"153":1,"156":1,"161":1}}],["method",{"0":{"141":1},"2":{"1":1,"4":1,"5":10,"6":97,"24":1,"32":1,"35":1,"38":37,"39":2,"42":1,"45":1,"52":1,"56":4,"58":1,"64":1,"67":2,"81":2,"95":1,"98":2,"108":2,"119":1,"128":5,"140":1,"141":2,"143":2,"144":9,"145":14,"146":2,"157":1,"158":3,"165":1,"168":1}}],["mutation",{"2":{"163":1}}],["mutlipolygon",{"2":{"4":1,"6":1,"42":1}}],["muladd",{"2":{"38":2}}],["multifloats",{"2":{"13":1,"14":1,"15":1}}],["multifloat",{"2":{"7":1}}],["multilinestringtrait",{"2":{"133":1}}],["multilinestring",{"2":{"6":1,"128":1,"159":2}}],["multi",{"0":{"73":1,"74":1,"87":1,"88":1,"104":1,"105":1,"114":1,"115":1},"2":{"4":2,"6":3,"32":1,"35":1,"45":1,"64":2,"73":1,"74":1,"87":1,"88":1,"104":1,"105":1,"114":1,"115":1}}],["multicurves",{"2":{"35":1,"45":1}}],["multicurve",{"2":{"4":1,"6":1,"35":1}}],["multigeometry",{"2":{"4":2,"6":2,"56":2}}],["multiplication",{"2":{"145":1}}],["multiplied",{"2":{"38":3}}],["multiple",{"2":{"4":1,"6":1,"38":1,"89":1,"135":1,"152":1,"161":1,"164":1}}],["multiply",{"2":{"1":1,"6":1,"153":1}}],["multipolys",{"2":{"58":3}}],["multipoly`",{"2":{"49":2,"51":2,"57":2}}],["multipoly",{"2":{"6":9,"15":3,"49":1,"50":27,"51":1,"52":26,"57":1,"58":24,"138":21,"148":9}}],["multipolygon`",{"2":{"119":1}}],["multipolygons",{"2":{"3":1,"4":1,"6":11,"42":1,"49":3,"51":3,"52":2,"55":1,"57":3,"64":1,"95":2,"137":1,"161":1,"162":1}}],["multipolygon",{"2":{"3":2,"4":5,"6":16,"35":2,"41":1,"49":1,"50":7,"51":1,"52":5,"57":1,"58":6,"64":4,"95":2,"119":7,"128":1,"134":2,"136":7,"137":8,"138":2,"148":3,"161":8,"162":1}}],["multipolygontrait",{"2":{"1":1,"3":4,"4":2,"6":7,"23":1,"50":4,"52":4,"58":4,"64":6,"73":1,"74":1,"87":1,"88":1,"95":8,"104":1,"105":1,"114":1,"115":1,"128":1,"133":1,"138":4}}],["multipoint",{"2":{"4":5,"6":5,"35":1,"64":5,"78":6,"128":4,"148":1,"161":5}}],["multipoints",{"2":{"3":2,"4":1,"6":3,"35":1,"45":1,"64":2,"95":2,"148":1,"161":1}}],["multipointtrait",{"2":{"1":1,"3":2,"4":4,"6":8,"32":2,"35":1,"45":1,"64":8,"73":1,"74":1,"78":4,"87":1,"88":1,"95":4,"104":1,"105":1,"114":1,"115":1,"126":1,"133":1,"148":2,"159":1}}],["multithreading",{"2":{"1":2,"4":1,"6":5,"125":1}}],["must",{"2":{"1":1,"3":8,"4":2,"5":1,"6":23,"9":1,"32":1,"38":5,"39":1,"43":2,"45":3,"48":1,"52":2,"61":2,"64":5,"67":1,"76":1,"77":1,"81":1,"89":13,"95":1,"97":1,"98":1,"108":2,"119":1,"123":1,"128":1,"132":1,"133":3,"134":1,"140":1,"144":1,"145":1,"148":1,"152":4,"158":1}}],["much",{"2":{"0":1,"6":3,"49":1,"51":1,"57":1}}],["mdash",{"2":{"1":4,"3":9,"4":8,"5":3,"6":87,"123":3,"133":1,"134":4}}],["df",{"2":{"163":3,"164":4,"166":10,"167":12}}],["dp",{"2":{"148":3}}],["dy",{"2":{"118":2,"145":3}}],["dy2",{"2":{"118":2}}],["dy1",{"2":{"78":10,"118":2}}],["dyc",{"2":{"78":2}}],["dx",{"2":{"118":2,"145":3}}],["dx2",{"2":{"118":2}}],["dx1",{"2":{"78":10,"118":2}}],["dxc",{"2":{"78":2}}],["drop",{"2":{"58":1,"138":1,"145":1}}],["driven",{"2":{"25":1}}],["driving",{"2":{"25":1}}],["duplicated",{"2":{"52":2}}],["during",{"2":{"43":1}}],["due",{"2":{"42":1,"43":1,"52":3}}],["datas",{"2":{"168":1}}],["datasets",{"2":{"162":1,"165":1,"166":1}}],["dataset",{"2":{"162":1,"165":1}}],["datainterpolations",{"2":{"142":1}}],["dataframes",{"2":{"163":3,"166":2,"167":1}}],["dataframe",{"2":{"27":1,"163":1,"165":1,"166":5,"167":2}}],["data",{"0":{"119":1,"164":1},"2":{"23":1,"25":1,"119":2,"148":10,"160":1,"162":4,"163":2,"164":6,"166":1}}],["dataaspect",{"2":{"13":1,"14":1,"31":1,"34":1,"37":2,"41":1,"44":1,"55":2,"119":2,"143":1,"148":1}}],["dashboard",{"0":{"14":1},"2":{"13":1,"14":1}}],["d",{"2":{"1":2,"5":1,"6":1,"38":1,"140":1,"150":3}}],["deu",{"2":{"167":2}}],["demonstrates",{"2":{"166":1}}],["densify",{"2":{"144":3}}],["densifying",{"2":{"144":1}}],["densifies",{"2":{"142":1}}],["denoted",{"2":{"89":1}}],["denotes",{"2":{"43":1}}],["debug",{"2":{"133":1}}],["debugging",{"2":{"38":1,"43":1}}],["de",{"2":{"89":2,"165":1}}],["derivation",{"2":{"52":1}}],["dealing",{"2":{"45":1}}],["delete",{"2":{"78":1,"95":1,"119":1,"150":1}}],["deleteat",{"2":{"43":6,"150":1,"152":2}}],["delayed",{"2":{"43":10,"50":2,"52":2,"58":2}}],["delay",{"2":{"43":14,"49":2,"50":2,"51":2,"52":2,"57":2,"58":2}}],["depend",{"2":{"43":2}}],["depends",{"2":{"43":1,"48":1}}],["depending",{"2":{"1":1,"6":1,"23":1,"128":1}}],["depth",{"2":{"38":2}}],["desktop",{"2":{"164":1}}],["dest",{"2":{"162":2}}],["destinaton",{"2":{"162":1}}],["destination",{"2":{"162":4}}],["desired",{"2":{"57":1,"164":1}}],["despite",{"2":{"32":1}}],["describe",{"2":{"17":1}}],["described",{"2":{"6":1,"38":1,"42":1,"43":1}}],["deconstruct",{"2":{"121":1}}],["decomposition",{"2":{"18":1,"121":1}}],["decomposing",{"2":{"18":1}}],["decompose",{"2":{"18":2,"27":1,"38":4,"129":1}}],["decide",{"2":{"119":1}}],["decision",{"2":{"24":1}}],["decrementing",{"2":{"119":1}}],["decrease",{"2":{"42":1}}],["decreaseing",{"2":{"6":1,"148":1}}],["degeneracies",{"2":{"9":1}}],["degenerate",{"2":{"6":1,"38":1,"48":2,"52":1}}],["degrees",{"2":{"6":1,"31":1,"118":1,"144":1}}],["defauly",{"2":{"50":1}}],["default",{"2":{"1":2,"4":5,"6":13,"32":1,"35":2,"45":1,"49":1,"50":1,"51":1,"52":5,"56":2,"57":1,"58":2,"119":5,"123":1,"128":2,"140":2,"148":2}}],["defaults",{"2":{"1":6,"4":2,"6":14,"125":3,"128":1}}],["defines",{"2":{"43":1,"121":1,"132":1,"155":1}}],["define",{"2":{"37":1,"52":2,"63":1,"119":2,"121":1,"126":1,"128":1,"155":1,"168":2}}],["defined",{"2":{"4":1,"5":1,"6":3,"7":1,"22":1,"32":2,"38":1,"44":1,"45":4,"52":4,"56":2,"117":1,"128":1,"145":1,"155":1}}],["definitions",{"2":{"158":1}}],["definition",{"2":{"4":1,"6":3,"64":5,"66":1,"145":1}}],["defintion",{"2":{"4":3,"6":3,"64":3}}],["deeper",{"2":{"1":1,"6":1,"127":1,"128":2}}],["detrimental",{"2":{"136":1}}],["details",{"2":{"123":3,"124":1,"143":2}}],["detection",{"2":{"119":1}}],["determined",{"2":{"43":1,"45":1}}],["determine",{"2":{"43":10,"45":3,"49":2,"51":2,"52":10,"57":2,"67":1,"81":1,"89":9,"95":1,"98":1,"108":1,"150":3,"165":1}}],["determines",{"2":{"35":1,"43":3,"52":1,"89":10}}],["determinant",{"2":{"6":1,"38":1}}],["det",{"2":{"0":1,"6":2,"38":4}}],["dirname",{"2":{"148":4}}],["dirty",{"2":{"147":1}}],["directive",{"2":{"128":1}}],["direction",{"2":{"6":1,"43":1,"64":5,"119":3}}],["directly",{"2":{"6":1,"119":1,"144":1}}],["dig",{"2":{"128":1}}],["dict",{"2":{"119":5}}],["didn",{"2":{"58":1,"89":1,"157":1}}],["division",{"2":{"37":1}}],["div",{"2":{"6":1}}],["div>",{"2":{"6":1}}],["ditance",{"2":{"4":1,"6":1,"56":1}}],["dimensional",{"2":{"5":1,"6":1,"34":1,"38":1}}],["dimensions",{"2":{"3":1,"6":1,"95":2}}],["dimension",{"2":{"1":1,"3":4,"6":4,"78":2,"94":1,"95":4,"140":1}}],["discouraged",{"2":{"162":1}}],["discussion",{"2":{"25":1,"48":1}}],["distributed",{"2":{"166":2}}],["distinct",{"2":{"52":1,"119":1}}],["dist",{"2":{"52":40,"56":19,"89":2,"144":8,"150":40}}],["distance`",{"2":{"144":3,"145":1,"158":1}}],["distances",{"2":{"52":1,"55":1,"144":1,"149":5}}],["distance",{"0":{"54":2,"55":2},"1":{"55":2,"56":2},"2":{"0":4,"4":26,"6":47,"29":1,"38":13,"39":3,"45":3,"52":32,"54":2,"55":17,"56":92,"89":1,"121":1,"142":1,"143":5,"144":13,"145":14,"148":1,"149":3,"150":6,"151":1,"168":2}}],["disagree",{"2":{"35":1}}],["disparate",{"2":{"25":1}}],["dispatches",{"2":{"6":1,"32":1,"35":1,"38":1,"42":1,"45":1,"56":1,"64":1,"67":1,"81":1,"95":1,"98":1,"108":1}}],["dispatch",{"2":{"4":1,"6":5,"24":1,"38":1,"64":1,"123":1,"128":2,"156":1,"158":1}}],["displaying",{"2":{"162":1}}],["display",{"2":{"13":1,"37":1,"162":1}}],["disjoint",{"0":{"79":1,"80":1,"83":1,"84":1,"85":1,"86":1,"87":1},"1":{"80":1,"81":1},"2":{"0":2,"3":5,"6":7,"23":1,"29":1,"58":2,"79":1,"80":3,"81":11,"82":6,"83":15,"84":18,"85":10,"86":5,"87":4,"88":2,"89":16,"92":3,"134":2,"136":2,"138":7,"165":1}}],["diffs",{"2":{"32":4}}],["diff",{"2":{"6":2,"32":17,"49":5,"50":3,"95":3,"138":8}}],["differs",{"2":{"162":1}}],["differ",{"2":{"4":1,"6":1,"56":1}}],["differently",{"2":{"4":3,"6":4,"32":1,"35":2,"45":1}}],["different",{"2":{"3":1,"4":4,"6":6,"20":1,"23":1,"32":1,"35":4,"43":3,"45":1,"52":1,"95":3,"119":1,"126":1,"128":1,"136":2,"162":2,"164":1}}],["differences",{"0":{"50":1},"2":{"52":1,"150":1}}],["difference",{"0":{"49":1},"2":{"0":1,"6":7,"11":1,"23":1,"29":1,"43":3,"49":12,"50":14,"52":1,"57":1,"58":3,"134":1,"138":1,"144":1}}],["diffintersectingpolygons",{"2":{"0":1,"6":1,"134":1,"138":4}}],["doi",{"2":{"49":2,"51":2,"57":2,"89":1}}],["doing",{"2":{"17":1,"22":1,"128":1,"162":1}}],["dot",{"2":{"32":2,"38":1}}],["doable",{"2":{"9":1}}],["documenter",{"2":{"123":3,"124":1,"143":2}}],["documentation",{"0":{"0":1},"1":{"1":1,"2":1,"3":1,"4":1,"5":1,"6":1},"2":{"0":1,"37":1}}],["docstring",{"2":{"123":6,"124":2,"143":4}}],["docstrings",{"0":{"122":1},"1":{"123":1},"2":{"7":1}}],["docs",{"2":{"119":1}}],["doc",{"2":{"9":1,"10":1}}],["does",{"0":{"22":1},"2":{"7":1,"19":1,"41":1,"52":2,"60":1,"66":3,"89":1}}],["doesn",{"2":{"4":1,"6":2,"35":1,"48":1,"64":1,"144":1,"158":1,"167":1}}],["download",{"2":{"148":1,"162":1}}],["down",{"2":{"6":1,"18":1,"27":1,"38":1,"128":1}}],["doublets",{"2":{"167":2}}],["double",{"2":{"151":4}}],["doubled",{"2":{"6":1,"151":1}}],["douglas",{"2":{"146":2,"148":2,"150":1}}],["douglaspeucker",{"0":{"150":1},"2":{"0":1,"6":5,"146":1,"148":5,"150":6}}],["done",{"0":{"10":1},"2":{"13":1,"14":1,"89":2,"119":1,"121":1,"136":1,"161":1,"165":1}}],["don",{"2":{"4":2,"6":3,"43":4,"49":1,"58":1,"64":6,"84":1,"89":1,"97":1,"101":1,"119":2,"128":3,"145":1,"158":1}}],["do",{"0":{"9":1,"23":1,"53":1},"2":{"1":1,"6":2,"14":1,"23":1,"29":1,"32":1,"35":2,"38":2,"39":1,"42":1,"45":1,"48":1,"56":2,"58":3,"63":1,"64":1,"76":1,"84":2,"85":1,"86":2,"89":1,"119":4,"121":1,"128":9,"130":1,"131":1,"137":1,"139":2,"141":1,"144":1,"148":1,"153":2,"154":2,"162":4,"163":3,"166":1,"167":1}}],["automatically",{"2":{"162":1}}],["autmoatically",{"2":{"95":1}}],["ay",{"2":{"118":2}}],["azimuth",{"2":{"118":2}}],["against",{"2":{"64":1,"89":2,"144":1,"148":1}}],["again",{"2":{"52":1,"128":1}}],["a``",{"2":{"50":2}}],["a`",{"2":{"50":7,"52":3,"58":2}}],["away",{"2":{"39":1,"78":1,"168":1}}],["a2y",{"2":{"52":4}}],["a2x",{"2":{"52":4}}],["a2",{"2":{"37":4,"52":54,"95":6}}],["a1y",{"2":{"52":7}}],["a1x",{"2":{"52":7}}],["a1",{"2":{"37":2,"43":9,"52":66,"95":6}}],["america",{"2":{"148":1}}],["am",{"2":{"89":1}}],["ambiguity",{"2":{"56":2,"128":5}}],["amounts",{"2":{"164":1}}],["amount",{"2":{"34":1,"44":1}}],["amp",{"2":{"6":1,"9":1}}],["axes",{"2":{"119":6}}],["ax",{"2":{"13":3,"14":3,"118":2,"161":5}}],["axislegend",{"2":{"143":1,"147":1}}],["axis",{"2":{"13":2,"14":1,"31":1,"34":1,"37":4,"41":1,"44":1,"55":1,"119":2,"143":1,"148":1}}],["axs",{"2":{"13":2}}],["a>",{"2":{"6":1}}],["adjust",{"2":{"52":1}}],["adjacent",{"2":{"43":1,"50":1,"52":1,"58":1}}],["adaptivity",{"0":{"53":1}}],["adaptive",{"2":{"7":1,"13":3,"14":2,"53":1}}],["adapted",{"2":{"49":1,"51":1,"57":1,"118":1}}],["advance",{"2":{"42":2}}],["advised",{"2":{"6":1,"156":1}}],["administrative",{"2":{"167":1}}],["admin",{"2":{"11":1,"148":2}}],["adm0",{"2":{"11":7}}],["additional",{"2":{"164":1}}],["additionally",{"2":{"43":3,"64":1}}],["addition",{"2":{"37":1,"58":1}}],["adding",{"2":{"4":1,"6":4,"7":1,"58":2,"119":1,"135":1,"142":1,"144":2,"145":1}}],["added",{"2":{"6":1,"32":1,"43":6,"45":1,"58":2,"123":1,"128":1,"138":2,"150":1}}],["add",{"2":{"3":1,"6":1,"7":2,"38":1,"39":1,"43":16,"45":1,"48":4,"49":3,"51":1,"52":2,"57":2,"58":9,"78":1,"119":4,"128":1,"142":1,"144":1,"150":10,"157":1,"162":1,"163":2,"165":1}}],["availible",{"2":{"42":1}}],["available",{"0":{"134":1},"2":{"6":3,"29":1,"133":3,"142":1,"143":1,"145":1,"148":1,"152":1,"156":1}}],["average",{"2":{"36":3,"42":4,"52":1}}],["avoid",{"2":{"5":1,"6":7,"38":1,"49":1,"51":1,"52":1,"57":1,"58":1,"119":2,"128":5,"145":1,"149":1,"150":1,"151":1,"161":3}}],["achieve",{"2":{"136":1}}],["across",{"2":{"126":1}}],["acos",{"2":{"32":1}}],["activate",{"2":{"143":1}}],["action",{"2":{"20":2}}],["actions",{"2":{"20":2}}],["actual",{"2":{"10":1,"38":1,"118":1,"131":1,"140":1,"144":1}}],["actually",{"2":{"9":1,"38":4,"52":1,"58":3,"89":1,"119":1,"164":1}}],["actuall",{"2":{"1":1,"6":1,"153":1}}],["access",{"2":{"162":1}}],["accessed",{"2":{"158":1}}],["acceptable",{"2":{"89":1}}],["accept",{"2":{"6":1,"158":1}}],["according",{"2":{"130":1,"136":1,"137":1,"166":1}}],["accordingly",{"2":{"43":1}}],["account",{"2":{"49":1,"51":1}}],["accurary",{"2":{"52":1}}],["accuratearithmetic",{"2":{"11":2}}],["accurate",{"0":{"11":1},"2":{"11":3,"143":1}}],["accumulators",{"2":{"38":1}}],["accumulator",{"2":{"38":1}}],["accumulate",{"2":{"35":1,"42":3}}],["accumulation",{"0":{"11":1},"2":{"38":1}}],["after",{"2":{"6":8,"32":1,"43":3,"128":1,"148":2}}],["ab",{"2":{"43":3,"49":1,"51":1,"52":5,"57":1}}],["able",{"2":{"20":1}}],["ability",{"2":{"17":1}}],["about",{"2":{"6":1,"24":2,"28":1,"38":2,"89":1,"129":1}}],["above",{"2":{"4":1,"6":1,"32":1,"42":1,"43":1,"52":1,"58":1,"133":1}}],["abs",{"2":{"32":1,"35":4,"42":1,"45":2,"78":8,"95":2,"119":1,"151":1,"168":1}}],["absolute",{"2":{"4":1,"6":1,"34":1,"35":2}}],["abstractpolygon",{"2":{"128":1}}],["abstractpolygontrait",{"2":{"56":1}}],["abstractpoint",{"2":{"128":1}}],["abstractface",{"2":{"128":1}}],["abstractfloat",{"2":{"29":1,"32":1,"35":2,"43":1,"45":2,"48":1,"49":1,"51":1,"52":1,"56":8,"57":1}}],["abstractrange",{"2":{"119":6}}],["abstractmesh",{"2":{"128":1}}],["abstractmulticurvetrait",{"2":{"73":1,"74":1,"87":1,"88":1,"104":1,"105":1,"114":1,"115":1}}],["abstractmatrix",{"2":{"6":5,"119":13}}],["abstractcurvetrait",{"2":{"32":1,"35":1,"45":1,"69":1,"72":1,"73":1,"78":1,"83":1,"87":1,"100":1,"103":1,"104":1,"110":1,"113":1,"114":1,"118":1,"148":2,"159":3}}],["abstractarrays",{"2":{"126":1}}],["abstractarray",{"2":{"6":1,"123":1,"128":6,"159":2}}],["abstract",{"2":{"6":3,"38":3,"132":1,"133":4,"134":1,"148":3,"157":1}}],["abstractvector",{"2":{"5":1,"6":1,"38":26,"119":8}}],["abstractgeometrytrait`",{"2":{"133":1}}],["abstractgeometrytrait",{"2":{"6":3,"35":2,"45":1,"56":1,"74":1,"88":1,"105":1,"115":1,"123":1,"126":1,"133":4,"134":2,"159":5}}],["abstractgeometry",{"2":{"3":4,"6":4,"61":2,"77":2,"128":1}}],["abstracttrait",{"2":{"1":2,"3":2,"6":8,"48":1,"50":2,"52":4,"58":2,"95":4,"121":1,"123":2,"128":9,"156":3}}],["abstractbarycentriccoordinatemethod",{"2":{"0":1,"5":1,"6":7,"38":18}}],["attribute",{"2":{"164":1}}],["attributed",{"2":{"163":1}}],["attributes",{"0":{"163":1},"2":{"160":1,"163":3}}],["attempts",{"2":{"89":1}}],["attach",{"2":{"1":2,"4":1,"6":5,"125":1}}],["atomic",{"2":{"7":1}}],["at",{"2":{"3":4,"5":1,"6":6,"9":1,"18":1,"20":1,"24":1,"32":2,"34":1,"35":1,"37":1,"38":2,"43":4,"45":2,"52":7,"58":2,"89":17,"95":6,"97":1,"98":1,"101":3,"102":2,"103":2,"104":1,"105":1,"108":1,"114":1,"118":1,"126":1,"128":1,"143":1,"145":1,"150":1,"152":1,"162":3}}],["arbitrarily",{"2":{"126":1}}],["arbitrary",{"2":{"36":1,"121":1,"161":1}}],["around",{"2":{"37":1,"38":2,"48":1,"55":1,"64":1,"119":1,"148":1,"166":1}}],["argmin",{"2":{"152":1}}],["argtypes",{"2":{"39":2,"141":1,"144":1}}],["args",{"2":{"13":2}}],["argumenterror",{"2":{"58":1,"119":1,"128":5}}],["argument",{"2":{"4":5,"6":10,"32":1,"35":2,"42":1,"45":1,"49":1,"51":1,"56":2,"57":1,"128":2,"158":2,"162":2}}],["arguments",{"2":{"1":1,"3":1,"6":5,"43":1,"67":2,"81":1,"98":1,"108":1,"140":1,"144":2,"145":1,"158":1}}],["arithmetic",{"2":{"11":1}}],["archgdal",{"2":{"23":1}}],["arc",{"2":{"6":1,"144":1}}],["array",{"2":{"4":1,"6":2,"35":1,"45":1,"119":5,"128":7,"149":1,"152":1}}],["arrays",{"2":{"1":1,"6":2,"22":1,"119":1,"128":2}}],["aren",{"2":{"4":3,"6":5,"48":1,"50":1,"52":2,"58":4,"64":3,"134":2,"138":2}}],["are",{"2":{"1":1,"3":4,"4":18,"5":2,"6":50,"9":2,"20":2,"22":3,"24":1,"25":1,"31":1,"32":8,"34":1,"35":2,"36":6,"38":11,"41":1,"42":3,"43":31,"45":6,"48":3,"49":3,"50":15,"51":2,"52":16,"55":1,"56":1,"57":5,"58":9,"60":1,"63":3,"64":26,"67":7,"69":1,"70":3,"71":3,"72":1,"74":1,"80":1,"81":5,"83":1,"84":1,"85":1,"87":1,"88":1,"89":12,"95":7,"98":5,"100":1,"102":2,"107":1,"108":5,"110":1,"111":3,"112":3,"113":1,"115":1,"118":1,"119":14,"120":1,"123":1,"126":1,"128":4,"129":1,"130":1,"131":1,"133":1,"134":3,"135":1,"136":1,"137":1,"138":2,"143":1,"144":1,"145":1,"148":4,"150":1,"152":2,"154":1,"155":2,"156":1,"158":1,"161":1,"163":2,"164":2,"165":3,"166":6,"167":1,"168":1}}],["area2",{"2":{"42":4}}],["area1",{"2":{"42":4}}],["areas",{"2":{"4":2,"6":2,"35":3,"151":2}}],["area",{"0":{"33":2,"34":2},"1":{"34":2,"35":2},"2":{"0":5,"4":15,"6":25,"11":6,"29":1,"33":2,"34":9,"35":61,"40":1,"41":3,"42":49,"44":2,"45":44,"57":2,"58":1,"95":1,"121":1,"134":2,"138":2,"148":2,"151":4,"162":1}}],["ask",{"2":{"23":1}}],["aspect",{"2":{"13":1,"14":1,"31":1,"34":1,"37":2,"41":1,"44":1,"55":2,"119":2,"143":1,"148":1}}],["assign",{"2":{"160":1}}],["assigned",{"2":{"43":1,"119":7,"166":1}}],["assets",{"2":{"162":1}}],["assetpath",{"2":{"162":1}}],["assemble",{"2":{"131":1}}],["assert",{"2":{"38":23,"42":1,"43":1,"48":1,"50":1,"52":1,"145":1,"159":1}}],["assume",{"2":{"95":2,"128":3,"130":1,"138":1}}],["assumed",{"2":{"35":1,"64":1,"89":1}}],["assumes",{"2":{"6":1,"43":1,"56":1,"144":1,"152":1}}],["associativity",{"2":{"19":1}}],["associated",{"0":{"1":1},"2":{"36":2}}],["as",{"2":{"1":8,"3":18,"4":6,"5":1,"6":79,"7":1,"11":2,"13":3,"14":3,"15":3,"17":2,"18":2,"20":1,"22":1,"23":2,"24":1,"25":1,"31":2,"32":4,"34":2,"35":3,"36":4,"37":1,"38":4,"39":3,"41":2,"42":1,"43":15,"44":2,"45":5,"47":3,"48":5,"49":8,"50":2,"51":7,"52":6,"55":3,"56":1,"57":7,"58":5,"60":2,"61":2,"63":2,"64":2,"66":3,"67":3,"76":2,"77":2,"78":2,"80":2,"81":3,"89":7,"91":2,"92":2,"94":2,"95":2,"97":2,"98":3,"100":1,"107":2,"108":3,"118":8,"119":3,"121":3,"123":1,"126":2,"127":2,"128":15,"130":2,"131":2,"133":1,"134":1,"135":1,"137":2,"140":3,"142":2,"143":2,"144":3,"146":2,"147":2,"148":7,"150":2,"153":3,"156":2,"157":2,"158":2,"159":2,"160":3,"161":2,"162":2,"164":3,"165":2,"166":3,"167":2}}],["alone",{"2":{"128":1}}],["along",{"2":{"4":4,"6":5,"43":3,"45":2,"52":4,"64":4,"89":1}}],["although",{"2":{"111":1,"112":1}}],["alternate",{"2":{"43":1}}],["alternative",{"2":{"43":1}}],["already",{"2":{"64":1,"89":2,"150":1}}],["almost",{"2":{"52":1}}],["alg=nothing",{"2":{"148":1}}],["alg`",{"2":{"148":1}}],["alg",{"2":{"6":4,"148":21,"149":3,"150":8,"151":3,"152":7,"158":9}}],["algorithms",{"2":{"6":3,"130":1,"145":1,"146":1,"148":4,"150":1,"152":1}}],["algorithm",{"0":{"149":1,"150":1,"151":1},"2":{"6":10,"37":1,"43":2,"45":1,"48":3,"49":1,"51":1,"57":1,"89":1,"146":1,"148":8,"149":1,"150":3,"151":1,"158":4}}],["allocations",{"2":{"5":1,"6":1,"38":1}}],["allow=",{"2":{"89":1}}],["allows",{"2":{"11":1,"18":1,"23":1,"24":1,"27":1,"67":2,"69":3,"70":3,"71":3,"72":1,"81":2,"83":3,"84":3,"85":2,"86":1,"98":1,"101":1,"102":1,"103":1,"108":3,"110":3,"111":3,"112":3,"113":1,"121":1,"146":1,"162":1,"163":1,"165":1}}],["allowed",{"2":{"6":1,"67":3,"81":3,"89":6,"98":5,"100":1,"101":2,"108":3,"148":1}}],["allow",{"2":{"1":1,"6":1,"23":1,"67":7,"78":3,"81":7,"89":73,"98":10,"108":10,"153":1}}],["all",{"2":{"1":3,"3":2,"4":3,"6":14,"9":1,"11":7,"22":1,"25":1,"29":2,"32":5,"35":3,"38":1,"43":13,"45":3,"49":1,"50":3,"52":4,"55":1,"58":5,"60":1,"64":2,"70":3,"71":3,"74":1,"87":1,"88":1,"89":7,"95":4,"107":1,"115":1,"118":1,"119":3,"120":1,"123":1,"126":2,"127":1,"128":8,"131":1,"133":1,"135":1,"136":1,"139":1,"148":1,"153":2,"154":1,"155":1,"161":1,"162":1,"164":1,"165":1}}],["always",{"2":{"1":7,"4":6,"6":10,"25":1,"34":1,"35":4,"45":2,"55":1,"56":1,"64":1,"128":2,"140":4,"165":1}}],["also",{"2":{"1":2,"6":10,"23":1,"32":1,"35":2,"42":2,"43":3,"45":1,"49":1,"51":1,"52":2,"55":1,"56":2,"57":1,"64":3,"95":1,"119":1,"126":1,"128":1,"131":1,"134":3,"138":2,"141":1,"142":1,"143":1,"144":1,"146":1,"153":1,"156":1,"161":2,"163":1}}],["a",{"0":{"23":1,"163":1},"2":{"1":13,"3":5,"4":79,"5":1,"6":193,"7":3,"9":1,"11":1,"15":2,"17":1,"18":6,"20":3,"22":3,"23":4,"24":2,"25":2,"27":2,"28":2,"31":3,"32":22,"34":11,"35":20,"36":13,"37":4,"38":11,"39":2,"41":5,"42":8,"43":281,"44":2,"45":17,"47":3,"48":4,"49":39,"50":30,"51":38,"52":101,"53":3,"55":15,"56":27,"57":36,"58":45,"60":2,"63":2,"64":54,"66":1,"67":3,"69":5,"70":3,"71":2,"73":2,"74":2,"76":2,"78":1,"80":1,"81":3,"83":4,"84":3,"85":1,"87":2,"88":2,"89":52,"91":2,"94":5,"95":27,"97":2,"98":4,"100":4,"101":2,"102":2,"103":1,"104":2,"105":2,"107":1,"108":3,"110":5,"111":2,"112":2,"114":2,"115":2,"117":1,"118":4,"119":79,"121":4,"123":2,"126":4,"128":34,"129":6,"130":2,"131":2,"132":5,"133":5,"134":9,"135":2,"136":8,"138":6,"139":3,"140":8,"141":3,"142":5,"143":4,"144":8,"145":10,"147":3,"148":5,"151":3,"152":1,"153":2,"154":1,"156":6,"157":1,"158":12,"159":2,"160":1,"161":21,"162":17,"163":5,"164":11,"165":5,"166":8,"167":3,"168":3}}],["annotation",{"2":{"157":1}}],["angels",{"2":{"32":1}}],["angle",{"2":{"32":35,"118":1}}],["angles",{"0":{"30":1,"31":1},"1":{"31":1,"32":1},"2":{"0":2,"4":10,"6":10,"29":1,"30":1,"31":4,"32":42}}],["answers",{"2":{"136":1}}],["answer",{"2":{"6":3,"49":1,"51":1,"52":1,"57":1}}],["another",{"2":{"3":1,"6":1,"43":2,"52":1,"55":1,"60":1,"66":1,"69":1,"71":1,"72":1,"76":1,"80":1,"83":1,"84":1,"85":1,"86":1,"89":1,"91":1,"94":1,"95":1,"97":1,"100":1,"101":1,"102":1,"103":1,"107":1,"110":1,"111":1,"112":1,"113":1,"119":1,"140":1}}],["anonymous",{"2":{"1":1,"6":1,"153":1}}],["an",{"2":{"1":3,"4":11,"5":1,"6":27,"9":1,"13":1,"14":1,"18":1,"20":1,"23":2,"31":1,"32":4,"34":1,"35":2,"37":1,"38":3,"39":2,"41":1,"43":15,"44":2,"45":2,"47":1,"48":1,"49":2,"50":5,"51":2,"52":11,"55":2,"56":5,"57":2,"58":2,"60":1,"63":1,"64":1,"66":2,"69":2,"76":1,"80":1,"89":13,"91":1,"94":1,"95":1,"97":1,"107":1,"110":2,"111":1,"112":1,"119":3,"120":1,"123":1,"126":1,"127":1,"128":8,"131":1,"135":1,"140":1,"144":1,"153":2,"158":3,"159":1,"161":2,"162":2,"163":1,"166":1}}],["anything",{"2":{"37":1,"89":1}}],["any",{"2":{"1":3,"3":1,"4":2,"6":15,"18":1,"24":1,"25":1,"27":1,"36":2,"42":1,"43":7,"45":1,"48":1,"50":1,"52":4,"56":2,"58":1,"68":2,"69":1,"72":1,"80":1,"82":2,"83":1,"84":2,"85":1,"86":2,"89":8,"95":2,"99":2,"109":2,"113":1,"119":2,"121":2,"123":1,"128":2,"131":1,"132":1,"133":3,"134":4,"138":4,"140":2,"142":1,"144":1,"145":1,"150":1,"159":1,"165":2,"166":2}}],["and",{"0":{"1":1,"20":1,"22":1,"24":1,"33":1,"50":1,"52":1,"54":1,"58":1,"161":1,"162":1,"163":1},"1":{"34":1,"35":1,"55":1,"56":1},"2":{"0":2,"1":8,"3":11,"4":18,"6":84,"7":1,"9":2,"17":4,"18":4,"20":2,"22":1,"23":2,"24":3,"25":2,"27":2,"28":1,"29":1,"32":13,"34":1,"35":7,"36":2,"37":2,"38":20,"39":1,"40":2,"41":1,"42":29,"43":71,"44":2,"45":18,"47":1,"48":4,"49":4,"50":16,"51":4,"52":37,"55":2,"56":13,"57":6,"58":15,"60":3,"61":2,"63":2,"64":13,"66":2,"67":3,"70":3,"71":4,"72":1,"76":2,"77":2,"78":1,"81":3,"84":3,"85":1,"86":1,"89":36,"91":1,"94":2,"95":3,"98":2,"102":2,"103":2,"107":3,"108":4,"110":2,"111":3,"112":3,"113":1,"118":2,"119":16,"121":8,"123":1,"126":2,"127":3,"128":22,"129":1,"130":2,"131":1,"132":1,"133":4,"134":2,"135":2,"136":1,"139":2,"140":2,"143":1,"144":5,"145":4,"146":2,"147":1,"148":8,"150":8,"151":1,"152":1,"153":1,"156":1,"157":3,"158":4,"160":3,"161":9,"162":9,"164":5,"165":2,"166":4,"167":2}}],["apart",{"2":{"138":1}}],["april",{"0":{"7":1}}],["appears",{"2":{"130":1}}],["append",{"2":{"32":1,"43":5,"49":1,"50":2,"52":2,"57":1,"58":5,"138":2}}],["approximately",{"2":{"143":1}}],["approximatly",{"2":{"43":1}}],["approach",{"2":{"19":1}}],["appropriately",{"2":{"166":1}}],["appropriate",{"2":{"6":1,"158":2}}],["applies",{"2":{"126":2}}],["applied",{"2":{"6":3,"20":1,"123":1,"128":2,"132":2,"133":2,"134":1}}],["application",{"2":{"1":1,"6":3,"128":1,"131":1,"133":3,"134":1,"138":2,"142":1,"145":1}}],["apply`",{"2":{"128":1}}],["applys",{"2":{"35":1,"45":1}}],["applyreduce",{"0":{"19":1},"2":{"0":2,"1":1,"6":1,"17":1,"19":2,"27":1,"32":1,"35":1,"42":2,"45":1,"56":2,"121":3,"123":1,"128":39,"157":1}}],["apply",{"0":{"1":1,"18":1,"22":1,"27":1,"126":1},"1":{"19":1},"2":{"0":2,"1":4,"6":7,"17":1,"18":5,"20":1,"22":1,"24":1,"27":3,"121":5,"123":1,"125":1,"126":4,"127":1,"128":56,"133":4,"134":1,"135":1,"139":3,"140":1,"144":1,"145":1,"148":2,"153":3,"154":2,"157":1}}],["apis",{"2":{"17":1}}],["api",{"0":{"0":1,"38":1},"1":{"1":1,"2":1,"3":1,"4":1,"5":1,"6":1},"2":{"0":1,"6":3,"24":1,"38":1,"144":1,"148":1,"158":1}}],["snapped",{"2":{"119":1}}],["s3",{"2":{"43":3}}],["scratch",{"2":{"164":1}}],["sciences",{"2":{"162":1}}],["scalefactor",{"2":{"144":3}}],["scattered",{"2":{"166":1}}],["scatter",{"2":{"41":1,"55":2,"60":2,"63":2,"66":1,"76":1,"80":2,"94":2,"107":2,"166":1}}],["schema",{"2":{"128":6}}],["scheme",{"2":{"42":1}}],["scenario",{"2":{"89":2}}],["scene",{"2":{"14":1}}],["skipmissing",{"2":{"119":1}}],["skipped",{"2":{"119":1}}],["skip",{"2":{"35":1,"89":14,"119":1,"152":4}}],["skygering",{"2":{"7":1}}],["square",{"2":{"56":1,"149":1,"150":1}}],["squared",{"2":{"6":2,"45":2,"56":12,"149":2,"150":7}}],["sqrt",{"2":{"32":2,"42":1,"56":3}}],["sgn",{"2":{"32":5}}],["smallest",{"2":{"32":2,"52":1}}],["src",{"2":{"6":1}}],["sᵢ₋₁",{"2":{"38":25}}],["sᵢ₊₁",{"2":{"6":2,"38":41}}],["sᵢ",{"2":{"6":4,"38":46}}],["syntax",{"2":{"163":1}}],["symdifference",{"2":{"120":1}}],["sym10100477",{"2":{"89":1}}],["symbol=",{"2":{"78":1}}],["symbol",{"2":{"6":1,"158":2}}],["systems",{"0":{"162":1}}],["system",{"2":{"1":2,"140":2,"160":2,"162":1}}],["switches",{"2":{"52":1,"58":1}}],["switch",{"2":{"43":1,"58":1,"157":1}}],["switching",{"2":{"6":1,"45":1}}],["swap",{"2":{"6":1,"56":2,"58":1,"139":1}}],["swapped",{"2":{"3":1,"6":1,"61":1,"67":1,"77":1,"78":1,"92":1,"95":1}}],["swapping",{"2":{"1":1,"6":1,"128":1}}],["s2",{"2":{"6":4,"38":6,"43":3}}],["s1",{"2":{"6":3,"38":6,"43":3}}],["saving",{"0":{"164":1}}],["saved",{"2":{"64":1}}],["save",{"2":{"32":1,"160":1,"164":3}}],["samples",{"2":{"13":1}}],["sample",{"2":{"13":1}}],["same",{"2":{"3":2,"4":12,"6":23,"18":1,"32":3,"35":1,"43":15,"45":1,"48":1,"49":3,"51":1,"52":1,"55":1,"57":1,"58":1,"63":2,"64":30,"89":2,"94":1,"95":8,"123":1,"126":1,"128":6,"129":1,"134":2,"137":1,"138":2,"143":1,"161":1,"162":1,"164":1}}],["say",{"2":{"6":1,"38":1,"144":1}}],["span",{"2":{"166":1}}],["spatial",{"0":{"165":1},"1":{"166":1,"167":1,"168":1},"2":{"165":6,"166":3,"168":1}}],["spawn",{"2":{"128":5}}],["space",{"2":{"6":2,"25":1,"32":1,"34":1,"89":1,"144":1,"145":1}}],["sp",{"2":{"89":2}}],["split",{"2":{"48":1}}],["specialized",{"2":{"25":1}}],["specify",{"2":{"6":1,"123":1,"128":1,"162":2,"165":1}}],["specification",{"2":{"130":1,"133":1,"136":1,"137":1}}],["specifically",{"2":{"6":2,"38":3,"146":1,"165":1}}],["specific",{"2":{"43":1,"67":1,"81":1,"98":1,"108":1,"128":5}}],["specified",{"2":{"3":1,"6":2,"43":1,"50":2,"52":2,"58":2,"95":1,"126":1,"148":1}}],["slow",{"2":{"167":1}}],["slower",{"2":{"6":1,"158":2}}],["slope2",{"2":{"118":2}}],["slope1",{"2":{"118":2}}],["slidergrid",{"2":{"14":1}}],["sliders",{"2":{"14":3}}],["slighly",{"2":{"4":1,"6":1,"35":1}}],["slightly",{"2":{"4":1,"6":1,"35":1}}],["suite",{"2":{"144":5,"148":13}}],["suggestion",{"2":{"141":1}}],["sun",{"2":{"89":1}}],["surrounds",{"2":{"89":1}}],["sure",{"2":{"9":1,"32":1,"43":2,"56":1,"95":1,"152":1}}],["suppose",{"2":{"167":1,"168":1}}],["support",{"2":{"39":1,"142":1,"168":1}}],["supports",{"2":{"37":1,"38":1,"164":1,"168":2}}],["supported",{"2":{"23":1,"164":1}}],["supertype",{"2":{"6":1,"38":1}}],["sukumar",{"2":{"6":1,"38":1}}],["such",{"2":{"4":1,"6":1,"34":1,"47":1,"126":1,"135":1}}],["sum=1",{"2":{"38":1}}],["sum",{"2":{"4":2,"6":3,"11":6,"34":1,"35":2,"36":2,"38":8,"45":1,"56":2,"118":5,"152":1,"159":4}}],["sublevel",{"2":{"167":1}}],["subsequent",{"2":{"161":1}}],["substituted",{"2":{"1":1,"6":1,"128":1}}],["subgeom1",{"2":{"128":2}}],["subgeom",{"2":{"128":3}}],["subject",{"2":{"43":1}}],["subtype",{"2":{"128":1}}],["subtypes",{"2":{"6":2,"38":2}}],["subtracted",{"2":{"118":1}}],["subtitle",{"2":{"13":1,"37":2,"144":1,"148":2}}],["sub",{"2":{"4":6,"6":7,"32":1,"35":3,"45":1,"50":6,"52":3,"56":2,"58":4,"73":2,"74":2,"87":2,"88":2,"104":2,"105":2,"114":2,"115":2,"128":3,"136":4,"137":2,"138":4}}],["series",{"2":{"161":1}}],["serve",{"2":{"6":1,"38":1}}],["searchsortedfirst",{"2":{"150":1}}],["seg2",{"2":{"118":2}}],["seg1",{"2":{"118":3}}],["seg",{"2":{"89":23,"95":9}}],["segmentation",{"2":{"143":1}}],["segments",{"2":{"23":1,"29":1,"31":2,"32":1,"41":1,"42":2,"43":3,"45":1,"52":6,"89":18,"144":1,"145":3}}],["segmentization",{"2":{"142":1}}],["segmentizing",{"2":{"6":3,"143":1,"144":2,"145":1}}],["segmentized",{"2":{"143":1}}],["segmentizes",{"2":{"142":1}}],["segmentizemethod",{"2":{"6":1,"144":3,"145":2}}],["segmentize",{"0":{"142":1},"1":{"143":1,"144":1,"145":1},"2":{"0":1,"6":4,"29":1,"39":1,"121":1,"142":1,"143":5,"144":11,"145":13}}],["segment",{"2":{"4":4,"6":7,"32":1,"42":5,"43":6,"45":3,"47":1,"52":17,"56":2,"78":3,"89":43,"95":3,"118":2,"142":1,"144":2,"145":1}}],["separate",{"2":{"119":1,"128":1,"157":1,"164":1,"166":1}}],["separately",{"2":{"38":1,"119":1}}],["seperates",{"2":{"89":1}}],["seperate",{"2":{"43":1,"52":1}}],["sense",{"2":{"35":1,"56":1}}],["several",{"2":{"20":2,"35":1,"129":1,"138":1}}],["section",{"2":{"89":3,"94":1}}],["sections",{"2":{"10":1}}],["seconds=1",{"2":{"144":3,"148":8}}],["secondisleft",{"2":{"119":4}}],["secondisstraight",{"2":{"119":7}}],["secondary",{"2":{"3":3,"6":3,"61":1,"67":1,"108":1}}],["second",{"2":{"3":8,"6":9,"43":1,"52":4,"60":2,"61":1,"64":1,"66":1,"67":1,"70":1,"71":1,"72":1,"77":2,"81":2,"89":2,"98":1,"107":1,"108":1,"111":1,"112":1,"113":2,"150":1,"162":1,"165":1}}],["self",{"2":{"9":2}}],["selected",{"2":{"119":1}}],["selectednode",{"2":{"119":3}}],["selection",{"2":{"14":1}}],["select",{"2":{"6":1,"156":1}}],["seem",{"2":{"25":1}}],["see",{"2":{"6":3,"7":1,"27":1,"41":1,"56":1,"60":1,"63":1,"66":1,"80":1,"89":5,"91":1,"94":1,"97":1,"107":1,"119":2,"130":1,"131":1,"133":1,"134":3,"137":1,"138":2,"143":2,"150":1,"166":2}}],["setup=",{"2":{"67":1,"81":1,"98":1,"108":1}}],["sets",{"2":{"43":1}}],["setting",{"2":{"23":1}}],["set",{"0":{"23":1},"2":{"3":2,"4":7,"6":19,"23":1,"32":1,"36":2,"38":8,"43":3,"49":2,"51":2,"52":7,"57":2,"63":2,"64":10,"67":1,"78":1,"81":1,"89":2,"95":1,"98":1,"108":1,"118":1,"119":1,"134":2,"138":2,"150":2,"161":1,"164":1,"166":3}}],["sve",{"2":{"1":1,"6":1,"153":1}}],["svector",{"2":{"1":14,"6":14,"43":5,"49":1,"52":2,"58":6,"89":1,"119":1,"153":13,"161":6,"162":4}}],["solution",{"2":{"89":1}}],["solid",{"2":{"6":1}}],["south",{"2":{"45":7}}],["source",{"2":{"1":10,"3":19,"4":22,"5":3,"6":89,"78":2,"123":3,"133":1,"134":4,"140":3,"162":14}}],["sort",{"2":{"43":4,"48":2,"52":1,"57":2,"89":1,"95":2,"119":1,"150":1}}],["sorted",{"2":{"20":1,"43":1,"150":7,"165":1}}],["someone",{"2":{"158":1}}],["something",{"0":{"53":1},"2":{"10":1}}],["some",{"2":{"3":1,"6":3,"9":1,"17":1,"38":4,"64":1,"89":3,"95":1,"119":1,"120":1,"121":2,"126":2,"128":2,"132":1,"133":2,"134":1,"152":1,"155":2,"160":2,"165":1,"168":1}}],["so",{"2":{"1":1,"4":4,"6":10,"9":1,"17":1,"19":1,"25":1,"29":1,"37":1,"38":1,"43":1,"44":1,"52":1,"55":1,"56":1,"57":2,"58":2,"60":1,"63":1,"64":4,"80":1,"89":2,"91":1,"107":1,"119":3,"123":1,"128":6,"142":1,"143":1,"144":3,"145":1,"152":1,"153":1,"158":2,"162":2}}],["step",{"2":{"43":7,"49":1,"50":3,"51":1,"52":3,"57":1,"58":3,"119":4,"159":1}}],["storing",{"2":{"164":1}}],["stored",{"2":{"43":2,"166":1}}],["stores",{"2":{"43":1}}],["store",{"2":{"38":1,"164":1}}],["stopping",{"2":{"150":2}}],["stops",{"2":{"126":1}}],["stop",{"2":{"18":2,"78":3,"89":4,"95":3}}],["style",{"2":{"6":1}}],["style=",{"2":{"6":1}}],["standardized",{"2":{"89":1}}],["standards",{"2":{"89":1}}],["stay",{"2":{"58":1}}],["stackoverflow",{"2":{"52":1}}],["stack",{"2":{"48":1}}],["states",{"2":{"148":1}}],["state",{"2":{"57":1,"167":9}}],["status",{"2":{"43":31,"50":4,"52":5,"58":4,"119":1}}],["static",{"2":{"157":1}}],["staticarray",{"2":{"38":1}}],["staticarrays",{"2":{"29":1,"43":5,"49":1,"52":2,"58":6,"89":1,"119":1,"153":2}}],["staticarraysco",{"2":{"1":1,"6":1,"153":1}}],["staticarrayscore",{"2":{"1":10,"6":10,"38":1,"153":10,"161":6,"162":4}}],["statica",{"2":{"1":1,"6":1,"153":1}}],["statistics",{"2":{"13":2,"29":1}}],["stability",{"2":{"23":1,"28":1}}],["stable",{"2":{"13":1,"24":1,"145":1}}],["stage",{"2":{"7":1}}],["started",{"2":{"43":1}}],["starting",{"2":{"42":2,"43":1,"45":1,"52":1,"138":4}}],["startvalue",{"2":{"14":4}}],["start",{"2":{"6":1,"18":1,"32":7,"38":1,"43":76,"45":17,"50":4,"52":4,"58":5,"64":1,"78":4,"89":44,"95":3,"110":1,"119":2,"129":1,"150":16,"161":1}}],["straightline",{"2":{"119":3}}],["straight",{"2":{"119":6}}],["strait",{"2":{"119":1}}],["structs",{"2":{"20":1,"133":1}}],["structures",{"2":{"121":1}}],["structure",{"2":{"6":2,"123":1,"128":1,"139":1}}],["struct",{"2":{"6":3,"38":2,"43":2,"131":1,"138":2,"144":2,"149":1,"150":1,"151":1,"156":3,"157":2,"158":4}}],["strings",{"2":{"6":1,"42":1,"52":1}}],["string",{"2":{"1":2,"14":1,"41":1,"42":1,"140":2}}],["still",{"2":{"0":1,"35":1,"42":1,"43":3,"66":1,"150":1}}],["shp",{"2":{"164":1}}],["ships",{"2":{"162":1}}],["shifting",{"2":{"162":1}}],["shift",{"2":{"161":3}}],["shewchuck",{"2":{"7":1}}],["short",{"2":{"128":1}}],["show",{"2":{"9":1,"11":1,"13":1,"14":1,"37":1,"162":1,"164":1,"165":2}}],["shoelace",{"2":{"4":1,"6":1,"35":2,"45":1}}],["shouldn",{"2":{"52":1}}],["should",{"2":{"1":1,"4":1,"6":14,"17":1,"18":1,"20":2,"25":1,"32":3,"35":1,"42":1,"43":3,"44":1,"64":1,"89":4,"119":2,"123":1,"128":2,"130":1,"133":4,"134":2,"145":1,"148":2,"157":1}}],["sharing",{"2":{"80":1}}],["shares",{"2":{"52":1}}],["share",{"2":{"4":7,"6":8,"63":2,"64":8,"84":2,"85":1,"86":1,"95":1,"103":1}}],["shared",{"0":{"152":1},"2":{"3":1,"6":1,"43":2,"52":2,"95":3}}],["shapes",{"2":{"56":1,"164":7}}],["shape",{"2":{"41":1,"50":1,"63":1,"137":1,"161":1}}],["shaped",{"2":{"37":1}}],["shapefiles",{"2":{"164":1}}],["shapefile",{"2":{"27":1,"164":4}}],["shallower",{"2":{"1":1,"6":1,"128":1}}],["sites",{"2":{"167":1}}],["sides",{"2":{"43":3,"130":1}}],["side",{"2":{"32":4,"43":26}}],["signals",{"2":{"127":1}}],["sign",{"2":{"13":2,"14":2,"32":7,"35":2,"118":3}}],["signed",{"0":{"33":1,"34":1,"54":1,"55":1},"1":{"34":1,"35":1,"55":1,"56":1},"2":{"0":4,"4":15,"6":18,"11":3,"33":1,"34":5,"35":23,"45":3,"54":1,"55":7,"56":19}}],["six",{"2":{"6":1,"148":1}}],["size=",{"2":{"162":1}}],["sizehint",{"2":{"43":2,"50":1,"145":1}}],["size",{"2":{"6":4,"13":2,"14":5,"37":1,"58":1,"119":2,"128":4,"148":1}}],["sin",{"2":{"161":3,"162":3}}],["singed",{"2":{"56":1}}],["singular",{"2":{"52":1}}],["singlepoly",{"2":{"148":6}}],["single",{"2":{"4":6,"6":10,"23":1,"32":2,"35":1,"45":1,"64":5,"94":2,"119":2,"134":2,"136":1,"138":2,"161":3,"164":1}}],["since",{"2":{"1":1,"6":2,"32":1,"35":1,"42":1,"45":2,"56":1,"57":1,"64":1,"89":1,"95":2,"102":1,"140":1,"157":1,"158":2,"167":1}}],["simulation",{"2":{"23":1}}],["simultaneously",{"2":{"20":1}}],["simplication",{"2":{"148":1}}],["simplifier",{"2":{"148":4}}],["simplified",{"2":{"23":1,"147":1}}],["simplifies",{"2":{"6":3,"149":1,"150":1,"151":1}}],["simplification",{"0":{"146":1},"1":{"147":1,"148":1},"2":{"6":2,"146":2,"148":2}}],["simplifying",{"2":{"146":1}}],["simplify",{"0":{"149":1,"150":1,"151":1},"2":{"0":1,"6":15,"9":1,"29":1,"43":1,"121":1,"147":1,"148":41,"149":1,"150":2,"151":1}}],["simplifyalgs",{"2":{"152":1}}],["simplifyalg",{"2":{"0":1,"6":8,"148":5,"149":2,"150":2,"151":2}}],["simply",{"2":{"7":1,"34":1,"39":1,"43":1,"52":1,"58":1,"61":1,"77":1,"92":1,"119":1,"132":1,"140":1,"141":1,"144":1,"161":1,"163":1}}],["simple",{"0":{"166":1},"2":{"6":2,"38":1,"121":3,"139":1,"140":1,"147":2,"148":2,"157":1}}],["simpler",{"2":{"6":1,"119":1}}],["similarly",{"2":{"121":1}}],["similar",{"2":{"1":1,"6":3,"18":1,"25":1,"27":1,"39":1,"119":2,"128":1,"144":2,"145":1,"154":1}}],["s",{"0":{"28":1},"2":{"0":1,"6":9,"7":1,"9":1,"18":1,"19":1,"27":1,"32":1,"34":1,"35":4,"36":1,"37":2,"38":5,"41":3,"42":3,"43":3,"45":1,"47":1,"50":1,"52":2,"56":1,"58":3,"64":1,"76":2,"83":3,"84":4,"85":2,"89":9,"95":1,"103":1,"119":5,"121":2,"123":3,"124":1,"128":1,"131":1,"134":4,"136":1,"138":3,"143":4,"144":1,"146":1,"148":2,"152":4,"156":2,"157":1,"158":6,"161":6,"162":8,"163":2,"164":5,"168":2}}],["fn",{"2":{"164":8}}],["fc",{"2":{"128":22,"148":3,"159":14}}],["fj",{"2":{"119":2}}],["f2",{"2":{"43":2}}],["f1",{"2":{"43":2}}],["f64",{"2":{"13":2,"14":2}}],["few",{"2":{"130":1}}],["fetch",{"2":{"128":2}}],["fetched",{"2":{"119":1}}],["feb",{"0":{"8":1},"1":{"9":1,"10":1}}],["featurecollection",{"2":{"6":2,"11":1,"18":1,"119":4,"128":7,"162":2}}],["featurecollectiontrait",{"2":{"1":1,"6":2,"123":1,"126":1,"128":14,"159":5}}],["features",{"0":{"68":1,"82":1,"99":1,"109":1},"2":{"1":1,"6":2,"11":1,"22":1,"119":3,"127":1,"128":19,"162":1}}],["featuretrait",{"2":{"1":2,"6":3,"68":4,"78":2,"82":4,"99":4,"109":4,"123":1,"126":3,"128":15,"159":5}}],["feature",{"2":{"1":6,"4":1,"6":10,"18":2,"22":1,"35":1,"45":1,"119":2,"121":1,"127":1,"128":49,"148":2,"159":2,"164":1}}],["fra",{"2":{"167":2}}],["frame",{"2":{"163":1}}],["framework",{"2":{"121":4}}],["fracs",{"2":{"43":20,"48":1}}],["frac",{"2":{"38":1,"43":2,"52":17,"148":2}}],["fractional",{"2":{"43":1,"52":3}}],["fractions",{"2":{"43":1,"52":4}}],["fraction",{"2":{"6":4,"52":2,"56":1,"148":1}}],["front",{"2":{"32":1}}],["from",{"2":{"1":3,"3":4,"4":16,"6":29,"7":1,"11":1,"20":1,"22":1,"29":1,"35":2,"37":1,"38":4,"39":1,"42":1,"43":6,"45":11,"48":1,"49":1,"50":3,"51":1,"52":10,"56":25,"57":1,"58":6,"81":2,"83":5,"84":4,"85":2,"86":1,"87":2,"89":6,"95":2,"118":2,"119":7,"123":3,"128":3,"138":1,"140":4,"142":1,"148":1,"149":1,"150":3,"151":1,"159":1,"160":1,"162":5,"164":1,"165":1,"166":1,"168":1}}],["footprint",{"2":{"162":1}}],["foldable",{"2":{"128":3}}],["follows",{"2":{"43":2,"67":1,"81":1,"98":1,"108":1,"119":1}}],["following",{"2":{"6":1,"38":1,"47":1,"130":1,"137":1,"148":1,"165":1}}],["focusing",{"2":{"25":1}}],["foundational",{"2":{"17":1}}],["found",{"2":{"6":8,"45":1,"48":1,"49":2,"51":2,"52":2,"57":2,"64":1,"119":5,"126":3,"128":7,"145":1}}],["forward",{"2":{"52":1}}],["forwards",{"2":{"43":1,"50":1,"58":1}}],["formats",{"2":{"160":1,"162":1,"164":3}}],["format",{"2":{"48":1,"164":3}}],["form",{"2":{"18":1,"43":3,"52":8,"58":3,"128":1}}],["formed",{"2":{"4":2,"6":3,"31":1,"32":4,"38":1,"43":8,"57":1,"58":1,"150":1}}],["formula",{"2":{"4":1,"6":1,"35":2,"45":1}}],["force",{"2":{"1":1,"128":1,"140":1,"148":1}}],["for",{"0":{"50":1,"52":1,"58":1},"2":{"0":2,"1":3,"3":1,"4":4,"5":3,"6":44,"7":4,"9":2,"13":5,"14":1,"18":1,"20":1,"22":1,"23":5,"25":3,"27":1,"29":1,"32":5,"35":8,"36":1,"37":1,"38":19,"39":3,"42":7,"43":35,"45":11,"48":5,"49":2,"50":3,"51":1,"52":8,"55":2,"56":7,"57":1,"58":9,"64":13,"67":3,"73":1,"74":1,"76":1,"78":6,"81":2,"87":1,"88":1,"89":22,"94":1,"95":11,"98":2,"104":1,"105":1,"108":3,"114":1,"115":1,"117":1,"118":5,"119":13,"120":1,"121":3,"123":6,"124":2,"128":6,"129":3,"130":2,"132":1,"133":5,"135":1,"136":3,"137":1,"138":5,"140":3,"142":4,"143":7,"144":6,"145":8,"146":4,"148":12,"149":2,"150":2,"151":1,"152":6,"156":1,"157":2,"158":5,"159":7,"160":1,"162":5,"164":3,"165":1,"167":2,"168":1}}],["fi",{"2":{"119":2}}],["fill",{"2":{"43":1,"119":1,"145":3}}],["filled",{"2":{"43":5,"45":3,"55":1,"56":2,"89":16}}],["files",{"2":{"155":1,"164":2}}],["file",{"2":{"43":1,"67":3,"81":3,"98":3,"108":3,"119":1,"120":1,"121":1,"132":1,"140":1,"145":1,"146":1,"155":2,"160":1,"164":2}}],["filters",{"2":{"43":1}}],["filtering",{"2":{"6":1,"148":1}}],["filter",{"2":{"4":1,"6":2,"43":2,"128":3,"135":1,"138":2,"148":1}}],["fine",{"2":{"143":1}}],["final",{"2":{"58":1,"133":4,"144":1}}],["finally",{"2":{"37":2,"52":1,"119":1,"128":3,"164":1}}],["findmin",{"2":{"152":1}}],["findmax",{"2":{"148":1,"150":1}}],["findall",{"2":{"133":1}}],["finding",{"2":{"52":1}}],["findfirst",{"2":{"43":6,"48":2,"148":1}}],["findnext",{"2":{"43":3}}],["findlast",{"2":{"43":2}}],["findprev",{"2":{"43":2}}],["finds",{"2":{"43":1,"45":1}}],["find",{"2":{"32":6,"35":1,"43":12,"45":3,"48":2,"49":4,"51":2,"52":8,"56":3,"57":1,"64":1,"89":7,"119":2,"150":5,"167":1}}],["finish",{"2":{"9":1}}],["fit",{"2":{"17":1}}],["field",{"2":{"13":2,"43":2}}],["figure",{"2":{"13":1,"14":1,"34":1,"37":2,"162":3}}],["fig",{"2":{"13":6,"14":6,"161":7,"162":4}}],["fix1",{"2":{"128":2,"145":1}}],["fixme",{"2":{"118":1}}],["fix2",{"2":{"43":2}}],["fixed",{"2":{"6":3,"49":1,"51":1,"57":1}}],["fix",{"0":{"20":1},"2":{"6":9,"9":3,"15":3,"17":1,"20":1,"49":1,"50":11,"51":1,"52":11,"57":1,"58":10,"130":1,"132":1,"133":1,"137":1}}],["firstisright",{"2":{"119":2}}],["firstisleft",{"2":{"119":4}}],["firstisstraight",{"2":{"119":4}}],["firstnode",{"2":{"119":9}}],["first",{"2":{"3":9,"6":10,"32":14,"35":7,"37":1,"38":9,"39":1,"42":1,"43":17,"45":2,"48":1,"49":2,"51":1,"52":5,"56":8,"57":3,"60":2,"61":2,"64":4,"66":1,"67":2,"70":1,"71":1,"72":1,"77":2,"81":3,"89":22,"95":1,"98":2,"100":1,"107":1,"108":2,"111":1,"112":1,"113":2,"118":1,"119":16,"128":6,"130":1,"145":3,"149":1,"150":2,"159":2,"160":1,"161":1,"162":2,"165":1,"166":1}}],["fancy",{"2":{"161":1}}],["fancis",{"2":{"6":1,"38":1}}],["fair",{"2":{"143":1}}],["fail",{"2":{"1":1,"6":2,"128":6,"144":1}}],["fallback",{"2":{"128":1}}],["falses",{"2":{"43":2,"48":1,"49":1,"51":1}}],["false",{"0":{"24":1},"2":{"1":29,"3":7,"4":3,"6":55,"32":2,"35":1,"37":5,"43":26,"45":5,"48":1,"49":1,"50":3,"52":2,"56":2,"57":4,"60":2,"63":2,"64":27,"67":8,"69":2,"70":4,"71":1,"72":1,"73":1,"74":1,"76":2,"78":11,"81":9,"83":1,"84":4,"87":1,"88":1,"89":39,"95":22,"98":8,"100":3,"101":4,"102":1,"104":1,"105":1,"107":1,"108":7,"110":2,"111":4,"112":1,"113":1,"114":1,"115":1,"118":10,"119":5,"128":18,"130":16,"137":44,"138":4,"145":2,"148":1,"152":2,"153":20,"157":2,"159":2,"161":242,"162":30,"165":1}}],["fashion",{"2":{"34":1}}],["faster",{"2":{"38":1,"128":1}}],["fast",{"2":{"12":1}}],["f",{"2":{"1":12,"6":25,"15":1,"18":3,"19":1,"22":2,"31":1,"34":2,"37":4,"39":1,"41":2,"43":19,"44":2,"47":2,"49":2,"50":2,"51":2,"52":2,"55":5,"57":2,"58":2,"60":2,"63":2,"66":2,"76":2,"80":2,"89":7,"91":2,"94":2,"97":2,"107":2,"119":30,"123":2,"126":2,"128":168,"141":1,"143":2,"144":1,"147":2,"148":1,"152":6,"153":6,"158":5,"159":16,"161":6,"162":2,"166":3}}],["fun",{"2":{"161":1}}],["fundamental",{"2":{"155":1}}],["func",{"2":{"13":5}}],["funcs",{"2":{"13":2,"14":3}}],["functionality",{"2":{"121":1,"139":1,"140":1,"145":1,"158":1}}],["functionalities",{"2":{"43":1}}],["functionally",{"2":{"1":1,"6":1,"18":1,"27":1,"128":1}}],["function",{"2":{"1":8,"3":9,"4":9,"5":3,"6":12,"7":2,"9":1,"13":3,"14":2,"18":2,"27":1,"29":1,"32":5,"35":3,"38":13,"42":6,"43":18,"45":7,"47":2,"48":4,"49":3,"50":3,"51":2,"52":7,"53":1,"56":6,"57":2,"58":4,"60":1,"63":1,"64":8,"66":1,"67":1,"73":1,"74":1,"76":1,"78":5,"80":1,"81":1,"87":1,"88":1,"89":9,"91":1,"94":1,"95":7,"97":1,"98":1,"104":1,"105":1,"107":1,"108":1,"114":1,"115":1,"118":4,"119":16,"120":3,"123":3,"126":2,"128":29,"131":2,"133":7,"134":2,"138":2,"139":2,"140":1,"142":2,"144":2,"145":7,"148":3,"149":2,"150":3,"151":2,"152":7,"153":3,"154":1,"158":6,"159":12,"161":1,"165":1,"168":4}}],["functions",{"0":{"1":1,"50":1,"52":1,"58":1,"121":1,"123":1,"159":1},"1":{"122":1,"123":1,"124":1,"125":1,"126":1,"127":1,"128":1},"2":{"6":1,"9":3,"17":1,"27":1,"35":1,"38":1,"42":1,"43":2,"45":1,"47":1,"89":1,"120":1,"121":2,"126":1,"133":2,"134":1}}],["fulfilled",{"2":{"150":1}}],["fully",{"2":{"6":1,"43":4,"48":1,"95":4}}],["full",{"0":{"0":1},"1":{"1":1,"2":1,"3":1,"4":1,"5":1,"6":1},"2":{"0":1,"45":5,"133":1,"167":4}}],["furthest",{"2":{"119":1}}],["further",{"2":{"41":1,"128":1}}],["furthermore",{"2":{"3":2,"6":5,"43":1,"49":1,"51":1,"57":1,"67":1,"108":1}}],["future",{"2":{"23":1,"56":1,"142":2}}],["flexijoins",{"2":{"165":1,"166":3,"167":1,"168":5}}],["flags",{"2":{"43":5}}],["flag",{"2":{"43":12,"48":1}}],["flat",{"2":{"6":1,"152":2,"159":1}}],["flattened",{"2":{"18":1}}],["flattening",{"2":{"6":4,"144":2}}],["flatten",{"2":{"0":2,"6":4,"11":3,"13":1,"18":1,"38":1,"43":2,"45":3,"51":1,"58":1,"78":1,"123":4,"128":27,"138":1}}],["floating",{"2":{"6":1,"43":1,"52":5,"119":2}}],["float",{"2":{"6":3,"49":1,"51":1,"57":1}}],["float64x2",{"2":{"13":6,"14":6,"15":2}}],["float64",{"2":{"1":6,"4":10,"6":28,"13":1,"31":1,"32":3,"35":6,"42":1,"45":4,"48":2,"49":2,"51":1,"52":1,"56":12,"57":1,"89":4,"95":2,"118":4,"130":6,"137":26,"143":2,"144":2,"145":1,"149":4,"150":9,"151":2,"152":6,"153":6,"154":1,"159":8,"161":190,"162":17}}],["flipping",{"0":{"139":1},"2":{"139":1}}],["flipped",{"2":{"1":2,"6":2,"128":2}}],["flipaxis",{"2":{"37":1}}],["flip",{"2":{"0":1,"6":1,"29":1,"121":2,"128":1,"139":2}}],["wgs84",{"2":{"162":1}}],["wglmakie",{"2":{"14":1}}],["wₜₒₜ",{"2":{"38":8}}],["wᵢ",{"2":{"38":18}}],["wt",{"2":{"38":3}}],["w",{"2":{"13":13,"14":7,"56":4,"119":1}}],["wrong",{"2":{"136":1,"152":1}}],["writing",{"2":{"164":1}}],["written",{"2":{"64":1}}],["write",{"2":{"7":1,"28":1,"119":1,"164":7}}],["wrap",{"2":{"4":1,"6":1,"135":1,"144":1}}],["wrapped",{"2":{"22":1,"119":2,"126":1,"128":1}}],["wrapper",{"0":{"28":1},"2":{"28":1,"32":1,"35":1,"42":1,"45":1,"56":1,"64":1,"67":1,"81":1,"95":1,"98":1,"108":1}}],["wrappers`",{"2":{"128":1}}],["wrappers",{"2":{"1":10,"6":12,"22":1,"118":2,"119":1,"123":1,"130":8,"131":1,"137":22,"143":1,"144":1,"148":1,"153":10,"159":1,"161":121,"162":14}}],["wrappergeometry`",{"2":{"140":1}}],["wrappergeometry",{"2":{"1":1}}],["wrapping",{"2":{"1":1,"6":1,"64":1,"140":1,"154":1}}],["web",{"2":{"164":1}}],["west",{"2":{"45":8}}],["were",{"2":{"43":1,"52":1,"119":1,"166":1}}],["welcome",{"2":{"25":1}}],["well",{"2":{"17":1,"43":1,"45":1,"142":1,"146":1,"157":1}}],["we",{"0":{"53":2},"2":{"7":1,"11":1,"13":1,"17":3,"19":1,"23":3,"24":1,"25":2,"32":1,"34":2,"35":2,"37":4,"38":8,"39":2,"42":1,"43":7,"45":4,"50":8,"51":2,"52":2,"56":1,"58":1,"60":1,"61":1,"63":1,"64":5,"66":1,"67":1,"77":1,"80":1,"81":1,"89":2,"91":3,"92":1,"94":1,"95":2,"97":1,"98":1,"107":1,"108":1,"119":21,"120":1,"126":1,"128":20,"129":1,"141":1,"142":2,"143":2,"144":3,"145":1,"148":5,"152":2,"155":1,"157":4,"158":1,"160":2,"161":4,"162":10,"163":1,"164":3,"165":3,"166":7}}],["weighting",{"2":{"41":2,"42":1}}],["weights",{"2":{"36":4}}],["weight",{"2":{"6":5,"38":14,"42":1}}],["weighted",{"2":{"0":1,"6":2,"36":3,"38":4,"42":4}}],["walk",{"2":{"48":1}}],["wall2",{"2":{"45":7}}],["wall1",{"2":{"45":12}}],["walls",{"2":{"45":3}}],["wall",{"2":{"45":69}}],["wachspress",{"2":{"38":1}}],["wanted",{"2":{"168":1}}],["wants",{"2":{"128":1}}],["want",{"0":{"23":1,"53":1},"2":{"13":1,"18":1,"23":1,"38":1,"43":1,"118":1,"162":2,"163":1,"167":1,"168":1}}],["wasincreasing",{"2":{"119":10}}],["wasn",{"2":{"43":1}}],["was",{"2":{"6":1,"29":1,"32":1,"35":1,"37":1,"38":4,"39":1,"42":1,"43":1,"45":1,"48":1,"49":1,"50":3,"51":1,"52":3,"53":1,"56":1,"57":1,"58":3,"61":1,"64":1,"74":1,"77":1,"78":1,"88":1,"89":1,"92":1,"95":1,"105":1,"115":1,"118":1,"119":1,"120":1,"126":1,"128":1,"131":1,"134":1,"135":1,"138":1,"139":1,"141":1,"143":1,"145":1,"152":1,"153":1,"154":1,"158":2,"159":1}}],["ways",{"2":{"136":1}}],["way",{"2":{"6":1,"17":1,"18":1,"24":1,"27":1,"36":1,"121":1,"132":1,"145":1,"156":1,"158":2,"163":1}}],["warn",{"2":{"119":2}}],["warned",{"2":{"6":1,"158":1}}],["warning",{"2":{"0":1,"5":1,"6":2,"24":1,"38":1,"128":1,"144":1,"155":1,"167":1}}],["won",{"2":{"23":1,"43":1,"128":1}}],["would",{"0":{"53":1},"2":{"6":3,"23":1,"49":1,"51":1,"57":1,"119":1,"157":2,"162":1,"167":1,"168":1}}],["world",{"0":{"167":1},"2":{"165":1}}],["worrying",{"2":{"24":1}}],["words",{"2":{"3":1,"6":1,"60":1,"91":1,"97":1,"98":1}}],["works",{"2":{"140":1,"142":1}}],["workflow",{"2":{"78":1,"95":1}}],["workflows",{"2":{"23":1,"25":1}}],["working",{"2":{"3":1,"6":1,"78":1,"162":1}}],["work",{"2":{"1":3,"6":3,"9":1,"32":1,"35":2,"42":1,"45":2,"48":2,"56":1,"64":1,"89":1,"95":1,"118":1,"128":2,"140":1,"153":1,"167":1}}],["whole",{"2":{"89":1}}],["whose",{"2":{"3":1,"6":1,"78":1}}],["white",{"2":{"37":1}}],["while",{"2":{"32":1,"41":1,"42":1,"43":5,"52":2,"55":1,"64":1,"78":1,"89":1,"119":3,"138":1,"150":1,"152":2,"166":1}}],["whichever",{"2":{"6":1,"148":1}}],["which",{"2":{"1":1,"4":2,"5":1,"6":7,"7":1,"11":1,"13":1,"14":1,"17":1,"18":4,"20":1,"23":2,"34":1,"35":1,"36":1,"37":2,"38":5,"39":1,"43":11,"45":2,"52":2,"64":2,"89":3,"119":3,"120":1,"121":1,"128":1,"129":2,"130":1,"133":1,"136":1,"137":1,"141":1,"142":1,"143":1,"144":3,"145":2,"148":1,"150":2,"153":1,"156":1,"158":4,"164":3,"165":3,"166":6,"168":1}}],["what",{"0":{"22":1,"28":1,"31":1,"34":2,"41":1,"44":1,"47":1,"55":2,"60":1,"63":1,"66":1,"76":1,"80":1,"91":1,"94":1,"97":1,"107":1,"126":1},"2":{"13":1,"14":1,"24":1,"41":1,"118":1,"119":1,"143":1,"157":1,"162":1,"167":1}}],["whatever",{"2":{"1":1,"6":1,"22":1,"128":1}}],["whyatt",{"2":{"146":1}}],["why",{"0":{"22":1,"23":1},"2":{"9":1,"17":1,"28":1,"35":1}}],["wheel",{"2":{"17":1}}],["whether",{"2":{"1":4,"4":1,"6":10,"117":1,"118":1,"125":2,"129":1}}],["when",{"2":{"1":1,"4":2,"5":1,"6":5,"18":1,"20":1,"23":2,"24":1,"35":1,"38":3,"42":1,"43":2,"50":5,"52":7,"58":7,"89":1,"119":1,"126":3,"128":1,"130":1,"133":1,"135":2,"148":1,"162":3,"164":1,"168":1}}],["wherever",{"2":{"6":1,"154":1}}],["where",{"2":{"1":2,"4":5,"6":11,"20":1,"29":2,"32":8,"35":12,"36":2,"38":24,"42":8,"43":14,"45":8,"48":5,"49":2,"50":5,"51":3,"52":18,"56":25,"57":2,"58":9,"64":1,"89":9,"119":3,"128":52,"136":1,"140":1,"143":1,"154":1,"155":1,"156":5,"159":3,"161":4}}],["widely",{"2":{"164":1}}],["widths",{"2":{"14":1}}],["width",{"2":{"6":1}}],["wiki",{"2":{"89":1,"150":1}}],["wikipedia",{"2":{"89":1,"150":2}}],["wind",{"2":{"4":1,"6":2,"35":1,"64":1}}],["winding",{"2":{"4":2,"6":2,"35":3,"43":7,"64":1,"119":1}}],["without",{"2":{"1":2,"6":1,"17":1,"24":1,"43":1,"80":1,"95":1,"128":3,"140":1,"153":1}}],["with",{"0":{"50":1,"52":1,"58":1,"149":1,"150":1,"151":1,"163":1},"2":{"1":5,"3":5,"4":7,"6":27,"11":1,"20":1,"22":2,"23":1,"31":1,"32":2,"35":7,"36":4,"37":1,"38":2,"42":1,"43":14,"45":6,"50":8,"51":5,"52":14,"55":1,"56":2,"57":1,"58":12,"67":1,"80":1,"84":1,"89":28,"91":1,"94":2,"95":5,"97":1,"98":1,"101":3,"102":2,"103":2,"113":1,"119":7,"121":1,"123":2,"126":1,"128":17,"130":1,"135":1,"136":1,"140":1,"142":1,"145":2,"148":2,"150":2,"151":1,"153":1,"157":1,"158":1,"160":1,"161":4,"162":8,"163":2,"164":2,"165":1,"166":1,"167":1}}],["within",{"0":{"106":1,"107":1,"110":1,"111":1,"113":1,"114":1,"115":1},"1":{"107":1,"108":1},"2":{"0":2,"3":9,"4":3,"5":1,"6":13,"7":1,"9":1,"29":1,"32":2,"35":1,"36":3,"38":1,"42":1,"43":9,"44":2,"45":5,"50":1,"52":2,"55":1,"56":5,"57":1,"58":6,"60":2,"61":3,"66":2,"83":1,"89":9,"94":1,"95":9,"106":1,"107":6,"108":11,"109":6,"110":14,"111":15,"112":15,"113":7,"114":4,"115":4,"121":1,"165":1,"166":4,"167":2}}],["will",{"2":{"1":8,"4":7,"5":1,"6":43,"11":1,"18":3,"23":2,"24":1,"32":4,"35":3,"38":2,"42":1,"43":5,"45":1,"48":1,"49":4,"50":4,"51":4,"52":4,"55":2,"56":4,"57":4,"58":4,"64":1,"78":1,"118":1,"119":2,"123":2,"126":1,"127":2,"128":8,"130":1,"134":2,"136":1,"138":2,"140":3,"142":2,"144":3,"148":2,"150":1,"152":1,"153":2,"158":1,"162":1,"164":1,"165":2,"167":1,"168":1}}],["wip",{"2":{"0":1}}]],"serializationVersion":2}';export{e as default}; diff --git a/dev/assets/chunks/@localSearchIndexroot.CdsqOm-y.js b/dev/assets/chunks/@localSearchIndexroot.CdsqOm-y.js new file mode 100644 index 000000000..d4caff56f --- /dev/null +++ b/dev/assets/chunks/@localSearchIndexroot.CdsqOm-y.js @@ -0,0 +1 @@ +const e='{"documentCount":169,"nextId":169,"documentIds":{"0":"/GeometryOps.jl/dev/api#Full-GeometryOps-API-documentation","1":"/GeometryOps.jl/dev/api#apply-and-associated-functions","2":"/GeometryOps.jl/dev/api#General-geometry-methods","3":"/GeometryOps.jl/dev/api#OGC-methods","4":"/GeometryOps.jl/dev/api#Other-general-methods","5":"/GeometryOps.jl/dev/api#Barycentric-coordinates","6":"/GeometryOps.jl/dev/api#Other-methods","7":"/GeometryOps.jl/dev/call_notes#20th-April,-2024","8":"/GeometryOps.jl/dev/call_notes#29th-Feb,-2024","9":"/GeometryOps.jl/dev/call_notes#To-do","10":"/GeometryOps.jl/dev/call_notes#done","11":"/GeometryOps.jl/dev/experiments/accurate_accumulators#Accurate-accumulation","12":"/GeometryOps.jl/dev/experiments/predicates#predicates","13":"/GeometryOps.jl/dev/experiments/predicates#orient","14":"/GeometryOps.jl/dev/experiments/predicates#dashboard","15":"/GeometryOps.jl/dev/experiments/predicates#Testing-robust-vs-regular-predicates","16":"/GeometryOps.jl/dev/experiments/predicates#incircle","17":"/GeometryOps.jl/dev/explanations/paradigms#paradigms","18":"/GeometryOps.jl/dev/explanations/paradigms#apply","19":"/GeometryOps.jl/dev/explanations/paradigms#applyreduce","20":"/GeometryOps.jl/dev/explanations/paradigms#fix-and-prepare","21":"/GeometryOps.jl/dev/explanations/peculiarities#peculiarities","22":"/GeometryOps.jl/dev/explanations/peculiarities#What-does-apply-return-and-why?","23":"/GeometryOps.jl/dev/explanations/peculiarities#Why-do-you-want-me-to-provide-a-target-in-set-operations?","24":"/GeometryOps.jl/dev/explanations/peculiarities#_True-and-_False-(or-BoolsAsTypes)","25":"/GeometryOps.jl/dev/introduction#introduction","26":"/GeometryOps.jl/dev/introduction#Main-concepts","27":"/GeometryOps.jl/dev/introduction#The-apply-paradigm","28":"/GeometryOps.jl/dev/introduction#What\'s-this-GeoInterface.Wrapper-thing?","29":"/GeometryOps.jl/dev/source/GeometryOps#geometryops-jl","30":"/GeometryOps.jl/dev/source/methods/angles#angles","31":"/GeometryOps.jl/dev/source/methods/angles#What-is-angles?","32":"/GeometryOps.jl/dev/source/methods/angles#implementation","33":"/GeometryOps.jl/dev/source/methods/area#Area-and-signed-area","34":"/GeometryOps.jl/dev/source/methods/area#What-is-area?-What-is-signed-area?","35":"/GeometryOps.jl/dev/source/methods/area#implementation","36":"/GeometryOps.jl/dev/source/methods/barycentric#Barycentric-coordinates","37":"/GeometryOps.jl/dev/source/methods/barycentric#example","38":"/GeometryOps.jl/dev/source/methods/barycentric#Barycentric-coordinate-API","39":"/GeometryOps.jl/dev/source/methods/buffer#buffer","40":"/GeometryOps.jl/dev/source/methods/centroid#centroid","41":"/GeometryOps.jl/dev/source/methods/centroid#What-is-the-centroid?","42":"/GeometryOps.jl/dev/source/methods/centroid#implementation","43":"/GeometryOps.jl/dev/source/methods/clipping/clipping_processor#Polygon-clipping-helpers","44":"/GeometryOps.jl/dev/source/methods/clipping/coverage#What-is-coverage?","45":"/GeometryOps.jl/dev/source/methods/clipping/coverage#implementation","46":"/GeometryOps.jl/dev/source/methods/clipping/cut#Polygon-cutting","47":"/GeometryOps.jl/dev/source/methods/clipping/cut#What-is-cut?","48":"/GeometryOps.jl/dev/source/methods/clipping/cut#implementation","49":"/GeometryOps.jl/dev/source/methods/clipping/difference#Difference-Polygon-Clipping","50":"/GeometryOps.jl/dev/source/methods/clipping/difference#Helper-functions-for-Differences-with-Greiner-and-Hormann-Polygon-Clipping","51":"/GeometryOps.jl/dev/source/methods/clipping/intersection#Geometry-Intersection","52":"/GeometryOps.jl/dev/source/methods/clipping/intersection#Helper-functions-for-Intersections-with-Greiner-and-Hormann-Polygon-Clipping","53":"/GeometryOps.jl/dev/source/methods/clipping/predicates#If-we-want-to-inject-adaptivity,-we-would-do-something-like:","54":"/GeometryOps.jl/dev/source/methods/clipping/union#Union-Polygon-Clipping","55":"/GeometryOps.jl/dev/source/methods/clipping/union#Helper-functions-for-Unions-with-Greiner-and-Hormann-Polygon-Clipping","56":"/GeometryOps.jl/dev/source/methods/distance#Distance-and-signed-distance","57":"/GeometryOps.jl/dev/source/methods/distance#What-is-distance?-What-is-signed-distance?","58":"/GeometryOps.jl/dev/source/methods/distance#implementation","59":"/GeometryOps.jl/dev/source/methods/equals#equals","60":"/GeometryOps.jl/dev/source/methods/equals#What-is-equals?","61":"/GeometryOps.jl/dev/source/methods/equals#implementation","62":"/GeometryOps.jl/dev/source/methods/geom_relations/contains#contains","63":"/GeometryOps.jl/dev/source/methods/geom_relations/contains#What-is-contains?","64":"/GeometryOps.jl/dev/source/methods/geom_relations/contains#implementation","65":"/GeometryOps.jl/dev/source/methods/geom_relations/coveredby#coveredby","66":"/GeometryOps.jl/dev/source/methods/geom_relations/coveredby#What-is-coveredby?","67":"/GeometryOps.jl/dev/source/methods/geom_relations/coveredby#implementation","68":"/GeometryOps.jl/dev/source/methods/geom_relations/coveredby#Convert-features-to-geometries","69":"/GeometryOps.jl/dev/source/methods/geom_relations/coveredby#Points-coveredby-geometries","70":"/GeometryOps.jl/dev/source/methods/geom_relations/coveredby#Lines-coveredby-geometries","71":"/GeometryOps.jl/dev/source/methods/geom_relations/coveredby#Rings-covered-by-geometries","72":"/GeometryOps.jl/dev/source/methods/geom_relations/coveredby#Polygons-covered-by-geometries","73":"/GeometryOps.jl/dev/source/methods/geom_relations/coveredby#Geometries-coveredby-multi-geometry/geometry-collections","74":"/GeometryOps.jl/dev/source/methods/geom_relations/coveredby#Multi-geometry/geometry-collections-coveredby-geometries","75":"/GeometryOps.jl/dev/source/methods/geom_relations/covers#covers","76":"/GeometryOps.jl/dev/source/methods/geom_relations/covers#What-is-covers?","77":"/GeometryOps.jl/dev/source/methods/geom_relations/covers#implementation","78":"/GeometryOps.jl/dev/source/methods/geom_relations/crosses#Crossing-checks","79":"/GeometryOps.jl/dev/source/methods/geom_relations/disjoint#disjoint","80":"/GeometryOps.jl/dev/source/methods/geom_relations/disjoint#What-is-disjoint?","81":"/GeometryOps.jl/dev/source/methods/geom_relations/disjoint#implementation","82":"/GeometryOps.jl/dev/source/methods/geom_relations/disjoint#Convert-features-to-geometries","83":"/GeometryOps.jl/dev/source/methods/geom_relations/disjoint#Point-disjoint-geometries","84":"/GeometryOps.jl/dev/source/methods/geom_relations/disjoint#Lines-disjoint-geometries","85":"/GeometryOps.jl/dev/source/methods/geom_relations/disjoint#Rings-disjoint-geometries","86":"/GeometryOps.jl/dev/source/methods/geom_relations/disjoint#Polygon-disjoint-geometries","87":"/GeometryOps.jl/dev/source/methods/geom_relations/disjoint#Geometries-disjoint-multi-geometry/geometry-collections","88":"/GeometryOps.jl/dev/source/methods/geom_relations/disjoint#Multi-geometry/geometry-collections-coveredby-geometries","89":"/GeometryOps.jl/dev/source/methods/geom_relations/geom_geom_processors#Line-curve-interaction","90":"/GeometryOps.jl/dev/source/methods/geom_relations/intersects#Intersection-checks","91":"/GeometryOps.jl/dev/source/methods/geom_relations/intersects#What-is-intersects?","92":"/GeometryOps.jl/dev/source/methods/geom_relations/intersects#implementation","93":"/GeometryOps.jl/dev/source/methods/geom_relations/overlaps#overlaps","94":"/GeometryOps.jl/dev/source/methods/geom_relations/overlaps#What-is-overlaps?","95":"/GeometryOps.jl/dev/source/methods/geom_relations/overlaps#implementation","96":"/GeometryOps.jl/dev/source/methods/geom_relations/touches#touches","97":"/GeometryOps.jl/dev/source/methods/geom_relations/touches#What-is-touches?","98":"/GeometryOps.jl/dev/source/methods/geom_relations/touches#implementation","99":"/GeometryOps.jl/dev/source/methods/geom_relations/touches#Convert-features-to-geometries","100":"/GeometryOps.jl/dev/source/methods/geom_relations/touches#Point-touches-geometries","101":"/GeometryOps.jl/dev/source/methods/geom_relations/touches#Lines-touching-geometries","102":"/GeometryOps.jl/dev/source/methods/geom_relations/touches#Rings-touch-geometries","103":"/GeometryOps.jl/dev/source/methods/geom_relations/touches#Polygons-touch-geometries","104":"/GeometryOps.jl/dev/source/methods/geom_relations/touches#Geometries-touch-multi-geometry/geometry-collections","105":"/GeometryOps.jl/dev/source/methods/geom_relations/touches#Multi-geometry/geometry-collections-cross-geometries","106":"/GeometryOps.jl/dev/source/methods/geom_relations/within#within","107":"/GeometryOps.jl/dev/source/methods/geom_relations/within#What-is-within?","108":"/GeometryOps.jl/dev/source/methods/geom_relations/within#implementation","109":"/GeometryOps.jl/dev/source/methods/geom_relations/within#Convert-features-to-geometries","110":"/GeometryOps.jl/dev/source/methods/geom_relations/within#Points-within-geometries","111":"/GeometryOps.jl/dev/source/methods/geom_relations/within#Lines-within-geometries","112":"/GeometryOps.jl/dev/source/methods/geom_relations/within#Rings-covered-by-geometries","113":"/GeometryOps.jl/dev/source/methods/geom_relations/within#Polygons-within-geometries","114":"/GeometryOps.jl/dev/source/methods/geom_relations/within#Geometries-within-multi-geometry/geometry-collections","115":"/GeometryOps.jl/dev/source/methods/geom_relations/within#Multi-geometry/geometry-collections-within-geometries","116":"/GeometryOps.jl/dev/source/methods/orientation#orientation","117":"/GeometryOps.jl/dev/source/methods/orientation#isclockwise","118":"/GeometryOps.jl/dev/source/methods/orientation#isconcave","119":"/GeometryOps.jl/dev/source/methods/polygonize#Polygonizing-raster-data","120":"/GeometryOps.jl/dev/source/not_implemented_yet#Not-implemented-yet","121":"/GeometryOps.jl/dev/source/primitives#Primitive-functions","122":"/GeometryOps.jl/dev/source/primitives#docstrings","123":"/GeometryOps.jl/dev/source/primitives#functions","124":"/GeometryOps.jl/dev/source/primitives#types","125":"/GeometryOps.jl/dev/source/primitives#implementation","126":"/GeometryOps.jl/dev/source/primitives#What-is-apply?","127":"/GeometryOps.jl/dev/source/primitives#embedding","128":"/GeometryOps.jl/dev/source/primitives#threading","129":"/GeometryOps.jl/dev/source/transformations/correction/closed_ring#Closed-Rings","130":"/GeometryOps.jl/dev/source/transformations/correction/closed_ring#example","131":"/GeometryOps.jl/dev/source/transformations/correction/closed_ring#implementation","132":"/GeometryOps.jl/dev/source/transformations/correction/geometry_correction#Geometry-Corrections","133":"/GeometryOps.jl/dev/source/transformations/correction/geometry_correction#interface","134":"/GeometryOps.jl/dev/source/transformations/correction/geometry_correction#Available-corrections","135":"/GeometryOps.jl/dev/source/transformations/correction/intersecting_polygons#Intersecting-Polygons","136":"/GeometryOps.jl/dev/source/transformations/correction/intersecting_polygons#example","137":"/GeometryOps.jl/dev/source/transformations/correction/intersecting_polygons#implementation","138":"/GeometryOps.jl/dev/source/transformations/extent#Extent-embedding","139":"/GeometryOps.jl/dev/source/transformations/flip#Coordinate-flipping","140":"/GeometryOps.jl/dev/source/transformations/reproject#Geometry-reprojection","141":"/GeometryOps.jl/dev/source/transformations/reproject#Method-error-handling","142":"/GeometryOps.jl/dev/source/transformations/segmentize#segmentize","143":"/GeometryOps.jl/dev/source/transformations/segmentize#examples","144":"/GeometryOps.jl/dev/source/transformations/segmentize#benchmark","145":"/GeometryOps.jl/dev/source/transformations/segmentize#implementation","146":"/GeometryOps.jl/dev/source/transformations/simplify#Geometry-simplification","147":"/GeometryOps.jl/dev/source/transformations/simplify#examples","148":"/GeometryOps.jl/dev/source/transformations/simplify#benchmark","149":"/GeometryOps.jl/dev/source/transformations/simplify#Simplify-with-RadialDistance-Algorithm","150":"/GeometryOps.jl/dev/source/transformations/simplify#Simplify-with-DouglasPeucker-Algorithm","151":"/GeometryOps.jl/dev/source/transformations/simplify#Simplify-with-VisvalingamWhyatt-Algorithm","152":"/GeometryOps.jl/dev/source/transformations/simplify#Shared-utils","153":"/GeometryOps.jl/dev/source/transformations/transform#Pointwise-transformation","154":"/GeometryOps.jl/dev/source/transformations/tuples#Tuple-conversion","155":"/GeometryOps.jl/dev/source/types#types","156":"/GeometryOps.jl/dev/source/types#TraitTarget","157":"/GeometryOps.jl/dev/source/types#BoolsAsTypes","158":"/GeometryOps.jl/dev/source/types#GEOS","159":"/GeometryOps.jl/dev/source/utils#Utility-functions","160":"/GeometryOps.jl/dev/tutorials/creating_geometry#Creating-Geometry","161":"/GeometryOps.jl/dev/tutorials/creating_geometry#creating-geometry","162":"/GeometryOps.jl/dev/tutorials/creating_geometry#geom-crs","163":"/GeometryOps.jl/dev/tutorials/creating_geometry#attributes","164":"/GeometryOps.jl/dev/tutorials/creating_geometry#save-geometry","165":"/GeometryOps.jl/dev/tutorials/spatial_joins#Spatial-joins","166":"/GeometryOps.jl/dev/tutorials/spatial_joins#Simple-example","167":"/GeometryOps.jl/dev/tutorials/spatial_joins#Real-world-example","168":"/GeometryOps.jl/dev/tutorials/spatial_joins#Enabling-custom-predicates"},"fieldIds":{"title":0,"titles":1,"text":2},"fieldLength":{"0":[4,1,88],"1":[4,4,248],"2":[3,4,1],"3":[2,7,207],"4":[3,7,261],"5":[2,4,84],"6":[2,4,1065],"7":[3,1,55],"8":[3,1,1],"9":[2,3,107],"10":[1,3,17],"11":[2,1,74],"12":[1,1,5],"13":[1,1,128],"14":[1,2,116],"15":[5,2,72],"16":[1,1,1],"17":[1,1,53],"18":[1,1,109],"19":[1,2,35],"20":[3,1,79],"21":[1,1,1],"22":[7,1,71],"23":[13,1,101],"24":[6,1,66],"25":[1,1,72],"26":[2,1,1],"27":[3,3,50],"28":[8,3,18],"29":[2,1,116],"30":[1,1,3],"31":[4,1,57],"32":[1,1,270],"33":[4,1,4],"34":[5,4,101],"35":[1,4,247],"36":[2,1,65],"37":[1,2,210],"38":[3,2,414],"39":[1,1,110],"40":[1,1,6],"41":[5,1,91],"42":[1,1,199],"43":[3,1,613],"44":[4,1,70],"45":[1,1,327],"46":[2,1,3],"47":[4,2,57],"48":[1,2,200],"49":[3,1,215],"50":[10,1,191],"51":[2,1,252],"52":[10,1,482],"53":[11,1,25],"54":[3,1,236],"55":[10,1,284],"56":[4,1,4],"57":[5,4,129],"58":[1,4,260],"59":[1,1,3],"60":[4,1,68],"61":[1,1,266],"62":[1,1,3],"63":[4,1,79],"64":[1,1,79],"65":[1,1,3],"66":[4,1,81],"67":[1,1,128],"68":[4,1,11],"69":[3,1,56],"70":[3,1,46],"71":[4,1,48],"72":[4,1,40],"73":[5,1,40],"74":[5,1,44],"75":[1,1,3],"76":[4,1,67],"77":[1,1,78],"78":[2,1,149],"79":[1,1,3],"80":[4,1,68],"81":[1,1,110],"82":[4,1,10],"83":[3,1,57],"84":[3,1,58],"85":[3,1,47],"86":[3,1,33],"87":[5,1,39],"88":[5,1,44],"89":[3,1,434],"90":[2,1,3],"91":[4,2,80],"92":[1,2,76],"93":[1,1,3],"94":[4,1,82],"95":[1,1,244],"96":[1,1,3],"97":[4,1,70],"98":[1,1,125],"99":[4,1,11],"100":[3,1,69],"101":[3,1,53],"102":[3,1,62],"103":[3,1,41],"104":[5,1,39],"105":[5,1,42],"106":[1,1,3],"107":[4,1,72],"108":[1,1,129],"109":[4,1,11],"110":[3,1,63],"111":[3,1,53],"112":[4,1,53],"113":[3,1,38],"114":[5,1,39],"115":[5,1,42],"116":[1,1,4],"117":[1,1,21],"118":[1,1,206],"119":[3,1,513],"120":[3,1,47],"121":[2,1,113],"122":[1,2,1],"123":[1,3,106],"124":[1,2,12],"125":[1,2,33],"126":[4,2,114],"127":[2,2,36],"128":[1,2,542],"129":[2,1,54],"130":[1,2,87],"131":[1,2,83],"132":[2,1,41],"133":[1,2,112],"134":[2,2,109],"135":[2,1,77],"136":[1,2,70],"137":[1,2,135],"138":[2,1,71],"139":[2,1,56],"140":[2,1,132],"141":[3,2,77],"142":[1,1,76],"143":[1,1,147],"144":[1,1,268],"145":[1,1,188],"146":[2,1,44],"147":[1,2,67],"148":[1,2,404],"149":[4,1,75],"150":[4,1,187],"151":[4,1,85],"152":[2,1,149],"153":[2,1,111],"154":[2,1,58],"155":[1,1,38],"156":[1,1,74],"157":[1,1,82],"158":[1,1,147],"159":[2,1,136],"160":[2,1,59],"161":[4,2,287],"162":[6,2,403],"163":[7,2,63],"164":[4,2,140],"165":[2,1,138],"166":[2,2,137],"167":[3,2,117],"168":[3,2,68]},"averageFieldLength":[2.775147928994082,1.4556213017751474,110.8165680473373],"storedFields":{"0":{"title":"Full GeometryOps API documentation","titles":[]},"1":{"title":"apply and associated functions","titles":["Full GeometryOps API documentation"]},"2":{"title":"General geometry methods","titles":["Full GeometryOps API documentation"]},"3":{"title":"OGC methods","titles":["Full GeometryOps API documentation","General geometry methods"]},"4":{"title":"Other general methods","titles":["Full GeometryOps API documentation","General geometry methods"]},"5":{"title":"Barycentric coordinates","titles":["Full GeometryOps API documentation"]},"6":{"title":"Other methods","titles":["Full GeometryOps API documentation"]},"7":{"title":"20th April, 2024","titles":[]},"8":{"title":"29th Feb, 2024","titles":[]},"9":{"title":"To do","titles":["29th Feb, 2024"]},"10":{"title":"Done","titles":["29th Feb, 2024"]},"11":{"title":"Accurate accumulation","titles":[]},"12":{"title":"Predicates","titles":[]},"13":{"title":"Orient","titles":["Predicates"]},"14":{"title":"Dashboard","titles":["Predicates","Orient"]},"15":{"title":"Testing robust vs regular predicates","titles":["Predicates","Orient"]},"16":{"title":"Incircle","titles":["Predicates"]},"17":{"title":"Paradigms","titles":[]},"18":{"title":"apply","titles":["Paradigms"]},"19":{"title":"applyreduce","titles":["Paradigms","apply"]},"20":{"title":"fix and prepare","titles":["Paradigms"]},"21":{"title":"Peculiarities","titles":[]},"22":{"title":"What does apply return and why?","titles":["Peculiarities"]},"23":{"title":"Why do you want me to provide a target in set operations?","titles":["Peculiarities"]},"24":{"title":"_True and _False (or BoolsAsTypes)","titles":["Peculiarities"]},"25":{"title":"Introduction","titles":[]},"26":{"title":"Main concepts","titles":["Introduction"]},"27":{"title":"The apply paradigm","titles":["Introduction","Main concepts"]},"28":{"title":"What's this GeoInterface.Wrapper thing?","titles":["Introduction","Main concepts"]},"29":{"title":"GeometryOps.jl","titles":[]},"30":{"title":"Angles","titles":[]},"31":{"title":"What is angles?","titles":["Angles"]},"32":{"title":"Implementation","titles":["Angles"]},"33":{"title":"Area and signed area","titles":[]},"34":{"title":"What is area? What is signed area?","titles":["Area and signed area"]},"35":{"title":"Implementation","titles":["Area and signed area"]},"36":{"title":"Barycentric coordinates","titles":[]},"37":{"title":"Example","titles":["Barycentric coordinates"]},"38":{"title":"Barycentric-coordinate API","titles":["Barycentric coordinates"]},"39":{"title":"Buffer","titles":[]},"40":{"title":"Centroid","titles":[]},"41":{"title":"What is the centroid?","titles":["Centroid"]},"42":{"title":"Implementation","titles":["Centroid"]},"43":{"title":"Polygon clipping helpers","titles":[]},"44":{"title":"What is coverage?","titles":[]},"45":{"title":"Implementation","titles":[]},"46":{"title":"Polygon cutting","titles":[]},"47":{"title":"What is cut?","titles":["Polygon cutting"]},"48":{"title":"Implementation","titles":["Polygon cutting"]},"49":{"title":"Difference Polygon Clipping","titles":[]},"50":{"title":"Helper functions for Differences with Greiner and Hormann Polygon Clipping","titles":[]},"51":{"title":"Geometry Intersection","titles":[]},"52":{"title":"Helper functions for Intersections with Greiner and Hormann Polygon Clipping","titles":[]},"53":{"title":"If we want to inject adaptivity, we would do something like:","titles":[]},"54":{"title":"Union Polygon Clipping","titles":[]},"55":{"title":"Helper functions for Unions with Greiner and Hormann Polygon Clipping","titles":[]},"56":{"title":"Distance and signed distance","titles":[]},"57":{"title":"What is distance? What is signed distance?","titles":["Distance and signed distance"]},"58":{"title":"Implementation","titles":["Distance and signed distance"]},"59":{"title":"Equals","titles":[]},"60":{"title":"What is equals?","titles":["Equals"]},"61":{"title":"Implementation","titles":["Equals"]},"62":{"title":"Contains","titles":[]},"63":{"title":"What is contains?","titles":["Contains"]},"64":{"title":"Implementation","titles":["Contains"]},"65":{"title":"CoveredBy","titles":[]},"66":{"title":"What is coveredby?","titles":["CoveredBy"]},"67":{"title":"Implementation","titles":["CoveredBy"]},"68":{"title":"Convert features to geometries","titles":[]},"69":{"title":"Points coveredby geometries","titles":[]},"70":{"title":"Lines coveredby geometries","titles":[]},"71":{"title":"Rings covered by geometries","titles":[]},"72":{"title":"Polygons covered by geometries","titles":[]},"73":{"title":"Geometries coveredby multi-geometry/geometry collections","titles":[]},"74":{"title":"Multi-geometry/geometry collections coveredby geometries","titles":[]},"75":{"title":"Covers","titles":[]},"76":{"title":"What is covers?","titles":["Covers"]},"77":{"title":"Implementation","titles":["Covers"]},"78":{"title":"Crossing checks","titles":[]},"79":{"title":"Disjoint","titles":[]},"80":{"title":"What is disjoint?","titles":["Disjoint"]},"81":{"title":"Implementation","titles":["Disjoint"]},"82":{"title":"Convert features to geometries","titles":[]},"83":{"title":"Point disjoint geometries","titles":[]},"84":{"title":"Lines disjoint geometries","titles":[]},"85":{"title":"Rings disjoint geometries","titles":[]},"86":{"title":"Polygon disjoint geometries","titles":[]},"87":{"title":"Geometries disjoint multi-geometry/geometry collections","titles":[]},"88":{"title":"Multi-geometry/geometry collections coveredby geometries","titles":[]},"89":{"title":"Line-curve interaction","titles":[]},"90":{"title":"Intersection checks","titles":[]},"91":{"title":"What is intersects?","titles":["Intersection checks"]},"92":{"title":"Implementation","titles":["Intersection checks"]},"93":{"title":"Overlaps","titles":[]},"94":{"title":"What is overlaps?","titles":["Overlaps"]},"95":{"title":"Implementation","titles":["Overlaps"]},"96":{"title":"Touches","titles":[]},"97":{"title":"What is touches?","titles":["Touches"]},"98":{"title":"Implementation","titles":["Touches"]},"99":{"title":"Convert features to geometries","titles":[]},"100":{"title":"Point touches geometries","titles":[]},"101":{"title":"Lines touching geometries","titles":[]},"102":{"title":"Rings touch geometries","titles":[]},"103":{"title":"Polygons touch geometries","titles":[]},"104":{"title":"Geometries touch multi-geometry/geometry collections","titles":[]},"105":{"title":"Multi-geometry/geometry collections cross geometries","titles":[]},"106":{"title":"Within","titles":[]},"107":{"title":"What is within?","titles":["Within"]},"108":{"title":"Implementation","titles":["Within"]},"109":{"title":"Convert features to geometries","titles":[]},"110":{"title":"Points within geometries","titles":[]},"111":{"title":"Lines within geometries","titles":[]},"112":{"title":"Rings covered by geometries","titles":[]},"113":{"title":"Polygons within geometries","titles":[]},"114":{"title":"Geometries within multi-geometry/geometry collections","titles":[]},"115":{"title":"Multi-geometry/geometry collections within geometries","titles":[]},"116":{"title":"Orientation","titles":[]},"117":{"title":"isclockwise","titles":["Orientation"]},"118":{"title":"isconcave","titles":["Orientation"]},"119":{"title":"Polygonizing raster data","titles":[]},"120":{"title":"Not implemented yet","titles":[]},"121":{"title":"Primitive functions","titles":[]},"122":{"title":"Docstrings","titles":["Primitive functions"]},"123":{"title":"Functions","titles":["Primitive functions","Docstrings"]},"124":{"title":"Types","titles":["Primitive functions"]},"125":{"title":"Implementation","titles":["Primitive functions"]},"126":{"title":"What is apply?","titles":["Primitive functions"]},"127":{"title":"Embedding:","titles":["Primitive functions"]},"128":{"title":"Threading","titles":["Primitive functions"]},"129":{"title":"Closed Rings","titles":[]},"130":{"title":"Example","titles":["Closed Rings"]},"131":{"title":"Implementation","titles":["Closed Rings"]},"132":{"title":"Geometry Corrections","titles":[]},"133":{"title":"Interface","titles":["Geometry Corrections"]},"134":{"title":"Available corrections","titles":["Geometry Corrections"]},"135":{"title":"Intersecting Polygons","titles":[]},"136":{"title":"Example","titles":["Intersecting Polygons"]},"137":{"title":"Implementation","titles":["Intersecting Polygons"]},"138":{"title":"Extent embedding","titles":[]},"139":{"title":"Coordinate flipping","titles":[]},"140":{"title":"Geometry reprojection","titles":[]},"141":{"title":"Method error handling","titles":["Geometry reprojection"]},"142":{"title":"Segmentize","titles":[]},"143":{"title":"Examples","titles":["Segmentize"]},"144":{"title":"Benchmark","titles":["Segmentize"]},"145":{"title":"Implementation","titles":["Segmentize"]},"146":{"title":"Geometry simplification","titles":[]},"147":{"title":"Examples","titles":["Geometry simplification"]},"148":{"title":"Benchmark","titles":["Geometry simplification"]},"149":{"title":"Simplify with RadialDistance Algorithm","titles":[]},"150":{"title":"Simplify with DouglasPeucker Algorithm","titles":[]},"151":{"title":"Simplify with VisvalingamWhyatt Algorithm","titles":[]},"152":{"title":"Shared utils","titles":[]},"153":{"title":"Pointwise transformation","titles":[]},"154":{"title":"Tuple conversion","titles":[]},"155":{"title":"Types","titles":[]},"156":{"title":"TraitTarget","titles":["Types"]},"157":{"title":"BoolsAsTypes","titles":["Types"]},"158":{"title":"GEOS","titles":["Types"]},"159":{"title":"Utility functions","titles":[]},"160":{"title":"Creating Geometry","titles":[]},"161":{"title":"Creating and plotting geometries","titles":["Creating Geometry"]},"162":{"title":"Coordinate reference systems (CRS) and you","titles":["Creating Geometry"]},"163":{"title":"Creating a table with attributes and geometry","titles":["Creating Geometry"]},"164":{"title":"Saving your geospatial data","titles":["Creating Geometry"]},"165":{"title":"Spatial joins","titles":[]},"166":{"title":"Simple example","titles":["Spatial joins"]},"167":{"title":"Real-world example","titles":["Spatial joins"]},"168":{"title":"Enabling custom predicates","titles":["Spatial joins"]}},"dirtCount":0,"index":[["⋮",{"2":{"162":1}}],["θ",{"2":{"161":7,"162":8}}],["☁",{"2":{"161":1}}],["✈",{"2":{"161":1}}],["÷",{"2":{"128":2}}],["ϵ",{"2":{"52":5}}],["∘",{"2":{"52":1,"95":2,"119":2,"133":1,"148":2,"168":2}}],["⊻",{"2":{"43":1,"50":2}}],["≥",{"2":{"43":1,"89":2,"137":1,"150":1}}],["α≈1",{"2":{"52":1}}],["α≈0",{"2":{"52":1}}],["α2",{"2":{"43":4,"52":2}}],["α",{"2":{"43":3,"52":28,"89":7}}],["α1",{"2":{"43":4,"52":2}}],["β2",{"2":{"43":4,"52":2}}],["β",{"2":{"43":4,"52":28,"89":7}}],["β1",{"2":{"43":4,"52":2}}],["≤",{"2":{"43":5,"45":14,"89":6,"150":1,"152":1,"159":4}}],["^",{"2":{"162":1}}],["^3",{"2":{"162":1}}],["^n",{"2":{"118":1}}],["^2",{"2":{"42":2,"58":2}}],["^hormannpresentation",{"2":{"38":2}}],["∑λ",{"2":{"38":2}}],["∑i=2n",{"2":{"6":1}}],["`$",{"2":{"158":1}}],["`libgeos",{"2":{"158":1}}],["`linearring`",{"2":{"145":1}}],["`linearsegments`",{"2":{"145":1}}],["`linestring`",{"2":{"145":1}}],["`linestringtrait`",{"2":{"133":1}}],["`line2`",{"2":{"118":1}}],["`line1`",{"2":{"118":1}}],["`line",{"2":{"51":4}}],["`equatorial",{"2":{"144":2}}],["`extents",{"2":{"138":1}}],["`inf`",{"2":{"140":1}}],["`intersects`",{"2":{"92":1}}],["`intersectingpolygons`",{"2":{"49":1,"51":1,"54":1}}],["`prefilter",{"2":{"148":1}}],["`proj",{"2":{"140":1,"144":2}}],["`polgontrait`",{"2":{"128":1}}],["`polygontrait`",{"2":{"128":1,"133":1}}],["`polygonize`",{"2":{"119":2}}],["`polygon`",{"2":{"38":3}}],["`polys`",{"2":{"50":1}}],["`poly",{"2":{"50":3,"52":1,"55":1}}],["`pointrait`",{"2":{"148":1}}],["`pointtrait`",{"2":{"128":3,"133":1}}],["`point",{"2":{"89":3}}],["`point`",{"2":{"38":4,"58":1}}],["`point2f`",{"2":{"37":1}}],["`douglaspeucker`",{"2":{"148":1}}],["`d`",{"2":{"140":1}}],["`difference`",{"2":{"137":1}}],["`disjoint`",{"2":{"92":1}}],["`obj`",{"2":{"128":1,"153":1,"154":1}}],["`op`",{"2":{"128":2}}],["`+`",{"2":{"128":1}}],["`alg",{"2":{"158":1}}],["`alg`",{"2":{"152":1}}],["`always",{"2":{"140":1}}],["`application",{"2":{"133":1}}],["`apply`",{"2":{"128":1,"156":1}}],["`abstractgeometrytrait`",{"2":{"128":1}}],["`abstractarray`",{"2":{"128":1}}],["`abstractmatrix`",{"2":{"119":1}}],["`calc",{"2":{"125":1}}],["`crs`",{"2":{"125":1}}],["`components`",{"2":{"128":1}}],["`collect`",{"2":{"128":1}}],["`covers`",{"2":{"67":1,"77":1}}],["`coveredby`",{"2":{"67":1,"77":1}}],["`contains`",{"2":{"64":1,"108":1}}],["`union",{"2":{"119":2}}],["`unionintersectingpolygons`",{"2":{"137":1}}],["`unionintersectingpolygons",{"2":{"49":1,"50":2,"51":1,"52":2,"54":1,"55":2}}],["`ys`",{"2":{"119":1}}],["`flattening`",{"2":{"144":1}}],["`flattening",{"2":{"144":1}}],["`flatten`",{"2":{"128":1}}],["`f",{"2":{"128":1}}],["`featurecollectiontrait`",{"2":{"128":2}}],["`featurecollection`",{"2":{"119":2}}],["`featuretrait`",{"2":{"128":3}}],["`feature`s",{"2":{"119":1}}],["`f`",{"2":{"119":5,"128":6,"153":2,"158":1}}],["`false`",{"2":{"118":1,"119":1,"125":4,"140":1}}],["`fix",{"2":{"49":2,"50":2,"51":2,"52":2,"54":2,"55":2}}],["`within`",{"2":{"64":1,"108":1}}],["`weight`",{"2":{"38":1}}],["`geos`",{"2":{"158":3}}],["`geodesic`",{"2":{"144":1}}],["`geodesicsegments`",{"2":{"143":1,"144":1,"145":1}}],["`geointerface`",{"2":{"133":1}}],["`geointerface",{"2":{"128":2,"140":2}}],["`geometrycorrection`",{"2":{"131":1,"133":1,"137":2}}],["`geometry`",{"2":{"128":1,"140":2}}],["`geometrybasics",{"2":{"38":3}}],["`geom`",{"2":{"58":3,"128":1,"145":1}}],["`gi",{"2":{"119":1}}],["`g1`",{"2":{"58":1}}],["`tuple",{"2":{"159":1}}],["`tuple`s",{"2":{"154":1}}],["`tuple`",{"2":{"119":1,"154":1}}],["`time`",{"2":{"140":1}}],["`transform`",{"2":{"140":1}}],["`true`",{"2":{"67":1,"78":1,"81":2,"98":1,"108":1,"118":2,"119":1,"125":2,"140":1}}],["`threaded==true`",{"2":{"128":1}}],["`threaded`",{"2":{"125":1}}],["`tol`",{"2":{"148":2,"149":3,"150":2,"151":3,"152":4}}],["`to",{"2":{"52":1}}],["`target",{"2":{"140":3}}],["`target`",{"2":{"51":1,"128":4,"156":1}}],["`tables",{"2":{"128":1}}],["`taget`",{"2":{"49":1,"54":1}}],["`method",{"2":{"145":1}}],["`method`",{"2":{"38":3,"145":1}}],["`max",{"2":{"144":4,"145":2,"158":1}}],["`makie",{"2":{"119":1}}],["`multipointtrait`",{"2":{"128":1,"148":1}}],["`multipolygontrait`",{"2":{"128":1}}],["`multipolygon`",{"2":{"119":3}}],["`multipolygon",{"2":{"50":3,"52":3,"55":2}}],["`multipoly",{"2":{"50":7,"52":3,"55":3}}],["`minpoints`",{"2":{"119":2}}],["`number`",{"2":{"148":2,"152":3}}],["`namedtuple`",{"2":{"128":1}}],["`nothing`",{"2":{"43":1,"125":1}}],["`next",{"2":{"43":1}}],["`bool`",{"2":{"119":2}}],["`buffer`",{"2":{"39":1}}],["`barycentric",{"2":{"38":3}}],["`radialdistance`",{"2":{"148":1}}],["`ratio`",{"2":{"148":2,"152":3}}],["`reproject`",{"2":{"141":1}}],["`rebuild`",{"2":{"128":1}}],["`r`",{"2":{"38":1}}],["`rᵢ`",{"2":{"38":1}}],["`segmentize`",{"2":{"158":1}}],["`svector`",{"2":{"153":3}}],["`simplifyalg`",{"2":{"148":2}}],["`simplify",{"2":{"148":1}}],["`simplify`",{"2":{"148":2}}],["`source",{"2":{"140":3}}],["`s`",{"2":{"38":1}}],["`sᵢ`",{"2":{"38":2}}],["`s2`",{"2":{"38":1}}],["`s1`",{"2":{"38":1}}],["`hcat`",{"2":{"38":1}}],["`x`",{"2":{"128":1}}],["`xs`",{"2":{"119":1}}],["`x1",{"2":{"38":1}}],["`x1`",{"2":{"38":2}}],["`x2`",{"2":{"38":1}}],["`visvalingamwhyatt`",{"2":{"148":1}}],["`vector",{"2":{"140":1}}],["`vector`",{"2":{"119":1,"128":1}}],["`vᵢ`",{"2":{"38":1}}],["`v`",{"2":{"38":1}}],["`values`",{"2":{"38":1,"119":1}}],["`λs`",{"2":{"38":2}}],["`",{"2":{"38":2,"49":1,"50":2,"51":1,"52":3,"54":1,"55":2,"119":3,"128":1,"133":2,"140":2,"145":1,"148":3,"158":2,"159":1}}],["```jldoctest",{"2":{"48":1,"49":1,"51":1,"52":1,"54":1,"61":1,"64":1,"67":1,"77":1,"81":1,"92":1,"95":1,"98":1,"108":1,"118":1,"148":1}}],["```julia",{"2":{"6":2,"38":1,"78":1,"118":1,"128":1,"153":2,"156":1}}],["```math",{"2":{"38":1,"118":1}}],["```",{"2":{"11":1,"38":3,"48":1,"49":1,"51":1,"54":1,"61":1,"64":1,"67":1,"77":1,"81":1,"92":1,"95":1,"98":1,"108":1,"118":3,"119":11,"128":1,"148":1,"153":2,"159":1}}],["λ₁",{"2":{"38":2}}],["λn",{"2":{"36":1}}],["λ3",{"2":{"36":1}}],["λ2",{"2":{"36":2}}],["λ1",{"2":{"36":2}}],["λs",{"2":{"5":3,"6":4,"38":27}}],["π",{"2":{"32":1,"148":1}}],["δbay",{"2":{"52":3}}],["δbax",{"2":{"52":3}}],["δby",{"2":{"52":5}}],["δbx",{"2":{"52":5}}],["δb",{"2":{"52":2}}],["δay",{"2":{"52":5}}],["δax",{"2":{"52":5}}],["δa",{"2":{"52":2}}],["δintrs",{"2":{"43":2}}],["δy2",{"2":{"118":2}}],["δy1",{"2":{"118":2}}],["δyl",{"2":{"95":4}}],["δy",{"2":{"32":8,"45":3,"89":7}}],["δys",{"2":{"32":1}}],["δx2",{"2":{"118":2}}],["δx1",{"2":{"118":2}}],["δxl",{"2":{"95":4}}],["δx",{"2":{"32":9,"45":3,"89":7}}],["∈",{"2":{"14":1}}],["~",{"2":{"14":3}}],["$ratio",{"2":{"152":1}}],["$rectangle",{"2":{"144":2}}],["$number",{"2":{"152":1}}],["$name",{"2":{"29":2}}],["$min",{"2":{"152":1}}],["$douglas",{"2":{"148":1,"150":1}}],["$simplify",{"2":{"148":1,"149":1,"151":1}}],["$lg",{"2":{"144":1}}],["$lin",{"2":{"144":2}}],["$geom",{"2":{"148":8}}],["$geo",{"2":{"144":1}}],["$apply",{"2":{"128":1,"139":1,"140":1,"148":1}}],["$calc",{"2":{"125":1}}],["$crs",{"2":{"125":1,"138":1}}],["$tol",{"2":{"152":1}}],["$threaded",{"2":{"125":1}}],["$t",{"2":{"61":1,"128":4}}],["$target",{"2":{"50":1,"52":1,"55":1,"128":3}}],["$trait",{"2":{"48":1,"50":2,"52":2,"55":2}}],["$",{"2":{"13":4,"14":1,"38":4,"43":2,"119":3,"133":4,"145":1,"148":12,"158":1}}],["qy",{"2":{"13":2,"14":2}}],["qx",{"2":{"13":2,"14":2}}],["q",{"2":{"13":13,"14":12,"43":4}}],["queue",{"2":{"150":41}}],["questions",{"2":{"52":1}}],["quite",{"2":{"130":1,"167":1}}],["quick",{"2":{"4":1,"6":1,"38":1,"138":1,"147":1}}],["quality",{"2":{"6":1,"148":1}}],["quantity",{"2":{"6":1,"144":1}}],["quot",{"2":{"1":4,"6":10,"20":2,"43":8,"57":2,"58":2,"61":2,"76":4,"89":10,"126":2,"128":8,"142":6,"161":2,"166":2}}],["|=",{"2":{"89":4,"95":1}}],["||",{"2":{"32":2,"43":13,"45":8,"48":1,"51":1,"52":5,"54":1,"61":18,"78":2,"89":8,"95":1,"100":1,"119":7,"150":1,"152":3}}],["|",{"2":{"11":4,"89":1}}],["|>",{"2":{"11":8,"13":2,"128":1,"143":1,"144":1,"148":3,"167":2}}],["↩︎",{"2":{"6":1}}],["ᵢᵢᵢ₊₁ᵢᵢ₊₁ᵢᵢ₊₁tᵢ=det",{"2":{"6":1}}],["⋅",{"2":{"6":1,"38":1}}],["zone",{"2":{"162":1}}],["zoom",{"2":{"14":1}}],["zs",{"2":{"119":5}}],["zip",{"2":{"13":1,"14":1,"161":4,"162":2}}],["zeros",{"2":{"38":1,"45":1}}],["zero",{"2":{"4":6,"6":8,"35":11,"42":3,"43":4,"45":11,"52":22,"57":1,"58":3,"118":1,"128":1,"150":4}}],["z",{"2":{"4":1,"5":1,"6":2,"38":3,"61":3,"119":3,"139":1,"153":1,"154":1}}],["0e6",{"2":{"162":6}}],["0example",{"2":{"6":1}}],["097075198097933",{"2":{"162":1}}],["09707519809793252",{"2":{"162":2}}],["091887951911644",{"2":{"162":3}}],["0999933334666654",{"2":{"161":1}}],["09801605542096",{"2":{"161":1}}],["098016055420953",{"2":{"161":3}}],["09297443860091348",{"2":{"161":4}}],["09",{"2":{"37":1}}],["08506974233813636",{"2":{"162":2}}],["08",{"2":{"37":1}}],["062749678615475",{"2":{"162":1}}],["06274967861547665",{"2":{"162":2}}],["06592462566760626",{"2":{"161":1}}],["0650624499034016",{"2":{"161":4}}],["06",{"2":{"37":1}}],["02017324484778",{"2":{"162":1}}],["020173244847778715",{"2":{"162":2}}],["027886421973952302",{"2":{"161":4}}],["02",{"2":{"37":3}}],["04500741774392",{"2":{"162":1}}],["045007417743918",{"2":{"162":2}}],["049999166670833324",{"2":{"161":1}}],["0438052480035",{"2":{"161":1}}],["043805248003498",{"2":{"161":3}}],["04",{"2":{"37":6}}],["07518688541961",{"2":{"162":1}}],["075186885419612",{"2":{"162":2}}],["071",{"2":{"143":2,"144":2}}],["07",{"2":{"37":6,"143":6,"144":6}}],["009176636029576",{"2":{"162":1}}],["0091766360295773",{"2":{"162":2}}],["003135308800957",{"2":{"162":1}}],["0031353088009582475",{"2":{"162":2}}],["0035114210915891397",{"2":{"161":4}}],["006784125578492062",{"2":{"162":2}}],["0020133807972559925",{"2":{"162":2}}],["00839489109211",{"2":{"162":3}}],["008696",{"2":{"3":1,"6":3,"51":1,"52":1,"91":1,"92":1}}],["005465967083412071",{"2":{"161":4}}],["00111595449914",{"2":{"161":1}}],["001115954499138",{"2":{"161":3}}],["0010075412835199304",{"2":{"161":4}}],["001",{"2":{"148":1}}],["00085222666982",{"2":{"162":3}}],["000577332369005",{"2":{"162":1}}],["0005773323690041465",{"2":{"162":2}}],["000510363870095e6",{"2":{"162":2}}],["00025191811248184703",{"2":{"162":2}}],["000215611503127e6",{"2":{"162":2}}],["0007260527263e6",{"2":{"162":2}}],["000342160541625e6",{"2":{"162":2}}],["000124843834609e6",{"2":{"162":2}}],["000063948817746e6",{"2":{"162":2}}],["000026987852369e6",{"2":{"162":2}}],["000008144045314",{"2":{"162":1}}],["000007998400139e6",{"2":{"162":2}}],["000000999950001e6",{"2":{"162":2}}],["00001e6",{"2":{"162":1}}],["0004397316773170068",{"2":{"161":4}}],["000",{"2":{"148":1}}],["00",{"2":{"37":2}}],["053798628882221644",{"2":{"162":2}}],["05877989361332",{"2":{"161":1}}],["058779893613323",{"2":{"161":3}}],["05416726609360478",{"2":{"161":4}}],["05",{"2":{"37":1}}],["052704767595",{"2":{"15":1}}],["037564867762832",{"2":{"162":1}}],["03756486776283019",{"2":{"162":2}}],["031245035570328428",{"2":{"162":2}}],["033518309870985",{"2":{"162":3}}],["03503632062070827",{"2":{"161":4}}],["03",{"2":{"37":4}}],["01458815628695",{"2":{"162":3}}],["016044338630866517",{"2":{"162":2}}],["01592650896568995",{"2":{"161":1}}],["01597247419241532",{"2":{"161":4}}],["01908693278165",{"2":{"161":1}}],["019086932781654",{"2":{"161":3}}],["01098781325325",{"2":{"161":1}}],["010987813253244",{"2":{"161":3}}],["011814947665167774",{"2":{"161":4}}],["01362848005",{"2":{"15":1}}],["01",{"2":{"14":1,"37":1,"143":1,"144":1,"161":1,"162":2}}],["0^",{"2":{"13":2,"14":2}}],["0+2",{"2":{"13":2,"14":2}}],["0",{"2":{"3":35,"4":12,"6":190,"11":1,"13":5,"14":8,"15":32,"31":20,"32":3,"34":9,"35":4,"37":155,"38":2,"41":6,"42":6,"43":49,"44":13,"45":5,"47":22,"48":49,"49":42,"51":2,"52":21,"54":46,"55":2,"57":20,"58":2,"60":13,"61":18,"63":16,"66":6,"67":6,"76":6,"77":12,"78":9,"80":15,"89":37,"94":13,"95":9,"97":12,"98":11,"107":16,"118":21,"119":7,"130":24,"136":64,"137":4,"143":16,"144":13,"145":1,"148":11,"150":7,"152":4,"159":2,"161":129,"162":48,"166":13}}],[">=",{"2":{"38":6,"78":4,"95":1,"152":1}}],[">",{"2":{"1":1,"6":6,"11":2,"13":1,"15":2,"32":1,"38":1,"43":17,"45":3,"48":5,"49":1,"50":1,"52":2,"54":1,"55":3,"57":1,"61":1,"78":8,"89":10,"95":2,"118":4,"119":12,"128":5,"133":1,"137":3,"145":2,"148":1,"150":12,"152":3,"153":1,"159":1,"167":1}}],["914930257661865",{"2":{"162":1}}],["96875496442967",{"2":{"162":1}}],["961329",{"2":{"3":1,"6":3,"51":1,"52":1,"91":1,"92":1}}],["983955661369134",{"2":{"162":1}}],["9833",{"2":{"15":1}}],["9877550012664",{"2":{"161":1}}],["9840085315131",{"2":{"161":1}}],["98271048511609",{"2":{"161":1}}],["98661575256801",{"2":{"161":1}}],["99321587442151",{"2":{"162":1}}],["99375130197483",{"2":{"161":1}}],["997986619202745",{"2":{"162":1}}],["997750168744936",{"2":{"161":1}}],["997247091122496",{"2":{"161":1}}],["99600053330489",{"2":{"161":1}}],["991002699676024",{"2":{"161":1}}],["990022362600165",{"2":{"161":1}}],["99292997455441",{"2":{"161":1}}],["99533829767195",{"2":{"161":1}}],["99865616402829",{"2":{"161":1}}],["999999967681458e6",{"2":{"162":2}}],["999997707902938e6",{"2":{"162":2}}],["999987539891298e6",{"2":{"162":2}}],["999963474314044e6",{"2":{"162":2}}],["999919535736425e6",{"2":{"162":2}}],["999974634566875",{"2":{"161":1}}],["999849768598615e6",{"2":{"162":2}}],["999748081887518",{"2":{"162":1}}],["999748243174828e6",{"2":{"162":2}}],["999750002083324",{"2":{"161":1}}],["999609061508909e6",{"2":{"162":2}}],["999426363321033e6",{"2":{"162":2}}],["999194331880103e6",{"2":{"162":2}}],["99900003333289",{"2":{"161":1}}],["999565375483215",{"2":{"161":1}}],["9im",{"2":{"89":2,"165":1}}],["97976366505997",{"2":{"161":1}}],["9783069507679",{"2":{"161":1}}],["97",{"2":{"37":1}}],["946201371117777",{"2":{"162":1}}],["94",{"2":{"37":1}}],["92",{"2":{"37":1}}],["95770326033",{"2":{"15":1}}],["95",{"2":{"13":1,"14":1}}],["900",{"2":{"144":1}}],["90063612163",{"2":{"11":2}}],["90",{"2":{"31":9,"37":1}}],["909318372607",{"2":{"11":3}}],["9",{"2":{"1":1,"6":1,"89":2,"118":12,"143":1,"153":1}}],["873633668827033",{"2":{"162":1}}],["8135804051007",{"2":{"161":1}}],["813580405100698",{"2":{"161":3}}],["88",{"2":{"37":1}}],["86641841658641",{"2":{"161":1}}],["866418416586406",{"2":{"161":3}}],["86",{"2":{"37":1}}],["868447876892",{"2":{"15":2}}],["84",{"2":{"37":1}}],["821068835162155",{"2":{"162":1}}],["82",{"2":{"37":1}}],["800",{"2":{"37":1}}],["80000",{"2":{"15":5}}],["80",{"2":{"37":1}}],["80869813739",{"2":{"15":2}}],["856614689791036e",{"2":{"15":2}}],["83572303404496",{"2":{"6":2,"51":1,"52":1}}],["8",{"2":{"1":3,"6":9,"13":1,"14":1,"49":2,"54":4,"89":1,"119":3,"143":1,"153":3,"162":2}}],["karnataka",{"2":{"167":1}}],["kbn",{"2":{"11":2}}],["kinds",{"2":{"23":1}}],["kind",{"2":{"9":1,"119":1}}],["k",{"2":{"6":1,"14":6,"38":1,"43":5,"89":5,"161":5,"162":5}}],["kernel",{"2":{"145":4}}],["keepat",{"2":{"54":1,"137":2}}],["keep",{"2":{"43":3,"119":1,"137":14,"143":1,"166":1}}],["keeping",{"2":{"6":1,"128":1,"139":1}}],["keys",{"2":{"119":4}}],["key",{"2":{"6":1,"119":4,"158":5}}],["keyword",{"2":{"6":8,"23":1,"49":1,"51":1,"54":1,"125":6,"128":1,"138":2,"144":2,"158":4,"162":2}}],["keywords",{"2":{"1":2,"4":1,"6":10,"89":2,"119":1,"125":1,"128":1,"138":1,"139":2,"140":3,"148":8,"149":1,"150":1,"151":1,"152":1,"154":2}}],["known",{"2":{"45":2}}],["know",{"2":{"6":3,"32":2,"43":1,"45":1,"49":1,"51":1,"52":2,"54":1,"55":1,"128":1,"166":1}}],["kwargs",{"2":{"39":3,"45":1,"48":1,"49":3,"50":3,"51":4,"52":5,"54":3,"55":5,"133":2,"141":1,"144":1}}],["kwdef",{"2":{"29":1,"43":1,"144":1,"149":1,"150":1,"151":1}}],["kw",{"2":{"1":1,"6":11,"89":10,"119":20,"128":21,"139":3,"148":15,"151":1,"153":3,"154":3,"158":6}}],["json",{"2":{"164":3}}],["jstep",{"2":{"61":3}}],["jstart",{"2":{"61":7}}],["joined",{"2":{"166":4}}],["joins",{"0":{"165":1},"1":{"166":1,"167":1,"168":1},"2":{"165":3}}],["joinpath",{"2":{"148":2}}],["join",{"2":{"128":2,"165":4,"166":5,"168":1}}],["joining",{"2":{"6":2,"148":1,"165":1}}],["jpn",{"2":{"167":2}}],["jp",{"2":{"61":2}}],["jhole",{"2":{"61":2}}],["jh",{"2":{"55":5}}],["j+1",{"2":{"43":1,"119":1,"152":1}}],["j",{"2":{"43":24,"61":8,"78":9,"89":12,"118":2,"119":8,"152":2}}],["jet",{"2":{"37":1}}],["just",{"2":{"4":1,"6":1,"42":1,"43":2,"52":4,"55":1,"58":2,"119":1,"126":1,"128":3,"144":1,"165":1}}],["julialand",{"2":{"162":2}}],["julialines",{"2":{"34":1}}],["julialinearsegments",{"2":{"6":1}}],["juliahole",{"2":{"161":1}}],["juliaplot",{"2":{"162":2}}],["juliap1",{"2":{"161":1}}],["juliapoly",{"2":{"162":1}}],["juliapolygon3",{"2":{"162":1}}],["juliapolygon1",{"2":{"161":1}}],["juliapolygonize",{"2":{"6":1}}],["juliapolygon",{"2":{"6":1}}],["juliapoints",{"2":{"166":1}}],["juliapoint",{"2":{"161":1}}],["juliaxoffset",{"2":{"161":3,"162":1}}],["juliax",{"2":{"161":2}}],["juliaxrange",{"2":{"57":1}}],["julia$apply",{"2":{"154":1}}],["julia$threaded",{"2":{"138":1}}],["julia6",{"2":{"148":1}}],["julia```jldoctest",{"2":{"159":1}}],["julia```julia",{"2":{"119":1}}],["julia```",{"2":{"78":1,"156":1}}],["julia1",{"2":{"49":1,"51":1,"52":1,"54":1}}],["julia2",{"2":{"48":1}}],["juliabase",{"2":{"38":1,"58":4,"128":1,"158":1}}],["juliabarycentric",{"2":{"5":3,"6":3}}],["juliafig",{"2":{"161":1,"162":1}}],["juliafalse",{"2":{"118":1}}],["juliafunction",{"2":{"32":2,"38":3,"39":2,"42":1,"43":11,"45":2,"48":1,"50":1,"52":2,"55":1,"58":8,"89":6,"95":2,"100":1,"120":1,"128":5,"141":1,"144":1,"152":2}}],["juliafor",{"2":{"29":1,"128":2}}],["juliaflexijoins",{"2":{"168":1}}],["juliaflipped",{"2":{"121":1}}],["juliaflip",{"2":{"6":1}}],["juliaflatten",{"2":{"6":1,"123":1}}],["juliamy",{"2":{"168":1}}],["juliamultipoly",{"2":{"148":1}}],["juliamodule",{"2":{"29":1}}],["juliameanvalue",{"2":{"6":1}}],["juliagi",{"2":{"11":2}}],["juliago",{"2":{"11":1,"31":1,"34":1,"44":1,"60":1,"63":1,"66":1,"76":1,"80":1,"91":1,"94":1,"97":1,"107":1,"165":1}}],["juliageopoly1",{"2":{"162":1}}],["juliageointerface",{"2":{"159":1}}],["juliageo",{"2":{"6":2}}],["juliageodesicsegments",{"2":{"6":1}}],["juliageos",{"2":{"6":1}}],["juliaweighted",{"2":{"6":1}}],["juliawithin",{"2":{"3":1,"6":1}}],["juliaunwrap",{"2":{"6":1,"128":6}}],["juliaunion",{"2":{"6":1}}],["juliaunionintersectingpolygons",{"2":{"6":1,"134":1}}],["juliausing",{"2":{"6":1,"13":1,"14":1,"143":2,"144":1,"147":1,"148":1,"163":1}}],["juliascatter",{"2":{"166":1}}],["juliasource",{"2":{"162":2}}],["juliasimplify",{"2":{"6":1,"148":3}}],["juliasigned",{"2":{"4":2,"6":2}}],["juliasegmentize",{"2":{"6":1}}],["julias1",{"2":{"6":1}}],["juliavisvalingamwhyatt",{"2":{"6":1}}],["juliaring3",{"2":{"162":1}}],["juliaring1",{"2":{"161":1}}],["juliar",{"2":{"161":2,"162":2}}],["juliareconstruct",{"2":{"6":1,"123":1}}],["juliarebuild",{"2":{"6":1,"123":1}}],["juliareproject",{"2":{"1":1}}],["juliaradialdistance",{"2":{"6":1}}],["juliadf",{"2":{"163":1}}],["juliadestination",{"2":{"162":1}}],["juliadouglaspeucker",{"2":{"6":1}}],["juliadifference",{"2":{"6":1}}],["juliadiffintersectingpolygons",{"2":{"6":1,"134":1}}],["juliadistance",{"2":{"4":1,"6":1}}],["juliadisjoint",{"2":{"3":1,"6":1}}],["juliaexport",{"2":{"30":1,"33":1,"36":1,"40":1,"46":1,"49":1,"51":1,"54":1,"56":1,"59":1,"62":1,"65":1,"75":1,"79":1,"90":1,"93":1,"96":1,"106":1,"116":1,"119":1,"121":1,"129":1,"132":1,"135":1,"140":1,"142":1,"148":1,"155":1}}],["juliaend",{"2":{"58":1}}],["juliaenforce",{"2":{"6":1}}],["juliaenum",{"2":{"6":2}}],["juliaembed",{"2":{"4":1,"6":1}}],["juliaequals",{"2":{"4":15,"6":15,"43":1}}],["juliaaccuratearithmetic",{"2":{"11":2}}],["juliaabstract",{"2":{"6":3,"133":1,"134":1,"144":1,"157":1}}],["juliaangles",{"2":{"4":1,"6":1}}],["juliaarea",{"2":{"4":1,"6":1}}],["juliaapplyreduce",{"2":{"1":1,"6":1}}],["juliaapply",{"2":{"1":1,"6":1,"18":1}}],["juliacent",{"2":{"41":1}}],["juliacentroid",{"2":{"4":1,"6":3}}],["juliacut",{"2":{"6":1}}],["juliaclosedring",{"2":{"6":1,"134":1}}],["juliaconst",{"2":{"32":1,"35":1,"38":1,"43":1,"45":2,"58":1,"67":1,"81":1,"98":1,"108":1,"125":1}}],["juliacontains",{"2":{"3":1,"6":1}}],["juliacoverage",{"2":{"6":1}}],["juliacovers",{"2":{"3":1,"6":1}}],["juliacoveredby",{"2":{"3":1,"6":1}}],["juliatrue",{"2":{"61":1,"64":1,"67":1,"77":1,"81":1,"92":1,"95":1,"98":1,"108":1,"118":1}}],["juliatraittarget",{"2":{"6":2,"156":1}}],["juliatransform",{"2":{"1":1,"6":1}}],["juliatuples",{"2":{"6":1}}],["juliat",{"2":{"6":1}}],["juliatouches",{"2":{"3":1,"6":1}}],["juliaoverlaps",{"2":{"3":9,"6":9}}],["juliainnerjoin",{"2":{"167":1}}],["juliaintersection",{"2":{"6":2}}],["juliaintersects",{"2":{"3":1}}],["juliaisconcave",{"2":{"6":1}}],["juliaisclockwise",{"2":{"6":1}}],["juliaimport",{"2":{"1":1,"3":9,"4":1,"6":18,"11":1,"31":1,"34":1,"41":1,"44":1,"47":1,"57":1,"60":1,"63":1,"66":1,"76":1,"80":1,"91":1,"94":1,"97":1,"107":1,"130":2,"136":2,"143":1,"164":4,"166":1,"167":1}}],["julia",{"2":{"3":1,"6":4,"9":1,"15":1,"25":1,"29":1,"32":4,"35":10,"38":8,"42":19,"43":60,"45":18,"48":10,"49":6,"50":1,"51":5,"52":29,"54":6,"55":4,"57":1,"58":4,"61":15,"64":1,"68":1,"69":5,"70":1,"71":1,"72":2,"73":1,"74":1,"77":1,"78":3,"82":1,"83":3,"84":1,"85":1,"86":1,"87":1,"88":1,"89":50,"92":1,"95":7,"99":1,"100":3,"101":1,"102":1,"103":1,"104":1,"105":1,"109":1,"110":3,"111":1,"112":1,"113":2,"114":1,"115":1,"118":9,"119":40,"120":2,"128":63,"131":5,"133":1,"137":3,"138":1,"139":1,"140":1,"144":1,"145":2,"148":1,"149":2,"150":15,"151":3,"153":1,"154":1,"155":1,"156":1,"158":4,"159":1,"160":2,"162":2,"164":2,"165":1,"166":1}}],["julia>",{"2":{"1":5,"6":7,"118":3,"153":7}}],["juliajulia>",{"2":{"1":2,"6":3}}],["jl`",{"2":{"140":1,"158":1}}],["jldoctest",{"2":{"6":1}}],["jl",{"0":{"29":1},"2":{"1":10,"4":1,"6":13,"10":2,"11":1,"22":2,"25":2,"29":41,"32":1,"35":1,"38":1,"39":3,"42":1,"43":1,"45":1,"48":1,"50":1,"52":1,"53":1,"55":1,"58":1,"61":1,"64":1,"74":1,"77":1,"78":1,"88":1,"89":1,"92":1,"95":1,"105":1,"115":1,"118":2,"119":1,"120":1,"123":1,"128":3,"131":1,"134":1,"137":1,"138":2,"139":1,"140":4,"141":3,"142":1,"144":3,"145":2,"148":2,"152":1,"153":6,"154":2,"157":1,"158":2,"159":1,"162":1,"165":1}}],["+5000000",{"2":{"162":1}}],["+proj=natearth2",{"2":{"162":2}}],["+=",{"2":{"35":2,"38":11,"42":6,"43":17,"45":10,"48":1,"61":1,"78":1,"89":5,"118":1,"137":2,"150":4,"159":3}}],["+",{"2":{"1":1,"6":2,"13":1,"14":1,"32":4,"35":1,"38":20,"42":10,"43":15,"45":7,"48":1,"52":10,"58":3,"61":2,"78":2,"89":6,"118":6,"119":2,"137":3,"145":2,"150":3,"151":2,"152":2,"161":6,"162":5}}],["yticklabelsvisible",{"2":{"162":1}}],["york",{"2":{"167":1}}],["yoffset",{"2":{"161":7,"162":2}}],["your",{"0":{"164":1},"2":{"18":1,"39":1,"119":1,"121":1,"141":1,"144":1,"163":1,"164":1,"168":2}}],["you",{"0":{"23":1,"162":1},"2":{"1":1,"4":1,"5":2,"6":10,"9":1,"11":1,"17":1,"18":5,"23":1,"27":2,"32":1,"35":1,"38":8,"39":1,"42":1,"49":1,"51":1,"54":1,"121":1,"130":1,"136":1,"141":1,"143":1,"144":1,"145":1,"153":1,"156":1,"162":1,"163":2,"164":3,"166":2,"167":3,"168":4}}],["y=y",{"2":{"159":1}}],["yvec",{"2":{"119":4}}],["ybounds",{"2":{"119":4}}],["yhalf",{"2":{"119":3}}],["ylast",{"2":{"58":3}}],["yfirst",{"2":{"58":5}}],["y0tfj",{"2":{"162":1}}],["y0",{"2":{"58":5}}],["yw",{"2":{"45":4}}],["yeild",{"2":{"52":1}}],["ye",{"2":{"45":4}}],["yet",{"0":{"120":1},"2":{"29":1,"38":1,"48":1,"50":1,"52":1,"55":1,"61":1,"119":1,"120":1,"133":2,"167":1}}],["y2",{"2":{"42":2,"45":18,"58":7,"78":10,"89":5,"95":4,"119":5,"145":6,"159":2}}],["y1",{"2":{"42":2,"45":22,"58":7,"78":11,"89":6,"95":5,"119":5,"145":7,"159":2}}],["yield",{"2":{"144":1}}],["yind+1",{"2":{"119":1}}],["yind",{"2":{"119":2}}],["yinterior",{"2":{"42":2}}],["yi+yi−1",{"2":{"6":1}}],["ycentroid",{"2":{"42":13}}],["yrange",{"2":{"37":3,"57":3}}],["yautolimits",{"2":{"37":2}}],["yp2",{"2":{"32":4}}],["ys",{"2":{"6":3,"119":30}}],["ymax",{"2":{"6":1,"44":2,"45":48}}],["ymin",{"2":{"6":1,"44":2,"45":49}}],["y",{"2":{"1":2,"4":1,"6":4,"13":9,"14":10,"32":8,"35":2,"37":8,"41":1,"42":10,"43":6,"44":1,"45":8,"50":6,"52":8,"57":2,"58":7,"61":3,"78":21,"89":16,"95":7,"118":10,"121":2,"128":1,"139":4,"140":1,"145":2,"152":1,"153":2,"154":2,"159":7,"161":8,"162":4,"165":1}}],["75",{"2":{"57":2,"63":1,"80":1,"107":1}}],["78",{"2":{"37":1}}],["74",{"2":{"37":1}}],["72",{"2":{"37":1}}],["726711609794",{"2":{"15":1}}],["76",{"2":{"37":1}}],["76085",{"2":{"15":1}}],["768946",{"2":{"3":1,"6":3,"51":1,"52":1,"91":1,"92":1}}],["70440582002419",{"2":{"161":1}}],["704405820024185",{"2":{"161":3}}],["704377648755",{"2":{"15":2}}],["700",{"2":{"14":1}}],["700454",{"2":{"6":1,"147":1,"148":1}}],["701141",{"2":{"6":1,"147":1,"148":1}}],["70",{"2":{"6":20,"37":1,"147":20,"148":20,"161":20}}],["738281",{"2":{"3":1,"6":3,"51":1,"52":1,"91":1,"92":1}}],["7",{"2":{"1":5,"6":5,"89":1,"128":1,"143":4,"144":4,"153":4,"162":1}}],["65533525026046",{"2":{"161":1}}],["655335250260467",{"2":{"161":3}}],["659942",{"2":{"6":1,"147":1,"148":1}}],["6area",{"2":{"42":2}}],["66",{"2":{"37":1}}],["668869",{"2":{"6":1,"147":1,"148":1}}],["64744840486518",{"2":{"162":3}}],["64",{"2":{"37":1,"143":2,"144":2}}],["646209",{"2":{"6":1,"147":1,"148":1}}],["629",{"2":{"162":1}}],["62",{"2":{"37":1}}],["624923",{"2":{"6":1,"147":1,"148":1}}],["61366192682",{"2":{"15":1}}],["614624",{"2":{"6":1,"147":1,"148":1}}],["605000000000004",{"2":{"143":2}}],["60",{"2":{"37":1,"143":2}}],["60000",{"2":{"15":3}}],["609817",{"2":{"6":1,"147":1,"148":1}}],["603637",{"2":{"6":2,"147":2,"148":2}}],["68",{"2":{"37":1}}],["682601",{"2":{"6":1,"147":1,"148":1}}],["683975",{"2":{"6":1,"147":1,"148":1}}],["69159119078359",{"2":{"162":3}}],["694274",{"2":{"6":1,"147":1,"148":1}}],["697021",{"2":{"6":1,"147":1,"148":1}}],["639343",{"2":{"6":1,"147":1,"148":1}}],["6",{"2":{"1":12,"3":4,"6":23,"49":3,"54":3,"89":1,"95":4,"128":3,"148":1,"153":9,"162":2}}],["51695367760999",{"2":{"162":1}}],["516953677609987",{"2":{"162":2}}],["51030066635026",{"2":{"161":4}}],["5e6",{"2":{"162":2}}],["55715336218991",{"2":{"162":1}}],["557153362189904",{"2":{"162":2}}],["55",{"2":{"161":3}}],["55494217175954",{"2":{"161":4}}],["57",{"2":{"143":4,"144":4}}],["57725",{"2":{"15":2}}],["5x",{"2":{"128":1}}],["563198",{"2":{"52":1}}],["56",{"2":{"37":1}}],["54",{"2":{"37":1,"161":19}}],["50",{"2":{"37":1,"143":4,"144":4,"161":3}}],["500000",{"2":{"162":1}}],["50000",{"2":{"15":1}}],["500",{"2":{"14":1,"162":1}}],["5d",{"2":{"25":1}}],["52",{"2":{"37":1}}],["52521",{"2":{"15":1}}],["52709",{"2":{"15":2}}],["594711",{"2":{"6":1,"147":1,"148":1}}],["590591",{"2":{"6":1,"147":1,"148":1}}],["595397",{"2":{"6":1,"147":1,"148":1}}],["535",{"2":{"143":4}}],["5355",{"2":{"143":2}}],["53333",{"2":{"15":4}}],["53",{"2":{"6":10,"143":2,"159":10}}],["58",{"2":{"37":1}}],["58059",{"2":{"15":2}}],["587158",{"2":{"6":2,"147":2,"148":2}}],["58375366067548",{"2":{"6":2,"51":1,"52":1}}],["584961",{"2":{"3":1,"6":3,"51":1,"52":1,"91":1,"92":1}}],["5",{"2":{"1":29,"3":4,"4":8,"6":84,"13":1,"37":1,"47":5,"48":8,"49":16,"54":18,"57":8,"61":8,"89":1,"95":4,"119":1,"128":2,"143":1,"144":1,"153":27,"161":32,"162":25,"168":1}}],["4983491639274692e6",{"2":{"162":2}}],["4986507085647392e6",{"2":{"162":2}}],["497205585568957e6",{"2":{"162":2}}],["4976022389592e6",{"2":{"162":2}}],["4957639801366436e6",{"2":{"162":2}}],["4940253560034204e6",{"2":{"162":2}}],["4946113281484335e6",{"2":{"162":2}}],["491990928929295e6",{"2":{"162":2}}],["4904357734399722e6",{"2":{"162":2}}],["4926709788709967e6",{"2":{"162":2}}],["4962554647802354e6",{"2":{"162":2}}],["499984780817334e6",{"2":{"162":2}}],["4997392479570867e6",{"2":{"162":2}}],["4991939151049731e6",{"2":{"162":2}}],["4994001399837343e6",{"2":{"162":2}}],["4998500087497458e6",{"2":{"162":2}}],["49",{"2":{"119":1}}],["43541888381864",{"2":{"162":3}}],["4326",{"2":{"162":5}}],["43787",{"2":{"15":1}}],["439295815226",{"2":{"15":1}}],["434306",{"2":{"6":1,"147":1,"148":1}}],["4896621210021754e6",{"2":{"162":2}}],["489271",{"2":{"6":4,"159":4}}],["4870405593989636e6",{"2":{"162":2}}],["4879072738504685e6",{"2":{"162":2}}],["484003",{"2":{"118":4}}],["482551",{"2":{"118":4}}],["48268",{"2":{"15":1}}],["48",{"2":{"37":1}}],["48001",{"2":{"15":1}}],["45",{"2":{"37":2,"118":12,"161":2}}],["450",{"2":{"13":1}}],["458369",{"2":{"6":2,"147":2,"148":2}}],["42004014766201",{"2":{"161":1}}],["420040147662014",{"2":{"161":3}}],["4219350464667047e",{"2":{"161":4}}],["42",{"2":{"13":1,"14":1,"37":3}}],["426283",{"2":{"6":1,"147":1,"148":1}}],["400",{"2":{"37":3}}],["40000",{"2":{"15":1}}],["40",{"2":{"14":1,"37":3}}],["406224",{"2":{"6":1,"147":1,"148":1}}],["404504",{"2":{"6":1,"147":1,"148":1}}],["41544701408748197",{"2":{"161":1}}],["41",{"2":{"37":1,"162":20}}],["41878",{"2":{"15":1}}],["414248",{"2":{"6":1,"147":1,"148":1}}],["419406",{"2":{"6":1,"147":1,"148":1}}],["4493927459900552",{"2":{"161":1}}],["44121252392",{"2":{"15":1}}],["44",{"2":{"14":1,"37":2}}],["442901",{"2":{"6":1,"147":1,"148":1}}],["446339",{"2":{"6":1,"147":1,"148":1}}],["477985",{"2":{"118":4}}],["47",{"2":{"37":3}}],["473835",{"2":{"6":1,"147":1,"148":1}}],["472117",{"2":{"6":2,"147":2,"148":2}}],["46525251631344455",{"2":{"161":1}}],["465816",{"2":{"6":1,"147":1,"148":1}}],["46",{"2":{"37":3}}],["468107",{"2":{"6":1,"147":1,"148":1}}],["464547",{"2":{"6":6,"159":6}}],["4",{"2":{"1":11,"3":4,"6":15,"9":2,"13":2,"14":1,"31":1,"45":1,"64":1,"77":1,"81":1,"89":2,"108":1,"118":1,"128":3,"143":1,"150":1,"153":8,"162":20,"164":2}}],["3585",{"2":{"143":1}}],["35",{"2":{"37":3}}],["354492",{"2":{"3":1,"6":3,"51":1,"52":1,"91":1,"92":1}}],["38042741557976",{"2":{"161":1}}],["380427415579764",{"2":{"161":3}}],["38",{"2":{"37":3}}],["3655999675063154",{"2":{"161":1}}],["36",{"2":{"37":2}}],["360",{"2":{"32":1}}],["36022",{"2":{"15":1}}],["327284472232776",{"2":{"162":3}}],["32610",{"2":{"162":3}}],["32",{"2":{"37":3}}],["37",{"2":{"37":5}}],["3497142366876638",{"2":{"161":1}}],["34",{"2":{"37":3}}],["31571636123306385",{"2":{"161":1}}],["31",{"2":{"37":2}}],["30151010318639",{"2":{"161":4}}],["30527612515520186",{"2":{"161":4}}],["300",{"2":{"57":1}}],["30",{"2":{"14":2,"37":3,"161":2}}],["3376428491230612",{"2":{"161":4}}],["3390",{"2":{"89":1}}],["33333333333",{"2":{"15":1}}],["333333333336",{"2":{"15":3}}],["33",{"2":{"6":20,"147":20,"148":20}}],["3d",{"2":{"4":1,"6":1,"38":2,"61":1,"128":1,"142":1}}],["3",{"2":{"1":13,"3":4,"5":1,"6":29,"14":2,"38":13,"41":6,"43":1,"49":6,"54":5,"60":1,"64":1,"77":1,"81":1,"89":2,"94":1,"108":1,"119":7,"128":3,"136":16,"143":4,"148":3,"150":2,"152":1,"153":11,"162":2,"166":1}}],["39945867303846",{"2":{"162":3}}],["3995734698458635",{"2":{"161":1}}],["399918",{"2":{"6":2,"147":2,"148":2}}],["394759",{"2":{"6":1,"147":1,"148":1}}],["392466",{"2":{"6":1,"147":1,"148":1}}],["395332",{"2":{"6":1,"147":1,"148":1}}],["39",{"0":{"28":1},"2":{"0":1,"4":5,"6":20,"7":1,"9":2,"17":2,"18":1,"19":1,"23":1,"27":1,"32":1,"34":1,"35":1,"36":1,"37":3,"38":2,"41":6,"42":3,"43":28,"45":1,"47":1,"48":1,"50":1,"51":4,"52":1,"55":2,"58":4,"61":7,"66":1,"76":2,"83":2,"89":19,"95":1,"97":1,"100":2,"119":3,"121":2,"123":3,"124":1,"128":5,"134":6,"135":1,"143":6,"144":1,"146":1,"148":2,"156":2,"157":3,"158":6,"160":1,"161":6,"162":10,"163":4,"164":5,"165":1,"167":1,"168":2}}],["2pi",{"2":{"161":1,"162":2}}],["2nd",{"2":{"52":6}}],["2335447787454",{"2":{"162":1}}],["233544778745394",{"2":{"162":2}}],["23",{"2":{"37":3,"89":1}}],["23699059147",{"2":{"15":1}}],["28",{"2":{"37":2}}],["28083",{"2":{"15":2}}],["2658011835867806",{"2":{"161":1}}],["26745668457025",{"2":{"161":1}}],["267456684570245",{"2":{"161":3}}],["26",{"2":{"37":5,"89":2}}],["24989584635339165",{"2":{"161":1}}],["24279488312757858",{"2":{"161":4}}],["24",{"2":{"37":7,"89":1,"162":9}}],["274364",{"2":{"49":1,"51":1,"54":1}}],["274363",{"2":{"49":1,"51":1,"54":1}}],["27",{"2":{"37":2}}],["275543",{"2":{"6":6,"159":6}}],["2d",{"2":{"25":1,"142":1}}],["2^",{"2":{"14":1}}],["2158594260436434",{"2":{"161":1}}],["215118",{"2":{"6":4,"159":4}}],["21664550952386064",{"2":{"161":4}}],["21",{"2":{"37":4,"89":2,"162":40}}],["21427",{"2":{"11":5}}],["295828190107045",{"2":{"162":1}}],["29582819010705",{"2":{"162":2}}],["299820032397223",{"2":{"161":1}}],["29",{"2":{"37":3}}],["29th",{"0":{"8":1},"1":{"9":1,"10":1}}],["298",{"2":{"6":2,"144":2}}],["20340",{"2":{"164":1}}],["20682326747054",{"2":{"162":1}}],["206823267470536",{"2":{"162":2}}],["20093817218219",{"2":{"161":1}}],["200938172182195",{"2":{"161":3}}],["2018",{"2":{"89":1}}],["2017",{"2":{"6":1,"38":1}}],["20",{"2":{"37":3,"89":2,"161":60,"162":1}}],["2024",{"0":{"7":1,"8":1},"1":{"9":1,"10":1}}],["20th",{"0":{"7":1}}],["25",{"2":{"37":3,"63":1,"89":1,"107":1,"162":12}}],["258",{"2":{"11":1}}],["25px",{"2":{"6":2}}],["257223563`",{"2":{"144":1}}],["257223563",{"2":{"6":2,"144":1}}],["22",{"2":{"37":3,"89":1}}],["22168",{"2":{"3":1,"6":3,"51":1,"52":1,"91":1,"92":1}}],["224758",{"2":{"3":1,"6":3,"51":1,"52":1,"91":1,"92":1}}],["2",{"2":{"1":19,"3":9,"5":1,"6":49,"13":1,"14":1,"15":3,"25":2,"32":3,"35":1,"37":6,"38":32,"41":2,"42":4,"43":10,"44":6,"45":7,"47":1,"48":2,"52":2,"54":1,"57":1,"58":3,"61":4,"64":2,"77":2,"78":2,"80":2,"81":3,"89":11,"108":2,"118":2,"119":23,"128":5,"137":1,"145":1,"148":5,"150":7,"151":7,"152":5,"153":18,"159":11,"161":7,"162":16,"163":1}}],["1st",{"2":{"52":6}}],["198232937815632",{"2":{"162":1}}],["19823293781563178",{"2":{"162":2}}],["1999466709331708",{"2":{"161":1}}],["1998",{"2":{"49":1,"51":1,"54":1}}],["19",{"2":{"37":2,"89":2}}],["110m",{"2":{"162":2}}],["110",{"2":{"162":1}}],["11591614996189725",{"2":{"161":1}}],["11966707868197",{"2":{"161":1}}],["119667078681967",{"2":{"161":3}}],["11",{"2":{"15":2,"37":2,"89":1}}],["1145",{"2":{"49":1,"51":1,"54":1}}],["114",{"2":{"7":1}}],["16589608273778408",{"2":{"161":1}}],["165644",{"2":{"118":2}}],["16692537029320365",{"2":{"161":4}}],["166644",{"2":{"118":2}}],["163434",{"2":{"118":2}}],["169356",{"2":{"118":2}}],["164434",{"2":{"118":2}}],["16111",{"2":{"15":1}}],["16",{"2":{"13":1,"14":1,"37":2,"89":2}}],["180",{"2":{"32":1,"118":1}}],["18593721105",{"2":{"15":1}}],["18",{"2":{"13":1,"14":1,"37":3,"89":2}}],["1em",{"2":{"6":2}}],["1px",{"2":{"6":2}}],["13309630561615",{"2":{"162":3}}],["13401805979",{"2":{"15":2}}],["13",{"2":{"6":3,"37":1,"49":1,"54":2,"89":1}}],["10n",{"2":{"162":1}}],["10832215707812454",{"2":{"161":4}}],["10m",{"2":{"148":1}}],["10^9",{"2":{"13":1}}],["1000000",{"2":{"162":1}}],["1000",{"2":{"13":2,"143":2,"162":1,"166":2}}],["100",{"2":{"6":2,"14":3,"119":2}}],["10",{"2":{"6":14,"11":1,"34":1,"37":5,"47":4,"48":10,"49":2,"51":1,"54":2,"60":2,"89":3,"94":2,"144":1,"148":3,"161":1}}],["14182952335953",{"2":{"162":1}}],["14182952335952814",{"2":{"162":2}}],["14404531208901e",{"2":{"162":2}}],["1499775010124783",{"2":{"161":1}}],["1464721641710074",{"2":{"161":4}}],["14",{"2":{"3":1,"6":5,"37":2,"51":2,"52":2,"89":1,"91":1,"92":1,"143":2,"144":2}}],["15488729606723",{"2":{"162":3}}],["15",{"2":{"3":1,"6":4,"37":1,"47":1,"48":1,"51":1,"52":1,"89":1,"91":1,"92":1}}],["17893116483784577",{"2":{"162":2}}],["17289902010158",{"2":{"161":1}}],["172899020101585",{"2":{"161":3}}],["170356",{"2":{"118":2}}],["17",{"2":{"3":1,"6":3,"37":3,"51":1,"52":1,"89":2,"91":1,"92":1}}],["125",{"2":{"6":2,"51":1,"52":1}}],["127",{"2":{"3":1,"6":3,"51":1,"52":1,"91":1,"92":1,"162":1}}],["123",{"2":{"3":1,"6":3,"51":1,"52":1,"91":1,"92":1}}],["12636633117296836",{"2":{"162":2}}],["126",{"2":{"3":1,"6":3,"51":1,"52":1,"91":1,"92":1}}],["12",{"2":{"3":1,"6":3,"37":2,"51":1,"52":1,"89":1,"91":1,"92":1,"167":1}}],["124",{"2":{"3":1,"6":3,"51":1,"52":1,"91":1,"92":1}}],["1",{"2":{"1":8,"3":38,"6":63,"13":1,"14":4,"15":1,"31":4,"32":15,"34":7,"36":2,"37":11,"38":16,"41":4,"42":7,"43":72,"44":9,"45":15,"47":1,"48":10,"50":3,"52":9,"54":4,"55":11,"57":7,"58":6,"61":16,"63":2,"64":6,"66":2,"67":2,"76":2,"77":8,"78":12,"80":2,"81":5,"89":38,"95":6,"97":4,"98":5,"100":1,"107":2,"108":6,"118":16,"119":25,"128":9,"130":12,"131":2,"137":9,"144":1,"145":4,"148":8,"150":15,"151":3,"152":15,"153":6,"159":9,"161":8,"162":56,"163":1,"166":8,"167":3}}],["human",{"2":{"164":1}}],["hypot",{"2":{"145":1}}],["h2",{"2":{"89":6}}],["h1",{"2":{"89":11}}],["hm",{"2":{"37":2}}],["h",{"2":{"32":2,"43":2,"55":8}}],["high",{"2":{"164":1}}],["highest",{"2":{"162":1}}],["hit",{"2":{"43":1,"128":5}}],["hits",{"2":{"18":1}}],["hidedecorations",{"2":{"37":2}}],["hinter",{"2":{"29":3,"39":1,"141":1,"144":1}}],["hint",{"2":{"29":3,"39":1,"144":1}}],["hinge=2",{"2":{"51":1}}],["hinge`",{"2":{"51":1}}],["hinge",{"2":{"6":1,"43":1,"52":13,"89":15}}],["hist",{"2":{"13":1}}],["histogram",{"2":{"13":1}}],["href=",{"2":{"6":2}}],["https",{"2":{"6":2,"49":1,"51":1,"52":1,"54":1,"89":2,"148":1,"150":1}}],["hcat",{"2":{"6":1}}],["heavily",{"2":{"128":1}}],["heatmap",{"2":{"13":5,"14":6,"37":2,"57":2,"119":1}}],["help",{"2":{"157":1}}],["helpers",{"0":{"43":1},"2":{"78":1,"95":1}}],["helper",{"0":{"50":1,"52":1,"55":1},"2":{"42":1,"43":1,"48":1}}],["helps",{"2":{"28":1}}],["held",{"2":{"1":1,"6":1,"128":1}}],["here",{"2":{"6":2,"9":1,"13":1,"14":1,"20":1,"38":1,"52":1,"78":1,"119":2,"128":5,"130":1,"144":1,"162":2,"165":2,"166":3}}],["hours",{"2":{"167":1}}],["hood",{"2":{"164":1}}],["hook",{"2":{"6":1,"148":1}}],["home",{"2":{"162":1}}],["horizontal",{"2":{"45":1,"52":1,"119":1,"148":1}}],["hormann",{"0":{"50":1,"52":1,"55":1},"2":{"6":2,"38":2,"43":3,"48":2,"49":1,"51":1,"54":1}}],["how",{"2":{"6":2,"34":1,"38":1,"43":1,"52":1,"61":1,"119":2,"123":1,"128":1,"139":1,"148":1,"162":1,"164":1,"165":2,"166":2,"167":1,"168":1}}],["however",{"2":{"3":1,"6":2,"32":1,"38":1,"42":1,"43":1,"52":1,"57":1,"61":1,"63":1,"77":1,"135":1}}],["hole",{"2":{"32":1,"35":3,"37":2,"38":9,"42":4,"43":58,"45":3,"49":6,"51":2,"55":15,"58":3,"70":1,"71":1,"72":1,"89":33,"119":5,"131":2,"161":1}}],["holes=",{"2":{"43":1}}],["holes",{"2":{"4":3,"5":1,"6":4,"9":2,"32":2,"34":1,"38":2,"42":1,"43":19,"48":4,"49":2,"51":2,"54":6,"55":29,"58":3,"61":3,"86":1,"89":11,"110":1,"119":17,"131":2,"161":4}}],["holding",{"2":{"6":1,"119":1,"128":2}}],["holds",{"2":{"6":1,"43":1,"146":1,"156":2}}],["hold",{"2":{"6":1,"119":1,"148":1,"157":1,"164":1}}],["halign",{"2":{"148":1}}],["half",{"2":{"44":2}}],["hail",{"2":{"131":1}}],["handling",{"0":{"141":1},"2":{"121":1}}],["handler",{"2":{"39":1,"141":1}}],["handle",{"2":{"29":1,"118":1,"126":2,"128":1,"162":1}}],["handled",{"2":{"18":1}}],["hao",{"2":{"89":1}}],["had",{"2":{"49":1,"51":1,"61":1,"143":1,"157":1}}],["happens",{"2":{"43":1}}],["happen",{"2":{"24":1}}],["have",{"2":{"3":3,"4":9,"6":17,"19":1,"23":1,"32":2,"35":3,"38":6,"39":1,"43":4,"52":1,"57":1,"58":2,"61":10,"89":5,"94":1,"95":3,"97":1,"98":1,"119":1,"120":1,"121":2,"123":2,"127":1,"128":4,"148":1,"150":1,"157":1,"158":1,"161":1,"162":1,"165":1,"166":1,"167":3}}],["haskey",{"2":{"158":1}}],["hash",{"2":{"119":1}}],["hasn",{"2":{"119":1}}],["hassle",{"2":{"1":1,"6":1,"153":1}}],["has",{"2":{"1":4,"6":4,"31":1,"34":2,"38":2,"43":2,"50":2,"52":1,"55":1,"57":1,"58":1,"61":11,"100":1,"118":1,"128":4,"129":1,"143":2,"152":1,"162":1}}],["bx",{"2":{"118":2}}],["b2y",{"2":{"52":4}}],["b2x",{"2":{"52":4}}],["b2",{"2":{"52":47,"58":3,"95":6}}],["b``",{"2":{"50":1}}],["b`",{"2":{"50":3,"52":4,"55":4}}],["bigger",{"2":{"43":1}}],["bit",{"2":{"25":1,"152":8,"161":2}}],["b1y",{"2":{"52":7}}],["b1x",{"2":{"52":7}}],["b1",{"2":{"43":8,"52":63,"95":6}}],["building",{"2":{"161":1}}],["build",{"2":{"43":13,"48":1,"49":1,"51":1,"54":1,"123":3,"124":1,"143":2,"151":1,"152":1}}],["built",{"2":{"17":1,"20":1}}],["buffers",{"2":{"119":1}}],["buffered",{"2":{"39":2}}],["buffering",{"2":{"38":1,"39":1}}],["buffer",{"0":{"39":1},"2":{"29":2,"39":5,"42":2,"43":1,"120":1}}],["but",{"2":{"1":2,"3":5,"4":3,"6":15,"18":1,"22":1,"25":1,"32":1,"34":1,"35":1,"45":1,"52":2,"55":2,"61":4,"66":2,"89":1,"94":1,"95":5,"97":1,"98":1,"101":2,"102":1,"107":1,"118":1,"119":1,"120":1,"123":1,"126":1,"128":16,"139":1,"140":1,"145":1,"148":1,"156":1,"158":2,"162":4,"164":1,"165":1,"166":1,"167":2}}],["b>",{"2":{"6":4}}],["bloat",{"2":{"162":1}}],["block",{"2":{"161":1}}],["blob",{"2":{"6":2,"148":1}}],["blue",{"2":{"14":1,"47":1,"60":2,"63":2,"80":2,"94":2,"107":2,"166":2}}],["black",{"2":{"6":2,"47":1,"162":1}}],["breaks",{"2":{"137":1}}],["break",{"2":{"43":3,"45":1,"50":2,"61":4,"89":11,"95":1,"119":6,"137":2}}],["brevity",{"2":{"38":1}}],["br>",{"2":{"6":2}}],["broadcasting",{"2":{"6":1,"38":1}}],["broken",{"2":{"3":1,"6":1,"78":1}}],["balancing",{"2":{"128":2}}],["barrier",{"2":{"128":1}}],["barycentric",{"0":{"5":1,"36":1,"38":1},"1":{"37":1,"38":1},"2":{"0":6,"5":10,"6":17,"9":1,"29":1,"36":9,"37":4,"38":52}}],["basicsgeoms",{"2":{"128":1}}],["basic",{"2":{"119":1}}],["base",{"2":{"29":4,"38":15,"39":1,"43":2,"119":6,"128":5,"141":1,"144":2,"145":1,"156":1,"158":3}}],["based",{"2":{"4":2,"6":3,"19":1,"32":2,"35":2,"37":2,"42":1,"45":1,"58":2,"61":1,"67":1,"81":1,"89":2,"95":1,"98":1,"108":1,"156":1,"164":1,"165":1,"166":1}}],["backs",{"2":{"48":4}}],["backwards",{"2":{"43":1,"50":1,"52":1,"55":1}}],["backing",{"2":{"43":1}}],["backend",{"2":{"39":2,"158":1}}],["back",{"2":{"6":1,"18":1,"22":1,"23":1,"48":4,"158":1}}],["b",{"2":{"3":2,"4":7,"6":13,"43":206,"45":9,"49":26,"50":18,"51":26,"52":77,"53":3,"54":27,"55":39,"61":29,"89":2,"95":22,"163":1}}],["box",{"2":{"44":2,"45":3,"166":1}}],["bounaries",{"2":{"89":1}}],["bounce",{"2":{"43":8,"49":1,"50":1,"51":1,"52":1,"54":1,"55":1}}],["bouncings",{"2":{"43":1}}],["bouncing",{"2":{"43":13,"50":3,"52":4,"55":4}}],["bounday",{"2":{"89":2,"101":2,"102":2,"103":2}}],["boundaries",{"2":{"3":2,"6":2,"76":2,"80":1,"81":1,"89":1,"91":1,"92":1,"119":1}}],["boundary",{"2":{"3":7,"6":7,"57":1,"63":1,"64":1,"66":1,"67":3,"70":4,"77":2,"78":9,"81":2,"83":1,"84":6,"85":3,"89":16,"97":2,"98":4,"100":3,"101":3,"102":1,"103":1,"107":1,"108":3}}],["bound",{"2":{"53":1}}],["bounding",{"2":{"43":1,"44":2,"45":3}}],["boundscheck",{"2":{"38":14}}],["bounds",{"2":{"6":1,"119":4}}],["bold",{"2":{"39":1,"141":1,"144":1}}],["border",{"2":{"6":8}}],["both",{"2":{"3":5,"6":6,"43":2,"52":4,"54":1,"55":1,"57":1,"61":3,"64":1,"78":4,"81":1,"89":2,"95":1,"102":1,"108":1,"143":1,"145":1}}],["booltype",{"2":{"128":3,"145":1,"157":3}}],["booleans",{"2":{"43":1,"89":2}}],["boolean",{"2":{"24":2,"43":1,"50":1,"52":1,"55":1,"128":1,"157":1,"165":1}}],["boolsastypes",{"0":{"24":1,"157":1},"2":{"145":2,"157":6}}],["bools",{"2":{"10":1}}],["bool",{"2":{"3":17,"4":14,"6":40,"43":3,"61":17,"64":1,"67":1,"77":2,"78":13,"81":1,"89":2,"92":1,"95":10,"98":2,"108":1,"118":7,"119":6,"145":2,"157":2,"159":5}}],["bypred",{"2":{"168":1}}],["by",{"0":{"71":1,"72":1,"112":1},"2":{"1":3,"3":2,"4":8,"6":30,"7":1,"17":1,"18":2,"19":1,"22":1,"24":1,"25":1,"31":1,"32":6,"34":1,"35":1,"38":4,"39":1,"41":5,"42":4,"43":14,"44":1,"45":6,"47":1,"48":6,"49":1,"51":1,"52":5,"54":4,"55":3,"58":5,"61":8,"64":1,"66":1,"67":1,"71":2,"72":2,"73":1,"74":2,"76":1,"88":2,"89":10,"118":2,"119":4,"123":2,"128":7,"134":2,"135":1,"137":3,"139":1,"140":2,"141":1,"142":1,"144":3,"145":1,"146":1,"148":1,"149":1,"150":3,"151":1,"153":1,"161":1,"162":2,"164":1,"165":2,"166":1,"167":2,"168":1}}],["berlin",{"2":{"167":1}}],["beed",{"2":{"162":1}}],["been",{"2":{"50":1,"119":1,"121":2,"157":1}}],["bearing",{"2":{"118":4}}],["beauty",{"2":{"9":1}}],["better",{"2":{"78":1,"128":2,"148":1}}],["between",{"2":{"4":4,"6":18,"23":1,"32":2,"38":13,"43":1,"45":18,"49":1,"50":4,"51":1,"52":11,"54":2,"55":4,"58":8,"61":1,"89":4,"95":4,"119":1,"144":3,"145":1,"149":2,"150":2,"151":1,"162":1,"165":2,"166":1}}],["because",{"2":{"43":1,"121":1,"155":1}}],["become",{"2":{"22":1}}],["being",{"2":{"32":1,"52":1,"89":1,"95":1,"135":1}}],["behind",{"2":{"25":1,"37":1,"121":1}}],["behaviour",{"2":{"6":1,"18":1,"23":1,"148":1}}],["best",{"2":{"19":1,"128":2,"148":1}}],["beware",{"2":{"18":1}}],["benchmarking",{"2":{"144":1,"148":1}}],["benchmarkgroup",{"2":{"144":2,"148":3}}],["benchmark",{"0":{"144":1,"148":1},"2":{"144":1,"148":1}}],["benchmarktools",{"2":{"13":1,"144":1,"148":1}}],["benchmarks",{"2":{"9":2}}],["beginning",{"2":{"45":1,"161":1}}],["begin+1",{"2":{"38":5}}],["begin",{"2":{"9":1,"38":7,"128":2,"149":1,"164":1}}],["before",{"2":{"6":4,"38":1,"49":1,"51":1,"52":1,"54":1,"148":1,"162":1}}],["below",{"2":{"6":2,"17":1,"39":1,"133":1,"150":1,"151":1,"152":1,"164":1}}],["be",{"2":{"1":7,"3":3,"4":11,"5":4,"6":65,"7":1,"9":1,"13":2,"20":3,"23":2,"24":1,"25":3,"32":8,"35":7,"36":2,"37":1,"38":10,"39":2,"41":1,"42":3,"43":14,"44":1,"45":2,"48":1,"49":7,"50":4,"51":7,"52":12,"54":6,"55":5,"57":2,"58":4,"61":15,"67":6,"76":2,"77":1,"81":6,"89":21,"95":2,"98":6,"108":6,"110":1,"111":1,"112":1,"113":1,"118":2,"119":1,"123":2,"126":2,"127":2,"128":12,"130":1,"131":1,"132":1,"133":3,"134":4,"135":2,"137":2,"138":1,"140":3,"141":1,"142":1,"144":8,"145":2,"148":10,"150":1,"152":3,"153":1,"157":1,"158":2,"161":2,"162":1,"165":4}}],["xticklabelsvisible",{"2":{"162":1}}],["xticklabelrotation",{"2":{"13":2}}],["xoffset",{"2":{"161":4,"162":1}}],["x=x",{"2":{"159":1}}],["x`",{"2":{"128":1}}],["xvec",{"2":{"119":4}}],["xbounds",{"2":{"119":4}}],["xhalf",{"2":{"119":3}}],["xlast",{"2":{"58":3}}],["xfirst",{"2":{"58":5}}],["x0",{"2":{"58":5}}],["xn",{"2":{"45":4}}],["xind+1",{"2":{"119":1}}],["xind",{"2":{"119":2}}],["xinterior",{"2":{"42":2}}],["xi−xi−1",{"2":{"6":1}}],["xcentroid",{"2":{"42":13}}],["xrange",{"2":{"37":3,"57":2}}],["xautolimits",{"2":{"37":2}}],["xp2",{"2":{"32":5}}],["x2",{"2":{"6":3,"38":4,"42":2,"45":18,"58":8,"78":10,"89":5,"95":4,"119":5,"145":6,"159":2}}],["x26",{"2":{"6":4,"32":2,"35":6,"38":1,"39":4,"43":58,"45":36,"49":4,"50":4,"52":24,"55":2,"58":3,"61":14,"73":2,"74":2,"78":48,"87":2,"88":2,"89":170,"95":22,"100":2,"104":2,"105":2,"114":2,"115":2,"118":4,"119":12,"133":2,"137":6,"141":2,"144":2,"150":10,"151":2,"159":4,"165":1}}],["x1",{"2":{"6":4,"38":3,"42":2,"45":22,"58":8,"78":11,"89":6,"95":5,"119":5,"145":7,"159":2}}],["xs",{"2":{"6":3,"45":4,"119":30,"159":4}}],["xmax",{"2":{"6":1,"44":2,"45":48}}],["xmin",{"2":{"6":1,"44":2,"45":49}}],["x3c",{"2":{"5":1,"6":36,"29":1,"32":4,"35":2,"38":66,"43":17,"45":11,"48":3,"49":1,"51":1,"52":6,"54":1,"57":1,"58":13,"61":2,"78":33,"89":13,"95":10,"118":1,"119":4,"123":2,"128":19,"131":2,"134":3,"137":5,"144":2,"149":2,"150":6,"151":3,"152":9,"156":4,"157":2,"168":1}}],["xy`",{"2":{"140":1}}],["xy",{"2":{"1":4,"38":1,"140":3}}],["x",{"2":{"1":4,"4":1,"6":6,"7":1,"9":5,"11":6,"13":11,"14":10,"15":4,"32":9,"35":2,"37":8,"41":1,"42":10,"43":21,"44":1,"45":8,"48":6,"50":9,"52":18,"55":9,"57":2,"58":7,"61":3,"78":21,"89":16,"95":7,"118":11,"119":2,"121":2,"128":17,"133":2,"138":2,"139":4,"140":1,"145":2,"148":2,"150":2,"152":1,"153":2,"154":2,"157":4,"159":33,"161":6,"162":4,"165":1,"167":2}}],["=>",{"2":{"128":2}}],["=float64",{"2":{"42":3,"51":1,"54":1}}],["=false",{"2":{"32":1}}],["===",{"2":{"78":8,"118":4}}],["==",{"2":{"9":1,"19":1,"32":4,"35":2,"38":9,"39":2,"42":1,"43":34,"45":30,"50":1,"52":20,"54":2,"55":1,"57":1,"61":16,"89":44,"95":2,"118":3,"119":18,"128":1,"131":1,"133":1,"137":1,"141":1,"144":2,"148":1,"152":3}}],["=",{"2":{"1":5,"3":17,"4":7,"5":2,"6":62,"11":1,"13":19,"14":33,"15":18,"29":4,"31":4,"32":56,"34":6,"35":25,"37":35,"38":110,"39":3,"41":6,"42":36,"43":323,"44":6,"45":96,"47":7,"48":29,"49":21,"50":30,"51":18,"52":143,"54":21,"55":77,"57":15,"58":52,"60":7,"61":40,"63":7,"64":3,"66":4,"67":23,"68":3,"69":7,"70":14,"71":14,"72":4,"73":2,"74":2,"76":5,"77":3,"78":57,"80":7,"81":18,"82":3,"83":11,"84":17,"85":9,"86":3,"87":2,"88":2,"89":189,"91":3,"92":3,"94":7,"95":40,"97":3,"98":22,"99":3,"100":9,"101":14,"102":10,"103":6,"104":2,"105":2,"107":7,"108":22,"109":3,"110":11,"111":14,"112":14,"113":4,"114":2,"115":2,"118":32,"119":106,"121":1,"125":4,"128":90,"130":2,"131":4,"133":9,"136":3,"137":30,"138":1,"141":2,"143":16,"144":21,"145":18,"146":2,"147":5,"148":60,"149":11,"150":49,"151":7,"152":43,"153":2,"154":1,"156":6,"157":2,"158":3,"159":42,"161":45,"162":32,"163":3,"164":4,"166":12,"167":6,"168":2}}],["utm",{"2":{"162":1}}],["utility",{"0":{"159":1},"2":{"38":1,"128":2}}],["utils",{"0":{"152":1},"2":{"29":1}}],["u2",{"2":{"89":4}}],["u1",{"2":{"89":4}}],["update",{"2":{"43":6,"119":10}}],["updated",{"2":{"43":6,"128":3}}],["updates",{"2":{"38":1}}],["up",{"2":{"43":2,"52":1,"89":1,"102":1,"126":1,"136":1,"150":2,"161":2}}],["upper",{"2":{"6":1,"119":1,"166":1}}],["uv",{"2":{"38":1}}],["u>",{"2":{"6":2}}],["u>geometryops",{"2":{"6":2}}],["usage",{"2":{"167":1}}],["usa",{"2":{"148":15,"167":3}}],["us",{"2":{"35":1,"162":1,"167":1}}],["ususally",{"2":{"6":1,"123":1,"128":1}}],["usually",{"2":{"164":1}}],["usual",{"2":{"6":1,"131":1,"134":1}}],["usecases",{"2":{"25":1}}],["uses",{"2":{"6":1,"89":1,"140":1,"144":1,"148":1,"164":1}}],["users",{"2":{"29":1,"121":1,"135":1}}],["user",{"2":{"6":12,"23":1,"42":1,"49":3,"51":3,"54":3,"149":1,"150":1,"151":1,"165":1}}],["useful",{"2":{"6":10,"38":1,"119":1,"142":1,"145":1,"148":2,"158":1}}],["used",{"2":{"1":1,"5":1,"6":8,"32":1,"35":1,"36":1,"38":1,"42":2,"43":7,"45":1,"48":1,"52":1,"57":1,"58":1,"61":1,"95":1,"119":2,"123":1,"128":3,"129":1,"145":1,"148":1,"150":2,"155":2,"156":1,"162":1,"164":1,"165":2,"166":1}}],["use",{"2":{"1":2,"4":1,"5":1,"6":9,"11":1,"20":1,"23":1,"38":1,"43":1,"55":1,"78":2,"95":1,"119":1,"120":1,"125":1,"128":7,"131":1,"139":1,"143":1,"145":1,"148":1,"150":2,"158":3,"161":1,"164":1,"165":2,"168":2}}],["using",{"2":{"1":4,"4":1,"5":3,"6":12,"11":4,"13":4,"14":1,"15":1,"29":7,"31":1,"32":1,"34":2,"35":2,"37":4,"38":7,"39":3,"41":2,"42":1,"43":5,"44":2,"45":1,"47":2,"48":1,"50":3,"52":4,"53":1,"55":3,"57":2,"58":2,"60":2,"61":1,"63":2,"64":1,"66":2,"67":1,"74":1,"76":2,"77":1,"78":1,"80":2,"81":1,"88":1,"89":1,"91":2,"92":1,"94":2,"95":1,"97":2,"98":1,"105":1,"107":2,"108":1,"115":1,"118":1,"119":5,"120":1,"121":2,"126":1,"128":4,"131":1,"134":1,"137":1,"138":2,"139":1,"140":1,"141":3,"143":1,"144":5,"145":1,"148":2,"150":1,"152":1,"153":4,"154":2,"158":2,"159":1,"160":4,"161":1,"162":1,"163":2,"165":1,"166":4,"167":2}}],["unnecessary",{"2":{"119":1}}],["unneeded",{"2":{"6":3,"43":1,"49":1,"51":1,"54":1}}],["until",{"2":{"119":3,"126":1,"150":1,"158":1}}],["uneeded",{"2":{"49":1,"51":1,"54":1}}],["uneccesary",{"2":{"6":3,"149":1,"150":1,"151":1}}],["unprocessed",{"2":{"43":1}}],["unknown",{"2":{"43":4,"45":15}}],["unknown=3",{"2":{"43":1}}],["unmatched",{"2":{"43":9,"45":26}}],["understand",{"2":{"155":1}}],["under",{"2":{"35":2,"164":1}}],["undergrad",{"2":{"9":1}}],["undef",{"2":{"32":2,"43":1,"149":1,"150":1,"152":2,"159":2}}],["unless",{"2":{"22":1,"43":1,"50":2,"52":2,"55":2}}],["unlike",{"2":{"18":1,"155":1}}],["unstable",{"2":{"13":1,"128":1,"157":1}}],["universal",{"2":{"162":1}}],["united",{"2":{"148":1}}],["unify",{"2":{"25":1}}],["unique",{"2":{"6":2,"52":3,"134":2,"137":2}}],["unioning",{"2":{"55":1}}],["unionintersectingpolygons",{"2":{"0":1,"6":8,"49":1,"50":2,"51":1,"52":2,"54":1,"55":2,"134":2,"135":2,"136":1,"137":4}}],["unions",{"0":{"55":1},"2":{"18":1,"156":1}}],["union",{"0":{"54":1},"2":{"0":1,"1":2,"3":2,"4":4,"6":22,"11":3,"23":2,"29":1,"32":2,"35":1,"38":1,"42":4,"43":7,"45":1,"51":2,"54":18,"55":30,"58":1,"61":8,"69":2,"70":4,"71":1,"73":2,"74":1,"83":2,"84":6,"87":2,"88":1,"95":4,"100":2,"101":4,"102":1,"104":2,"105":1,"110":2,"111":4,"112":1,"114":2,"115":1,"118":1,"119":5,"121":1,"126":3,"128":6,"134":1,"135":1,"137":9,"145":4,"148":2,"149":3,"150":3,"151":3,"156":4,"159":1}}],["unchanged",{"2":{"1":1,"6":2,"128":1,"148":1}}],["unwrap",{"2":{"0":1,"6":3,"123":1,"128":16}}],["nselected",{"2":{"152":3}}],["nmax",{"2":{"152":2}}],["nice",{"2":{"150":1}}],["nvkelso",{"2":{"148":1}}],["null",{"2":{"144":1}}],["numeric",{"2":{"11":1}}],["numbers",{"2":{"6":1,"7":1,"36":2,"38":1,"144":1}}],["number=6",{"2":{"6":1,"147":1,"148":1}}],["number",{"2":{"6":11,"38":1,"43":2,"48":1,"57":1,"61":2,"89":2,"142":1,"143":1,"145":1,"148":2,"149":4,"150":7,"151":4,"152":12}}],["n+1",{"2":{"130":1}}],["nfeature",{"2":{"128":2}}],["nkeys",{"2":{"119":8}}],["nc",{"2":{"89":13}}],["ncoord",{"2":{"61":2}}],["nl",{"2":{"89":11}}],["nhole",{"2":{"43":2,"49":2,"51":2,"54":2,"55":1,"61":2}}],["nbpts",{"2":{"43":2}}],["nbsp",{"2":{"1":4,"3":9,"4":8,"5":3,"6":87,"123":3,"133":1,"134":4}}],["ngeom",{"2":{"42":1,"128":2,"159":1}}],["nt",{"2":{"158":2}}],["ntasks",{"2":{"128":6}}],["nthreads",{"2":{"128":3}}],["nthe",{"2":{"39":1,"141":1,"144":1}}],["ntuple",{"2":{"38":3,"145":1}}],["n2",{"2":{"38":8,"61":10}}],["n1",{"2":{"38":8,"61":9}}],["np2",{"2":{"78":4}}],["npolygon",{"2":{"50":1,"61":3,"137":2}}],["npoints",{"2":{"32":6,"43":5,"89":3,"144":6,"150":7}}],["npoint",{"2":{"6":1,"32":2,"34":1,"35":1,"45":2,"58":1,"61":6,"78":6,"89":6,"100":1,"118":2,"131":1,"144":3,"145":1,"148":14,"152":1,"159":13}}],["npts",{"2":{"43":6,"150":3}}],["np",{"2":{"35":2,"58":5}}],["n",{"2":{"6":1,"9":1,"36":2,"38":36,"39":2,"43":51,"48":10,"54":4,"55":4,"89":11,"100":2,"118":6,"119":5,"130":1,"137":25,"141":2,"144":2,"145":3,"148":2,"152":7,"159":32}}],["naive",{"2":{"53":1}}],["napts",{"2":{"43":3}}],["natearth2",{"2":{"162":1}}],["natural",{"2":{"148":2,"162":2,"165":1}}],["naturalearth",{"2":{"11":2,"162":1}}],["nature",{"2":{"119":1}}],["native",{"2":{"6":1,"120":1,"158":4,"164":1}}],["nan",{"2":{"9":1}}],["named",{"2":{"128":1}}],["namedtuple",{"2":{"22":2,"128":2,"158":2}}],["name",{"2":{"6":1,"29":2,"148":1,"158":1,"163":1,"164":2,"167":1}}],["names",{"2":{"6":1,"29":3,"128":6,"158":1}}],["nodestatus",{"2":{"119":6}}],["nodes",{"2":{"43":1,"119":4}}],["node",{"2":{"43":26,"119":17}}],["north",{"2":{"45":12}}],["nor",{"2":{"39":1,"141":1,"144":1}}],["normalized",{"2":{"38":1}}],["normalize",{"2":{"38":1}}],["norm",{"2":{"6":1,"38":22}}],["now",{"2":{"6":1,"13":1,"25":1,"34":1,"37":2,"38":4,"39":1,"43":1,"48":1,"55":1,"58":1,"118":1,"119":2,"136":1,"142":1,"143":3,"144":1,"148":1,"161":5,"162":8,"163":1,"164":3,"166":2}}],["no",{"2":{"6":6,"32":1,"38":2,"43":4,"49":1,"50":1,"51":1,"52":14,"54":1,"61":2,"67":3,"81":3,"89":2,"98":2,"100":1,"102":1,"103":2,"108":2,"110":1,"111":3,"112":3,"113":1,"119":2,"120":1,"121":1,"128":3,"142":1,"144":2,"145":1,"148":1,"158":1,"164":1}}],["nonzero",{"2":{"145":1}}],["none",{"2":{"6":4,"43":1,"48":1,"49":1,"51":1,"54":1,"55":1,"78":4,"80":1}}],["nondimensional",{"2":{"6":1,"144":1}}],["nonintersecting",{"2":{"6":1,"23":1,"134":1,"137":1}}],["non",{"2":{"3":2,"6":2,"22":1,"36":2,"43":15,"49":2,"50":1,"51":1,"52":4,"54":1,"55":2,"57":1,"95":2,"102":1,"126":1,"157":1}}],["note",{"2":{"4":4,"6":10,"19":1,"27":1,"32":1,"35":2,"38":1,"41":2,"42":2,"43":3,"45":1,"48":2,"50":3,"52":5,"55":3,"58":1,"61":5,"89":1,"94":1,"95":1,"140":1,"145":1,"149":1,"150":2,"151":1,"157":1,"162":3}}],["not",{"0":{"120":1},"2":{"1":2,"3":8,"4":1,"6":18,"18":1,"19":1,"22":1,"24":1,"29":1,"32":4,"35":1,"38":4,"39":1,"41":1,"43":18,"48":1,"51":1,"52":7,"55":3,"60":2,"61":4,"63":2,"64":1,"66":2,"67":2,"76":1,"77":2,"81":3,"83":5,"84":3,"85":2,"86":2,"89":5,"94":1,"95":2,"98":1,"107":2,"108":2,"110":1,"118":4,"119":2,"120":1,"126":1,"127":1,"128":10,"130":2,"133":2,"136":3,"139":1,"140":1,"141":1,"142":1,"144":2,"145":1,"155":1,"156":1,"157":1,"158":2,"162":2,"165":1}}],["nothing`",{"2":{"50":2,"52":2,"55":2}}],["nothing",{"2":{"1":34,"4":1,"6":42,"15":3,"43":4,"48":1,"50":2,"51":1,"52":2,"55":2,"61":1,"89":1,"118":9,"119":3,"128":8,"130":24,"133":1,"136":60,"141":1,"145":1,"148":2,"149":6,"150":6,"151":6,"152":1,"153":32,"159":7,"161":252,"162":36}}],["ne",{"2":{"148":1,"162":2}}],["net",{"2":{"133":2}}],["ness",{"2":{"128":1}}],["nesting",{"2":{"126":2}}],["nestedloopfast",{"2":{"168":1}}],["nested",{"2":{"1":2,"4":1,"6":5,"18":1,"32":1,"126":2,"128":4,"148":1,"154":1}}],["never",{"2":{"126":1,"149":1}}],["neumann",{"2":{"119":1}}],["neither",{"2":{"55":1}}],["neightbor",{"2":{"43":1}}],["neighborhood",{"2":{"119":2}}],["neighbor",{"2":{"43":26}}],["neighboring",{"2":{"6":6,"43":1,"148":1,"149":1,"150":1,"151":2}}],["nearly",{"2":{"164":1}}],["nearest",{"2":{"43":1,"52":2}}],["neatly",{"2":{"17":1}}],["nedge",{"2":{"43":2,"159":13}}],["nextnode",{"2":{"119":27}}],["nextnodes",{"2":{"119":6}}],["next",{"2":{"42":1,"43":81,"45":3,"48":4,"89":14,"119":3,"137":13,"150":5}}],["necessarily",{"2":{"6":1,"118":1,"139":1}}],["necessary",{"2":{"6":1,"126":1,"148":1}}],["newfeature",{"2":{"128":2}}],["newnodes",{"2":{"119":2}}],["new",{"2":{"6":1,"39":1,"43":58,"45":9,"49":3,"50":1,"55":16,"89":2,"119":4,"127":1,"128":18,"133":2,"134":1,"135":1,"137":19,"145":8,"149":1,"150":2,"151":1,"162":1,"163":1,"167":1}}],["negative",{"2":{"4":3,"6":3,"34":2,"35":1,"36":2,"57":2,"58":3}}],["needs",{"2":{"42":1}}],["needing",{"2":{"4":1,"6":1,"17":1,"138":1}}],["need",{"2":{"1":1,"3":1,"4":2,"5":1,"6":5,"38":2,"41":1,"43":2,"50":1,"61":4,"76":1,"77":1,"89":1,"119":2,"121":1,"138":1,"152":1,"153":1,"162":2,"168":2}}],["needed",{"2":{"1":2,"6":4,"32":1,"38":1,"43":4,"45":1,"49":1,"51":1,"54":1,"58":2,"89":5,"119":1,"128":2,"133":1,"140":3,"162":1}}],["gdal",{"2":{"164":1}}],["gml",{"2":{"164":1}}],["gpkg",{"2":{"164":3}}],["gadm",{"2":{"167":4}}],["ga",{"2":{"162":3}}],["gaps",{"2":{"119":1}}],["global",{"2":{"162":1}}],["gft",{"2":{"160":1,"162":2}}],["gc",{"2":{"133":6}}],["g",{"2":{"32":3,"35":3,"39":1,"42":3,"45":3,"58":6,"126":1,"128":6,"148":2,"159":2,"164":1}}],["gb",{"2":{"29":1,"128":10}}],["guarantee",{"2":{"19":1,"28":1}}],["guaranteed",{"2":{"1":1,"6":1,"32":1,"128":1}}],["grand",{"2":{"167":1}}],["grained",{"2":{"143":1}}],["graphics",{"2":{"6":1,"38":1}}],["great",{"2":{"161":1,"162":1,"164":1}}],["greater",{"2":{"6":1,"118":1,"145":1}}],["greiner",{"0":{"50":1,"52":1,"55":1},"2":{"43":3,"48":2,"49":1,"51":1,"54":1}}],["green",{"2":{"14":1,"162":1}}],["grouped",{"2":{"161":1}}],["groups",{"2":{"6":1,"119":1}}],["grouping",{"2":{"1":1,"6":1,"128":2}}],["grid",{"2":{"6":1,"37":1,"45":4}}],["g2",{"2":{"3":5,"6":5,"64":4,"67":12,"68":6,"69":9,"70":6,"71":6,"72":3,"73":4,"74":2,"77":3,"78":21,"81":10,"82":6,"83":10,"84":8,"85":4,"86":2,"87":4,"88":2,"98":10,"99":6,"100":10,"101":6,"102":5,"103":4,"104":4,"105":2,"108":10,"109":6,"110":9,"111":6,"112":6,"113":3,"114":4,"115":2}}],["g1",{"2":{"3":5,"4":1,"6":6,"64":4,"67":12,"68":6,"69":9,"70":6,"71":6,"72":3,"73":2,"74":4,"77":3,"78":21,"81":9,"82":6,"83":10,"84":8,"85":4,"86":2,"87":2,"88":4,"98":10,"99":6,"100":9,"101":6,"102":5,"103":4,"104":2,"105":4,"108":10,"109":6,"110":9,"111":6,"112":6,"113":3,"114":2,"115":4}}],["generic",{"2":{"22":1}}],["generation",{"2":{"148":2}}],["generated",{"2":{"29":1,"32":1,"35":1,"38":1,"39":1,"42":1,"43":1,"45":1,"48":1,"50":1,"52":1,"53":1,"55":1,"58":1,"61":1,"64":1,"74":1,"77":1,"78":1,"88":1,"89":1,"92":1,"95":1,"105":1,"115":1,"118":1,"119":1,"120":1,"128":1,"131":1,"134":1,"137":1,"138":1,"139":1,"141":1,"145":1,"148":1,"152":1,"153":1,"154":1,"158":1,"159":1,"166":1}}],["generate",{"2":{"7":1,"13":2,"148":1,"166":2}}],["generalization",{"2":{"36":1}}],["generalized",{"2":{"6":1,"36":3,"38":1}}],["generalise",{"2":{"6":4,"148":1}}],["generally",{"2":{"6":2,"158":3}}],["general",{"0":{"2":1,"4":1},"1":{"3":1,"4":1},"2":{"18":1,"20":1,"25":1,"121":1,"141":1}}],["getfeature",{"2":{"128":5,"159":5}}],["getcolumn",{"2":{"128":4}}],["getgeom",{"2":{"73":1,"74":1,"87":1,"88":1,"95":2,"104":1,"105":1,"114":1,"115":1,"128":6,"148":3,"159":6}}],["getring",{"2":{"43":1}}],["getindex",{"2":{"38":2}}],["gethole",{"2":{"32":1,"35":1,"42":1,"43":4,"45":1,"48":1,"49":2,"51":2,"55":6,"58":1,"61":2,"89":5,"131":1,"161":1}}],["getexterior",{"2":{"32":1,"35":1,"38":1,"42":1,"43":3,"45":1,"48":1,"49":2,"51":2,"54":3,"55":6,"58":1,"61":2,"89":5,"118":1,"119":1,"131":1,"161":1}}],["getpolygon",{"2":{"50":3,"52":2,"55":2,"61":3}}],["getpoint",{"2":{"31":1,"32":5,"34":2,"35":1,"38":1,"41":1,"42":6,"43":3,"44":2,"45":3,"47":3,"57":1,"58":6,"60":4,"61":13,"63":4,"66":1,"76":1,"78":7,"80":4,"89":28,"91":2,"94":4,"95":2,"97":2,"100":2,"107":4,"118":5,"131":3,"143":4,"145":2,"152":1,"159":3,"161":2}}],["getproperty",{"2":{"13":2,"14":1}}],["get",{"2":{"6":1,"13":1,"34":1,"39":1,"43":9,"49":1,"50":1,"51":1,"52":2,"54":2,"119":4,"128":4,"141":1,"144":3,"148":1,"149":1,"151":1,"152":2,"158":5,"159":1,"161":2,"167":2}}],["geoparquet",{"2":{"164":4}}],["geopoly1",{"2":{"162":1,"163":1}}],["geopoly2",{"2":{"162":1,"163":1}}],["geoaxis",{"2":{"162":4}}],["geographic",{"2":{"162":1,"164":1}}],["geographiclib",{"2":{"6":1,"144":1}}],["geointeface",{"2":{"126":1}}],["geointerace",{"2":{"22":1}}],["geointerfacemakie",{"2":{"147":1,"166":1,"167":1}}],["geointerface",{"0":{"28":1},"2":{"1":20,"3":9,"4":2,"6":41,"11":1,"13":1,"14":1,"15":1,"22":3,"25":1,"28":1,"29":7,"31":1,"32":1,"34":1,"35":1,"38":23,"41":1,"42":1,"43":1,"44":1,"45":1,"47":1,"48":1,"49":1,"51":1,"52":1,"54":1,"57":1,"58":11,"60":1,"61":2,"63":1,"64":2,"66":1,"67":2,"76":1,"77":2,"78":1,"80":1,"81":3,"91":1,"92":2,"94":1,"95":2,"97":1,"98":2,"107":1,"108":2,"118":5,"119":1,"123":3,"126":3,"128":6,"130":9,"133":1,"134":1,"136":23,"138":1,"140":2,"143":1,"144":1,"147":1,"148":2,"153":13,"154":1,"159":1,"160":1,"161":122,"162":14,"166":1,"167":1}}],["geo",{"2":{"119":1,"144":4,"162":2}}],["geotable",{"2":{"27":1}}],["geojson",{"2":{"11":1,"148":5,"160":1,"162":4,"164":3}}],["geodataframes",{"2":{"164":3}}],["geod",{"2":{"6":2,"144":3}}],["geodesic`",{"2":{"144":2}}],["geodesic",{"2":{"6":5,"29":1,"143":6,"144":8,"145":1}}],["geodesicsegments",{"2":{"0":1,"6":2,"142":1,"143":3,"144":6,"145":2}}],["geoformattypes",{"2":{"1":2,"140":2,"160":1,"162":10}}],["geomakie",{"2":{"160":2,"162":5}}],["geomfromgeos",{"2":{"144":1}}],["geomtype",{"2":{"128":2}}],["geoms",{"2":{"6":1,"89":1,"123":1,"128":18}}],["geometies",{"2":{"3":1,"6":1,"97":1,"98":1}}],["geometrie",{"2":{"84":1}}],["geometries",{"0":{"68":1,"69":1,"70":1,"71":1,"72":1,"73":1,"74":1,"82":1,"83":1,"84":1,"85":1,"86":1,"87":1,"88":1,"99":1,"100":1,"101":1,"102":1,"103":1,"104":1,"105":1,"109":1,"110":1,"111":1,"112":1,"113":1,"114":1,"115":1,"161":1},"2":{"1":6,"3":8,"4":14,"6":61,"18":3,"20":1,"22":3,"25":2,"27":4,"31":1,"32":3,"35":4,"42":1,"45":2,"48":1,"49":5,"51":5,"52":4,"54":5,"57":1,"58":4,"60":1,"61":7,"64":1,"66":1,"67":1,"78":2,"81":2,"89":1,"91":1,"92":1,"94":2,"95":3,"97":2,"98":2,"108":2,"110":1,"121":1,"123":4,"125":1,"127":2,"128":13,"138":1,"140":2,"142":3,"143":1,"144":4,"145":1,"146":1,"149":1,"150":1,"151":1,"154":1,"159":1,"160":5,"162":3,"163":2,"164":1,"165":5,"166":1,"168":1}}],["geometrical",{"2":{"165":1}}],["geometric",{"2":{"25":2,"41":1}}],["geometry=",{"2":{"163":1}}],["geometryof",{"2":{"128":1}}],["geometryopsprojext",{"2":{"140":1,"141":1,"144":1,"145":1}}],["geometryopslibgeosext",{"2":{"39":1}}],["geometryops",{"0":{"0":1,"29":1},"1":{"1":1,"2":1,"3":1,"4":1,"5":1,"6":1},"2":{"0":115,"1":6,"3":18,"4":9,"5":3,"6":112,"7":2,"11":1,"13":1,"14":1,"15":1,"17":2,"25":1,"29":1,"31":1,"34":1,"37":5,"39":1,"41":1,"44":1,"47":1,"48":1,"49":1,"51":1,"52":1,"54":1,"57":1,"60":1,"61":1,"63":1,"64":2,"66":1,"67":2,"76":1,"77":2,"78":2,"80":1,"81":2,"91":1,"92":1,"94":1,"95":1,"97":1,"98":2,"107":1,"108":2,"118":3,"119":2,"123":4,"128":1,"130":1,"133":1,"134":4,"136":1,"141":1,"143":1,"144":2,"147":1,"148":2,"153":1,"155":1,"158":2,"159":1,"160":1,"161":3,"165":1,"166":2,"167":2}}],["geometrybasics",{"2":{"29":3,"37":2,"38":10,"57":1,"67":1,"98":1,"108":1}}],["geometrycolumns",{"2":{"128":3}}],["geometrycollections",{"2":{"165":1}}],["geometrycollection",{"2":{"23":1,"167":1}}],["geometrycollectiontrait",{"2":{"23":1,"73":1,"74":1,"87":1,"88":1,"104":1,"105":1,"114":1,"115":1}}],["geometrycorrections",{"2":{"133":1}}],["geometrycorrection",{"2":{"0":1,"6":11,"131":2,"132":2,"133":13,"134":11,"137":4}}],["geometry",{"0":{"2":1,"51":1,"73":2,"74":2,"87":2,"88":2,"104":2,"105":2,"114":2,"115":2,"132":1,"140":1,"146":1,"160":1,"163":1},"1":{"3":1,"4":1,"133":1,"134":1,"141":1,"147":1,"148":1,"161":1,"162":1,"163":1,"164":1},"2":{"1":10,"3":23,"4":12,"6":69,"9":1,"11":2,"18":4,"20":1,"23":3,"27":1,"29":1,"32":7,"35":4,"39":4,"42":3,"44":1,"45":4,"48":4,"57":4,"58":6,"61":8,"63":5,"64":2,"66":4,"67":5,"68":4,"69":1,"73":3,"74":4,"76":4,"77":4,"78":3,"80":2,"81":5,"82":4,"83":2,"84":1,"87":3,"88":4,"89":2,"91":2,"95":3,"97":2,"98":3,"99":4,"100":2,"104":3,"105":4,"107":4,"108":5,"109":4,"114":3,"115":4,"117":1,"121":3,"123":2,"126":2,"128":42,"130":1,"131":1,"132":2,"133":23,"134":6,"138":1,"139":1,"140":6,"142":3,"143":1,"144":5,"145":8,"148":6,"159":6,"161":1,"162":5,"163":2,"164":2,"165":1,"166":7,"167":4,"168":2}}],["geom2",{"2":{"3":8,"4":1,"6":9,"58":6,"61":1,"78":6,"81":1,"92":3,"95":6,"98":1,"108":2}}],["geom1",{"2":{"3":8,"4":1,"6":9,"58":6,"61":1,"78":4,"81":1,"92":3,"95":6,"98":1,"108":2}}],["geom",{"2":{"1":7,"4":21,"6":48,"18":3,"29":12,"32":25,"35":17,"42":28,"43":16,"45":6,"48":15,"49":8,"50":2,"51":12,"52":10,"54":9,"55":9,"58":28,"61":45,"67":4,"78":1,"81":4,"89":3,"95":1,"98":4,"108":4,"118":3,"119":1,"121":2,"123":3,"128":91,"137":11,"139":4,"145":13,"148":36,"152":3,"153":7,"154":4,"159":13,"167":6}}],["geospatial",{"0":{"164":1},"2":{"160":5,"162":4,"164":5}}],["geoscontext",{"2":{"144":1}}],["geosdensify",{"2":{"144":3}}],["geos",{"0":{"158":1},"2":{"0":1,"6":5,"39":4,"146":5,"148":2,"155":1,"158":12}}],["got",{"2":{"152":3}}],["goes",{"2":{"6":2,"118":2}}],["good",{"2":{"6":1,"38":1,"158":2,"162":1}}],["going",{"2":{"4":4,"6":5,"45":2,"61":5,"118":1,"119":1,"160":1}}],["go",{"2":{"1":5,"3":17,"4":2,"6":43,"11":9,"13":1,"14":1,"15":6,"18":1,"29":2,"31":1,"34":1,"38":1,"41":2,"44":1,"47":2,"48":2,"49":2,"51":2,"52":2,"54":2,"57":6,"60":1,"61":2,"63":2,"64":2,"66":1,"67":2,"76":2,"77":2,"78":1,"80":1,"81":2,"91":1,"92":2,"94":1,"95":2,"97":1,"98":2,"107":2,"108":2,"118":6,"119":2,"121":1,"123":1,"128":3,"130":3,"136":3,"143":7,"144":8,"147":2,"148":49,"153":3,"158":1,"159":2,"160":1,"161":3,"162":1,"164":1,"165":9,"166":2,"167":5,"168":1}}],["gtrait",{"2":{"58":2}}],["gt",{"2":{"1":1,"6":2,"9":2,"10":1,"11":5,"43":3,"118":3}}],["gif",{"2":{"150":1}}],["githack",{"2":{"148":1}}],["github",{"2":{"6":2}}],["gives",{"2":{"167":1}}],["give",{"2":{"89":1,"164":1}}],["given",{"2":{"4":7,"6":21,"18":2,"27":1,"31":1,"32":1,"35":2,"42":3,"43":8,"45":3,"48":5,"49":1,"50":2,"51":1,"52":2,"54":1,"55":2,"58":8,"61":4,"63":1,"64":1,"67":1,"76":1,"77":1,"81":1,"89":7,"91":1,"92":1,"98":1,"100":1,"108":1,"121":1,"133":4,"134":1,"136":1,"142":2,"144":2,"145":2,"151":1}}],["gis",{"2":{"5":1,"6":1,"25":1,"38":1}}],["gi",{"2":{"1":13,"3":42,"4":31,"6":124,"11":8,"13":15,"14":15,"15":8,"18":2,"29":1,"31":3,"32":30,"34":5,"35":21,"37":1,"41":5,"42":38,"43":34,"44":5,"45":17,"47":6,"48":13,"49":19,"50":16,"51":25,"52":24,"54":17,"55":36,"57":8,"58":42,"60":7,"61":99,"63":7,"64":3,"66":3,"67":4,"68":6,"69":12,"70":10,"71":7,"72":4,"73":8,"74":6,"76":3,"77":3,"78":21,"80":7,"81":2,"82":3,"83":12,"84":14,"85":4,"86":2,"87":8,"88":6,"89":59,"91":5,"92":3,"94":7,"95":51,"97":5,"98":3,"99":6,"100":15,"101":10,"102":7,"103":4,"104":8,"105":6,"107":7,"108":2,"109":6,"110":12,"111":10,"112":7,"113":4,"114":8,"115":6,"118":32,"119":15,"121":4,"123":2,"128":111,"130":2,"131":10,"133":9,"136":3,"137":8,"138":1,"139":5,"143":6,"144":6,"145":12,"147":2,"148":34,"152":4,"153":9,"154":5,"156":9,"159":55,"160":1,"161":21,"162":4,"166":5,"167":2}}],["o",{"2":{"128":24}}],["odd",{"2":{"89":1}}],["own",{"2":{"55":1,"121":2}}],["occur",{"2":{"52":1}}],["occurs",{"2":{"52":1}}],["occupied",{"2":{"34":1}}],["old",{"2":{"43":8,"128":3}}],["ourselves",{"2":{"144":1}}],["our",{"2":{"24":1,"144":1,"161":4,"162":3,"166":1}}],["out=3",{"2":{"89":1}}],["out=4",{"2":{"51":1}}],["out`",{"2":{"51":1,"89":1}}],["out",{"2":{"6":3,"43":12,"45":23,"52":6,"55":4,"57":5,"67":4,"78":1,"81":3,"89":102,"95":2,"98":4,"108":4,"118":1,"128":1,"145":1,"158":2}}],["outside",{"2":{"3":2,"4":1,"6":3,"43":3,"45":1,"50":2,"52":4,"55":3,"57":2,"58":1,"66":1,"77":1,"80":1,"89":12,"95":3,"113":1}}],["outputs",{"2":{"43":1}}],["output",{"2":{"3":8,"4":1,"6":18,"18":1,"23":1,"48":2,"49":1,"51":1,"52":1,"54":1,"55":2,"61":1,"64":1,"67":1,"77":1,"81":1,"92":1,"95":1,"98":1,"108":1,"118":2,"148":1,"152":1,"159":1}}],["outermost",{"2":{"128":1}}],["outer",{"2":{"1":1,"6":1,"126":1,"128":2,"165":1,"166":1}}],["omit",{"2":{"6":1,"144":1}}],["obtain",{"2":{"128":1}}],["obtained",{"2":{"23":1}}],["observable",{"2":{"14":2}}],["obs",{"2":{"14":10}}],["obviously",{"2":{"4":1,"6":1,"138":1}}],["objects",{"2":{"1":4,"4":1,"6":17,"123":3,"126":5,"128":8,"138":1,"142":1,"148":2,"154":1}}],["object",{"2":{"1":4,"4":1,"5":1,"6":8,"20":1,"38":1,"57":1,"89":4,"123":1,"126":5,"128":3,"138":1,"140":3,"144":1,"148":1,"154":1}}],["obj",{"2":{"1":4,"4":1,"6":17,"123":3,"128":10,"138":1,"139":2,"144":3,"148":3,"153":1,"154":1}}],["others",{"2":{"39":1,"137":1}}],["otherwise",{"2":{"4":2,"6":3,"39":1,"43":1,"50":1,"52":1,"58":2,"119":1,"139":1,"141":1,"144":1,"159":1}}],["other",{"0":{"4":1,"6":1},"2":{"3":4,"6":12,"32":1,"43":5,"49":1,"51":1,"52":1,"54":2,"55":3,"58":2,"61":2,"63":1,"69":1,"89":8,"91":1,"94":1,"95":4,"97":2,"98":2,"101":1,"110":1,"119":1,"123":1,"126":1,"128":1,"134":2,"135":1,"137":2,"148":2,"150":2,"155":1,"156":1,"158":1,"162":1,"165":1,"168":1}}],["ogc",{"0":{"3":1}}],["over=3",{"2":{"51":1}}],["over`",{"2":{"51":1}}],["overflow",{"2":{"48":1}}],["overhead",{"2":{"22":1,"128":2}}],["override",{"2":{"6":1,"38":1}}],["overlapping",{"2":{"43":11,"52":4,"55":6}}],["overlap",{"2":{"3":4,"6":4,"9":1,"43":2,"52":8,"55":2,"67":1,"76":1,"89":2,"94":5,"95":6,"108":1,"135":1}}],["overlaps",{"0":{"93":1,"94":1},"1":{"94":1,"95":1},"2":{"0":10,"3":5,"6":13,"29":1,"52":1,"93":1,"94":3,"95":30,"119":1,"165":1}}],["over",{"2":{"1":1,"6":3,"34":2,"35":1,"42":3,"43":5,"45":1,"51":1,"52":11,"55":1,"67":1,"78":1,"81":1,"89":15,"95":2,"98":1,"108":1,"128":22,"161":3}}],["ops",{"2":{"128":1}}],["optimisation",{"2":{"89":1}}],["optimise",{"2":{"78":1}}],["options",{"2":{"14":1,"43":1}}],["optional",{"2":{"4":5,"6":6,"32":1,"35":2,"45":1,"58":2}}],["open",{"2":{"43":1,"130":1,"162":1}}],["operates",{"2":{"128":1,"129":1,"135":1}}],["operate",{"2":{"18":1,"27":1,"128":1}}],["operations",{"0":{"23":1},"2":{"23":1,"52":1,"55":1,"121":1}}],["operation",{"2":{"6":3,"43":1,"121":1,"134":2,"137":2,"158":2}}],["opposite",{"2":{"3":5,"6":5,"43":2,"50":1,"52":2,"55":1,"64":2,"67":1,"77":2,"92":2,"108":1}}],["op",{"2":{"1":3,"6":3,"19":2,"42":1,"128":35}}],["on=2",{"2":{"89":1}}],["on`",{"2":{"89":1}}],["once",{"2":{"78":1,"95":1,"119":1}}],["onto",{"2":{"58":1}}],["ones",{"2":{"136":1}}],["oneunit",{"2":{"38":1}}],["one",{"2":{"1":1,"3":9,"6":14,"23":1,"32":4,"35":2,"37":1,"38":1,"42":1,"43":5,"45":3,"49":1,"50":1,"51":1,"52":32,"54":2,"55":2,"57":2,"66":1,"73":1,"78":1,"80":1,"89":18,"94":1,"95":18,"97":2,"98":2,"101":3,"102":2,"103":2,"104":1,"105":1,"107":1,"108":1,"114":1,"118":1,"119":5,"128":1,"136":1,"140":1,"144":1,"152":1,"153":1,"162":1,"165":1}}],["on",{"2":{"1":2,"4":3,"6":11,"9":1,"18":1,"20":1,"23":2,"25":3,"27":2,"32":5,"35":3,"37":1,"38":2,"42":3,"43":28,"45":8,"48":1,"49":1,"50":5,"51":1,"52":4,"54":1,"55":2,"57":1,"58":3,"61":2,"66":1,"67":7,"69":2,"70":3,"71":3,"72":1,"78":4,"81":6,"83":4,"84":1,"85":1,"89":125,"95":9,"98":7,"100":2,"108":7,"110":2,"111":1,"112":1,"119":3,"121":1,"123":1,"128":15,"129":1,"131":1,"134":1,"135":1,"142":1,"144":1,"150":1,"157":2,"160":1,"162":4,"164":1,"165":4,"166":1,"167":2,"168":2}}],["only",{"2":{"0":1,"5":1,"6":10,"23":1,"35":2,"37":2,"38":1,"39":1,"42":2,"43":4,"45":3,"48":1,"49":1,"51":1,"52":1,"54":1,"58":2,"61":3,"94":3,"95":1,"97":1,"119":2,"128":2,"136":1,"142":1,"143":1,"145":2,"155":1,"158":2,"162":1,"167":1,"168":1}}],["often",{"2":{"162":1}}],["offers",{"2":{"161":1}}],["offer",{"2":{"144":1}}],["offset",{"2":{"32":8,"61":1}}],["off",{"2":{"4":1,"6":1,"43":4,"61":1,"89":6,"128":1}}],["of",{"2":{"1":7,"3":29,"4":66,"5":5,"6":193,"7":2,"9":4,"17":3,"18":5,"19":1,"20":2,"22":1,"23":2,"24":2,"25":1,"27":3,"31":1,"32":38,"34":5,"35":28,"36":9,"37":1,"38":13,"39":1,"41":3,"42":12,"43":84,"44":5,"45":31,"48":5,"49":12,"50":13,"51":10,"52":48,"54":9,"55":20,"57":6,"58":18,"60":2,"61":19,"63":4,"64":5,"66":6,"67":18,"69":1,"70":5,"71":5,"72":1,"73":2,"74":1,"77":5,"78":1,"80":3,"81":14,"83":1,"84":1,"85":1,"87":2,"88":1,"89":85,"91":1,"92":3,"94":1,"95":13,"97":2,"98":15,"100":3,"101":7,"102":5,"103":1,"104":2,"105":1,"107":4,"108":18,"110":3,"111":6,"112":6,"113":4,"114":1,"115":1,"117":2,"118":3,"119":19,"120":2,"121":3,"123":1,"126":5,"127":2,"128":26,"129":1,"130":1,"134":2,"135":4,"137":4,"139":3,"140":1,"142":2,"143":2,"144":5,"145":2,"148":8,"150":4,"151":2,"152":1,"154":1,"156":2,"158":4,"159":2,"161":6,"162":6,"163":1,"164":4,"165":3,"166":4,"167":2}}],["org",{"2":{"49":1,"51":1,"54":1,"89":2,"150":1}}],["organise",{"2":{"10":1}}],["orange",{"2":{"47":1,"57":1,"60":2,"63":2,"80":2,"94":2,"107":2}}],["oroginal",{"2":{"128":2}}],["oro",{"2":{"11":2}}],["originate",{"2":{"55":1}}],["originals",{"2":{"22":1}}],["original",{"2":{"6":4,"18":1,"22":1,"43":9,"48":5,"49":1,"51":1,"55":4,"126":1,"128":1,"133":1,"139":2,"145":1,"147":4,"148":1}}],["orignal",{"2":{"43":1}}],["orient",{"0":{"13":1},"1":{"14":1,"15":1},"2":{"13":7,"14":12,"43":15,"52":53}}],["orientation",{"0":{"116":1},"1":{"117":1,"118":1},"2":{"6":2,"10":1,"29":1,"35":1,"43":10,"45":2,"49":1,"51":2,"52":2,"54":1,"89":16,"117":1,"148":1}}],["ordered",{"2":{"34":1}}],["order",{"2":{"1":4,"3":1,"4":2,"6":6,"32":1,"34":1,"35":2,"38":1,"43":4,"52":1,"55":1,"58":2,"61":3,"64":1,"67":1,"77":1,"92":1,"128":2,"140":2,"148":1,"165":1}}],["or",{"0":{"24":1},"2":{"1":11,"3":3,"4":10,"6":53,"18":1,"20":1,"22":1,"23":1,"25":1,"27":2,"29":1,"32":4,"35":1,"38":1,"39":1,"41":2,"42":4,"43":24,"44":1,"48":1,"49":1,"50":3,"51":2,"52":9,"54":1,"55":2,"57":2,"58":4,"61":3,"63":1,"67":1,"69":2,"70":1,"71":1,"72":1,"73":1,"74":1,"80":2,"83":2,"84":3,"85":2,"86":1,"87":1,"88":1,"89":26,"91":2,"92":1,"94":1,"95":2,"97":1,"98":1,"104":1,"105":1,"108":1,"110":2,"114":1,"115":1,"117":2,"118":3,"119":7,"121":3,"123":1,"125":2,"127":1,"128":9,"129":1,"131":1,"133":5,"134":2,"140":2,"141":1,"142":2,"144":2,"145":2,"146":1,"148":3,"150":2,"152":2,"154":1,"156":3,"159":2,"165":1,"167":2}}],["est",{"2":{"167":1}}],["essentially",{"2":{"156":1}}],["especially",{"2":{"6":1,"18":1,"23":1,"119":1}}],["effects",{"2":{"128":3}}],["efficiently",{"2":{"20":1}}],["efficient",{"2":{"6":1,"38":1,"49":2,"51":2,"54":2,"131":1}}],["e2",{"2":{"89":4}}],["e1",{"2":{"89":8}}],["euclid",{"2":{"45":2,"58":11,"89":1,"149":1}}],["euclidean",{"2":{"4":1,"6":1,"38":13,"58":6,"145":1}}],["everything",{"2":{"148":1}}],["every",{"2":{"43":1,"61":2,"126":1,"158":1}}],["evenly",{"2":{"166":1}}],["eventually",{"2":{"43":1}}],["even",{"2":{"35":2,"45":1,"52":1,"58":1,"61":1,"121":1,"130":1,"135":1}}],["evaluated",{"2":{"165":1}}],["eval",{"2":{"29":2,"128":2}}],["epsg",{"2":{"162":13}}],["eps",{"2":{"32":2,"52":14}}],["eponymous",{"2":{"6":1,"144":1}}],["e",{"2":{"9":1,"22":1,"39":1,"119":1,"126":1,"128":2,"161":2,"162":1,"164":1}}],["eltype",{"2":{"119":4}}],["elements",{"2":{"73":1,"74":1,"87":1,"88":1,"95":1,"104":1,"105":1,"114":1,"115":1}}],["element",{"2":{"6":6,"31":1,"43":4,"48":2,"49":1,"51":1,"52":1,"54":3,"143":1,"162":1}}],["elsewhere",{"2":{"48":1}}],["elseif",{"2":{"43":5,"45":7,"49":1,"51":1,"52":14,"54":2,"55":1,"78":3,"89":10,"118":1,"119":2,"137":1,"150":2,"152":2}}],["else",{"2":{"3":6,"6":6,"32":1,"38":2,"43":19,"45":9,"48":1,"50":2,"52":9,"54":1,"55":9,"78":2,"89":17,"95":8,"119":20,"128":8,"131":1,"139":1,"141":1,"148":2,"150":4,"152":2,"153":1,"154":1,"158":1}}],["etc",{"2":{"6":1,"20":2,"34":1,"156":1,"164":1}}],["emtpty",{"2":{"119":1}}],["empty",{"2":{"4":2,"6":6,"32":2,"43":2,"49":1,"51":1,"52":2,"54":1,"119":1}}],["embedding",{"0":{"127":1,"138":1}}],["embedded",{"2":{"119":1,"127":3,"162":1}}],["embed",{"2":{"0":2,"4":1,"6":1,"127":1,"138":2}}],["errors",{"2":{"29":1,"52":1,"145":1}}],["error",{"0":{"141":1},"2":{"4":1,"6":4,"7":1,"18":1,"29":6,"38":1,"39":4,"43":2,"52":2,"53":1,"61":2,"119":1,"126":1,"133":2,"141":3,"144":5,"152":4,"158":3,"159":1}}],["edgekeys",{"2":{"119":3}}],["edge",{"2":{"3":1,"4":3,"6":4,"20":1,"29":1,"35":1,"41":1,"43":25,"45":13,"49":1,"51":1,"52":6,"54":1,"58":4,"61":1,"69":2,"84":2,"85":1,"89":7,"95":21,"110":2,"111":1,"112":1,"119":7,"159":2}}],["edges`",{"2":{"52":1}}],["edges",{"2":{"0":1,"4":2,"6":9,"43":12,"45":8,"50":3,"52":10,"55":3,"58":3,"60":2,"61":1,"63":1,"69":1,"70":3,"71":7,"72":3,"80":1,"83":3,"86":1,"89":3,"95":20,"107":1,"110":1,"119":22,"159":29}}],["earlier",{"2":{"161":3}}],["earth",{"2":{"6":2,"25":1,"144":2,"148":2,"162":2,"165":1}}],["easiest",{"2":{"163":1}}],["easier",{"2":{"155":1,"157":1}}],["easily",{"2":{"121":1}}],["east",{"2":{"45":9}}],["easy",{"2":{"1":1,"6":1,"135":1,"153":1}}],["eachindex",{"2":{"32":1,"118":1,"119":3,"128":2,"149":1,"152":1}}],["each",{"2":{"3":2,"4":3,"6":6,"9":1,"18":2,"20":1,"32":4,"35":2,"36":4,"38":1,"43":5,"45":1,"52":3,"58":1,"61":2,"67":1,"81":1,"89":6,"94":1,"95":3,"98":1,"108":1,"118":1,"119":1,"128":1,"135":2,"148":1,"163":1,"164":1,"166":2,"167":2,"168":1}}],["equatorial",{"2":{"6":6,"144":4}}],["equality",{"2":{"43":1,"52":1,"165":1}}],["equal",{"2":{"3":2,"4":16,"6":19,"32":6,"52":1,"57":1,"58":4,"60":3,"61":22,"69":1,"83":1,"89":15,"94":1,"95":2,"100":2,"110":1,"130":1}}],["equals",{"0":{"59":1,"60":1},"1":{"60":1,"61":1},"2":{"0":17,"4":3,"6":19,"29":1,"32":2,"43":4,"48":2,"52":8,"58":1,"59":1,"60":2,"61":50,"69":1,"83":1,"89":10,"95":2,"100":3,"110":1,"165":1}}],["equivalent",{"2":{"3":1,"4":4,"6":6,"35":1,"43":1,"52":1,"55":1,"61":5,"67":1,"89":1}}],["enable",{"2":{"168":1}}],["enabled",{"2":{"165":1}}],["enabling",{"0":{"168":1}}],["enclosed",{"2":{"89":1}}],["encode",{"2":{"24":1}}],["encompasses",{"2":{"18":1,"89":1}}],["encounters",{"2":{"18":1}}],["en",{"2":{"89":1,"150":1}}],["envelope",{"2":{"52":2}}],["envelopes",{"2":{"52":2}}],["enough",{"2":{"43":1}}],["entirely",{"2":{"89":1}}],["entire",{"2":{"45":1,"89":4}}],["entry",{"2":{"43":11,"50":3,"52":4,"55":3,"119":1}}],["ent",{"2":{"43":19,"48":2}}],["enter",{"2":{"43":4}}],["ensuring",{"2":{"6":1,"142":1,"145":1}}],["ensure",{"2":{"6":3,"38":1,"49":1,"51":1,"54":1,"129":2,"132":1}}],["ensures",{"2":{"6":3,"131":1,"134":3,"137":2}}],["enumerate",{"2":{"13":2,"32":1,"43":10,"45":1,"48":1,"50":1,"55":2,"89":1,"119":2,"137":2,"152":1}}],["enum",{"2":{"6":2,"43":3,"51":3,"89":3}}],["endpt",{"2":{"150":3}}],["endpoints",{"2":{"43":3,"45":1,"50":1,"52":6,"55":1,"58":2,"89":11,"95":2,"97":1}}],["endpoint=3",{"2":{"43":1}}],["endpointtype",{"2":{"43":2}}],["endpoint",{"2":{"3":1,"6":2,"43":27,"51":1,"52":16,"58":2,"66":1,"89":3,"95":2,"148":4,"150":4,"161":1}}],["ending",{"2":{"43":1,"45":1}}],["end",{"2":{"1":1,"6":1,"9":1,"13":4,"14":3,"29":4,"32":18,"35":8,"38":35,"39":3,"42":10,"43":130,"45":43,"48":9,"49":8,"50":12,"51":5,"52":31,"53":1,"54":6,"55":24,"58":19,"61":20,"73":2,"74":2,"78":20,"87":2,"88":2,"89":104,"95":21,"100":1,"104":2,"105":2,"110":1,"114":2,"115":2,"118":9,"119":44,"120":4,"121":1,"128":49,"129":1,"131":5,"133":3,"137":18,"139":4,"140":1,"141":2,"144":8,"145":8,"148":7,"149":6,"150":30,"151":3,"152":27,"153":4,"154":4,"156":1,"157":3,"158":4,"159":19}}],["enforce",{"2":{"0":1,"6":2,"158":3}}],["exits",{"2":{"43":1}}],["exit",{"2":{"43":32,"48":2,"50":3,"52":3,"55":2}}],["existingnodes",{"2":{"119":3}}],["existing",{"2":{"43":3,"54":1,"119":1,"162":2,"163":1}}],["exists",{"2":{"43":1,"45":1,"52":1}}],["exist",{"2":{"6":1,"43":1,"52":3,"158":1}}],["excluding",{"2":{"86":1,"89":1,"110":2}}],["exclude",{"2":{"78":9}}],["exclusively",{"2":{"102":1}}],["exclusive",{"2":{"45":1,"52":2}}],["exc",{"2":{"39":2,"141":2,"144":2}}],["excellent",{"2":{"23":1}}],["except",{"2":{"18":1,"19":1}}],["excess",{"2":{"5":1,"6":1,"38":1}}],["exp10",{"2":{"144":1,"148":2}}],["explicity",{"2":{"61":1}}],["explicitly",{"2":{"6":1,"18":1,"24":1,"32":2,"35":1,"38":1,"39":1,"58":2,"141":1,"144":1,"145":1}}],["expressed",{"2":{"36":2}}],["express",{"2":{"36":1}}],["experimental",{"2":{"29":3}}],["expect",{"2":{"1":1,"91":1,"140":1}}],["export",{"2":{"36":1,"142":1,"162":1,"164":1}}],["exposes",{"2":{"17":1}}],["exponential",{"2":{"9":1}}],["ext2",{"2":{"89":3}}],["ext1",{"2":{"89":3}}],["ext",{"2":{"37":15,"43":10,"45":2,"48":3,"49":8,"51":8,"52":18,"54":8,"55":14,"78":7,"89":7}}],["extrema",{"2":{"119":1,"159":1}}],["extreem",{"2":{"32":10}}],["extract",{"2":{"119":1,"128":3,"148":1}}],["extra",{"2":{"6":3,"43":1,"54":1,"142":1,"144":2,"145":1}}],["external",{"2":{"35":1,"89":2}}],["exteriors",{"2":{"9":1,"51":2,"54":2,"119":1}}],["exterior",{"2":{"3":4,"4":2,"6":10,"32":1,"34":1,"35":1,"37":1,"38":36,"42":2,"43":4,"49":2,"54":3,"55":14,"58":1,"61":2,"63":1,"64":1,"67":3,"77":1,"81":2,"89":9,"98":2,"107":1,"108":3,"111":3,"112":3,"118":6,"119":6,"131":3,"132":1,"134":1,"138":1,"161":2}}],["extending",{"2":{"95":1}}],["extended",{"2":{"58":1}}],["extensions",{"2":{"164":1}}],["extension",{"2":{"1":1,"6":1,"38":1,"39":1,"66":1,"120":1,"140":3,"141":2,"144":1,"145":1,"146":1,"164":1}}],["extent=true",{"2":{"138":1}}],["extent=nothing",{"2":{"128":1}}],["extent=",{"2":{"128":3}}],["extent=false",{"2":{"128":1,"148":1}}],["extent=gi",{"2":{"119":3}}],["extent`",{"2":{"125":1,"138":1}}],["extents",{"2":{"4":3,"6":3,"29":5,"45":1,"52":3,"89":5,"95":1,"119":3,"128":2,"138":2,"159":2}}],["extent",{"0":{"138":1},"2":{"0":2,"1":4,"4":3,"6":11,"24":1,"29":2,"37":1,"44":1,"45":1,"52":10,"89":4,"95":2,"119":12,"125":3,"127":4,"128":28,"138":2,"148":1,"157":1,"159":7}}],["exactly",{"2":{"152":1}}],["exactpredicates",{"2":{"7":1,"13":2,"14":2,"29":1}}],["exact",{"2":{"3":5,"6":5,"7":2,"12":1,"13":1,"43":36,"45":6,"48":7,"49":5,"51":5,"52":7,"53":1,"54":5,"55":7,"64":2,"67":3,"69":1,"70":3,"71":3,"72":1,"77":2,"78":1,"81":2,"83":1,"84":3,"85":2,"86":1,"89":24,"92":2,"95":3,"98":2,"100":1,"101":3,"102":1,"103":1,"108":3,"110":1,"111":3,"112":3,"113":1,"119":1,"136":1}}],["exampleusing",{"2":{"37":1}}],["examples",{"0":{"143":1,"147":1},"2":{"3":8,"4":1,"6":11,"61":1,"64":1,"67":1,"77":1,"78":1,"81":1,"95":1,"98":1,"108":1,"118":2,"159":1}}],["example",{"0":{"37":1,"130":1,"136":1,"166":1,"167":1},"2":{"1":3,"3":2,"6":13,"11":1,"20":1,"23":2,"31":1,"34":1,"37":1,"41":1,"42":1,"44":1,"47":1,"48":1,"49":1,"51":1,"52":1,"54":1,"57":1,"60":1,"61":1,"63":1,"66":1,"76":1,"78":1,"80":1,"89":1,"91":1,"92":1,"94":1,"97":1,"107":1,"118":1,"119":8,"121":1,"128":2,"130":1,"132":1,"135":1,"136":1,"139":1,"147":1,"148":2,"153":1,"158":1,"166":1,"168":1}}],["either",{"2":{"1":2,"3":1,"6":4,"22":1,"25":1,"43":9,"49":1,"51":1,"52":2,"54":1,"55":1,"57":1,"67":1,"89":5,"91":1,"97":1,"98":1,"108":1,"119":1,"128":3,"133":1,"165":1}}],["lj",{"2":{"119":2}}],["lrs",{"2":{"148":2}}],["lr",{"2":{"119":3}}],["lp",{"2":{"89":2}}],["lstart",{"2":{"89":2}}],["ls",{"2":{"89":12}}],["ll",{"2":{"17":1,"37":1,"143":2,"148":1,"162":1,"163":1}}],["l",{"2":{"14":4,"38":6,"78":2,"89":32}}],["lgeos",{"2":{"148":1}}],["lg",{"2":{"13":1,"14":1,"15":2,"144":9,"148":17}}],["l305",{"2":{"6":1}}],["loudly",{"2":{"128":1}}],["log10",{"2":{"144":2,"148":4}}],["log",{"2":{"123":3,"124":1,"143":2}}],["location",{"2":{"43":1,"89":6}}],["local",{"2":{"32":3,"35":1,"43":4,"50":1,"55":1,"119":1}}],["loose",{"2":{"129":1}}],["lookup",{"2":{"119":1,"128":1}}],["looks",{"2":{"41":1}}],["look",{"2":{"34":2,"119":2,"130":1,"143":1}}],["looping",{"2":{"119":1}}],["loop",{"2":{"32":1,"38":2,"42":3,"43":8,"45":1,"52":1,"55":1,"89":5,"119":3,"150":1}}],["lower",{"2":{"6":1,"7":1,"119":1,"166":1}}],["lon",{"2":{"6":2,"143":1,"144":2}}],["longitude",{"2":{"162":2}}],["long",{"2":{"6":1,"52":1,"144":1,"167":1}}],["longer",{"2":{"6":3,"142":1,"144":2,"145":1}}],["lots",{"2":{"162":1}}],["lot",{"2":{"6":1,"23":1,"32":1,"35":1,"42":1,"45":1,"58":1,"61":1,"95":1,"121":1,"143":1,"158":2}}],["load",{"2":{"128":2,"148":1,"160":2}}],["loading",{"2":{"39":1,"141":1,"144":1}}],["loads",{"2":{"5":1,"6":1,"38":1}}],["loaded",{"2":{"1":1,"39":3,"140":1,"141":2,"144":2}}],["laptop",{"2":{"167":1}}],["land",{"2":{"162":8}}],["layers",{"2":{"126":1}}],["label",{"2":{"14":4,"15":2,"57":1,"119":3,"143":2,"147":2,"148":2}}],["labels",{"2":{"13":2,"119":1}}],["lazily",{"2":{"6":1,"123":1,"128":1}}],["latitude",{"2":{"162":2}}],["later",{"2":{"35":1,"119":1}}],["lat",{"2":{"6":3,"143":1,"144":3}}],["larger",{"2":{"43":1,"54":1,"152":1}}],["large",{"2":{"6":8,"38":1,"148":2,"164":1,"167":1}}],["lastindex",{"2":{"152":1}}],["last",{"2":{"4":3,"6":3,"9":1,"32":11,"35":2,"37":2,"43":9,"45":4,"58":7,"61":5,"89":20,"100":1,"119":8,"130":1,"137":2,"150":1}}],["lt",{"2":{"6":6,"52":4,"143":1}}],["len",{"2":{"150":7}}],["length",{"2":{"0":1,"5":1,"6":5,"9":1,"18":1,"38":32,"40":1,"41":1,"42":22,"43":11,"45":1,"48":2,"49":2,"51":1,"52":1,"54":1,"55":1,"89":1,"119":10,"128":3,"137":2,"143":1,"149":1,"150":1,"151":1,"152":7}}],["legend",{"2":{"148":4}}],["le",{"2":{"89":10}}],["leaving",{"2":{"130":1}}],["leaf",{"2":{"128":4}}],["leading",{"2":{"161":1}}],["lead",{"2":{"52":1,"130":1}}],["least",{"2":{"3":4,"6":4,"43":1,"52":1,"55":2,"89":14,"95":6,"98":1,"101":3,"102":2,"103":2,"104":1,"105":1,"108":1,"114":1,"118":1}}],["leftover",{"2":{"43":1}}],["left=1",{"2":{"43":1}}],["left",{"2":{"38":1,"43":5,"118":1,"119":2,"150":17,"152":5,"165":1}}],["lets",{"2":{"35":1}}],["let",{"2":{"34":1,"41":1,"89":1,"119":3,"143":1,"161":6,"162":7,"163":2,"164":2,"168":1}}],["levels",{"2":{"6":1,"119":1,"126":1,"156":1}}],["level",{"2":{"6":1,"7":1,"9":1,"18":2,"20":1,"27":1,"126":1,"128":2,"129":1,"131":1,"133":4,"134":1,"135":1,"137":2,"162":2}}],["less",{"2":{"3":1,"6":7,"32":1,"35":1,"38":1,"42":1,"45":1,"58":1,"61":1,"78":1,"95":1,"119":1,"148":1,"149":1}}],["l289",{"2":{"6":1}}],["l2",{"2":{"3":4,"4":4,"6":8,"60":4,"61":12,"63":8,"77":2,"80":5,"94":4,"97":3,"98":2,"107":8}}],["l195",{"2":{"6":1}}],["l177",{"2":{"6":1}}],["l1",{"2":{"3":6,"4":4,"6":10,"60":4,"61":12,"63":8,"66":4,"67":2,"76":4,"77":2,"80":5,"94":4,"97":3,"98":2,"107":8}}],["li",{"2":{"119":2}}],["lie",{"2":{"52":1}}],["lies",{"2":{"43":3,"166":1}}],["limitations",{"2":{"52":1}}],["limits",{"2":{"37":1}}],["limited",{"2":{"6":1,"142":1,"145":1}}],["library",{"2":{"48":1,"164":1}}],["libraries",{"2":{"35":1,"135":1,"164":1}}],["libgeos",{"2":{"6":2,"13":1,"14":1,"15":1,"23":1,"35":1,"39":5,"120":1,"144":7,"148":4,"158":2}}],["literate",{"2":{"29":1,"32":1,"35":1,"38":1,"39":1,"42":1,"43":1,"45":1,"48":1,"50":1,"52":1,"53":1,"55":1,"58":1,"61":1,"64":1,"74":1,"77":1,"78":1,"88":1,"89":1,"92":1,"95":1,"105":1,"115":1,"118":1,"119":1,"120":1,"128":1,"131":1,"134":1,"137":1,"138":1,"139":1,"141":1,"145":1,"152":1,"153":1,"154":1,"158":1,"159":1}}],["lift",{"2":{"14":2}}],["lin",{"2":{"144":5}}],["linrange",{"2":{"13":2,"14":5,"37":2,"57":1,"119":2,"144":1,"148":2}}],["linering",{"2":{"162":1}}],["linewidth",{"2":{"34":1,"161":1}}],["linesegment",{"2":{"118":2,"145":1}}],["lines",{"0":{"70":1,"84":1,"101":1,"111":1},"2":{"3":1,"4":4,"6":5,"43":3,"47":1,"52":9,"57":1,"60":4,"61":4,"63":3,"66":1,"67":1,"76":2,"78":1,"80":3,"89":2,"91":3,"94":4,"95":2,"97":4,"107":3,"108":1,"119":3,"146":1,"161":4}}],["linestrings",{"2":{"4":2,"6":2,"9":1,"61":2,"117":1,"129":1,"161":1}}],["linestringtrait",{"2":{"3":2,"4":4,"6":9,"11":3,"32":1,"42":4,"51":2,"58":2,"61":8,"69":1,"70":4,"71":1,"78":6,"83":1,"84":5,"95":4,"100":1,"101":4,"102":1,"110":1,"111":4,"112":1,"126":1,"133":2,"134":1,"145":2,"156":2}}],["linestring",{"2":{"3":5,"4":6,"6":15,"18":1,"20":1,"32":2,"42":2,"58":4,"60":2,"61":2,"63":2,"64":1,"69":1,"70":3,"77":2,"80":2,"81":1,"83":1,"84":4,"89":2,"94":2,"100":1,"101":3,"102":1,"107":2,"108":1,"110":1,"111":4,"112":1,"118":7,"128":4,"159":3,"161":5}}],["linetrait",{"2":{"3":2,"4":4,"6":6,"32":1,"43":2,"48":2,"51":2,"58":2,"61":8,"69":1,"70":4,"71":1,"83":1,"84":5,"95":4,"100":1,"101":4,"102":1,"110":1,"111":4,"112":1}}],["line2",{"2":{"3":3,"6":7,"51":2,"52":2,"78":5,"91":3,"92":2,"95":3,"118":5}}],["line1",{"2":{"3":4,"6":8,"51":2,"52":2,"78":5,"91":3,"92":2,"95":5,"118":5}}],["linea",{"2":{"1":1,"6":1,"153":1}}],["linearmap",{"2":{"148":1}}],["linearalgebra",{"2":{"29":1}}],["linear",{"2":{"4":7,"6":10,"9":1,"35":2,"38":1,"41":1,"42":3,"45":1,"52":1,"58":5,"61":8,"71":1,"89":2,"101":1,"102":2,"111":1,"117":1,"128":2,"131":3,"143":5,"144":3,"145":4}}],["linearr",{"2":{"1":1,"6":1,"153":1}}],["linearrings",{"2":{"9":1,"85":1,"119":6,"129":1,"161":1}}],["linearringtrait",{"2":{"4":4,"6":6,"11":3,"32":3,"35":2,"42":4,"43":4,"51":2,"58":2,"61":8,"69":1,"70":1,"71":4,"83":1,"84":2,"85":3,"100":1,"101":1,"102":4,"110":1,"111":1,"112":4,"133":1,"145":2,"148":1,"156":2}}],["linearring",{"2":{"1":10,"3":2,"4":1,"6":15,"32":2,"42":2,"43":1,"58":1,"69":1,"71":3,"83":1,"84":1,"85":2,"89":2,"95":4,"100":1,"101":1,"102":3,"110":1,"112":4,"118":1,"119":3,"128":5,"129":1,"130":6,"131":1,"136":13,"148":1,"153":8,"161":24,"162":14,"166":2}}],["linearsegments",{"2":{"0":1,"6":4,"142":1,"143":1,"144":3,"145":5}}],["line",{"0":{"89":1},"2":{"0":1,"3":13,"4":9,"6":52,"23":1,"31":2,"32":7,"41":3,"42":10,"43":12,"45":8,"47":6,"48":18,"51":8,"52":67,"55":6,"58":11,"61":5,"64":2,"66":2,"67":1,"69":2,"70":11,"71":8,"76":1,"78":11,"81":2,"83":1,"84":9,"85":4,"89":141,"91":2,"92":2,"94":3,"95":12,"97":2,"98":2,"100":1,"101":10,"102":3,"108":2,"110":2,"111":10,"112":7,"118":6,"119":2,"145":1,"148":1,"149":1,"150":4,"151":1,"159":3,"161":3}}],["lineorientation",{"2":{"0":1,"6":2,"51":2}}],["lists",{"2":{"20":1,"43":3,"95":1}}],["listed",{"2":{"6":1,"32":1,"148":1}}],["list",{"2":{"6":16,"9":1,"32":20,"43":233,"48":20,"49":14,"50":8,"51":13,"52":5,"54":13,"55":1,"167":2}}],["likely",{"2":{"126":1}}],["like",{"0":{"53":1},"2":{"1":2,"6":9,"17":1,"18":2,"19":1,"20":1,"23":1,"24":1,"27":1,"35":1,"37":1,"38":1,"41":1,"45":1,"49":1,"51":1,"54":1,"57":1,"58":1,"61":1,"121":2,"128":2,"133":2,"134":1,"142":1,"143":1,"156":2,"162":2}}],["image",{"2":{"119":1}}],["impossible",{"2":{"48":1,"94":1}}],["important",{"2":{"143":1}}],["import",{"2":{"1":3,"6":5,"13":2,"14":2,"15":1,"29":5,"31":1,"34":1,"39":1,"41":1,"44":1,"48":1,"49":1,"51":1,"52":1,"54":1,"57":1,"60":1,"61":1,"63":1,"64":1,"66":1,"67":1,"76":1,"77":1,"78":1,"80":1,"81":1,"91":1,"92":1,"94":1,"95":1,"97":1,"98":1,"107":1,"108":1,"118":3,"128":2,"141":1,"144":2,"147":2,"148":3,"153":2,"159":1,"160":5}}],["implements",{"2":{"158":1}}],["implementing",{"2":{"6":1,"148":1}}],["implement",{"2":{"6":1,"17":1,"23":1,"32":1,"35":1,"38":1,"42":1,"45":1,"58":1,"61":1,"67":1,"81":1,"95":1,"98":1,"108":1,"121":1,"132":1,"133":3,"134":1}}],["implementation",{"0":{"32":1,"35":1,"42":1,"45":1,"48":1,"58":1,"61":1,"64":1,"67":1,"77":1,"81":1,"92":1,"95":1,"98":1,"108":1,"125":1,"131":1,"137":1,"145":1},"2":{"6":1,"32":3,"35":3,"38":1,"42":3,"45":3,"54":1,"58":3,"61":3,"64":1,"67":2,"77":1,"81":2,"92":1,"95":3,"98":2,"108":2,"119":2,"120":1,"140":1,"148":1,"158":1}}],["implementations",{"2":{"6":1,"67":1,"81":1,"98":1,"108":1,"120":1,"146":1,"158":3}}],["implemented",{"0":{"120":1},"2":{"1":1,"6":2,"29":1,"35":1,"38":3,"48":2,"50":2,"52":2,"55":2,"58":2,"120":1,"121":2,"133":2,"140":1,"146":1}}],["improvements",{"2":{"9":2,"10":1}}],["improve",{"2":{"4":1,"6":1,"138":1}}],["i=2",{"2":{"118":1}}],["ipoints",{"2":{"89":4}}],["ip",{"2":{"61":2}}],["ipt",{"2":{"43":8}}],["ihole",{"2":{"61":2}}],["ih",{"2":{"55":20}}],["i2",{"2":{"45":2}}],["i1",{"2":{"45":2}}],["ii",{"2":{"43":8}}],["io",{"2":{"39":5,"141":5,"144":5}}],["i+1",{"2":{"38":8,"119":1,"150":2,"152":1}}],["i",{"2":{"9":1,"13":4,"22":1,"32":14,"35":1,"38":16,"43":28,"45":4,"50":2,"54":2,"55":4,"58":2,"61":8,"78":7,"89":28,"118":14,"119":17,"128":14,"145":2,"149":3,"150":12,"152":28,"159":2,"161":2,"162":1,"167":3}}],["id",{"2":{"163":1}}],["identical",{"2":{"128":1,"136":1}}],["identity",{"2":{"119":4,"128":2,"138":1}}],["ideal",{"2":{"119":1}}],["idea",{"2":{"6":1,"20":1,"25":1,"38":1,"121":1}}],["idx`",{"2":{"43":1}}],["idx",{"2":{"32":6,"43":167,"45":9,"48":23,"49":5,"51":5,"54":2,"137":34,"150":51}}],["id=",{"2":{"6":2}}],["ignored",{"2":{"6":1,"119":1}}],["ignore",{"2":{"6":1,"119":2}}],["i>",{"2":{"6":2}}],["i>method",{"2":{"6":2}}],["innerjoin",{"2":{"166":1,"167":1}}],["inner",{"2":{"89":6,"128":3,"165":1}}],["innacurracies",{"2":{"52":1}}],["inline",{"2":{"89":4,"118":1,"128":21,"157":2}}],["inlcuding",{"2":{"52":1,"70":1,"71":1}}],["in=1",{"2":{"89":1}}],["in`",{"2":{"89":1}}],["inject",{"0":{"53":1},"2":{"141":1}}],["ind",{"2":{"167":2}}],["individual",{"2":{"162":1}}],["indicate",{"2":{"128":1}}],["indicates",{"2":{"20":1}}],["indicies",{"2":{"43":2}}],["indices",{"2":{"43":2,"128":4,"152":16}}],["indeed",{"2":{"130":1}}],["index",{"2":{"38":8,"43":11,"89":1,"128":1,"150":1}}],["inds",{"2":{"119":3}}],["inplace",{"2":{"38":1}}],["inputs",{"2":{"6":1,"43":1,"61":1,"64":1,"77":1,"92":1,"152":1}}],["input",{"2":{"6":12,"32":1,"48":1,"49":1,"51":1,"52":1,"54":1,"119":1,"121":1,"144":3,"145":2,"149":1,"150":1,"151":1,"162":1}}],["inbounds",{"2":{"38":16,"58":5,"89":1}}],["inspiration",{"2":{"48":1}}],["inspired",{"2":{"47":1,"48":2}}],["inside",{"2":{"32":3,"41":1,"43":3,"45":1,"49":1,"50":1,"51":1,"52":1,"54":1,"55":2,"57":3,"58":1,"69":1,"89":1,"107":1,"110":1,"119":2}}],["insertion",{"2":{"43":1}}],["insert",{"2":{"32":1,"150":1}}],["instability",{"2":{"24":2}}],["instantiating",{"2":{"20":1}}],["instead",{"2":{"18":1,"24":1}}],["instructs",{"2":{"6":1,"158":2}}],["investigate",{"2":{"119":1}}],["invalid",{"2":{"20":1,"50":2,"130":1,"135":1,"136":1}}],["invoke",{"2":{"20":1}}],["involved",{"2":{"121":1}}],["involve",{"2":{"20":1}}],["involving",{"2":{"6":3,"49":1,"51":1,"54":1}}],["invocation",{"2":{"18":1}}],["init=nothing",{"2":{"128":1}}],["init=typemax",{"2":{"58":2}}],["init=zero",{"2":{"35":1,"45":1}}],["initial",{"2":{"52":2,"144":1}}],["initially",{"2":{"43":1}}],["initialize",{"2":{"38":3,"42":2,"43":1,"52":1}}],["init",{"2":{"19":1,"29":1,"32":1,"42":2,"128":30,"144":4}}],["incorrect",{"2":{"129":1,"130":1}}],["increase",{"2":{"43":1,"89":1}}],["increasing",{"2":{"6":1,"148":1}}],["increment",{"2":{"38":5}}],["including",{"2":{"32":1,"43":2,"58":1,"69":1,"72":1,"89":2}}],["include",{"2":{"29":40,"32":1,"43":1,"58":2,"148":2,"157":1,"162":2,"163":1}}],["included",{"2":{"6":2,"55":2,"134":2,"137":2,"162":1}}],["includes",{"2":{"4":2,"6":2,"55":1,"58":2,"61":1,"89":1}}],["incircle",{"0":{"16":1}}],["ing",{"2":{"1":1,"6":2,"38":1,"153":1}}],["intr",{"2":{"43":28,"45":9,"48":16,"52":8}}],["intr2",{"2":{"43":2,"52":14}}],["intr1",{"2":{"43":3,"52":21,"89":2}}],["intrs",{"2":{"43":10,"52":5}}],["introduction",{"0":{"25":1},"1":{"26":1,"27":1,"28":1}}],["introducing",{"2":{"24":1}}],["introduces",{"2":{"24":1}}],["int",{"2":{"43":6,"55":7,"78":7,"145":1,"148":1,"150":5,"151":1,"152":1}}],["integrate",{"2":{"35":1}}],["integrating",{"2":{"35":1}}],["integrals",{"2":{"34":1}}],["integral",{"2":{"34":1}}],["intended",{"2":{"6":1,"133":2,"134":1}}],["intermediate",{"2":{"45":1}}],["inter2",{"2":{"45":15}}],["inter1",{"2":{"45":23}}],["interpreted",{"2":{"38":1}}],["interpolation",{"2":{"5":1,"6":1,"37":1,"38":2,"142":1}}],["interpolated",{"2":{"5":3,"6":3,"38":17,"142":1}}],["interpolate",{"2":{"0":2,"5":2,"6":4,"36":1,"37":2,"38":25}}],["interest",{"2":{"38":1,"58":1}}],["internal",{"2":{"37":1}}],["internals",{"2":{"24":1}}],["inter",{"2":{"6":3,"43":21,"48":1,"49":1,"51":5,"52":4}}],["interface",{"0":{"133":1},"2":{"6":2,"20":1,"128":1,"132":1,"133":4,"134":1,"148":1,"162":1}}],["interacted",{"2":{"89":1}}],["interaction",{"0":{"89":1},"2":{"89":2}}],["interactions",{"2":{"43":1,"55":3,"89":15}}],["interactive",{"2":{"13":1,"14":1}}],["interacting",{"2":{"6":1,"51":1,"89":2}}],["interacts",{"2":{"3":1,"6":1,"89":3,"97":1,"98":1,"101":3,"102":1,"103":1}}],["interact",{"2":{"3":2,"6":2,"54":1,"55":1,"80":1,"89":5,"92":1,"97":1,"98":1,"100":1,"101":2,"102":2,"103":1}}],["interior",{"2":{"3":6,"6":7,"32":9,"34":1,"38":7,"42":5,"43":1,"55":18,"63":1,"64":1,"66":1,"67":3,"70":5,"71":1,"72":2,"76":2,"77":1,"78":1,"81":2,"83":2,"84":6,"85":3,"89":15,"97":1,"98":3,"101":1,"102":2,"103":2,"107":1,"108":3,"113":2,"118":2,"131":1,"134":1}}],["interiors",{"2":{"3":6,"6":7,"38":20,"63":1,"64":1,"66":1,"76":1,"77":1,"80":1,"81":1,"86":1,"89":5,"91":1,"92":1,"97":1,"98":1,"100":1,"101":2,"102":1,"107":1,"108":1,"111":3,"112":3}}],["intersectingpolygons",{"2":{"6":3}}],["intersecting",{"0":{"135":1},"1":{"136":1,"137":1},"2":{"6":4,"29":1,"43":2,"55":2,"134":4,"135":1,"137":4}}],["intersections",{"0":{"52":1},"2":{"43":2,"45":2,"50":1,"51":2,"52":1,"55":1,"89":2}}],["intersection",{"0":{"51":1,"90":1},"1":{"91":1,"92":1},"2":{"0":2,"3":3,"6":19,"9":1,"15":4,"23":1,"29":1,"43":38,"45":6,"48":3,"49":4,"50":4,"51":15,"52":73,"54":2,"55":2,"78":2,"89":6,"91":1,"95":5}}],["intersect",{"2":{"3":8,"6":11,"43":4,"45":3,"49":2,"51":1,"52":1,"54":1,"55":5,"63":1,"64":2,"66":1,"67":1,"77":1,"81":1,"84":1,"86":1,"89":4,"91":2,"95":1,"107":1,"108":2,"111":3,"112":3,"136":1,"137":4}}],["intersects",{"0":{"91":1},"2":{"0":2,"3":3,"6":6,"29":1,"43":1,"52":2,"55":2,"78":2,"90":1,"91":4,"92":4,"95":5,"113":1,"137":2,"165":1}}],["into",{"2":{"5":1,"6":7,"17":1,"32":1,"35":1,"38":1,"42":4,"43":2,"48":1,"49":1,"51":1,"89":1,"119":4,"123":1,"128":6,"137":1,"148":1,"156":1,"159":2,"161":2,"165":1}}],["int64",{"2":{"1":6,"6":6,"130":6,"149":1,"150":1,"152":1,"153":6,"161":14}}],["info",{"2":{"142":1}}],["information",{"2":{"6":1,"27":1,"38":1,"43":2,"44":1,"52":1,"89":1,"160":1,"162":3,"164":2}}],["infinity",{"2":{"89":1,"95":1}}],["inf",{"2":{"1":1,"9":1,"48":2,"149":1,"152":3}}],["in",{"0":{"23":1},"2":{"1":6,"3":3,"4":1,"5":4,"6":49,"7":1,"9":2,"13":6,"14":2,"17":2,"18":4,"20":1,"23":3,"24":2,"25":1,"27":1,"28":1,"29":2,"32":7,"34":1,"35":3,"36":2,"38":22,"39":1,"41":2,"42":5,"43":72,"45":31,"48":6,"49":9,"50":3,"51":5,"52":29,"54":11,"55":28,"57":6,"58":6,"60":1,"61":17,"63":2,"64":1,"67":10,"70":1,"71":1,"72":1,"73":1,"74":1,"77":1,"78":7,"81":9,"83":1,"84":1,"85":1,"87":1,"88":1,"89":135,"91":2,"92":1,"94":1,"95":11,"97":1,"98":11,"102":1,"104":1,"105":1,"107":1,"108":10,"111":3,"112":3,"114":1,"115":1,"118":4,"119":10,"120":3,"121":1,"123":3,"126":2,"127":1,"128":12,"132":1,"133":1,"134":2,"135":1,"137":7,"138":1,"139":2,"140":3,"141":1,"142":2,"143":2,"144":14,"145":7,"146":1,"148":5,"149":2,"150":4,"151":1,"152":5,"153":2,"154":1,"155":4,"156":1,"157":1,"158":4,"159":8,"160":1,"161":2,"162":6,"164":2,"165":4,"166":3,"167":1,"168":1}}],["itererable",{"2":{"159":1}}],["iter",{"2":{"128":31}}],["iterate",{"2":{"38":2,"126":1,"128":5}}],["iteration",{"2":{"35":1}}],["iterators",{"2":{"13":1,"38":1,"43":5,"45":3,"51":1,"55":2,"119":1,"128":11,"137":6,"145":1}}],["iterator",{"2":{"6":2,"43":4,"51":2,"123":2,"128":2}}],["iterabletype",{"2":{"128":10}}],["iterable",{"2":{"4":1,"6":3,"18":1,"35":1,"45":1,"123":1,"128":37,"161":1}}],["iterables",{"2":{"1":2,"6":2,"22":1,"128":6}}],["ith",{"2":{"43":3,"55":7}}],["itself",{"2":{"45":1,"118":1,"126":1}}],["its",{"2":{"5":1,"6":10,"18":1,"34":1,"38":1,"43":2,"45":4,"55":1,"70":1,"123":1,"128":1,"132":1,"148":1,"149":1,"150":1,"151":3,"165":1}}],["it",{"2":{"1":4,"4":1,"6":19,"9":1,"18":11,"19":2,"20":1,"22":1,"27":3,"28":1,"31":1,"32":1,"34":2,"35":3,"37":1,"39":1,"42":2,"43":2,"44":1,"45":2,"49":1,"50":1,"51":1,"52":4,"54":1,"55":3,"58":3,"61":1,"66":2,"69":3,"83":3,"89":14,"94":1,"95":1,"100":2,"110":3,"117":1,"118":2,"119":4,"121":3,"123":3,"126":3,"127":1,"128":15,"130":1,"131":1,"132":1,"134":1,"135":1,"140":5,"143":2,"144":1,"148":1,"150":1,"155":1,"156":2,"157":1,"158":7,"162":6,"164":3,"167":2,"168":2}}],["iff",{"2":{"128":1}}],["if",{"0":{"53":1},"2":{"1":5,"3":17,"4":19,"5":1,"6":73,"18":1,"22":2,"31":1,"32":15,"34":1,"35":6,"38":5,"39":3,"42":1,"43":95,"45":36,"48":8,"49":13,"50":12,"51":9,"52":44,"54":10,"55":22,"57":2,"58":8,"60":2,"61":35,"63":1,"64":1,"66":1,"67":2,"69":4,"70":3,"71":3,"72":2,"73":1,"74":1,"76":1,"77":1,"78":9,"80":1,"81":3,"83":5,"84":4,"85":2,"86":2,"87":1,"88":1,"89":132,"91":1,"92":1,"94":4,"95":16,"97":1,"98":2,"100":4,"101":3,"102":2,"103":2,"104":1,"105":1,"107":1,"108":2,"110":5,"111":3,"112":3,"113":1,"114":1,"115":1,"118":5,"119":35,"123":1,"126":1,"128":21,"131":1,"133":1,"134":2,"135":1,"137":12,"138":1,"139":1,"140":3,"141":2,"144":6,"145":2,"148":1,"150":12,"152":12,"153":1,"154":1,"157":1,"158":2,"162":1,"164":1,"166":2,"167":1}}],["isolate",{"2":{"148":1}}],["isodd",{"2":{"48":1}}],["istable",{"2":{"128":2}}],["isequal",{"2":{"119":1}}],["iseven",{"2":{"89":1}}],["isempty",{"2":{"35":1,"38":4,"45":1,"49":1,"50":2,"51":1,"119":1,"133":1,"150":1}}],["isparallel",{"2":{"89":1,"118":8}}],["is3d",{"2":{"61":1,"128":1,"139":1,"153":1,"154":1,"159":10}}],["issue",{"2":{"43":1}}],["issues",{"2":{"25":1}}],["isa",{"2":{"18":1,"38":9,"128":4,"159":1}}],["isnothing",{"2":{"39":1,"43":9,"48":1,"50":2,"52":2,"55":2,"61":1,"119":1,"141":1,"144":1,"148":1,"149":1,"150":5,"151":1,"152":6}}],["isn",{"2":{"6":1,"35":1,"43":4,"45":1,"48":1,"50":1,"52":3,"55":2,"58":3,"61":1,"66":1,"89":9,"95":1,"148":1,"158":1}}],["isconcave",{"0":{"118":1},"2":{"0":1,"6":2,"116":1,"118":3}}],["isclockwise",{"0":{"117":1},"2":{"0":1,"6":2,"45":1,"116":1,"118":5,"119":2}}],["is",{"0":{"31":1,"34":2,"41":1,"44":1,"47":1,"57":2,"60":1,"63":1,"66":1,"76":1,"80":1,"91":1,"94":1,"97":1,"107":1,"126":1},"2":{"0":1,"1":10,"3":8,"4":43,"5":1,"6":105,"9":3,"11":1,"13":1,"14":1,"18":3,"19":1,"20":1,"22":3,"23":2,"25":2,"31":1,"32":19,"34":7,"35":19,"36":2,"37":2,"38":15,"39":3,"41":2,"42":5,"43":82,"44":3,"45":22,"47":1,"48":2,"49":4,"50":13,"51":4,"52":40,"54":7,"55":20,"57":8,"58":23,"61":13,"63":2,"64":3,"66":4,"67":4,"69":7,"70":3,"71":3,"72":1,"73":1,"74":1,"77":3,"78":3,"80":1,"81":5,"83":9,"84":4,"85":2,"86":1,"87":1,"88":1,"89":91,"92":2,"94":3,"95":12,"98":4,"100":2,"107":4,"108":5,"110":8,"111":3,"112":3,"113":1,"114":2,"115":1,"117":2,"118":7,"119":11,"120":1,"121":2,"123":1,"126":3,"127":1,"128":24,"129":7,"130":2,"131":1,"132":3,"133":2,"134":1,"135":4,"136":1,"137":2,"139":1,"140":7,"141":2,"142":3,"143":3,"144":9,"145":6,"147":1,"148":4,"149":1,"150":2,"151":1,"153":2,"155":1,"156":1,"157":1,"158":3,"161":4,"162":8,"163":1,"164":3,"165":2,"166":5,"167":2}}],["cpu",{"2":{"167":1}}],["cy",{"2":{"118":2}}],["cyan",{"2":{"39":1,"141":1,"144":1}}],["cx",{"2":{"118":2}}],["cdot",{"2":{"118":1}}],["cs",{"2":{"89":9}}],["cshape",{"2":{"41":3}}],["cw",{"2":{"45":2}}],["cb",{"2":{"37":1,"119":1}}],["cgrad",{"2":{"37":1}}],["cgal",{"2":{"37":1}}],["c",{"2":{"35":1,"41":1,"45":4,"48":5,"53":3,"89":24,"144":1}}],["chunks",{"2":{"128":8}}],["chunk",{"2":{"128":12}}],["choose",{"2":{"119":2}}],["chose",{"2":{"24":1,"119":1}}],["changes",{"2":{"43":1}}],["changed",{"2":{"43":1}}],["change",{"2":{"24":1,"43":1}}],["chain=2",{"2":{"43":1}}],["chain=1",{"2":{"43":1}}],["chain",{"2":{"43":66,"50":3,"52":4,"55":4}}],["chains",{"2":{"20":1,"43":1}}],["chairmarks",{"2":{"13":1,"144":1,"148":1}}],["children",{"2":{"148":1}}],["child",{"2":{"6":2,"123":2,"128":7}}],["checkargs",{"2":{"149":1,"150":1,"151":1,"152":1}}],["checking",{"2":{"61":1,"150":1}}],["checks",{"0":{"78":1,"90":1},"1":{"91":1,"92":1},"2":{"39":1,"43":1,"52":1,"60":1,"63":1,"66":1,"76":1,"80":1,"89":5,"91":1,"94":1,"95":1,"97":1,"107":1,"166":1}}],["check",{"2":{"4":1,"6":1,"7":1,"42":1,"43":8,"45":3,"48":1,"49":1,"52":4,"53":1,"54":1,"61":8,"89":11,"119":5,"123":3,"124":1,"136":1,"138":1,"143":2,"150":1,"152":1}}],["checked",{"2":{"4":1,"6":1,"43":1,"52":1,"89":1,"138":1}}],["clear",{"2":{"44":1}}],["clearly",{"2":{"31":1,"34":1,"57":1}}],["clamped",{"2":{"52":18}}],["clamp",{"2":{"32":1,"52":1}}],["classified",{"2":{"43":1}}],["classify",{"2":{"43":4}}],["class",{"2":{"6":1,"119":1}}],["clipping",{"0":{"43":1,"49":1,"50":1,"52":1,"54":1,"55":1},"2":{"6":1,"9":1,"29":8,"43":9,"48":3,"49":1,"51":1,"54":1,"135":1}}],["closure",{"2":{"128":2}}],["closing",{"2":{"32":1}}],["close",{"2":{"32":5,"43":2,"45":1,"48":1,"52":1,"58":9,"119":1,"130":1,"131":4}}],["closest",{"2":{"4":3,"6":3,"52":2,"57":1,"58":6}}],["closed2",{"2":{"61":2}}],["closed1",{"2":{"61":2}}],["closed",{"0":{"129":1},"1":{"130":1,"131":1},"2":{"4":4,"6":11,"9":1,"29":1,"32":6,"35":3,"42":3,"43":1,"45":1,"52":1,"55":3,"61":21,"69":2,"70":5,"71":5,"83":2,"84":5,"85":3,"89":52,"101":5,"102":1,"110":3,"111":5,"112":5,"118":1,"119":1,"129":1,"130":1,"131":2,"132":1,"134":1,"161":1}}],["closedring",{"2":{"0":1,"6":1,"129":1,"130":1,"131":4,"132":1,"133":1,"134":1}}],["clockwise",{"2":{"4":1,"6":4,"9":1,"34":1,"35":1,"45":7,"117":2,"118":3,"119":1}}],["ceil",{"2":{"145":1}}],["ce",{"2":{"89":11}}],["certianly",{"2":{"52":1}}],["certain",{"2":{"17":1,"18":1,"27":1}}],["central",{"2":{"43":1}}],["centroids",{"2":{"41":1,"42":1}}],["centroid",{"0":{"40":1,"41":1},"1":{"41":1,"42":1},"2":{"0":4,"4":2,"6":6,"29":1,"40":3,"41":4,"42":38,"121":1,"148":4}}],["cent",{"2":{"41":2}}],["centered",{"2":{"43":1}}],["center",{"2":{"6":1,"41":1,"119":1}}],["cells",{"2":{"119":1}}],["cell",{"2":{"6":4,"44":3,"45":28,"119":2}}],["c2",{"2":{"6":3,"15":2,"58":3,"61":14,"119":21}}],["c1",{"2":{"6":3,"15":2,"58":4,"61":13,"119":26}}],["ctor",{"2":{"1":1,"6":1,"153":1}}],["ca96624a56bd078437bca8184e78163e5039ad19",{"2":{"148":1}}],["caculated",{"2":{"52":1,"128":1}}],["cache",{"2":{"6":1,"38":1}}],["catagorize",{"2":{"48":1}}],["categorical",{"2":{"37":1}}],["came",{"2":{"48":1}}],["case",{"2":{"32":1,"36":2,"42":1,"43":1,"49":1,"52":2,"55":1,"89":16,"128":1,"168":1}}],["cases",{"2":{"6":1,"38":1,"48":2,"89":3,"126":1,"128":5}}],["cause",{"2":{"18":1,"23":1,"150":1}}],["careful",{"2":{"38":1,"126":1}}],["care",{"2":{"17":1}}],["carried",{"2":{"6":1,"158":1}}],["cairomakie",{"2":{"13":1,"31":1,"34":1,"37":2,"41":1,"44":1,"47":1,"57":1,"60":1,"63":1,"66":1,"76":1,"80":1,"91":1,"94":1,"97":1,"107":1,"143":1,"144":1,"148":1,"160":1,"166":1,"167":1}}],["california",{"2":{"167":1}}],["callable",{"2":{"119":4,"133":1}}],["calling",{"2":{"43":2,"128":1}}],["calls",{"2":{"43":1,"52":1,"55":1,"58":1,"67":1,"81":1,"98":1,"108":1,"126":1,"128":1,"145":1}}],["call",{"2":{"18":1,"24":1,"35":1,"42":1,"128":4,"146":1}}],["called",{"2":{"6":2,"42":3,"43":1,"128":1,"131":1,"133":1,"134":1,"158":1,"162":1}}],["calcualted",{"2":{"128":1}}],["calculation",{"2":{"52":1}}],["calculations",{"2":{"6":1,"25":2,"52":1,"144":1}}],["calculating",{"2":{"4":1,"6":1,"18":1,"43":1,"138":1}}],["calculated",{"2":{"6":1,"41":2,"45":1,"52":1,"58":1,"128":2}}],["calculates",{"2":{"4":2,"6":6,"35":1,"38":2,"45":1,"52":2,"54":1,"58":2,"144":1,"151":1}}],["calculate",{"2":{"1":2,"5":1,"6":6,"11":1,"32":3,"38":3,"42":1,"45":1,"52":1,"89":1,"119":1,"125":1,"128":3}}],["calc",{"2":{"1":2,"6":4,"24":1,"32":4,"125":1,"127":1,"128":15,"138":1,"148":2,"157":1}}],["cant",{"2":{"61":1,"119":1,"159":1}}],["cannot",{"2":{"3":3,"4":2,"6":5,"35":1,"61":1,"69":1,"72":1,"95":2,"98":1,"100":2,"102":1,"113":1}}],["can",{"2":{"1":1,"4":2,"6":16,"7":2,"9":1,"13":1,"14":1,"24":1,"29":1,"32":1,"35":1,"36":2,"37":1,"38":3,"39":1,"42":1,"43":3,"45":1,"49":3,"51":3,"52":1,"54":3,"55":1,"60":1,"61":3,"63":1,"66":1,"78":1,"80":1,"89":23,"91":2,"94":2,"95":3,"97":1,"101":1,"102":1,"107":1,"110":1,"111":1,"112":1,"119":1,"120":1,"121":1,"123":1,"127":1,"128":7,"130":2,"131":1,"134":1,"135":2,"136":1,"138":1,"141":1,"143":1,"144":2,"148":2,"158":1,"161":6,"162":4,"164":3,"165":3,"166":3}}],["critetia",{"2":{"150":1}}],["criteria",{"2":{"67":2,"81":2,"98":2,"108":2,"150":2}}],["creation",{"2":{"161":1,"162":1}}],["creating",{"0":{"160":1,"161":1,"163":1},"1":{"161":1,"162":1,"163":1,"164":1},"2":{"89":1}}],["creates",{"2":{"7":1,"43":3}}],["create",{"2":{"6":2,"13":2,"14":1,"43":1,"48":1,"52":2,"119":2,"128":1,"134":2,"135":3,"137":2,"160":2,"161":4,"162":8,"163":1,"164":1,"166":1}}],["created",{"2":{"4":2,"6":2,"43":1,"58":3}}],["cropping",{"2":{"37":2}}],["cross=1",{"2":{"51":1}}],["cross`",{"2":{"51":1}}],["crossings",{"2":{"43":3,"89":1}}],["crossing",{"0":{"78":1},"2":{"6":2,"43":81,"49":1,"50":7,"51":3,"52":7,"54":1,"55":6,"67":1,"78":1,"89":1,"108":1}}],["cross",{"0":{"105":1},"2":{"6":1,"9":1,"32":3,"43":13,"48":14,"49":2,"50":1,"51":2,"52":10,"53":4,"54":2,"55":1,"67":1,"78":2,"81":1,"89":17,"95":2,"98":1,"108":1,"118":3}}],["crosses",{"2":{"0":2,"3":2,"6":3,"29":1,"43":1,"48":1,"78":26,"89":2,"165":1}}],["crc",{"2":{"6":1,"38":1}}],["crs2",{"2":{"162":2}}],["crs1",{"2":{"162":3}}],["crs`",{"2":{"140":6}}],["crs=nothing",{"2":{"128":1,"138":1,"148":1}}],["crs=gi",{"2":{"128":7}}],["crs",{"0":{"162":1},"2":{"1":16,"4":2,"6":10,"119":10,"125":2,"127":3,"128":27,"138":1,"140":7,"148":1,"160":1,"162":20,"164":1}}],["customize",{"2":{"128":2}}],["custom",{"0":{"168":1},"2":{"6":1,"38":1,"168":2}}],["curr^2",{"2":{"32":2}}],["curr",{"2":{"32":8,"43":114,"48":9,"55":3,"137":26}}],["currentnode",{"2":{"119":8}}],["current",{"2":{"32":1,"38":8,"43":3,"48":2,"50":1,"52":1,"55":6,"119":2,"137":3}}],["currently",{"2":{"5":1,"6":3,"23":1,"38":1,"43":1,"48":1,"50":2,"119":1,"128":1}}],["curve",{"0":{"89":1},"2":{"3":1,"4":7,"6":18,"32":6,"35":7,"43":5,"45":3,"51":7,"57":1,"58":22,"61":6,"67":2,"69":4,"70":9,"71":9,"81":1,"83":4,"84":6,"85":3,"89":152,"95":1,"98":1,"101":6,"103":3,"108":1,"110":4,"111":6,"112":6}}],["curves",{"2":{"0":1,"3":1,"6":5,"35":3,"45":3,"52":1,"57":1,"58":1,"61":13,"72":1,"89":1,"95":1,"113":1,"148":2}}],["cutpolygon",{"2":{"47":1}}],["cuts",{"2":{"47":1}}],["cutting",{"0":{"46":1},"1":{"47":1,"48":1},"2":{"43":1,"48":2}}],["cut",{"0":{"47":1},"2":{"0":1,"6":6,"29":1,"38":1,"46":1,"47":5,"48":22,"89":1}}],["cos",{"2":{"161":3,"162":3}}],["copy",{"2":{"133":1,"152":1}}],["coors1",{"2":{"118":2}}],["coors2",{"2":{"118":3}}],["coord",{"2":{"145":6}}],["coords",{"2":{"48":9,"145":8}}],["coordiantes",{"2":{"44":1}}],["coordinatetransformations",{"2":{"1":2,"6":2,"148":1,"153":2,"160":1,"161":5,"162":2}}],["coordinate",{"0":{"38":1,"139":1,"162":1},"2":{"1":4,"5":5,"6":7,"25":1,"37":2,"38":10,"128":1,"140":4,"145":1,"160":3,"162":1}}],["coordinates",{"0":{"5":1,"36":1},"1":{"37":1,"38":1},"2":{"0":4,"1":1,"4":2,"5":7,"6":20,"35":2,"36":8,"38":25,"43":2,"48":2,"49":1,"51":1,"54":1,"58":1,"61":2,"121":1,"139":2,"140":1,"143":1,"144":3,"162":2}}],["co",{"2":{"89":2}}],["corner",{"2":{"45":4,"119":1}}],["corners",{"2":{"45":1}}],["correspondent",{"2":{"118":1}}],["correspond",{"2":{"43":1}}],["corresponding",{"2":{"32":3,"50":2}}],["correctly",{"2":{"143":1}}],["corrected",{"2":{"133":1}}],["correctness",{"2":{"129":1,"158":1}}],["correcting",{"2":{"20":1,"133":1}}],["corrections",{"0":{"132":1,"134":1},"1":{"133":1,"134":1},"2":{"130":1,"133":6,"136":1}}],["correction",{"2":{"6":10,"29":4,"49":1,"50":2,"51":1,"52":2,"54":1,"55":2,"129":1,"131":2,"132":2,"133":8,"134":7,"135":1,"137":2}}],["correct",{"2":{"6":3,"24":1,"32":1,"35":1,"42":1,"43":1,"45":1,"49":1,"51":1,"54":1,"58":1,"61":1,"67":1,"81":1,"95":1,"98":1,"108":1,"129":1,"130":2,"132":1}}],["cov",{"2":{"45":16}}],["cover",{"2":{"69":1,"73":1}}],["covering",{"2":{"6":2,"76":1,"134":2,"137":2}}],["covered",{"0":{"71":1,"72":1,"112":1},"2":{"3":1,"6":1,"50":1,"55":1,"66":1,"67":1,"71":2,"72":2,"73":1,"74":2,"76":1,"88":2,"89":3,"137":1}}],["coveredby",{"0":{"65":1,"66":1,"69":1,"70":1,"73":1,"74":1,"88":1},"1":{"66":1,"67":1},"2":{"0":2,"3":4,"6":4,"29":1,"43":1,"65":1,"66":3,"67":10,"68":6,"69":13,"70":15,"71":13,"72":5,"73":2,"74":2,"77":3,"165":1}}],["covers",{"0":{"75":1,"76":1},"1":{"76":1,"77":1},"2":{"0":2,"3":5,"6":5,"29":1,"75":1,"76":4,"77":5,"119":1,"165":1}}],["coverages",{"2":{"6":1,"45":1}}],["coverage",{"0":{"44":1},"2":{"0":1,"6":2,"29":1,"44":3,"45":16}}],["code",{"2":{"7":1,"10":1,"38":1,"67":1,"81":1,"89":1,"98":1,"108":1,"118":1,"155":1,"157":1,"167":1}}],["coarse",{"2":{"6":1,"142":1,"145":1}}],["commonly",{"2":{"164":1}}],["common",{"2":{"145":1,"160":1,"162":2}}],["commen",{"2":{"60":1}}],["commented",{"2":{"118":1}}],["comments",{"2":{"89":1}}],["comment",{"2":{"28":1}}],["combos",{"2":{"50":1,"52":1,"55":1}}],["combines",{"2":{"42":1}}],["combine",{"2":{"42":2,"43":5,"137":1}}],["combined",{"2":{"6":1,"43":4,"55":1,"134":1,"137":2,"161":1}}],["combination",{"2":{"6":1,"43":1,"123":1,"128":1}}],["coming",{"2":{"45":1}}],["com",{"2":{"6":2,"52":1,"148":1}}],["compilation",{"2":{"157":1}}],["compiled",{"2":{"24":1}}],["compiler",{"2":{"24":1,"128":2,"157":2}}],["complex",{"2":{"121":1,"148":1,"165":1}}],["complexity",{"2":{"6":1,"121":1,"145":1}}],["completly",{"2":{"43":2,"50":1,"55":1,"63":2,"76":1,"89":1}}],["complete",{"2":{"35":1}}],["completely",{"2":{"1":1,"3":4,"6":5,"64":1,"67":1,"77":1,"108":1,"128":1}}],["component",{"2":{"6":1,"35":3,"42":11,"45":8,"52":1,"123":1,"128":3}}],["components",{"2":{"6":2,"41":1,"42":2,"123":2,"128":24}}],["composed",{"2":{"4":4,"6":5,"61":5,"161":2}}],["comprised",{"2":{"6":3,"49":1,"51":1,"54":1}}],["computing",{"2":{"39":1}}],["computational",{"2":{"6":1,"38":1}}],["computation",{"2":{"6":6,"38":1,"42":1,"49":1,"51":1,"54":1,"149":2,"150":2,"151":2}}],["computer",{"2":{"6":1,"38":1}}],["compute",{"2":{"4":1,"6":1,"35":1,"38":1,"145":1}}],["computed",{"2":{"4":4,"6":5,"32":1,"35":3,"38":3,"45":1}}],["compact",{"2":{"167":3}}],["comparisons",{"2":{"165":1}}],["comparing",{"2":{"55":1,"61":1}}],["compares",{"2":{"119":1}}],["compared",{"2":{"61":1}}],["compare",{"2":{"3":1,"4":1,"6":2,"32":1,"55":1,"61":2,"95":1}}],["compatibility",{"2":{"35":1}}],["compatible",{"2":{"1":3,"6":1,"22":1,"25":1,"32":1,"35":1,"38":2,"42":1,"45":1,"58":1,"61":1,"64":1,"67":1,"77":1,"81":1,"92":1,"95":1,"98":1,"108":1,"126":1,"128":1,"140":2}}],["couple",{"2":{"163":1}}],["course",{"2":{"127":1}}],["country",{"2":{"167":8}}],["countries",{"2":{"11":1,"148":1}}],["counted",{"2":{"52":2}}],["counters",{"2":{"38":8}}],["counter",{"2":{"6":1,"43":7,"89":1,"117":1,"118":1}}],["counterclockwise",{"2":{"4":1,"6":1,"9":1,"34":2,"35":1}}],["count",{"2":{"43":16,"119":1,"152":1}}],["couldn",{"2":{"9":1,"157":1}}],["could",{"2":{"4":1,"6":1,"35":3,"52":4,"55":1,"58":1,"89":2,"140":1}}],["colname",{"2":{"128":3}}],["col",{"2":{"128":3}}],["collinear",{"2":{"43":5,"49":2,"51":2,"52":12,"54":2}}],["collect",{"2":{"11":3,"13":1,"31":1,"34":2,"38":1,"41":1,"44":2,"47":2,"57":1,"119":3,"128":3,"143":4,"159":2}}],["collections",{"0":{"73":1,"74":1,"87":1,"88":1,"104":1,"105":1,"114":1,"115":1},"2":{"1":2,"6":10,"22":1,"127":1,"128":7,"148":2,"164":1}}],["collection",{"2":{"1":1,"4":7,"6":13,"18":2,"27":2,"32":2,"35":3,"45":2,"58":2,"73":2,"74":2,"87":2,"88":2,"104":2,"105":2,"114":2,"115":2,"121":1,"128":3,"148":1,"154":1,"159":1}}],["column",{"2":{"22":1,"128":16,"163":2,"165":2}}],["colored",{"2":{"166":1}}],["colors",{"2":{"166":2}}],["color=",{"2":{"162":2}}],["colorrange",{"2":{"37":2,"57":1}}],["colorbar",{"2":{"37":1,"57":1,"119":1}}],["colormap",{"2":{"14":1,"37":3,"57":1}}],["color",{"2":{"6":3,"34":1,"37":2,"38":1,"39":1,"41":1,"47":3,"57":2,"60":4,"63":4,"66":1,"76":1,"80":4,"94":4,"107":4,"141":1,"144":1,"161":1,"162":1,"166":5}}],["colinear",{"2":{"3":1,"6":2,"51":1,"94":1,"95":2}}],["conditions",{"2":{"165":1}}],["conencting",{"2":{"150":1}}],["connected",{"2":{"89":5}}],["connect",{"2":{"45":11}}],["connecting",{"2":{"32":1,"161":2}}],["connections",{"2":{"6":2,"134":2,"137":2}}],["convention",{"2":{"41":1}}],["convenience",{"2":{"38":1,"158":1}}],["convexhull",{"2":{"120":1}}],["convex",{"2":{"32":3,"118":1}}],["conversely",{"2":{"43":1}}],["conversion",{"0":{"154":1},"2":{"22":1}}],["converted",{"2":{"22":1,"38":3}}],["converts",{"2":{"6":1,"159":1}}],["convert",{"0":{"68":1,"82":1,"99":1,"109":1},"2":{"6":3,"38":6,"57":1,"119":2,"144":1,"148":3,"154":1,"158":1,"159":1}}],["context",{"2":{"144":4,"162":2}}],["contents",{"2":{"128":1,"129":1}}],["contours",{"2":{"119":1}}],["contour",{"2":{"119":4}}],["continue",{"2":{"35":1,"43":7,"45":1,"50":2,"52":1,"89":1,"133":1,"137":3,"152":1,"167":1}}],["contributions",{"2":{"25":1}}],["controlled",{"2":{"24":1}}],["control",{"2":{"23":1}}],["containing",{"2":{"44":1,"166":1}}],["contain",{"2":{"3":1,"6":1,"55":1,"63":1,"95":1,"161":1}}],["contained",{"2":{"3":1,"6":1,"9":1,"55":4,"64":1,"76":1,"94":1,"95":1,"128":1,"166":1}}],["contains",{"0":{"62":1,"63":1},"1":{"63":1,"64":1},"2":{"0":2,"3":4,"6":4,"29":1,"43":1,"55":1,"62":1,"63":5,"64":4,"126":1,"136":1,"165":1,"166":1}}],["consistent",{"2":{"43":1,"121":1}}],["consistency",{"2":{"22":1}}],["considered",{"2":{"32":1,"38":1}}],["consider",{"2":{"31":1,"34":1,"41":1,"44":1,"45":3,"47":1,"57":2,"60":1,"63":1,"66":1,"76":1,"80":1,"89":3,"91":1,"94":1,"97":1,"107":1}}],["constprop",{"2":{"78":1}}],["constants",{"2":{"43":1}}],["const",{"2":{"29":4,"43":1,"67":4,"81":3,"98":4,"108":4,"125":3,"128":1,"148":4}}],["constrained",{"2":{"6":3,"49":1,"51":1,"54":1}}],["constructing",{"2":{"162":1}}],["construct",{"2":{"156":1}}],["constructors",{"2":{"6":2,"156":2}}],["constructed",{"2":{"1":1,"20":1,"140":1}}],["concepts",{"0":{"26":1},"1":{"27":1,"28":1}}],["concieve",{"2":{"9":1}}],["concavehull",{"2":{"120":1}}],["concave",{"2":{"6":1,"32":2,"41":2,"118":2}}],["vw",{"2":{"148":3}}],["von",{"2":{"119":1}}],["v2",{"2":{"89":9}}],["v1",{"2":{"89":9}}],["v`",{"2":{"38":2}}],["vcat",{"2":{"32":1,"38":1,"128":1}}],["vararg",{"2":{"38":1}}],["vary",{"2":{"32":1}}],["variables",{"2":{"24":1,"38":8,"64":1,"77":1,"92":1}}],["variable",{"2":{"24":1,"50":2}}],["vals",{"2":{"150":9}}],["valign",{"2":{"148":1}}],["validated",{"2":{"50":2,"52":2,"55":2}}],["validate",{"2":{"9":1}}],["valid",{"2":{"1":1,"6":8,"42":1,"49":2,"51":2,"52":3,"54":2,"119":1,"129":3,"130":1,"135":1,"136":1,"152":1,"153":1}}],["val",{"2":{"32":2,"43":2,"52":8,"89":30,"95":4}}],["values=",{"2":{"119":2}}],["values=sort",{"2":{"119":1}}],["values",{"2":{"1":1,"5":3,"6":16,"32":2,"37":3,"38":40,"42":2,"43":5,"45":5,"52":1,"58":2,"89":4,"119":19,"128":2,"150":2,"152":1,"157":1}}],["value",{"2":{"0":1,"4":7,"5":2,"6":15,"14":1,"24":1,"32":1,"34":2,"35":4,"38":45,"43":5,"45":2,"52":7,"57":1,"58":3,"119":6,"150":11,"158":2,"165":1}}],["vs",{"0":{"15":1},"2":{"12":1,"52":2}}],["vᵢ",{"2":{"6":1}}],["v0",{"2":{"6":2}}],["v",{"2":{"5":2,"6":6,"14":4,"38":23,"58":8}}],["visvalingam",{"2":{"146":1}}],["visvalingamwhyatt",{"0":{"151":1},"2":{"0":1,"6":3,"148":4,"151":5}}],["visualized",{"2":{"130":1}}],["visualize",{"2":{"91":1,"162":1}}],["visa",{"2":{"43":1}}],["visited",{"2":{"43":4}}],["view",{"2":{"43":2,"119":1,"137":1,"150":3,"167":1}}],["viewport",{"2":{"14":1}}],["views",{"2":{"1":1,"43":1,"54":1,"140":1}}],["via",{"2":{"6":1,"39":1,"120":1,"141":1,"144":1,"158":2}}],["vect",{"2":{"128":2}}],["vectypes",{"2":{"38":5}}],["vector",{"2":{"1":12,"4":6,"5":1,"6":46,"18":1,"23":1,"27":1,"31":1,"32":10,"38":14,"43":7,"48":6,"49":4,"50":1,"51":2,"52":3,"54":4,"89":1,"95":2,"118":3,"119":4,"121":1,"128":6,"130":8,"131":1,"136":22,"142":1,"143":1,"145":1,"148":1,"149":1,"150":4,"151":1,"152":2,"153":10,"159":15,"161":18,"162":15}}],["vectors",{"2":{"1":1,"4":2,"6":5,"22":1,"32":4,"38":3,"43":1,"58":1,"117":1,"119":1,"128":2,"148":1}}],["ve",{"2":{"17":1,"145":1}}],["vein",{"2":{"7":1}}],["version",{"2":{"158":1}}],["versa",{"2":{"43":1}}],["vert",{"2":{"152":21}}],["verts",{"2":{"148":2}}],["vertical",{"2":{"37":1,"45":1,"52":1,"119":1}}],["vertices",{"2":{"6":7,"9":1,"36":4,"38":5,"43":1,"48":2,"69":1,"71":5,"80":1,"83":3,"86":1,"89":1,"110":1,"130":1,"142":2,"143":1,"144":3,"145":3,"148":1,"151":1}}],["vertex",{"2":{"5":1,"6":2,"32":1,"36":2,"38":2,"43":19,"52":12,"69":2,"84":2,"85":1,"89":1,"110":3}}],["very",{"2":{"0":1,"143":1,"167":2}}],["tnew",{"2":{"128":1}}],["ty",{"2":{"119":3}}],["typing",{"2":{"39":1,"141":1,"144":1}}],["typically",{"2":{"36":1,"163":1}}],["typemax",{"2":{"58":1,"119":9}}],["typeof",{"2":{"19":1,"38":3,"128":2,"156":1,"168":1}}],["type2",{"2":{"6":2,"61":4}}],["type1",{"2":{"6":2,"61":5}}],["types",{"0":{"124":1,"155":1},"1":{"156":1,"157":1,"158":1},"2":{"6":4,"23":1,"24":1,"29":1,"38":3,"45":1,"48":1,"89":3,"148":1,"155":3,"157":1,"165":1}}],["type",{"2":{"4":11,"5":1,"6":61,"11":1,"22":2,"23":1,"24":2,"28":2,"32":9,"35":11,"37":1,"38":8,"42":8,"43":21,"45":8,"48":6,"49":7,"50":6,"51":8,"52":19,"54":7,"55":5,"58":28,"61":2,"123":2,"128":42,"132":1,"133":6,"134":6,"139":1,"144":1,"145":1,"148":3,"154":1,"156":3,"157":5,"158":1,"159":3}}],["tx",{"2":{"119":3}}],["tᵢ",{"2":{"38":1}}],["temporary",{"2":{"43":1}}],["term",{"2":{"35":1}}],["terms",{"2":{"6":1,"38":1}}],["technically",{"2":{"23":1,"129":1}}],["technique",{"2":{"11":1}}],["tell",{"2":{"18":1,"89":1,"157":1,"168":1}}],["test",{"2":{"43":1,"148":2,"158":1}}],["testing",{"0":{"15":1}}],["tests",{"2":{"9":2}}],["tutorial",{"2":{"160":1,"165":1}}],["tups",{"2":{"131":4}}],["tuplepoint",{"2":{"29":3,"159":1}}],["tuple",{"0":{"154":1},"2":{"4":1,"6":19,"29":2,"38":2,"42":3,"43":5,"45":3,"48":1,"52":31,"89":17,"118":2,"119":5,"128":2,"130":6,"136":13,"143":1,"148":2,"150":1,"152":2,"159":6,"161":99,"166":2}}],["tuples",{"2":{"0":1,"6":2,"29":1,"39":1,"42":1,"43":1,"48":1,"49":3,"50":1,"51":2,"52":1,"54":4,"55":5,"131":2,"137":2,"148":2,"154":2,"167":2}}],["turf",{"2":{"118":1}}],["turned",{"2":{"119":1,"128":1}}],["turning",{"2":{"119":8}}],["turn",{"2":{"6":1,"119":1}}],["t2",{"2":{"6":5,"38":47,"68":1,"78":2,"99":1,"109":1}}],["t1",{"2":{"6":6,"38":51,"78":2}}],["t=float64",{"2":{"4":1,"6":3,"42":3}}],["two",{"2":{"3":5,"4":10,"6":23,"23":2,"32":2,"34":1,"38":1,"42":1,"43":6,"45":3,"49":2,"51":1,"52":14,"54":4,"55":3,"58":5,"60":3,"61":12,"63":2,"64":1,"66":1,"76":1,"77":1,"78":1,"80":1,"89":2,"91":2,"92":2,"94":4,"95":5,"97":3,"98":1,"107":2,"119":3,"133":2,"134":1,"136":2,"137":2,"143":1,"158":1,"161":1,"165":3,"166":3}}],["task",{"2":{"128":6}}],["tasks",{"2":{"128":10}}],["taskrange",{"2":{"128":10}}],["tags",{"2":{"43":4}}],["taget",{"2":{"6":2}}],["taylor",{"2":{"6":1,"38":1}}],["table2",{"2":{"165":1}}],["table1",{"2":{"165":3}}],["tables",{"2":{"22":4,"29":1,"128":11}}],["table",{"0":{"163":1},"2":{"6":1,"18":1,"27":2,"128":12,"148":1,"163":1,"164":1,"165":1}}],["taking",{"2":{"6":3,"42":1,"49":1,"50":1,"51":1,"52":1,"54":1,"55":1,"135":1}}],["takes",{"2":{"43":3,"165":1}}],["taken",{"2":{"20":1,"37":1}}],["take",{"2":{"1":1,"6":2,"27":1,"43":3,"49":1,"50":1,"51":1,"52":1,"55":1,"118":2,"119":2,"121":1,"140":1}}],["target=nothing",{"2":{"49":1,"51":1,"54":1}}],["target=gi",{"2":{"43":1}}],["targets",{"2":{"23":1,"32":2,"35":3,"45":3,"58":3}}],["target",{"0":{"23":1},"2":{"1":14,"6":28,"15":3,"22":2,"23":2,"38":1,"42":2,"43":1,"49":5,"50":11,"51":6,"52":10,"54":4,"55":13,"119":1,"121":1,"123":4,"126":5,"127":1,"128":142,"137":2,"140":3,"148":2,"156":3}}],["tilted",{"2":{"45":1}}],["tie",{"2":{"32":1}}],["timings",{"2":{"13":5}}],["timing",{"2":{"13":2}}],["times",{"2":{"4":1,"6":1,"138":1}}],["time",{"2":{"1":5,"13":3,"24":1,"37":1,"119":1,"140":4,"158":1,"161":1,"162":3,"166":1,"167":1}}],["title",{"2":{"13":2,"37":2,"119":1,"144":1,"148":2}}],["tip",{"2":{"1":1,"5":1,"6":1,"38":1,"140":1,"165":1}}],["tree",{"2":{"165":1}}],["treating",{"2":{"148":1}}],["treated",{"2":{"89":5,"161":1}}],["treats",{"2":{"35":1,"58":1}}],["trials",{"2":{"144":2,"148":2}}],["triangles",{"2":{"36":1}}],["triangle",{"2":{"6":1,"36":4,"151":4,"166":1}}],["trivially",{"2":{"121":1}}],["try",{"2":{"53":3,"119":1,"126":1,"128":9,"167":1}}],["tr",{"2":{"35":3}}],["trues",{"2":{"137":3}}],["true",{"0":{"24":1},"2":{"1":5,"3":25,"4":3,"6":42,"32":7,"35":1,"37":2,"39":1,"43":30,"45":6,"48":1,"49":1,"50":2,"51":1,"52":1,"54":2,"55":3,"58":4,"61":21,"63":1,"64":1,"66":2,"67":6,"69":1,"70":1,"71":4,"73":1,"74":1,"76":2,"77":1,"78":9,"80":2,"81":2,"83":1,"84":1,"85":3,"87":1,"88":1,"89":78,"91":3,"92":1,"94":2,"95":18,"97":2,"98":6,"101":1,"102":1,"104":1,"105":1,"107":2,"108":7,"110":1,"111":1,"112":4,"114":1,"115":1,"118":4,"119":5,"128":8,"137":1,"141":1,"144":1,"148":1,"157":2,"165":1,"168":1}}],["traditional",{"2":{"119":1}}],["traverse",{"2":{"43":1}}],["traced",{"2":{"43":1}}],["traces",{"2":{"43":1}}],["trace",{"2":{"43":2,"49":1,"51":1,"54":1}}],["track",{"2":{"43":3,"137":2}}],["tracing",{"2":{"6":1,"43":4,"45":1,"50":5,"52":2,"55":2}}],["transverse",{"2":{"162":1}}],["translate",{"2":{"37":2}}],["translation",{"2":{"1":2,"6":2,"148":2,"153":2,"161":3,"162":1}}],["transformations",{"2":{"29":10}}],["transformation",{"0":{"153":1},"2":{"6":1,"119":1,"132":1,"140":1,"160":1}}],["transform",{"2":{"0":2,"1":6,"6":3,"15":2,"29":1,"121":1,"140":2,"148":1,"153":4,"161":4,"162":1}}],["trait`",{"2":{"128":1}}],["trait2",{"2":{"58":10,"61":2,"83":2,"84":2,"95":2,"100":2,"102":2,"103":2}}],["trait1",{"2":{"58":12,"61":2,"83":2,"84":2,"95":2,"100":2,"102":2,"103":2}}],["traits",{"2":{"6":2,"18":1,"95":1,"126":2,"133":2,"148":2,"156":3}}],["trait",{"2":{"1":5,"3":2,"4":2,"6":17,"18":7,"20":1,"22":1,"29":1,"32":2,"35":5,"38":6,"42":7,"45":2,"48":3,"49":2,"50":2,"51":6,"52":4,"54":2,"55":2,"58":7,"61":11,"67":3,"78":2,"81":3,"89":4,"95":10,"98":3,"108":3,"118":1,"121":1,"123":2,"126":3,"128":49,"133":9,"134":1,"145":1,"148":2,"156":8,"159":7,"161":1}}],["traittarget",{"0":{"156":1},"2":{"0":1,"1":2,"6":8,"32":1,"35":1,"42":1,"45":1,"49":2,"50":4,"51":3,"52":4,"54":2,"55":4,"58":1,"121":2,"124":1,"128":10,"145":1,"148":1,"155":1,"156":20}}],["thus",{"2":{"32":1,"35":1,"43":3,"50":1,"52":1,"55":1}}],["those",{"2":{"32":1,"43":1,"52":1,"69":1,"110":1}}],["though",{"2":{"20":1,"130":1}}],["thing",{"0":{"28":1}}],["things",{"2":{"9":1}}],["this",{"0":{"28":1},"2":{"0":1,"1":1,"3":1,"4":6,"5":1,"6":27,"7":1,"18":1,"23":3,"24":2,"25":2,"27":1,"29":1,"31":2,"32":6,"34":2,"35":9,"37":3,"38":11,"39":2,"41":1,"42":4,"43":26,"44":1,"45":4,"47":1,"48":5,"50":1,"52":5,"53":1,"54":1,"55":2,"57":4,"58":6,"61":4,"63":1,"64":2,"66":3,"67":3,"74":1,"76":1,"77":2,"78":1,"81":3,"88":1,"89":3,"92":2,"94":1,"95":4,"98":3,"105":1,"107":1,"108":3,"115":1,"117":1,"118":3,"119":8,"120":2,"121":2,"126":2,"128":17,"129":3,"131":3,"132":1,"133":6,"134":7,"135":4,"137":3,"138":2,"139":2,"140":4,"141":3,"142":3,"143":5,"144":5,"145":4,"146":2,"148":3,"152":9,"153":1,"154":1,"155":3,"156":2,"157":3,"158":2,"159":1,"160":1,"161":2,"162":7,"163":3,"164":1,"165":3,"166":3,"167":3,"168":1}}],["three",{"2":{"36":1,"52":1}}],["thread",{"2":{"128":6}}],["threading",{"0":{"128":1},"2":{"128":7,"157":1}}],["threads",{"2":{"1":1,"6":1,"128":10}}],["threaded=",{"2":{"128":8}}],["threaded=true",{"2":{"128":1}}],["threaded=false",{"2":{"35":1,"42":4,"45":2,"58":8,"128":2,"138":1,"148":1}}],["threaded==true",{"2":{"1":1,"6":1,"128":1}}],["threaded",{"2":{"1":3,"4":1,"6":7,"24":1,"32":2,"35":1,"42":3,"45":3,"58":5,"125":1,"128":47,"138":1,"145":6,"148":1,"157":2}}],["through",{"2":{"6":4,"32":1,"38":1,"43":3,"45":1,"47":1,"48":2,"67":1,"89":5,"108":1,"119":1,"126":1,"128":1,"134":2,"137":2,"150":1,"158":1,"161":1}}],["thrown",{"2":{"126":1}}],["throws",{"2":{"6":1,"158":1}}],["throw",{"2":{"4":1,"6":1,"55":1,"61":1,"119":1,"128":5}}],["than",{"2":{"1":1,"3":1,"6":11,"11":1,"43":2,"69":1,"78":1,"95":1,"110":1,"118":1,"119":2,"127":1,"128":1,"134":2,"135":1,"136":1,"137":2,"142":1,"144":2,"145":1,"149":1,"158":2}}],["that",{"2":{"1":1,"3":3,"4":8,"6":43,"9":1,"17":1,"18":4,"19":3,"20":1,"22":3,"25":1,"32":4,"34":2,"35":4,"38":4,"39":2,"41":2,"42":3,"43":17,"44":3,"45":5,"49":4,"50":5,"51":4,"52":14,"54":3,"55":5,"58":2,"60":1,"61":11,"63":4,"64":1,"66":2,"67":1,"77":1,"80":1,"81":1,"89":3,"91":1,"92":1,"94":2,"95":10,"97":2,"98":2,"100":2,"107":3,"108":1,"110":3,"118":1,"119":4,"121":1,"123":2,"128":4,"129":3,"130":2,"131":1,"132":3,"133":2,"134":4,"135":2,"136":3,"137":4,"140":1,"142":2,"143":2,"144":3,"145":2,"148":2,"150":1,"152":1,"156":1,"157":1,"158":1,"162":5,"163":2,"164":3,"165":1,"166":2}}],["theorem",{"2":{"58":1}}],["themselves",{"2":{"38":1}}],["them",{"2":{"6":1,"25":1,"43":1,"119":2,"120":2,"123":1,"128":1,"130":2,"135":1,"136":1,"148":1,"161":1,"162":1,"164":3}}],["thereof",{"2":{"121":1}}],["therefore",{"2":{"57":1,"129":1}}],["there",{"2":{"6":3,"22":1,"32":1,"38":2,"39":1,"43":3,"45":1,"48":2,"50":1,"52":6,"53":1,"55":1,"89":1,"95":2,"119":3,"120":1,"121":1,"128":4,"130":1,"143":1,"152":1,"156":1,"158":1,"162":2,"164":3}}],["then",{"2":{"6":5,"18":1,"22":1,"27":1,"32":3,"38":2,"43":6,"45":1,"49":1,"51":2,"52":6,"53":2,"54":2,"55":2,"89":1,"119":2,"126":1,"128":3,"135":1,"144":2,"148":1,"162":1,"165":1,"166":1}}],["their",{"2":{"3":1,"4":1,"6":2,"38":1,"41":2,"55":1,"58":2,"86":1,"95":1,"97":1,"101":1,"102":1,"111":3,"112":3,"121":1,"128":1,"130":1,"136":1,"138":1}}],["they",{"2":{"3":3,"4":11,"6":25,"20":2,"22":1,"23":1,"24":1,"36":1,"42":2,"43":8,"45":2,"49":2,"51":1,"52":6,"54":2,"55":3,"60":3,"61":16,"67":1,"80":1,"84":2,"85":1,"86":1,"89":2,"91":1,"94":2,"95":4,"100":1,"102":1,"103":1,"111":1,"112":1,"119":6,"128":1,"129":1,"134":2,"137":2,"143":1,"152":1,"155":1,"166":1}}],["these",{"2":{"1":2,"6":5,"24":1,"32":1,"38":5,"43":3,"55":1,"60":1,"61":1,"63":1,"67":1,"76":1,"78":2,"80":1,"81":1,"91":1,"94":1,"95":1,"97":2,"98":1,"107":1,"108":1,"118":1,"119":3,"126":1,"128":2,"140":1,"144":1,"148":2,"158":1,"164":1,"165":1}}],["the",{"0":{"27":1,"41":1},"2":{"1":28,"3":64,"4":112,"5":12,"6":393,"7":5,"9":3,"10":1,"11":3,"17":5,"18":10,"19":2,"20":4,"22":4,"23":5,"24":3,"25":3,"27":3,"31":1,"32":63,"34":12,"35":43,"36":15,"37":12,"38":71,"39":6,"41":6,"42":25,"43":116,"44":7,"45":47,"47":2,"48":7,"49":27,"50":23,"51":27,"52":82,"53":1,"54":29,"55":70,"57":11,"58":81,"60":5,"61":47,"63":9,"64":11,"66":8,"67":25,"70":8,"71":9,"72":3,"73":3,"74":2,"76":4,"77":11,"78":5,"80":2,"81":21,"83":8,"84":6,"85":4,"87":3,"88":2,"89":123,"91":5,"92":6,"94":5,"95":26,"97":5,"98":21,"100":6,"101":10,"102":7,"103":3,"104":3,"105":2,"107":7,"108":24,"110":2,"111":9,"112":9,"113":6,"114":2,"115":2,"117":1,"118":8,"119":47,"120":1,"121":8,"123":4,"125":2,"126":11,"128":84,"129":5,"130":5,"131":4,"132":2,"133":13,"134":10,"135":4,"136":8,"137":6,"138":1,"139":5,"140":14,"141":2,"142":3,"143":5,"144":26,"145":17,"146":3,"148":18,"149":3,"150":6,"151":3,"152":2,"153":3,"154":1,"155":2,"157":5,"158":21,"161":10,"162":21,"163":2,"164":4,"165":10,"166":17,"167":3}}],["t",{"2":{"0":1,"4":28,"6":56,"9":1,"23":1,"29":8,"32":32,"35":41,"38":26,"42":38,"43":74,"45":44,"48":18,"49":12,"50":12,"51":12,"52":156,"54":10,"55":20,"58":87,"61":17,"66":1,"84":1,"89":24,"95":1,"97":1,"101":2,"102":1,"119":14,"128":10,"134":2,"137":2,"144":3,"145":5,"148":1,"154":7,"156":14,"157":2,"158":3,"159":10,"161":4,"167":1}}],["tokyo",{"2":{"167":1}}],["toy",{"2":{"165":1}}],["together",{"2":{"52":1,"55":1,"161":1,"166":1}}],["touching",{"0":{"101":1},"2":{"52":1,"55":1}}],["touch",{"0":{"102":1,"103":1,"104":1},"2":{"43":1,"97":1,"100":2,"102":1,"104":1}}],["touches",{"0":{"96":1,"97":1,"100":1},"1":{"97":1,"98":1},"2":{"0":2,"3":3,"6":3,"29":1,"96":1,"97":3,"98":11,"99":6,"100":11,"101":15,"102":9,"103":8,"104":3,"105":4,"165":1}}],["totally",{"2":{"54":1}}],["total",{"2":{"35":1,"38":2,"43":2,"45":1}}],["towards",{"2":{"25":1}}],["topright",{"2":{"148":1}}],["topologypreserve",{"2":{"146":1}}],["topology",{"2":{"146":1}}],["top",{"2":{"20":1,"43":1,"119":1}}],["took",{"2":{"167":1}}],["tools",{"2":{"17":1}}],["too",{"2":{"6":1,"52":1,"142":1,"145":1}}],["tol^2",{"2":{"149":1,"150":1}}],["tolerances",{"2":{"151":1,"152":29}}],["tolerance",{"2":{"149":1,"150":1,"151":1,"152":17}}],["tol",{"2":{"6":12,"144":2,"148":18,"149":7,"150":15,"151":8,"152":18}}],["todo",{"2":{"3":2,"6":2,"43":1,"52":1,"78":4,"95":1,"119":1,"128":1,"131":1,"148":1,"157":1}}],["to",{"0":{"9":1,"23":1,"53":1,"68":1,"82":1,"99":1,"109":1},"2":{"0":2,"1":22,"3":1,"4":33,"5":4,"6":141,"7":2,"9":3,"10":2,"11":2,"13":1,"17":2,"18":9,"19":1,"20":2,"22":3,"23":4,"24":2,"25":3,"27":4,"28":1,"31":1,"32":8,"34":1,"35":4,"36":4,"37":1,"38":26,"39":2,"41":2,"42":5,"43":32,"44":1,"45":12,"47":1,"48":3,"49":8,"50":4,"51":8,"52":27,"54":7,"55":11,"57":6,"58":32,"60":2,"61":17,"63":1,"64":1,"66":2,"67":7,"76":3,"77":1,"78":2,"80":1,"81":7,"89":21,"91":2,"92":1,"94":3,"95":7,"97":1,"98":7,"100":1,"107":1,"108":7,"118":4,"119":16,"121":4,"123":4,"125":7,"126":6,"127":1,"128":51,"129":2,"130":3,"132":4,"133":8,"134":5,"135":3,"136":1,"137":4,"138":3,"139":1,"140":4,"141":1,"142":3,"143":3,"144":9,"145":7,"146":1,"148":4,"149":1,"150":15,"151":1,"152":2,"153":4,"154":1,"155":2,"156":2,"157":6,"158":9,"159":28,"160":4,"161":6,"162":16,"163":7,"164":5,"165":7,"166":5,"167":2,"168":8}}],["rd",{"2":{"148":3}}],["rdbu",{"2":{"57":1}}],["rhumb",{"2":{"118":2}}],["runner",{"2":{"162":1}}],["running",{"2":{"128":3}}],["run",{"2":{"128":8,"167":1}}],["runs",{"2":{"52":2,"117":1}}],["rule",{"2":{"43":1}}],["rules",{"2":{"43":1}}],["right=2",{"2":{"43":1}}],["right",{"2":{"38":1,"43":4,"48":1,"58":1,"118":1,"150":19,"152":5,"161":1,"165":1}}],["ring4",{"2":{"162":2}}],["ring3",{"2":{"162":1}}],["ring2",{"2":{"161":2}}],["ring1",{"2":{"161":2}}],["rings",{"0":{"71":1,"85":1,"102":1,"112":1,"129":1},"1":{"130":1,"131":1},"2":{"4":4,"6":6,"9":2,"35":1,"42":1,"43":3,"52":1,"61":7,"117":1,"119":5,"131":1,"134":1,"148":1}}],["ring",{"2":{"4":7,"6":13,"9":1,"29":1,"32":3,"35":2,"38":1,"41":1,"42":4,"43":12,"45":13,"55":3,"58":5,"61":4,"69":1,"70":2,"71":5,"83":1,"85":1,"89":2,"100":1,"101":1,"102":3,"110":1,"111":2,"112":4,"118":3,"119":11,"129":2,"130":1,"131":14,"132":1,"161":1}}],["rtrees",{"2":{"20":1}}],["r+y",{"2":{"13":2,"14":1}}],["r+x",{"2":{"13":2,"14":1}}],["ry",{"2":{"13":3,"14":3}}],["rx",{"2":{"13":3,"14":3}}],["round",{"2":{"148":1,"150":1,"152":1}}],["routines",{"2":{"11":1}}],["row",{"2":{"128":3}}],["rows",{"2":{"128":2}}],["robust",{"0":{"15":1}}],["rotate",{"2":{"45":1}}],["rotation",{"2":{"1":1,"6":1,"153":1}}],["rotations",{"2":{"1":3,"6":3,"153":3}}],["rotmatrix2d",{"2":{"148":1}}],["rotmatrix",{"2":{"1":1,"6":1,"153":1}}],["r",{"2":{"6":1,"9":1,"13":11,"14":12,"144":1,"152":2,"161":6,"162":6}}],["rᵢ₋₁",{"2":{"38":20}}],["rᵢ∗rᵢ₊₁+sᵢ⋅sᵢ₊₁",{"2":{"6":1}}],["rᵢ₊₁",{"2":{"6":1,"38":29}}],["rᵢ",{"2":{"6":2,"38":49}}],["ramer",{"2":{"150":1}}],["raster",{"0":{"119":1},"2":{"119":4}}],["ray",{"2":{"89":4}}],["rawcdn",{"2":{"148":1}}],["raw",{"2":{"18":1}}],["range",{"2":{"13":8,"14":4,"119":1,"128":4}}],["ranges",{"2":{"6":1,"119":2}}],["randomly",{"2":{"166":2}}],["random",{"2":{"148":2}}],["rand",{"2":{"6":1,"119":1,"166":2}}],["rather",{"2":{"6":1,"119":1,"136":1}}],["ratio",{"2":{"6":7,"52":1,"144":1,"148":1,"149":4,"150":6,"151":4,"152":11}}],["radii",{"2":{"6":1,"144":1}}],["radius`",{"2":{"144":1}}],["radius",{"2":{"6":7,"38":13,"144":4}}],["radialdistance",{"0":{"149":1},"2":{"0":1,"6":2,"146":1,"148":4,"149":4}}],["rrayscore",{"2":{"1":1,"6":1,"153":1}}],["rring",{"2":{"1":1,"6":1,"153":1}}],["rewrap",{"2":{"128":3}}],["req",{"2":{"89":44}}],["requirment",{"2":{"135":1}}],["requirments",{"2":{"89":5}}],["requirement",{"2":{"129":1}}],["required",{"2":{"67":3,"81":3,"98":3,"108":3,"143":1,"160":1}}],["require",{"2":{"66":2,"67":6,"81":3,"89":32,"98":3,"108":3}}],["requires",{"2":{"39":1,"61":1,"63":1,"67":2,"70":3,"71":3,"72":1,"81":1,"84":3,"85":2,"86":1,"98":1,"101":3,"102":1,"103":1,"107":1,"108":1,"111":3,"112":3,"113":1,"141":1,"144":1,"158":1}}],["requests",{"2":{"25":1}}],["reflected",{"2":{"148":3}}],["ref",{"2":{"57":1}}],["referring",{"2":{"89":1}}],["refer",{"2":{"6":1,"119":1}}],["referece",{"2":{"1":2,"140":2}}],["references",{"2":{"6":1,"38":1}}],["reference",{"0":{"162":1},"2":{"0":1,"160":2,"162":1}}],["reveal",{"2":{"55":1}}],["reveals",{"2":{"55":1}}],["reverse",{"2":{"34":1,"37":1,"38":1,"43":2,"161":2}}],["rev",{"2":{"54":1}}],["render",{"2":{"37":1}}],["rendering",{"2":{"37":3,"38":1}}],["rename",{"2":{"10":1}}],["regardless",{"2":{"52":1,"89":1}}],["regions",{"2":{"50":3,"52":5,"54":1,"55":3,"89":2,"167":1}}],["region",{"2":{"39":2,"52":3,"55":2,"167":1}}],["register",{"2":{"29":3,"38":3}}],["regular",{"0":{"15":1}}],["readable",{"2":{"164":1}}],["readability",{"2":{"43":1}}],["read",{"2":{"148":2,"162":2}}],["reached",{"2":{"128":4}}],["reaches",{"2":{"126":1}}],["reach",{"2":{"126":1}}],["reasons",{"2":{"158":1}}],["reason",{"2":{"24":1,"129":1,"135":1,"157":1}}],["real`",{"2":{"144":1,"145":1}}],["really",{"2":{"35":1,"89":1,"119":1,"157":1}}],["real=1",{"2":{"6":2,"144":2}}],["real=6378137`",{"2":{"144":1}}],["real=6378137",{"2":{"6":2,"144":1}}],["real",{"0":{"167":1},"2":{"5":1,"6":13,"32":1,"38":45,"42":2,"52":1,"144":3,"145":1,"152":5,"165":1}}],["related",{"2":{"121":1}}],["relation",{"2":{"43":2}}],["relations",{"2":{"29":10,"78":1,"95":1}}],["relationship",{"2":{"23":1,"165":2}}],["relative",{"2":{"38":3}}],["relevant",{"2":{"10":1}}],["reducing",{"2":{"128":1}}],["reduced",{"2":{"149":1,"150":1,"151":1}}],["reduces",{"2":{"19":1,"55":1}}],["reduce",{"2":{"1":1,"6":1,"119":1,"128":2,"133":1}}],["redundant",{"2":{"43":1}}],["red",{"2":{"14":1,"41":2,"57":1,"66":1,"76":1,"91":1,"161":1,"162":1,"166":2}}],["removal",{"2":{"43":1}}],["removes",{"2":{"43":1,"121":1}}],["removed",{"2":{"43":3,"50":5,"119":1}}],["remove",{"2":{"35":1,"43":33,"45":1,"48":2,"49":5,"51":5,"54":2,"137":2,"149":1,"150":3,"152":4}}],["removing",{"2":{"6":3,"43":1,"50":1,"149":1,"150":1,"151":1}}],["remainingnode",{"2":{"119":3}}],["remaining",{"2":{"43":1,"61":1,"89":2,"150":1}}],["remain",{"2":{"1":1,"6":9,"128":1,"148":2}}],["resolution",{"2":{"162":1}}],["resolved",{"2":{"119":1}}],["reset",{"2":{"43":1}}],["resize",{"2":{"13":1,"14":1,"43":2}}],["resampled",{"2":{"6":1,"145":1}}],["respectivly",{"2":{"95":1}}],["respectively",{"2":{"43":1,"128":1,"161":1}}],["respect",{"2":{"6":2,"51":1,"52":1,"89":6}}],["rest",{"2":{"6":1,"38":2,"54":1}}],["resulting",{"2":{"48":1,"55":1,"119":1,"166":1}}],["results",{"2":{"3":2,"6":2,"52":1,"78":1,"95":1,"128":2,"130":1,"150":25,"161":3}}],["result",{"2":{"1":2,"3":5,"4":5,"6":13,"19":1,"32":1,"35":2,"45":1,"52":15,"58":2,"64":1,"67":1,"77":1,"92":1,"108":1,"128":2,"144":3,"152":6}}],["recieves",{"2":{"128":2}}],["recucing",{"2":{"128":1}}],["recursive",{"2":{"126":1}}],["recursively",{"2":{"4":1,"6":1,"126":1,"138":1}}],["recalculate",{"2":{"127":1}}],["recent",{"2":{"43":1,"50":1,"52":1,"55":1}}],["rect",{"2":{"31":3,"34":5,"44":3,"57":7}}],["rectangle",{"2":{"31":2,"34":2,"37":2,"44":2,"45":1,"57":2,"143":5,"144":8,"166":2}}],["recommended",{"2":{"22":1}}],["reconstructing",{"2":{"148":1}}],["reconstructed",{"2":{"18":1}}],["reconstruct",{"2":{"0":2,"1":1,"6":3,"18":1,"123":2,"128":29}}],["replace",{"2":{"43":1,"119":2,"150":1}}],["replaced",{"2":{"22":1}}],["repl",{"2":{"39":1,"141":1,"144":1}}],["repeat",{"2":{"42":1,"43":3,"61":6}}],["repeating",{"2":{"35":1,"55":1}}],["repeated",{"2":{"4":3,"6":3,"9":1,"32":2,"38":1,"43":2,"55":2,"58":2,"61":4,"89":1}}],["represented",{"2":{"166":1}}],["represent",{"2":{"17":1,"38":1,"43":4,"61":1}}],["representing",{"2":{"6":1,"50":1,"52":1,"55":1,"57":1,"61":1,"167":1}}],["represents",{"2":{"6":1,"133":2,"134":1}}],["reprojects",{"2":{"140":1}}],["reprojection",{"0":{"140":1},"1":{"141":1}}],["reproject",{"2":{"0":1,"1":4,"29":2,"121":1,"140":6,"141":2}}],["re",{"2":{"1":1,"6":1,"17":1,"153":1,"160":1,"162":1}}],["retreivable",{"2":{"1":1,"140":1}}],["returnval",{"2":{"89":9}}],["returntype",{"2":{"19":1}}],["returning",{"2":{"18":1,"39":1,"50":2}}],["return",{"0":{"22":1},"2":{"1":1,"3":18,"4":2,"6":37,"13":3,"14":3,"23":2,"28":1,"32":5,"35":5,"38":20,"39":1,"42":4,"43":36,"45":12,"48":12,"49":5,"50":4,"51":4,"52":18,"54":6,"55":9,"58":8,"61":30,"64":1,"67":1,"73":2,"74":2,"77":1,"78":18,"81":2,"87":2,"88":2,"89":71,"91":1,"92":1,"95":28,"98":1,"100":2,"104":2,"105":2,"108":1,"114":2,"115":2,"118":10,"119":12,"128":26,"129":1,"131":4,"133":6,"134":2,"137":2,"139":2,"140":1,"145":4,"148":3,"149":1,"150":5,"151":3,"152":7,"153":2,"154":2,"158":3,"159":8}}],["returned",{"2":{"1":1,"6":10,"22":2,"23":1,"43":3,"48":1,"49":2,"51":2,"52":2,"54":2,"119":1,"123":1,"128":2,"140":1,"148":1,"157":1}}],["returns",{"2":{"1":1,"3":5,"4":4,"5":3,"6":23,"18":1,"22":2,"32":1,"35":2,"38":6,"42":3,"43":4,"45":6,"48":1,"49":1,"52":1,"54":1,"58":8,"60":1,"63":2,"64":1,"67":1,"76":2,"77":1,"80":1,"89":4,"92":1,"95":2,"108":1,"119":2,"128":2,"145":1,"154":1,"165":1}}],["rebuilt",{"2":{"1":1,"6":2,"123":1,"128":2}}],["rebuild",{"2":{"0":2,"6":4,"123":4,"126":1,"128":10,"145":1,"148":2}}],["psa",{"2":{"128":2}}],["pb",{"2":{"78":2}}],["p0",{"2":{"58":9}}],["p3",{"2":{"43":8,"151":4}}],["ptm",{"2":{"118":3}}],["ptj",{"2":{"118":5}}],["pti",{"2":{"118":3}}],["ptrait",{"2":{"58":2}}],["pts",{"2":{"43":22,"48":7}}],["pt",{"2":{"43":114,"48":2,"52":26,"89":8,"150":4}}],["pt2",{"2":{"43":14,"52":2}}],["pt1",{"2":{"43":18,"52":2}}],["pn",{"2":{"100":3}}],["pn2",{"2":{"43":4}}],["pn1",{"2":{"43":4}}],["pfirst",{"2":{"35":3}}],["pu",{"2":{"166":2}}],["purpose",{"2":{"128":1}}],["pure",{"2":{"119":1}}],["purely",{"2":{"6":1,"18":1,"144":1}}],["push",{"2":{"43":15,"48":5,"49":2,"51":2,"52":2,"54":4,"55":5,"119":3,"131":1,"145":3,"150":3}}],["pull",{"2":{"25":1}}],["public",{"2":{"24":1}}],["pick",{"2":{"162":2}}],["piece",{"2":{"43":6,"137":6}}],["pieces",{"2":{"43":12,"48":1,"50":2,"54":4,"89":1,"137":9}}],["pi",{"2":{"13":2}}],["pixels",{"2":{"119":1}}],["pixel",{"2":{"6":2,"119":7}}],["pythagorean",{"2":{"58":1}}],["py",{"2":{"13":2,"14":2}}],["px",{"2":{"13":2,"14":2}}],["peucker",{"2":{"146":2,"148":3,"150":2}}],["peaks",{"2":{"119":2}}],["peculiarities",{"0":{"21":1},"1":{"22":1,"23":1,"24":1}}],["people",{"2":{"9":1}}],["performed",{"2":{"166":1}}],["performs",{"2":{"38":1,"145":1}}],["perform",{"2":{"37":1,"38":2,"43":1,"121":1,"165":3,"166":2,"168":1}}],["performing",{"2":{"6":3,"23":1,"38":1,"49":1,"51":1,"54":1,"166":1}}],["performance",{"2":{"4":1,"6":2,"22":1,"119":1,"135":1,"138":1,"148":1,"164":1}}],["per",{"2":{"5":2,"6":2,"37":1,"38":2,"43":5,"119":1,"128":4,"145":1}}],["pl",{"2":{"166":2}}],["plt",{"2":{"161":1}}],["please",{"2":{"43":1}}],["plan",{"2":{"142":1}}],["plane",{"2":{"38":1}}],["place",{"2":{"52":1,"165":1}}],["placement",{"2":{"43":1}}],["plottable",{"2":{"119":1}}],["plotted",{"2":{"41":1}}],["plotting",{"0":{"161":1},"2":{"6":1,"119":1,"142":1,"145":1,"160":1,"161":4,"162":1}}],["plots",{"2":{"37":2}}],["plot",{"2":{"13":1,"37":3,"60":1,"94":1,"119":1,"144":2,"148":4,"160":2,"161":9,"162":6,"164":1,"166":1}}],["plus",{"2":{"5":1,"6":1,"38":1}}],["p2y",{"2":{"159":3}}],["p2x",{"2":{"159":3}}],["p2box",{"2":{"37":1}}],["p2",{"2":{"3":2,"4":2,"6":6,"15":12,"32":12,"35":9,"43":18,"45":19,"54":2,"58":15,"61":11,"67":2,"76":2,"89":12,"95":2,"118":3,"143":1,"151":4,"159":3,"161":2}}],["p1y",{"2":{"159":3}}],["p1x",{"2":{"159":3}}],["p1",{"2":{"3":3,"4":2,"6":7,"15":12,"32":21,"35":8,"37":4,"43":9,"45":25,"47":1,"54":2,"58":15,"61":14,"66":5,"67":3,"76":5,"89":4,"95":2,"100":3,"118":3,"151":4,"159":3,"161":1}}],["practice",{"2":{"162":1}}],["pred",{"2":{"165":2,"166":1,"167":2,"168":1}}],["predicate",{"2":{"7":1,"78":1,"165":3,"166":1,"168":5}}],["predicates",{"0":{"12":1,"15":1,"168":1},"1":{"13":1,"14":1,"15":1,"16":1},"2":{"7":4,"12":1,"29":1,"43":5,"52":4,"53":3,"89":1,"165":1,"167":1}}],["pretty",{"2":{"140":1}}],["prettytime",{"2":{"13":2}}],["prevent",{"2":{"50":2,"52":2,"55":2}}],["prev^2",{"2":{"32":2}}],["prev",{"2":{"32":14,"43":69,"118":4}}],["previously",{"2":{"143":1}}],["previous",{"2":{"19":1,"32":1,"128":1,"149":3}}],["preparations",{"2":{"20":1}}],["prepared",{"2":{"20":1,"119":2}}],["prepare",{"0":{"20":1},"2":{"17":1,"20":1}}],["precision",{"2":{"11":1}}],["preserve",{"2":{"148":4,"150":3}}],["preserving",{"2":{"146":1}}],["presentation",{"2":{"6":1,"38":1}}],["present",{"2":{"6":1,"158":1}}],["presence",{"2":{"6":1,"158":1}}],["prescribes",{"2":{"20":1}}],["press",{"2":{"6":1,"38":1}}],["pre",{"2":{"6":1,"54":1,"148":1,"150":2}}],["prefilter",{"2":{"6":1,"148":7}}],["protters",{"2":{"128":2}}],["progressively",{"2":{"126":1}}],["program",{"2":{"17":1}}],["programming",{"2":{"17":1}}],["promote",{"2":{"38":5}}],["property",{"2":{"128":2}}],["properties=gi",{"2":{"128":1}}],["properties=namedtuple",{"2":{"128":1}}],["properties=",{"2":{"119":1}}],["properties",{"2":{"6":1,"128":9,"148":1,"152":1}}],["propagate",{"2":{"38":16,"58":4}}],["probably",{"2":{"35":1,"128":1}}],["prod",{"2":{"32":4}}],["product",{"2":{"32":1}}],["process",{"2":{"69":3,"70":3,"71":3,"72":1,"78":1,"83":3,"84":3,"85":2,"86":1,"89":11,"100":1,"101":3,"102":1,"103":1,"110":3,"111":3,"112":3,"113":1,"128":2,"150":1}}],["processed",{"2":{"43":6}}],["processors",{"2":{"29":1,"67":2,"81":2,"98":2,"108":2}}],["processor",{"2":{"29":1}}],["processing",{"2":{"23":1}}],["profile",{"2":{"9":1}}],["provides",{"2":{"162":1}}],["providers",{"2":{"130":1,"136":1}}],["provide",{"0":{"23":1},"2":{"6":6,"31":1,"34":1,"36":1,"41":1,"44":1,"47":1,"49":2,"51":2,"54":2,"57":1,"60":1,"63":1,"66":1,"76":1,"80":1,"89":2,"91":1,"94":1,"97":1,"107":1,"119":1,"152":1}}],["provided",{"2":{"4":1,"6":3,"11":1,"43":1,"58":1,"61":1,"136":1,"144":2,"158":1}}],["projecting",{"2":{"162":1}}],["projection",{"2":{"58":2,"160":1,"162":1}}],["project",{"2":{"9":1}}],["projects",{"2":{"9":1}}],["proj",{"2":{"1":2,"6":3,"140":2,"141":4,"143":1,"144":6,"160":1}}],["prints",{"2":{"141":1}}],["printstyled",{"2":{"39":1,"141":1,"144":1}}],["println",{"2":{"39":1,"141":1,"144":1,"148":2}}],["print",{"2":{"39":2,"141":2,"144":2}}],["primitives",{"2":{"29":1}}],["primitive",{"0":{"121":1},"1":{"122":1,"123":1,"124":1,"125":1,"126":1,"127":1,"128":1},"2":{"27":1}}],["primarily",{"2":{"6":1,"25":2,"156":1}}],["primary",{"2":{"3":2,"6":3,"67":1,"108":1,"148":1}}],["priority",{"2":{"1":1,"140":1}}],["pay",{"2":{"128":1}}],["paper",{"2":{"89":2}}],["pa",{"2":{"78":2}}],["paths",{"2":{"157":1}}],["pathof",{"2":{"148":2}}],["path",{"2":{"34":3,"162":2}}],["padding",{"2":{"6":2}}],["parquet",{"2":{"164":3}}],["parent",{"2":{"157":1}}],["parse",{"2":{"89":1,"95":1}}],["part",{"2":{"45":2,"55":2,"89":3,"127":1}}],["partition",{"2":{"128":4}}],["partialsort",{"2":{"152":1}}],["partial",{"2":{"45":4}}],["partially",{"2":{"43":2,"55":2}}],["particularly",{"2":{"38":1}}],["particular",{"2":{"28":1,"32":1,"119":1,"162":2}}],["parallel",{"2":{"89":1,"118":1}}],["paradigm",{"0":{"27":1}}],["paradigms",{"0":{"17":1},"1":{"18":1,"19":1,"20":1},"2":{"17":2,"20":1}}],["parameters",{"2":{"6":1,"128":1,"156":2}}],["parameter",{"2":{"6":2,"156":3}}],["params",{"2":{"6":2,"158":10}}],["parlance",{"2":{"5":1,"6":1,"38":1}}],["passes",{"2":{"45":2,"89":1}}],["passed",{"2":{"1":2,"6":7,"119":1,"123":1,"128":2,"140":1,"144":2,"153":1,"158":2,"168":1}}],["passable",{"2":{"38":18}}],["passing",{"2":{"18":1,"128":1,"146":1}}],["pass",{"2":{"5":1,"6":4,"18":1,"38":1,"64":1,"77":1,"89":2,"92":1,"144":1,"145":1,"148":1,"157":1}}],["pairs",{"2":{"52":1,"161":1}}],["pair",{"2":{"3":2,"6":2,"45":1,"95":2,"128":3}}],["packages",{"2":{"6":1,"25":1,"123":1,"128":1,"129":1,"155":1,"160":3,"162":1,"164":1}}],["package",{"2":{"1":2,"22":1,"25":2,"39":1,"119":1,"140":3,"141":1,"144":1,"162":1,"164":2}}],["page",{"2":{"0":1,"9":1,"27":1,"29":1,"32":1,"35":1,"37":1,"38":1,"39":1,"42":1,"43":1,"45":1,"48":1,"50":1,"52":1,"53":1,"55":1,"58":1,"61":1,"64":1,"74":1,"77":1,"78":1,"88":1,"89":1,"92":1,"95":1,"105":1,"115":1,"118":1,"119":1,"120":1,"128":1,"131":1,"134":1,"137":1,"138":1,"139":1,"141":1,"145":1,"152":1,"153":1,"154":1,"158":1,"159":1}}],["p",{"2":{"1":5,"6":5,"13":13,"14":12,"15":2,"31":1,"34":1,"41":1,"43":5,"44":1,"45":5,"50":2,"54":2,"57":3,"60":1,"63":1,"66":1,"76":1,"78":4,"80":1,"89":20,"91":1,"94":1,"97":1,"107":1,"118":4,"119":3,"121":3,"128":3,"139":7,"143":1,"147":1,"148":1,"152":3,"153":9,"154":7,"159":11,"165":1,"166":1}}],["poylgon",{"2":{"52":1,"55":1,"89":1}}],["potential",{"2":{"45":1}}],["potentially",{"2":{"6":2,"43":1,"134":2,"137":2}}],["post",{"2":{"150":2}}],["postitive",{"2":{"57":1}}],["postive",{"2":{"34":1}}],["possibly",{"2":{"128":1}}],["possiblenodes",{"2":{"119":2}}],["possible",{"2":{"6":3,"49":1,"51":1,"54":1,"119":1,"128":2}}],["possibility",{"2":{"126":1}}],["possibilities",{"2":{"52":1}}],["position=",{"2":{"148":1}}],["position",{"2":{"6":1,"118":1,"143":1}}],["positive",{"2":{"4":4,"6":4,"34":2,"35":1,"57":2,"58":3,"145":1,"152":1}}],["polgons",{"2":{"119":1}}],["polgontrait",{"2":{"1":1,"6":1}}],["polar",{"2":{"6":1,"144":1}}],["polynodes",{"2":{"43":7,"49":1,"51":1,"54":1}}],["polynode",{"2":{"43":36}}],["polypoints",{"2":{"38":46}}],["polyogns",{"2":{"119":1}}],["polyogn",{"2":{"32":1}}],["polygns",{"2":{"43":1}}],["polygin",{"2":{"4":1,"6":1,"32":1}}],["polygon3",{"2":{"161":2,"162":1}}],["polygon2",{"2":{"161":6}}],["polygon1",{"2":{"161":4}}],["polygonization",{"2":{"119":1}}],["polygonizing",{"0":{"119":1}}],["polygonized",{"2":{"119":1}}],["polygonize",{"2":{"0":1,"6":6,"9":1,"29":1,"119":31}}],["polygon`",{"2":{"38":3}}],["polygons",{"0":{"72":1,"103":1,"113":1,"135":1},"1":{"136":1,"137":1},"2":{"3":4,"4":3,"5":1,"6":18,"9":1,"23":5,"29":1,"35":5,"36":1,"38":2,"41":1,"42":1,"43":13,"45":1,"48":2,"49":9,"50":5,"51":3,"52":8,"54":6,"55":19,"57":1,"58":1,"61":5,"72":1,"95":5,"113":1,"118":1,"119":18,"126":1,"130":2,"134":3,"135":2,"136":2,"137":10,"146":1,"148":1,"161":3,"162":1,"166":5,"167":3}}],["polygontrait",{"2":{"1":1,"3":4,"4":6,"6":14,"15":3,"23":1,"32":2,"35":3,"38":3,"42":2,"43":2,"45":2,"48":1,"49":5,"50":5,"51":3,"52":5,"54":4,"55":8,"58":2,"61":10,"69":2,"70":1,"71":1,"72":3,"73":1,"78":4,"83":2,"84":2,"85":1,"86":2,"87":1,"95":8,"100":2,"101":1,"102":1,"103":3,"104":1,"110":2,"111":1,"112":1,"113":3,"114":1,"121":1,"126":2,"128":1,"131":2,"133":2,"134":1,"137":2,"148":2,"159":1}}],["polygon",{"0":{"43":1,"46":1,"49":1,"50":1,"52":1,"54":1,"55":1,"86":1},"1":{"47":1,"48":1},"2":{"0":1,"1":4,"3":4,"4":20,"5":9,"6":62,"9":2,"11":3,"15":4,"20":1,"23":1,"31":1,"32":3,"34":2,"35":5,"36":5,"37":16,"38":57,"41":2,"42":4,"43":39,"44":3,"45":4,"47":3,"48":10,"49":5,"50":7,"51":5,"52":5,"54":6,"55":33,"57":3,"58":14,"61":12,"67":1,"69":3,"70":3,"71":4,"72":8,"78":1,"83":3,"84":4,"85":4,"86":4,"89":66,"95":4,"98":1,"100":3,"101":4,"102":5,"103":7,"108":1,"110":3,"111":4,"112":4,"113":8,"118":5,"119":4,"128":1,"129":4,"130":8,"131":5,"132":1,"134":4,"135":3,"136":12,"137":7,"143":1,"144":4,"147":1,"148":9,"153":3,"159":6,"161":12,"162":12,"163":2,"166":6}}],["polys",{"2":{"6":2,"43":39,"47":3,"48":10,"49":14,"50":14,"51":9,"52":6,"54":14,"55":28,"137":26}}],["polys1",{"2":{"3":2,"6":2,"95":6}}],["polys2",{"2":{"3":2,"6":2,"95":6}}],["poly",{"2":{"3":2,"6":16,"15":2,"31":1,"34":1,"35":6,"37":2,"38":3,"41":1,"43":107,"44":2,"45":4,"47":4,"48":20,"49":22,"50":12,"51":15,"52":10,"54":19,"55":79,"57":1,"58":3,"61":4,"78":10,"89":21,"95":8,"118":5,"119":5,"137":18,"143":2,"147":2,"148":8,"159":8,"161":2,"166":5}}],["poly2",{"2":{"3":3,"4":2,"6":7,"49":2,"61":2,"89":19,"95":7}}],["poly1",{"2":{"3":3,"4":2,"6":7,"49":2,"61":2,"89":14,"95":7}}],["pointwise",{"0":{"153":1},"2":{"140":1}}],["point1",{"2":{"58":4}}],["point`",{"2":{"52":1}}],["pointedgeside",{"2":{"43":1}}],["point₂",{"2":{"42":13}}],["point₁",{"2":{"42":13}}],["point3s",{"2":{"38":10}}],["point3f",{"2":{"37":1}}],["pointrait",{"2":{"6":1}}],["point2f",{"2":{"37":4,"38":2,"57":1}}],["point2",{"2":{"6":2,"38":5,"58":4}}],["pointtrait",{"2":{"1":1,"4":4,"6":9,"18":1,"32":2,"35":1,"38":3,"45":1,"51":2,"58":17,"61":8,"69":6,"73":1,"83":6,"87":1,"100":6,"104":1,"110":6,"114":1,"121":2,"126":1,"128":21,"133":2,"134":1,"138":1,"139":2,"148":2,"153":2,"154":2,"156":2,"159":1}}],["point",{"0":{"83":1,"100":1},"2":{"1":4,"3":10,"4":37,"5":7,"6":83,"9":2,"20":1,"32":12,"35":3,"36":3,"37":1,"38":126,"42":6,"43":97,"45":50,"48":13,"50":9,"51":1,"52":71,"55":9,"57":17,"58":73,"61":27,"64":3,"66":1,"67":2,"69":8,"78":21,"81":2,"83":10,"89":138,"91":1,"94":2,"95":21,"97":1,"98":3,"100":10,"101":1,"103":1,"108":4,"110":11,"118":1,"119":3,"128":1,"129":1,"130":2,"134":2,"135":1,"137":2,"140":1,"142":1,"148":2,"149":3,"150":9,"151":1,"153":2,"159":4,"161":111,"162":15,"166":2}}],["points2",{"2":{"3":1,"6":1,"95":3}}],["points1",{"2":{"3":1,"6":1,"95":3}}],["points",{"0":{"69":1,"110":1},"2":{"0":1,"1":3,"3":1,"4":11,"5":1,"6":52,"9":3,"13":1,"32":2,"34":3,"35":3,"37":8,"38":32,"42":1,"43":55,"45":5,"48":3,"49":5,"50":1,"51":8,"52":28,"54":4,"55":1,"57":2,"58":8,"60":2,"61":13,"63":1,"67":6,"69":3,"70":4,"81":6,"83":1,"84":7,"85":3,"89":10,"95":5,"98":5,"100":1,"101":2,"102":4,"103":3,"107":1,"108":5,"110":3,"111":3,"112":3,"113":1,"117":1,"119":3,"128":1,"138":2,"140":1,"143":2,"144":2,"148":11,"149":11,"150":26,"151":10,"152":33,"153":2,"154":2,"159":25,"161":8,"162":1,"165":1,"166":11}}],["pointorientation",{"2":{"0":1,"6":2,"89":2}}],["my",{"2":{"167":1,"168":2}}],["moore",{"2":{"119":1}}],["moved",{"2":{"43":1,"140":1}}],["move",{"2":{"42":1,"89":1}}],["mode",{"2":{"168":3}}],["model",{"2":{"165":1}}],["modify",{"2":{"161":1}}],["modified",{"2":{"128":2}}],["module",{"2":{"140":1,"145":1}}],["modules",{"2":{"6":1,"38":1}}],["mod1",{"2":{"38":5}}],["mod",{"2":{"38":1,"43":1}}],["most",{"2":{"25":1,"43":1,"50":1,"52":1,"55":1,"89":1,"148":1,"164":2}}],["monotone",{"2":{"20":1}}],["moment",{"2":{"6":1,"143":1,"145":1}}],["more",{"2":{"6":3,"7":1,"9":1,"10":1,"11":1,"23":1,"27":1,"43":1,"49":1,"51":1,"54":1,"89":1,"95":1,"128":4,"131":1,"141":1,"143":1,"145":1,"161":2,"165":1}}],["mistakenly",{"2":{"135":1}}],["missing",{"2":{"123":6,"124":2,"143":4}}],["missed",{"2":{"119":1}}],["mid",{"2":{"45":2,"89":3}}],["midpoint",{"2":{"43":2}}],["middle",{"2":{"43":2}}],["mining",{"2":{"167":1}}],["minimal",{"2":{"167":1}}],["minimize",{"2":{"52":1}}],["minimum",{"2":{"4":7,"6":12,"44":1,"45":2,"58":12,"148":1,"149":1,"151":1}}],["mind",{"2":{"143":1,"166":1}}],["minmax",{"2":{"52":4}}],["min",{"2":{"45":1,"52":16,"58":15,"148":1,"150":3,"151":1,"152":28}}],["minus",{"2":{"34":1}}],["minpoints=0",{"2":{"119":1}}],["minpoints",{"2":{"6":2}}],["might",{"2":{"6":3,"25":1,"35":1,"49":1,"51":1,"52":1,"54":1,"132":1,"150":1}}],["mixed",{"2":{"6":4,"148":1}}],["m",{"2":{"5":1,"6":1,"15":10,"38":2,"45":6,"118":2,"162":1}}],["mp",{"2":{"78":2}}],["mp1",{"2":{"4":2,"6":2,"61":7}}],["mp2",{"2":{"4":2,"6":2,"61":8}}],["manner",{"2":{"165":1}}],["manipulate",{"2":{"164":1}}],["manually",{"2":{"129":1}}],["many",{"2":{"4":1,"5":1,"6":2,"23":1,"38":1,"43":1,"48":1,"50":1,"52":2,"55":1,"61":1,"130":1,"138":1}}],["mason",{"2":{"128":2}}],["markersize",{"2":{"161":2}}],["marker",{"2":{"161":2}}],["marked",{"2":{"43":6,"50":1,"52":1,"55":1}}],["marking",{"2":{"50":2,"52":2,"55":2}}],["mark",{"2":{"43":2}}],["marks",{"2":{"43":1}}],["mag",{"2":{"32":4}}],["making",{"2":{"43":1,"119":1,"126":1,"136":1,"161":1,"162":2}}],["makie",{"2":{"13":1,"14":1,"31":1,"34":1,"37":3,"41":1,"44":1,"47":4,"57":1,"60":1,"63":1,"66":1,"76":1,"80":1,"91":1,"94":1,"97":1,"107":1,"119":3,"147":1,"148":1}}],["makevalid",{"2":{"148":2}}],["makes",{"2":{"35":1,"43":1,"58":1,"128":1,"130":1,"135":1,"136":1}}],["make",{"2":{"9":1,"25":1,"32":1,"43":3,"52":1,"58":1,"95":1,"119":2,"126":1,"131":1,"143":1,"152":1,"155":1,"161":2,"162":1}}],["mainly",{"2":{"38":1,"57":1,"121":1}}],["maintain",{"2":{"35":1}}],["main",{"0":{"26":1},"1":{"27":1,"28":1},"2":{"7":1,"43":1,"119":1,"128":1,"144":1}}],["mapped",{"2":{"164":1}}],["maptasks",{"2":{"128":6}}],["mapreducetasks",{"2":{"128":5}}],["mapreduce",{"2":{"50":1,"119":2,"128":8}}],["map",{"2":{"6":1,"13":1,"18":3,"19":1,"27":1,"38":1,"43":1,"52":1,"95":2,"119":17,"128":24,"131":1,"148":1,"156":1,"160":1,"162":2,"164":1}}],["matlab",{"2":{"47":1}}],["materializer`",{"2":{"128":1}}],["materializer",{"2":{"22":1,"128":1}}],["mathrm",{"2":{"38":1}}],["math",{"2":{"7":1}}],["mathematically",{"2":{"6":1,"118":1}}],["matches",{"2":{"61":1,"119":1}}],["match",{"2":{"6":1,"61":12,"95":3,"119":1,"123":1,"128":2}}],["matching",{"2":{"3":1,"6":1,"22":1,"61":3,"95":1,"126":2}}],["matrix",{"2":{"6":1,"14":2,"38":1}}],["maximal",{"2":{"52":1}}],["maximum",{"2":{"3":1,"6":4,"14":1,"44":1,"45":4,"78":1,"119":1,"144":1,"145":1,"150":4}}],["max",{"2":{"6":9,"32":2,"45":1,"119":1,"128":2,"143":5,"144":8,"145":7,"150":36,"152":1}}],["made",{"2":{"6":2,"42":1,"43":1,"52":1,"102":1,"126":1,"134":1,"137":1,"151":1}}],["maybe",{"2":{"6":1,"89":4,"123":1,"128":6}}],["may",{"2":{"1":1,"6":5,"23":2,"24":1,"38":2,"43":1,"52":1,"118":1,"120":1,"126":1,"128":4,"135":1,"136":1,"144":1,"156":1}}],["mercator",{"2":{"162":1}}],["merge",{"2":{"128":1}}],["measure",{"2":{"128":1,"142":1}}],["meaning",{"2":{"3":3,"4":1,"6":4,"24":1,"35":1,"39":1,"95":4,"118":1}}],["means",{"2":{"3":1,"6":2,"34":1,"35":1,"39":1,"66":1,"89":3,"94":1,"95":1,"118":1,"126":1}}],["mean",{"2":{"0":1,"6":5,"17":1,"37":2,"38":5,"128":1}}],["meanvalue",{"2":{"0":1,"5":2,"6":3,"36":1,"37":2,"38":15}}],["meets",{"2":{"89":9,"95":1,"150":1}}],["meet",{"2":{"52":3,"66":1,"67":1,"81":1,"89":7,"98":1,"108":1}}],["memory",{"2":{"38":1,"162":1}}],["mesh",{"2":{"37":1,"128":1}}],["message",{"2":{"6":1,"158":1}}],["me",{"0":{"23":1}}],["mentioned",{"2":{"19":1}}],["mentions",{"2":{"6":1,"158":1}}],["menu",{"2":{"14":3}}],["median",{"2":{"13":4,"128":1}}],["mechanics",{"2":{"6":1,"38":1}}],["met",{"2":{"89":44}}],["meters",{"2":{"6":4,"143":1,"144":4,"162":1}}],["methoderror",{"2":{"29":3}}],["methods",{"0":{"2":1,"3":1,"4":1,"6":1},"1":{"3":1,"4":1},"2":{"1":1,"6":9,"9":1,"25":1,"29":26,"38":3,"67":1,"81":1,"98":1,"108":1,"119":1,"123":1,"126":1,"128":2,"143":1,"148":2,"153":1,"156":1,"161":1}}],["method",{"0":{"141":1},"2":{"1":1,"4":1,"5":10,"6":96,"24":1,"32":1,"35":1,"38":37,"39":2,"42":1,"45":1,"52":1,"55":1,"58":4,"61":1,"67":2,"81":2,"95":1,"98":2,"108":2,"119":1,"128":5,"140":1,"141":2,"143":2,"144":9,"145":14,"146":2,"157":1,"158":3,"165":1,"168":1}}],["mutation",{"2":{"163":1}}],["mutlipolygon",{"2":{"4":1,"6":1,"42":1}}],["muladd",{"2":{"38":2}}],["multifloats",{"2":{"13":1,"14":1,"15":1}}],["multifloat",{"2":{"7":1}}],["multilinestringtrait",{"2":{"133":1}}],["multilinestring",{"2":{"6":1,"128":1,"159":2}}],["multi",{"0":{"73":1,"74":1,"87":1,"88":1,"104":1,"105":1,"114":1,"115":1},"2":{"4":2,"6":3,"32":1,"35":1,"45":1,"61":2,"73":1,"74":1,"87":1,"88":1,"104":1,"105":1,"114":1,"115":1}}],["multicurves",{"2":{"35":1,"45":1}}],["multicurve",{"2":{"4":1,"6":1,"35":1}}],["multigeometry",{"2":{"4":2,"6":2,"58":2}}],["multiplication",{"2":{"145":1}}],["multiplied",{"2":{"38":3}}],["multiple",{"2":{"4":1,"6":1,"38":1,"89":1,"138":1,"152":1,"161":1,"164":1}}],["multiply",{"2":{"1":1,"6":1,"153":1}}],["multipolys",{"2":{"55":3}}],["multipoly`",{"2":{"49":2,"51":2,"54":2}}],["multipoly",{"2":{"6":9,"15":3,"49":1,"50":27,"51":1,"52":26,"54":1,"55":24,"137":21,"148":9}}],["multipolygon`",{"2":{"119":1}}],["multipolygons",{"2":{"3":1,"4":1,"6":11,"42":1,"49":3,"51":3,"52":3,"54":3,"57":1,"61":1,"95":2,"136":1,"161":1,"162":1}}],["multipolygon",{"2":{"3":2,"4":5,"6":16,"35":2,"41":1,"49":1,"50":7,"51":1,"52":5,"54":1,"55":6,"61":4,"95":2,"119":7,"128":1,"134":2,"135":7,"136":8,"137":2,"148":3,"161":8,"162":1}}],["multipolygontrait",{"2":{"1":1,"3":4,"4":2,"6":7,"23":1,"50":4,"52":4,"55":4,"61":6,"73":1,"74":1,"87":1,"88":1,"95":8,"104":1,"105":1,"114":1,"115":1,"128":1,"133":1,"137":4}}],["multipoint",{"2":{"4":5,"6":5,"35":1,"61":5,"78":6,"128":4,"148":1,"161":5}}],["multipoints",{"2":{"3":2,"4":1,"6":3,"35":1,"45":1,"61":2,"95":2,"148":1,"161":1}}],["multipointtrait",{"2":{"1":1,"3":2,"4":4,"6":8,"32":2,"35":1,"45":1,"61":8,"73":1,"74":1,"78":4,"87":1,"88":1,"95":4,"104":1,"105":1,"114":1,"115":1,"126":1,"133":1,"148":2,"159":1}}],["multithreading",{"2":{"1":2,"4":1,"6":5,"125":1}}],["must",{"2":{"1":1,"3":8,"4":2,"5":1,"6":23,"9":1,"32":1,"38":5,"39":1,"43":2,"45":3,"48":1,"52":2,"61":5,"64":2,"67":1,"76":1,"77":1,"81":1,"89":13,"95":1,"97":1,"98":1,"108":2,"119":1,"123":1,"128":1,"132":1,"133":3,"134":1,"140":1,"144":1,"145":1,"148":1,"152":4,"158":1}}],["much",{"2":{"0":1,"6":3,"49":1,"51":1,"54":1}}],["mdash",{"2":{"1":4,"3":9,"4":8,"5":3,"6":87,"123":3,"133":1,"134":4}}],["df",{"2":{"163":3,"164":4,"166":10,"167":12}}],["dp",{"2":{"148":3}}],["dy",{"2":{"118":2,"145":3}}],["dy2",{"2":{"118":2}}],["dy1",{"2":{"78":10,"118":2}}],["dyc",{"2":{"78":2}}],["dx",{"2":{"118":2,"145":3}}],["dx2",{"2":{"118":2}}],["dx1",{"2":{"78":10,"118":2}}],["dxc",{"2":{"78":2}}],["drop",{"2":{"55":1,"137":1,"145":1}}],["driven",{"2":{"25":1}}],["driving",{"2":{"25":1}}],["duplicated",{"2":{"52":2}}],["during",{"2":{"43":1}}],["due",{"2":{"42":1,"43":1,"52":3}}],["datas",{"2":{"168":1}}],["datasets",{"2":{"162":1,"165":1,"166":1}}],["dataset",{"2":{"162":1,"165":1}}],["datainterpolations",{"2":{"142":1}}],["dataframes",{"2":{"163":3,"166":2,"167":1}}],["dataframe",{"2":{"27":1,"163":1,"165":1,"166":5,"167":2}}],["data",{"0":{"119":1,"164":1},"2":{"23":1,"25":1,"119":2,"148":10,"160":1,"162":4,"163":2,"164":6,"166":1}}],["dataaspect",{"2":{"13":1,"14":1,"31":1,"34":1,"37":2,"41":1,"44":1,"57":2,"119":2,"143":1,"148":1}}],["dashboard",{"0":{"14":1},"2":{"13":1,"14":1}}],["d",{"2":{"1":2,"5":1,"6":1,"38":1,"140":1,"150":3}}],["deu",{"2":{"167":2}}],["demonstrates",{"2":{"166":1}}],["densify",{"2":{"144":3}}],["densifying",{"2":{"144":1}}],["densifies",{"2":{"142":1}}],["denoted",{"2":{"89":1}}],["denotes",{"2":{"43":1}}],["debug",{"2":{"133":1}}],["debugging",{"2":{"38":1,"43":1}}],["de",{"2":{"89":2,"165":1}}],["derivation",{"2":{"52":1}}],["dealing",{"2":{"45":1}}],["delete",{"2":{"78":1,"95":1,"119":1,"150":1}}],["deleteat",{"2":{"43":6,"150":1,"152":2}}],["delayed",{"2":{"43":10,"50":2,"52":2,"55":2}}],["delay",{"2":{"43":14,"49":2,"50":2,"51":2,"52":2,"54":2,"55":2}}],["depend",{"2":{"43":2}}],["depends",{"2":{"43":1,"48":1}}],["depending",{"2":{"1":1,"6":1,"23":1,"52":1,"128":1}}],["depth",{"2":{"38":2}}],["desktop",{"2":{"164":1}}],["dest",{"2":{"162":2}}],["destinaton",{"2":{"162":1}}],["destination",{"2":{"162":4}}],["desired",{"2":{"54":1,"164":1}}],["despite",{"2":{"32":1}}],["describe",{"2":{"17":1}}],["described",{"2":{"6":1,"38":1,"42":1,"43":1}}],["deconstruct",{"2":{"121":1}}],["decomposition",{"2":{"18":1,"121":1}}],["decomposing",{"2":{"18":1}}],["decompose",{"2":{"18":2,"27":1,"38":4,"129":1}}],["decide",{"2":{"119":1}}],["decision",{"2":{"24":1}}],["decrementing",{"2":{"119":1}}],["decrease",{"2":{"42":1}}],["decreaseing",{"2":{"6":1,"148":1}}],["degeneracies",{"2":{"9":1}}],["degenerate",{"2":{"6":1,"38":1,"48":2}}],["degrees",{"2":{"6":1,"31":1,"118":1,"144":1}}],["defauly",{"2":{"50":1}}],["default",{"2":{"1":2,"4":5,"6":13,"32":1,"35":2,"45":1,"49":1,"50":1,"51":1,"52":5,"54":1,"55":2,"58":2,"119":5,"123":1,"128":2,"140":2,"148":2}}],["defaults",{"2":{"1":6,"4":2,"6":14,"125":3,"128":1}}],["defines",{"2":{"43":1,"121":1,"132":1,"155":1}}],["define",{"2":{"37":1,"52":2,"60":1,"119":2,"121":1,"126":1,"128":1,"155":1,"168":2}}],["defined",{"2":{"4":1,"5":1,"6":3,"7":1,"22":1,"32":2,"38":1,"44":1,"45":4,"52":4,"58":2,"117":1,"128":1,"145":1,"155":1}}],["definitions",{"2":{"158":1}}],["definition",{"2":{"4":1,"6":3,"61":5,"66":1,"145":1}}],["defintion",{"2":{"4":3,"6":3,"61":3}}],["deeper",{"2":{"1":1,"6":1,"127":1,"128":2}}],["detrimental",{"2":{"135":1}}],["details",{"2":{"123":3,"124":1,"143":2}}],["detection",{"2":{"119":1}}],["determined",{"2":{"43":1,"45":1}}],["determine",{"2":{"43":10,"45":3,"49":2,"51":2,"52":9,"54":2,"67":1,"81":1,"89":9,"95":1,"98":1,"108":1,"150":3,"165":1}}],["determines",{"2":{"35":1,"43":3,"52":1,"89":10}}],["determinant",{"2":{"6":1,"38":1}}],["det",{"2":{"0":1,"6":2,"38":4}}],["dirname",{"2":{"148":4}}],["dirty",{"2":{"147":1}}],["directive",{"2":{"128":1}}],["direction",{"2":{"6":1,"43":1,"61":5,"119":3}}],["directly",{"2":{"6":1,"119":1,"144":1}}],["dig",{"2":{"128":1}}],["dict",{"2":{"119":5}}],["didn",{"2":{"55":1,"89":1,"157":1}}],["division",{"2":{"37":1}}],["div",{"2":{"6":2}}],["div>",{"2":{"6":2}}],["ditance",{"2":{"4":1,"6":1,"58":1}}],["dimensional",{"2":{"5":1,"6":1,"34":1,"38":1}}],["dimensions",{"2":{"3":1,"6":1,"95":2}}],["dimension",{"2":{"1":1,"3":4,"6":4,"78":2,"94":1,"95":4,"140":1}}],["discouraged",{"2":{"162":1}}],["discussion",{"2":{"25":1,"48":1}}],["distributed",{"2":{"166":2}}],["distinct",{"2":{"52":1,"119":1}}],["dist",{"2":{"52":40,"58":19,"89":2,"144":8,"150":40}}],["distance`",{"2":{"144":3,"145":1,"158":1}}],["distances",{"2":{"52":1,"57":1,"144":1,"149":5}}],["distance",{"0":{"56":2,"57":2},"1":{"57":2,"58":2},"2":{"0":4,"4":26,"6":47,"29":1,"38":13,"39":3,"45":3,"52":32,"56":2,"57":17,"58":92,"89":1,"121":1,"142":1,"143":5,"144":13,"145":14,"148":1,"149":3,"150":6,"151":1,"168":2}}],["disagree",{"2":{"35":1}}],["disparate",{"2":{"25":1}}],["dispatches",{"2":{"6":1,"32":1,"35":1,"38":1,"42":1,"45":1,"58":1,"61":1,"67":1,"81":1,"95":1,"98":1,"108":1}}],["dispatch",{"2":{"4":1,"6":5,"24":1,"38":1,"61":1,"123":1,"128":2,"156":1,"158":1}}],["displaying",{"2":{"162":1}}],["display",{"2":{"13":1,"37":1,"162":1}}],["disjoint",{"0":{"79":1,"80":1,"83":1,"84":1,"85":1,"86":1,"87":1},"1":{"80":1,"81":1},"2":{"0":2,"3":5,"6":7,"23":1,"29":1,"55":2,"79":1,"80":3,"81":11,"82":6,"83":15,"84":18,"85":10,"86":5,"87":4,"88":2,"89":16,"92":3,"134":2,"135":2,"137":7,"165":1}}],["diffs",{"2":{"32":4}}],["diff",{"2":{"6":2,"32":17,"49":5,"50":3,"95":3,"137":8}}],["differs",{"2":{"162":1}}],["differ",{"2":{"4":1,"6":1,"58":1}}],["differently",{"2":{"4":3,"6":4,"32":1,"35":2,"45":1}}],["different",{"2":{"3":1,"4":4,"6":6,"20":1,"23":1,"32":1,"35":4,"43":3,"45":1,"52":2,"95":3,"119":1,"126":1,"128":1,"135":2,"162":2,"164":1}}],["differences",{"0":{"50":1},"2":{"52":1,"150":1}}],["difference",{"0":{"49":1},"2":{"0":1,"6":7,"11":1,"23":1,"29":1,"43":3,"49":12,"50":14,"52":1,"54":1,"55":3,"134":1,"137":1,"144":1}}],["diffintersectingpolygons",{"2":{"0":1,"6":1,"134":1,"137":4}}],["doi",{"2":{"49":2,"51":2,"54":2,"89":1}}],["doing",{"2":{"17":1,"22":1,"128":1,"162":1}}],["dot",{"2":{"32":2,"38":1}}],["doable",{"2":{"9":1}}],["documenter",{"2":{"123":3,"124":1,"143":2}}],["documentation",{"0":{"0":1},"1":{"1":1,"2":1,"3":1,"4":1,"5":1,"6":1},"2":{"0":1,"37":1}}],["docstring",{"2":{"123":6,"124":2,"143":4}}],["docstrings",{"0":{"122":1},"1":{"123":1},"2":{"7":1}}],["docs",{"2":{"119":1}}],["doc",{"2":{"9":1,"10":1}}],["does",{"0":{"22":1},"2":{"7":1,"19":1,"41":1,"52":2,"63":1,"66":3,"89":1}}],["doesn",{"2":{"4":1,"6":2,"35":1,"48":1,"61":1,"144":1,"158":1,"167":1}}],["download",{"2":{"148":1,"162":1}}],["down",{"2":{"6":1,"18":1,"27":1,"38":1,"128":1}}],["doublets",{"2":{"167":2}}],["double",{"2":{"151":4}}],["doubled",{"2":{"6":1,"151":1}}],["douglas",{"2":{"146":2,"148":2,"150":1}}],["douglaspeucker",{"0":{"150":1},"2":{"0":1,"6":5,"146":1,"148":5,"150":6}}],["done",{"0":{"10":1},"2":{"13":1,"14":1,"89":2,"119":1,"121":1,"135":1,"161":1,"165":1}}],["don",{"2":{"4":2,"6":3,"43":4,"49":1,"55":1,"61":6,"84":1,"89":1,"97":1,"101":1,"119":2,"128":3,"145":1,"158":1}}],["do",{"0":{"9":1,"23":1,"53":1},"2":{"1":1,"6":2,"14":1,"23":1,"29":1,"32":1,"35":2,"38":2,"39":1,"42":1,"45":1,"48":1,"55":3,"58":2,"60":1,"61":1,"76":1,"84":2,"85":1,"86":2,"89":1,"119":4,"121":1,"128":9,"130":1,"131":1,"136":1,"139":2,"141":1,"144":1,"148":1,"153":2,"154":2,"162":4,"163":3,"166":1,"167":1}}],["automatically",{"2":{"162":1}}],["autmoatically",{"2":{"95":1}}],["ay",{"2":{"118":2}}],["azimuth",{"2":{"118":2}}],["against",{"2":{"61":1,"89":2,"144":1,"148":1}}],["again",{"2":{"52":1,"128":1}}],["a``",{"2":{"50":2}}],["a`",{"2":{"50":7,"52":3,"55":2}}],["away",{"2":{"39":1,"78":1,"168":1}}],["a2y",{"2":{"52":4}}],["a2x",{"2":{"52":4}}],["a2",{"2":{"37":4,"52":54,"95":6}}],["a1y",{"2":{"52":7}}],["a1x",{"2":{"52":7}}],["a1",{"2":{"37":2,"43":9,"52":66,"95":6}}],["america",{"2":{"148":1}}],["am",{"2":{"89":1}}],["ambiguity",{"2":{"58":2,"128":5}}],["amounts",{"2":{"164":1}}],["amount",{"2":{"34":1,"44":1}}],["amp",{"2":{"6":1,"9":1}}],["axes",{"2":{"119":6}}],["ax",{"2":{"13":3,"14":3,"118":2,"161":5}}],["axislegend",{"2":{"143":1,"147":1}}],["axis",{"2":{"13":2,"14":1,"31":1,"34":1,"37":4,"41":1,"44":1,"57":1,"119":2,"143":1,"148":1}}],["axs",{"2":{"13":2}}],["a>",{"2":{"6":2}}],["adjust",{"2":{"52":1}}],["adjacent",{"2":{"43":1,"50":1,"52":1,"55":1}}],["adaptivity",{"0":{"53":1}}],["adaptive",{"2":{"7":1,"13":3,"14":2,"53":1}}],["adapted",{"2":{"49":1,"51":1,"54":1,"118":1}}],["advance",{"2":{"42":2}}],["advised",{"2":{"6":1,"156":1}}],["administrative",{"2":{"167":1}}],["admin",{"2":{"11":1,"148":2}}],["adm0",{"2":{"11":7}}],["additional",{"2":{"164":1}}],["additionally",{"2":{"43":3,"61":1}}],["addition",{"2":{"37":1,"55":1}}],["adding",{"2":{"4":1,"6":4,"7":1,"55":2,"119":1,"138":1,"142":1,"144":2,"145":1}}],["added",{"2":{"6":1,"32":1,"43":6,"45":1,"55":2,"123":1,"128":1,"137":2,"150":1}}],["add",{"2":{"3":1,"6":1,"7":2,"38":1,"39":1,"43":16,"45":1,"48":4,"49":3,"51":1,"52":2,"54":2,"55":9,"78":1,"119":4,"128":1,"142":1,"144":1,"150":10,"157":1,"162":1,"163":2,"165":1}}],["availible",{"2":{"42":1}}],["available",{"0":{"134":1},"2":{"6":3,"29":1,"133":3,"142":1,"143":1,"145":1,"148":1,"152":1,"156":1}}],["average",{"2":{"36":3,"42":4,"52":1}}],["avoid",{"2":{"5":1,"6":7,"38":1,"49":1,"51":1,"52":1,"54":1,"55":1,"119":2,"128":5,"145":1,"149":1,"150":1,"151":1,"161":3}}],["achieve",{"2":{"135":1}}],["across",{"2":{"126":1}}],["acos",{"2":{"32":1}}],["activate",{"2":{"143":1}}],["action",{"2":{"20":2}}],["actions",{"2":{"20":2}}],["actual",{"2":{"10":1,"38":1,"118":1,"131":1,"140":1,"144":1}}],["actually",{"2":{"9":1,"38":4,"52":1,"55":3,"89":1,"119":1,"164":1}}],["actuall",{"2":{"1":1,"6":1,"153":1}}],["access",{"2":{"162":1}}],["accessed",{"2":{"158":1}}],["acceptable",{"2":{"89":1}}],["accept",{"2":{"6":1,"158":1}}],["according",{"2":{"130":1,"135":1,"136":1,"166":1}}],["accordingly",{"2":{"43":1}}],["account",{"2":{"49":1,"51":1}}],["accurary",{"2":{"52":1}}],["accuratearithmetic",{"2":{"11":2}}],["accurate",{"0":{"11":1},"2":{"11":3,"143":1}}],["accumulators",{"2":{"38":1}}],["accumulator",{"2":{"38":1}}],["accumulate",{"2":{"35":1,"42":3}}],["accumulation",{"0":{"11":1},"2":{"38":1}}],["after",{"2":{"6":8,"32":1,"43":3,"128":1,"148":2}}],["ab",{"2":{"43":3,"49":1,"51":1,"52":5,"54":1}}],["able",{"2":{"20":1,"52":1}}],["ability",{"2":{"17":1}}],["about",{"2":{"6":1,"24":2,"28":1,"38":2,"89":1,"129":1}}],["above",{"2":{"4":1,"6":1,"32":1,"42":1,"43":1,"52":1,"55":1,"133":1}}],["abs",{"2":{"32":1,"35":4,"42":1,"45":2,"78":8,"95":2,"119":1,"151":1,"168":1}}],["absolute",{"2":{"4":1,"6":1,"34":1,"35":2}}],["abstractpolygon",{"2":{"128":1}}],["abstractpolygontrait",{"2":{"58":1}}],["abstractpoint",{"2":{"128":1}}],["abstractface",{"2":{"128":1}}],["abstractfloat",{"2":{"29":1,"32":1,"35":2,"43":1,"45":2,"48":1,"49":1,"51":1,"52":1,"54":1,"58":8}}],["abstractrange",{"2":{"119":6}}],["abstractmesh",{"2":{"128":1}}],["abstractmulticurvetrait",{"2":{"73":1,"74":1,"87":1,"88":1,"104":1,"105":1,"114":1,"115":1}}],["abstractmatrix",{"2":{"6":5,"119":13}}],["abstractcurvetrait",{"2":{"32":1,"35":1,"45":1,"69":1,"72":1,"73":1,"78":1,"83":1,"87":1,"100":1,"103":1,"104":1,"110":1,"113":1,"114":1,"118":1,"148":2,"159":3}}],["abstractarrays",{"2":{"126":1}}],["abstractarray",{"2":{"6":1,"123":1,"128":6,"159":2}}],["abstract",{"2":{"6":3,"38":3,"132":1,"133":4,"134":1,"148":3,"157":1}}],["abstractvector",{"2":{"5":1,"6":1,"38":26,"119":8}}],["abstractgeometrytrait`",{"2":{"133":1}}],["abstractgeometrytrait",{"2":{"6":3,"35":2,"45":1,"58":1,"74":1,"88":1,"105":1,"115":1,"123":1,"126":1,"133":4,"134":2,"159":5}}],["abstractgeometry",{"2":{"3":4,"6":4,"64":2,"77":2,"128":1}}],["abstracttrait",{"2":{"1":2,"3":2,"6":8,"48":1,"50":2,"52":4,"55":2,"95":4,"121":1,"123":2,"128":9,"156":3}}],["abstractbarycentriccoordinatemethod",{"2":{"0":1,"5":1,"6":7,"38":18}}],["attribute",{"2":{"164":1}}],["attributed",{"2":{"163":1}}],["attributes",{"0":{"163":1},"2":{"160":1,"163":3}}],["attempts",{"2":{"89":1}}],["attach",{"2":{"1":2,"4":1,"6":5,"125":1}}],["atomic",{"2":{"7":1}}],["at",{"2":{"3":4,"5":1,"6":6,"9":1,"18":1,"20":1,"24":1,"32":2,"34":1,"35":1,"37":1,"38":2,"43":4,"45":2,"52":8,"55":2,"89":17,"95":6,"97":1,"98":1,"101":3,"102":2,"103":2,"104":1,"105":1,"108":1,"114":1,"118":1,"126":1,"128":1,"143":1,"145":1,"150":1,"152":1,"162":3}}],["arbitrarily",{"2":{"126":1}}],["arbitrary",{"2":{"36":1,"121":1,"161":1}}],["around",{"2":{"37":1,"38":2,"48":1,"57":1,"61":1,"119":1,"148":1,"166":1}}],["argmin",{"2":{"152":1}}],["argtypes",{"2":{"39":2,"141":1,"144":1}}],["args",{"2":{"13":2}}],["argumenterror",{"2":{"55":1,"119":1,"128":5}}],["argument",{"2":{"4":5,"6":10,"32":1,"35":2,"42":1,"45":1,"49":1,"51":1,"54":1,"58":2,"128":2,"158":2,"162":2}}],["arguments",{"2":{"1":1,"3":1,"6":5,"43":1,"67":2,"81":1,"98":1,"108":1,"140":1,"144":2,"145":1,"158":1}}],["arithmetic",{"2":{"11":1}}],["archgdal",{"2":{"23":1}}],["arc",{"2":{"6":1,"144":1}}],["array",{"2":{"4":1,"6":2,"35":1,"45":1,"119":5,"128":7,"149":1,"152":1}}],["arrays",{"2":{"1":1,"6":2,"22":1,"119":1,"128":2}}],["aren",{"2":{"4":3,"6":5,"48":1,"50":1,"52":2,"55":4,"61":3,"134":2,"137":2}}],["are",{"2":{"1":1,"3":4,"4":18,"5":2,"6":50,"9":2,"20":2,"22":3,"24":1,"25":1,"31":1,"32":8,"34":1,"35":2,"36":6,"38":11,"41":1,"42":3,"43":31,"45":6,"48":3,"49":3,"50":15,"51":2,"52":16,"54":5,"55":9,"57":1,"58":1,"60":3,"61":26,"63":1,"67":7,"69":1,"70":3,"71":3,"72":1,"74":1,"80":1,"81":5,"83":1,"84":1,"85":1,"87":1,"88":1,"89":12,"95":7,"98":5,"100":1,"102":2,"107":1,"108":5,"110":1,"111":3,"112":3,"113":1,"115":1,"118":1,"119":14,"120":1,"123":1,"126":1,"128":4,"129":1,"130":1,"131":1,"133":1,"134":3,"135":1,"136":1,"137":2,"138":1,"143":1,"144":1,"145":1,"148":4,"150":1,"152":2,"154":1,"155":2,"156":1,"158":1,"161":1,"163":2,"164":2,"165":3,"166":6,"167":1,"168":1}}],["area2",{"2":{"42":4}}],["area1",{"2":{"42":4}}],["areas",{"2":{"4":2,"6":2,"35":3,"151":2}}],["area",{"0":{"33":2,"34":2},"1":{"34":2,"35":2},"2":{"0":5,"4":15,"6":25,"11":6,"29":1,"33":2,"34":9,"35":61,"40":1,"41":3,"42":49,"44":2,"45":44,"54":2,"55":1,"95":1,"121":1,"134":2,"137":2,"148":2,"151":4,"162":1}}],["ask",{"2":{"23":1}}],["aspect",{"2":{"13":1,"14":1,"31":1,"34":1,"37":2,"41":1,"44":1,"57":2,"119":2,"143":1,"148":1}}],["assign",{"2":{"160":1}}],["assigned",{"2":{"43":1,"119":7,"166":1}}],["assets",{"2":{"162":1}}],["assetpath",{"2":{"162":1}}],["assemble",{"2":{"131":1}}],["assert",{"2":{"38":23,"42":1,"43":1,"48":1,"50":1,"52":1,"145":1,"159":1}}],["assume",{"2":{"95":2,"128":3,"130":1,"137":1}}],["assumed",{"2":{"35":1,"61":1,"89":1}}],["assumes",{"2":{"6":1,"43":1,"58":1,"144":1,"152":1}}],["associativity",{"2":{"19":1}}],["associated",{"0":{"1":1},"2":{"36":2}}],["as",{"2":{"1":8,"3":18,"4":6,"5":1,"6":79,"7":1,"11":2,"13":3,"14":3,"15":3,"17":2,"18":2,"20":1,"22":1,"23":2,"24":1,"25":1,"31":2,"32":4,"34":2,"35":3,"36":4,"37":1,"38":4,"39":3,"41":2,"42":1,"43":15,"44":2,"45":5,"47":3,"48":5,"49":8,"50":2,"51":7,"52":8,"54":7,"55":5,"57":3,"58":1,"60":2,"61":2,"63":2,"64":2,"66":3,"67":3,"76":2,"77":2,"78":2,"80":2,"81":3,"89":7,"91":2,"92":2,"94":2,"95":2,"97":2,"98":3,"100":1,"107":2,"108":3,"118":8,"119":3,"121":3,"123":1,"126":2,"127":2,"128":15,"130":2,"131":2,"133":1,"134":1,"136":2,"138":1,"140":3,"142":2,"143":2,"144":3,"146":2,"147":2,"148":7,"150":2,"153":3,"156":2,"157":2,"158":2,"159":2,"160":3,"161":2,"162":2,"164":3,"165":2,"166":3,"167":2}}],["alone",{"2":{"128":1}}],["along",{"2":{"4":4,"6":5,"43":3,"45":2,"52":4,"61":4,"89":1}}],["although",{"2":{"111":1,"112":1}}],["alternate",{"2":{"43":1}}],["alternative",{"2":{"43":1}}],["already",{"2":{"61":1,"89":2,"150":1}}],["almost",{"2":{"52":1}}],["alg=nothing",{"2":{"148":1}}],["alg`",{"2":{"148":1}}],["alg",{"2":{"6":4,"148":21,"149":3,"150":8,"151":3,"152":7,"158":9}}],["algorithms",{"2":{"6":3,"130":1,"145":1,"146":1,"148":4,"150":1,"152":1}}],["algorithm",{"0":{"149":1,"150":1,"151":1},"2":{"6":10,"37":1,"43":2,"45":1,"48":3,"49":1,"51":1,"54":1,"89":1,"146":1,"148":8,"149":1,"150":3,"151":1,"158":4}}],["allocations",{"2":{"5":1,"6":1,"38":1}}],["allow=",{"2":{"89":1}}],["allows",{"2":{"11":1,"18":1,"23":1,"24":1,"27":1,"67":2,"69":3,"70":3,"71":3,"72":1,"81":2,"83":3,"84":3,"85":2,"86":1,"98":1,"101":1,"102":1,"103":1,"108":3,"110":3,"111":3,"112":3,"113":1,"121":1,"146":1,"162":1,"163":1,"165":1}}],["allowed",{"2":{"6":1,"67":3,"81":3,"89":6,"98":5,"100":1,"101":2,"108":3,"148":1}}],["allow",{"2":{"1":1,"6":1,"23":1,"52":1,"67":7,"78":3,"81":7,"89":73,"98":10,"108":10,"153":1}}],["all",{"2":{"1":3,"3":2,"4":3,"6":14,"9":1,"11":7,"22":1,"25":1,"29":2,"32":5,"35":3,"38":1,"43":13,"45":3,"49":1,"50":3,"52":3,"55":5,"57":1,"61":2,"63":1,"70":3,"71":3,"74":1,"87":1,"88":1,"89":7,"95":4,"107":1,"115":1,"118":1,"119":3,"120":1,"123":1,"126":2,"127":1,"128":8,"131":1,"133":1,"135":1,"138":1,"139":1,"148":1,"153":2,"154":1,"155":1,"161":1,"162":1,"164":1,"165":1}}],["always",{"2":{"1":7,"4":6,"6":10,"25":1,"34":1,"35":4,"45":2,"57":1,"58":1,"61":1,"128":2,"140":4,"165":1}}],["also",{"2":{"1":2,"6":10,"23":1,"32":1,"35":2,"42":2,"43":3,"45":1,"49":1,"51":1,"52":2,"54":1,"57":1,"58":2,"61":3,"95":1,"119":1,"126":1,"128":1,"131":1,"134":3,"137":2,"141":1,"142":1,"143":1,"144":1,"146":1,"153":1,"156":1,"161":2,"163":1}}],["a",{"0":{"23":1,"163":1},"2":{"1":13,"3":5,"4":79,"5":1,"6":194,"7":3,"9":1,"11":1,"15":2,"17":1,"18":6,"20":3,"22":3,"23":4,"24":2,"25":2,"27":2,"28":2,"31":3,"32":22,"34":11,"35":20,"36":13,"37":4,"38":11,"39":2,"41":5,"42":8,"43":281,"44":2,"45":17,"47":3,"48":4,"49":39,"50":30,"51":38,"52":91,"53":3,"54":36,"55":45,"57":15,"58":27,"60":2,"61":54,"63":2,"66":1,"67":3,"69":5,"70":3,"71":2,"73":2,"74":2,"76":2,"78":1,"80":1,"81":3,"83":4,"84":3,"85":1,"87":2,"88":2,"89":52,"91":2,"94":5,"95":27,"97":2,"98":4,"100":4,"101":2,"102":2,"103":1,"104":2,"105":2,"107":1,"108":3,"110":5,"111":2,"112":2,"114":2,"115":2,"117":1,"118":4,"119":79,"121":4,"123":2,"126":4,"128":34,"129":6,"130":2,"131":2,"132":5,"133":5,"134":9,"135":8,"137":6,"138":2,"139":3,"140":8,"141":3,"142":5,"143":4,"144":8,"145":10,"147":3,"148":5,"151":3,"152":1,"153":2,"154":1,"156":6,"157":1,"158":12,"159":2,"160":1,"161":21,"162":17,"163":5,"164":11,"165":5,"166":8,"167":3,"168":3}}],["annotation",{"2":{"157":1}}],["angels",{"2":{"32":1}}],["angle",{"2":{"32":35,"118":1}}],["angles",{"0":{"30":1,"31":1},"1":{"31":1,"32":1},"2":{"0":2,"4":10,"6":10,"29":1,"30":1,"31":4,"32":42}}],["answers",{"2":{"135":1}}],["answer",{"2":{"6":3,"49":1,"51":1,"52":1,"54":1}}],["another",{"2":{"3":1,"6":1,"43":2,"52":1,"57":1,"63":1,"66":1,"69":1,"71":1,"72":1,"76":1,"80":1,"83":1,"84":1,"85":1,"86":1,"89":1,"91":1,"94":1,"95":1,"97":1,"100":1,"101":1,"102":1,"103":1,"107":1,"110":1,"111":1,"112":1,"113":1,"119":1,"140":1}}],["anonymous",{"2":{"1":1,"6":1,"153":1}}],["an",{"2":{"1":3,"4":11,"5":1,"6":27,"9":1,"13":1,"14":1,"18":1,"20":1,"23":2,"31":1,"32":4,"34":1,"35":2,"37":1,"38":3,"39":2,"41":1,"43":15,"44":2,"45":2,"47":1,"48":1,"49":2,"50":5,"51":2,"52":9,"54":2,"55":2,"57":2,"58":5,"60":1,"61":1,"63":1,"66":2,"69":2,"76":1,"80":1,"89":13,"91":1,"94":1,"95":1,"97":1,"107":1,"110":2,"111":1,"112":1,"119":3,"120":1,"123":1,"126":1,"127":1,"128":8,"131":1,"138":1,"140":1,"144":1,"153":2,"158":3,"159":1,"161":2,"162":2,"163":1,"166":1}}],["anything",{"2":{"37":1,"89":1}}],["any",{"2":{"1":3,"3":1,"4":2,"6":19,"18":1,"24":1,"25":1,"27":1,"36":2,"42":1,"43":7,"45":1,"48":1,"50":1,"52":4,"55":1,"58":2,"68":2,"69":1,"72":1,"80":1,"82":2,"83":1,"84":2,"85":1,"86":2,"89":8,"95":2,"99":2,"109":2,"113":1,"119":2,"121":2,"123":1,"128":2,"131":1,"132":1,"133":3,"134":4,"137":4,"140":2,"142":1,"144":1,"145":1,"150":1,"159":1,"165":2,"166":2}}],["and",{"0":{"1":1,"20":1,"22":1,"24":1,"33":1,"50":1,"52":1,"55":1,"56":1,"161":1,"162":1,"163":1},"1":{"34":1,"35":1,"57":1,"58":1},"2":{"0":2,"1":8,"3":11,"4":18,"6":84,"7":1,"9":2,"17":4,"18":4,"20":2,"22":1,"23":2,"24":3,"25":2,"27":2,"28":1,"29":1,"32":13,"34":1,"35":7,"36":2,"37":2,"38":20,"39":1,"40":2,"41":1,"42":29,"43":71,"44":2,"45":18,"47":1,"48":4,"49":4,"50":16,"51":4,"52":38,"54":6,"55":15,"57":2,"58":13,"60":2,"61":13,"63":3,"64":2,"66":2,"67":3,"70":3,"71":4,"72":1,"76":2,"77":2,"78":1,"81":3,"84":3,"85":1,"86":1,"89":36,"91":1,"94":2,"95":3,"98":2,"102":2,"103":2,"107":3,"108":4,"110":2,"111":3,"112":3,"113":1,"118":2,"119":16,"121":8,"123":1,"126":2,"127":3,"128":22,"129":1,"130":2,"131":1,"132":1,"133":4,"134":2,"135":1,"138":2,"139":2,"140":2,"143":1,"144":5,"145":4,"146":2,"147":1,"148":8,"150":8,"151":1,"152":1,"153":1,"156":1,"157":3,"158":4,"160":3,"161":9,"162":9,"164":5,"165":2,"166":4,"167":2}}],["apart",{"2":{"137":1}}],["april",{"0":{"7":1}}],["appears",{"2":{"130":1}}],["append",{"2":{"32":1,"43":5,"49":1,"50":2,"52":2,"54":1,"55":5,"137":2}}],["approximately",{"2":{"143":1}}],["approximatly",{"2":{"43":1}}],["approach",{"2":{"19":1}}],["appropriately",{"2":{"166":1}}],["appropriate",{"2":{"6":1,"158":2}}],["applies",{"2":{"126":2}}],["applied",{"2":{"6":3,"20":1,"123":1,"128":2,"132":2,"133":2,"134":1}}],["application",{"2":{"1":1,"6":3,"128":1,"131":1,"133":3,"134":1,"137":2,"142":1,"145":1}}],["apply`",{"2":{"128":1}}],["applys",{"2":{"35":1,"45":1}}],["applyreduce",{"0":{"19":1},"2":{"0":2,"1":1,"6":1,"17":1,"19":2,"27":1,"32":1,"35":1,"42":2,"45":1,"58":2,"121":3,"123":1,"128":39,"157":1}}],["apply",{"0":{"1":1,"18":1,"22":1,"27":1,"126":1},"1":{"19":1},"2":{"0":2,"1":4,"6":7,"17":1,"18":5,"20":1,"22":1,"24":1,"27":3,"121":5,"123":1,"125":1,"126":4,"127":1,"128":56,"133":4,"134":1,"138":1,"139":3,"140":1,"144":1,"145":1,"148":2,"153":3,"154":2,"157":1}}],["apis",{"2":{"17":1}}],["api",{"0":{"0":1,"38":1},"1":{"1":1,"2":1,"3":1,"4":1,"5":1,"6":1},"2":{"0":1,"6":3,"24":1,"38":1,"144":1,"148":1,"158":1}}],["snapped",{"2":{"119":1}}],["s3",{"2":{"43":3}}],["scratch",{"2":{"164":1}}],["sciences",{"2":{"162":1}}],["scalefactor",{"2":{"144":3}}],["scattered",{"2":{"166":1}}],["scatter",{"2":{"41":1,"57":2,"60":2,"63":2,"66":1,"76":1,"80":2,"94":2,"107":2,"166":1}}],["schema",{"2":{"128":6}}],["scheme",{"2":{"42":1}}],["scenario",{"2":{"89":2}}],["scene",{"2":{"14":1}}],["skipmissing",{"2":{"119":1}}],["skipped",{"2":{"119":1}}],["skip",{"2":{"35":1,"89":14,"119":1,"152":4}}],["skygering",{"2":{"7":1}}],["square",{"2":{"58":1,"149":1,"150":1}}],["squared",{"2":{"6":2,"45":2,"58":12,"149":2,"150":7}}],["sqrt",{"2":{"32":2,"42":1,"58":3}}],["sgn",{"2":{"32":5}}],["smallest",{"2":{"32":2,"52":1}}],["sᵢ₋₁",{"2":{"38":25}}],["sᵢ₊₁",{"2":{"6":2,"38":41}}],["sᵢ",{"2":{"6":4,"38":46}}],["src",{"2":{"6":2}}],["syntax",{"2":{"163":1}}],["symdifference",{"2":{"120":1}}],["sym10100477",{"2":{"89":1}}],["symbol=",{"2":{"78":1}}],["symbol",{"2":{"6":1,"158":2}}],["systems",{"0":{"162":1}}],["system",{"2":{"1":2,"140":2,"160":2,"162":1}}],["switches",{"2":{"52":1,"55":1}}],["switch",{"2":{"43":1,"55":1,"157":1}}],["switching",{"2":{"6":1,"45":1}}],["swap",{"2":{"6":1,"55":1,"58":2,"139":1}}],["swapped",{"2":{"3":1,"6":1,"64":1,"67":1,"77":1,"78":1,"92":1,"95":1}}],["swapping",{"2":{"1":1,"6":1,"128":1}}],["s2",{"2":{"6":4,"38":6,"43":3}}],["s1",{"2":{"6":3,"38":6,"43":3}}],["saving",{"0":{"164":1}}],["saved",{"2":{"61":1}}],["save",{"2":{"32":1,"160":1,"164":3}}],["samples",{"2":{"13":1}}],["sample",{"2":{"13":1}}],["same",{"2":{"3":2,"4":12,"6":23,"18":1,"32":3,"35":1,"43":15,"45":1,"48":1,"49":3,"51":1,"52":1,"54":1,"55":1,"57":1,"60":2,"61":30,"89":2,"94":1,"95":8,"123":1,"126":1,"128":6,"129":1,"134":2,"136":1,"137":2,"143":1,"161":1,"162":1,"164":1}}],["say",{"2":{"6":1,"38":1,"144":1}}],["span",{"2":{"166":1}}],["spatial",{"0":{"165":1},"1":{"166":1,"167":1,"168":1},"2":{"165":6,"166":3,"168":1}}],["spawn",{"2":{"128":5}}],["space",{"2":{"6":2,"25":1,"32":1,"34":1,"89":1,"144":1,"145":1}}],["sp",{"2":{"89":2}}],["split",{"2":{"48":1}}],["specialized",{"2":{"25":1}}],["specify",{"2":{"6":1,"123":1,"128":1,"162":2,"165":1}}],["specification",{"2":{"130":1,"133":1,"135":1,"136":1}}],["specifically",{"2":{"6":2,"38":3,"146":1,"165":1}}],["specific",{"2":{"43":1,"67":1,"81":1,"98":1,"108":1,"128":5}}],["specified",{"2":{"3":1,"6":2,"43":1,"50":2,"52":2,"55":2,"95":1,"126":1,"148":1}}],["slow",{"2":{"167":1}}],["slower",{"2":{"6":1,"158":2}}],["slope2",{"2":{"118":2}}],["slope1",{"2":{"118":2}}],["slidergrid",{"2":{"14":1}}],["sliders",{"2":{"14":3}}],["slighly",{"2":{"4":1,"6":1,"35":1}}],["slightly",{"2":{"4":1,"6":1,"35":1}}],["suite",{"2":{"144":5,"148":13}}],["suggestion",{"2":{"141":1}}],["sun",{"2":{"89":1}}],["surrounds",{"2":{"89":1}}],["sure",{"2":{"9":1,"32":1,"43":2,"58":1,"95":1,"152":1}}],["suppose",{"2":{"167":1,"168":1}}],["support",{"2":{"39":1,"142":1,"168":1}}],["supports",{"2":{"37":1,"38":1,"164":1,"168":2}}],["supported",{"2":{"23":1,"164":1}}],["supertype",{"2":{"6":1,"38":1}}],["sukumar",{"2":{"6":1,"38":1}}],["such",{"2":{"4":1,"6":1,"34":1,"47":1,"126":1,"138":1}}],["sum=1",{"2":{"38":1}}],["sum",{"2":{"4":2,"6":3,"11":6,"34":1,"35":2,"36":2,"38":8,"45":1,"58":2,"118":5,"152":1,"159":4}}],["sublevel",{"2":{"167":1}}],["subsequent",{"2":{"161":1}}],["substituted",{"2":{"1":1,"6":1,"128":1}}],["subgeom1",{"2":{"128":2}}],["subgeom",{"2":{"128":3}}],["subject",{"2":{"43":1}}],["subtype",{"2":{"128":1}}],["subtypes",{"2":{"6":2,"38":2}}],["subtracted",{"2":{"118":1}}],["subtitle",{"2":{"13":1,"37":2,"144":1,"148":2}}],["sub",{"2":{"4":6,"6":7,"32":1,"35":3,"45":1,"50":6,"52":3,"55":4,"58":2,"73":2,"74":2,"87":2,"88":2,"104":2,"105":2,"114":2,"115":2,"128":3,"135":4,"136":2,"137":4}}],["series",{"2":{"161":1}}],["serve",{"2":{"6":1,"38":1}}],["searchsortedfirst",{"2":{"150":1}}],["seg2",{"2":{"118":2}}],["seg1",{"2":{"118":3}}],["seg",{"2":{"89":23,"95":9}}],["segmentation",{"2":{"143":1}}],["segments",{"2":{"23":1,"29":1,"31":2,"32":1,"41":1,"42":2,"43":3,"45":1,"52":6,"89":18,"144":1,"145":3}}],["segmentization",{"2":{"142":1}}],["segmentizing",{"2":{"6":3,"143":1,"144":2,"145":1}}],["segmentized",{"2":{"143":1}}],["segmentizes",{"2":{"142":1}}],["segmentizemethod",{"2":{"6":1,"144":3,"145":2}}],["segmentize",{"0":{"142":1},"1":{"143":1,"144":1,"145":1},"2":{"0":1,"6":4,"29":1,"39":1,"121":1,"142":1,"143":5,"144":11,"145":13}}],["segment",{"2":{"4":4,"6":7,"32":1,"42":5,"43":6,"45":3,"47":1,"52":17,"58":2,"78":3,"89":43,"95":3,"118":2,"142":1,"144":2,"145":1}}],["separate",{"2":{"119":1,"128":1,"157":1,"164":1,"166":1}}],["separately",{"2":{"38":1,"119":1}}],["seperates",{"2":{"89":1}}],["seperate",{"2":{"43":1,"52":1}}],["sense",{"2":{"35":1,"58":1}}],["several",{"2":{"20":2,"35":1,"129":1,"137":1}}],["section",{"2":{"89":3,"94":1}}],["sections",{"2":{"10":1}}],["seconds=1",{"2":{"144":3,"148":8}}],["secondisleft",{"2":{"119":4}}],["secondisstraight",{"2":{"119":7}}],["secondary",{"2":{"3":3,"6":3,"64":1,"67":1,"108":1}}],["second",{"2":{"3":8,"6":9,"43":1,"52":4,"61":1,"63":2,"64":1,"66":1,"67":1,"70":1,"71":1,"72":1,"77":2,"81":2,"89":2,"98":1,"107":1,"108":1,"111":1,"112":1,"113":2,"150":1,"162":1,"165":1}}],["self",{"2":{"9":2}}],["selected",{"2":{"119":1}}],["selectednode",{"2":{"119":3}}],["selection",{"2":{"14":1}}],["select",{"2":{"6":1,"156":1}}],["seem",{"2":{"25":1}}],["see",{"2":{"6":3,"7":1,"27":1,"41":1,"58":1,"60":1,"63":1,"66":1,"80":1,"89":5,"91":1,"94":1,"97":1,"107":1,"119":2,"130":1,"131":1,"133":1,"134":3,"136":1,"137":2,"143":2,"150":1,"166":2}}],["setup=",{"2":{"67":1,"81":1,"98":1,"108":1}}],["sets",{"2":{"43":1}}],["setting",{"2":{"23":1}}],["set",{"0":{"23":1},"2":{"3":2,"4":7,"6":19,"23":1,"32":1,"36":2,"38":8,"43":3,"49":2,"51":2,"52":7,"54":2,"60":2,"61":10,"67":1,"78":1,"81":1,"89":2,"95":1,"98":1,"108":1,"118":1,"119":1,"134":2,"137":2,"150":2,"161":1,"164":1,"166":3}}],["sve",{"2":{"1":1,"6":1,"153":1}}],["svector",{"2":{"1":14,"6":14,"43":5,"49":1,"52":2,"55":6,"89":1,"119":1,"153":13,"161":6,"162":4}}],["solution",{"2":{"89":1}}],["solid",{"2":{"6":2}}],["south",{"2":{"45":7}}],["source",{"2":{"1":10,"3":19,"4":22,"5":3,"6":89,"78":2,"123":3,"133":1,"134":4,"140":3,"162":14}}],["sort",{"2":{"43":4,"48":2,"52":2,"54":2,"89":1,"95":2,"119":1,"150":1}}],["sorted",{"2":{"20":1,"43":1,"150":7,"165":1}}],["someone",{"2":{"158":1}}],["something",{"0":{"53":1},"2":{"10":1}}],["some",{"2":{"3":1,"6":3,"9":1,"17":1,"38":4,"61":1,"89":3,"95":1,"119":1,"120":1,"121":2,"126":2,"128":2,"132":1,"133":2,"134":1,"152":1,"155":2,"160":2,"165":1,"168":1}}],["so",{"2":{"1":1,"4":4,"6":10,"9":1,"17":1,"19":1,"25":1,"29":1,"37":1,"38":1,"43":1,"44":1,"52":1,"54":2,"55":2,"57":1,"58":1,"60":1,"61":4,"63":1,"80":1,"89":2,"91":1,"107":1,"119":3,"123":1,"128":6,"142":1,"143":1,"144":3,"145":1,"152":1,"153":1,"158":2,"162":2}}],["step",{"2":{"43":7,"49":1,"50":3,"51":1,"52":3,"54":1,"55":3,"119":4,"159":1}}],["storing",{"2":{"164":1}}],["stored",{"2":{"43":2,"166":1}}],["stores",{"2":{"43":1}}],["store",{"2":{"38":1,"164":1}}],["stopping",{"2":{"150":2}}],["stops",{"2":{"126":1}}],["stop",{"2":{"18":2,"78":3,"89":4,"95":3}}],["style",{"2":{"6":2}}],["style=",{"2":{"6":2}}],["standardized",{"2":{"89":1}}],["standards",{"2":{"89":1}}],["stay",{"2":{"55":1}}],["stackoverflow",{"2":{"52":1}}],["stack",{"2":{"48":1}}],["states",{"2":{"148":1}}],["state",{"2":{"54":1,"167":9}}],["status",{"2":{"43":31,"50":4,"52":5,"55":4,"119":1}}],["static",{"2":{"157":1}}],["staticarray",{"2":{"38":1}}],["staticarrays",{"2":{"29":1,"43":5,"49":1,"52":2,"55":6,"89":1,"119":1,"153":2}}],["staticarraysco",{"2":{"1":1,"6":1,"153":1}}],["staticarrayscore",{"2":{"1":10,"6":10,"38":1,"153":10,"161":6,"162":4}}],["statica",{"2":{"1":1,"6":1,"153":1}}],["statistics",{"2":{"13":2,"29":1}}],["stability",{"2":{"23":1,"28":1}}],["stable",{"2":{"13":1,"24":1,"145":1}}],["stage",{"2":{"7":1}}],["started",{"2":{"43":1}}],["starting",{"2":{"42":2,"43":1,"45":1,"52":1,"137":4}}],["startvalue",{"2":{"14":4}}],["start",{"2":{"6":1,"18":1,"32":7,"38":1,"43":76,"45":17,"50":4,"52":4,"55":5,"61":1,"78":4,"89":44,"95":3,"110":1,"119":2,"129":1,"150":16,"161":1}}],["straightline",{"2":{"119":3}}],["straight",{"2":{"119":6}}],["strait",{"2":{"119":1}}],["structs",{"2":{"20":1,"133":1}}],["structures",{"2":{"121":1}}],["structure",{"2":{"6":2,"123":1,"128":1,"139":1}}],["struct",{"2":{"6":3,"38":2,"43":2,"131":1,"137":2,"144":2,"149":1,"150":1,"151":1,"156":3,"157":2,"158":4}}],["strings",{"2":{"6":1,"42":1,"52":1}}],["string",{"2":{"1":2,"14":1,"41":1,"42":1,"140":2}}],["still",{"2":{"0":1,"35":1,"42":1,"43":3,"66":1,"150":1}}],["shp",{"2":{"164":1}}],["ships",{"2":{"162":1}}],["shifting",{"2":{"162":1}}],["shift",{"2":{"161":3}}],["shewchuck",{"2":{"7":1}}],["short",{"2":{"128":1}}],["show",{"2":{"9":1,"11":1,"13":1,"14":1,"37":1,"162":1,"164":1,"165":2}}],["shoelace",{"2":{"4":1,"6":1,"35":2,"45":1}}],["shouldn",{"2":{"52":1}}],["should",{"2":{"1":1,"4":1,"6":14,"17":1,"18":1,"20":2,"25":1,"32":3,"35":1,"42":1,"43":3,"44":1,"61":1,"89":4,"119":2,"123":1,"128":2,"130":1,"133":4,"134":2,"145":1,"148":2,"157":1}}],["sharing",{"2":{"80":1}}],["shares",{"2":{"52":1}}],["share",{"2":{"4":7,"6":8,"60":2,"61":8,"84":2,"85":1,"86":1,"95":1,"103":1}}],["shared",{"0":{"152":1},"2":{"3":1,"6":1,"43":2,"52":2,"95":3}}],["shapes",{"2":{"58":1,"164":7}}],["shape",{"2":{"41":1,"50":1,"52":1,"60":1,"136":1,"161":1}}],["shaped",{"2":{"37":1}}],["shapefiles",{"2":{"164":1}}],["shapefile",{"2":{"27":1,"164":4}}],["shallower",{"2":{"1":1,"6":1,"128":1}}],["sites",{"2":{"167":1}}],["sides",{"2":{"43":3,"130":1}}],["side",{"2":{"32":4,"43":26}}],["signals",{"2":{"127":1}}],["sign",{"2":{"13":2,"14":2,"32":7,"35":2,"118":3}}],["signed",{"0":{"33":1,"34":1,"56":1,"57":1},"1":{"34":1,"35":1,"57":1,"58":1},"2":{"0":4,"4":15,"6":18,"11":3,"33":1,"34":5,"35":23,"45":3,"56":1,"57":7,"58":19}}],["six",{"2":{"6":1,"148":1}}],["size=",{"2":{"162":1}}],["sizehint",{"2":{"43":2,"50":1,"145":1}}],["size",{"2":{"6":4,"13":2,"14":5,"37":1,"55":1,"119":2,"128":4,"148":1}}],["sin",{"2":{"161":3,"162":3}}],["singed",{"2":{"58":1}}],["singular",{"2":{"52":1}}],["singlepoly",{"2":{"148":6}}],["single",{"2":{"4":6,"6":10,"23":1,"32":2,"35":1,"45":1,"61":5,"94":2,"119":2,"134":2,"135":1,"137":2,"161":3,"164":1}}],["since",{"2":{"1":1,"6":2,"32":1,"35":1,"42":1,"45":2,"54":1,"58":1,"61":1,"89":1,"95":2,"102":1,"140":1,"157":1,"158":2,"167":1}}],["simulation",{"2":{"23":1}}],["simultaneously",{"2":{"20":1}}],["simplication",{"2":{"148":1}}],["simplifier",{"2":{"148":4}}],["simplified",{"2":{"23":1,"147":1}}],["simplifies",{"2":{"6":3,"149":1,"150":1,"151":1}}],["simplification",{"0":{"146":1},"1":{"147":1,"148":1},"2":{"6":2,"146":2,"148":2}}],["simplifying",{"2":{"146":1}}],["simplify",{"0":{"149":1,"150":1,"151":1},"2":{"0":1,"6":15,"9":1,"29":1,"43":1,"121":1,"147":1,"148":41,"149":1,"150":2,"151":1}}],["simplifyalgs",{"2":{"152":1}}],["simplifyalg",{"2":{"0":1,"6":8,"148":5,"149":2,"150":2,"151":2}}],["simply",{"2":{"7":1,"34":1,"39":1,"43":1,"52":1,"55":1,"64":1,"77":1,"92":1,"119":1,"132":1,"140":1,"141":1,"144":1,"161":1,"163":1}}],["simple",{"0":{"166":1},"2":{"6":2,"38":1,"121":3,"139":1,"140":1,"147":2,"148":2,"157":1}}],["simpler",{"2":{"6":1,"119":1}}],["similarly",{"2":{"121":1}}],["similar",{"2":{"1":1,"6":3,"18":1,"25":1,"27":1,"39":1,"119":2,"128":1,"144":2,"145":1,"154":1}}],["s",{"0":{"28":1},"2":{"0":1,"6":9,"7":1,"9":1,"18":1,"19":1,"27":1,"32":1,"34":1,"35":4,"36":1,"37":2,"38":5,"41":3,"42":3,"43":3,"45":1,"47":1,"50":1,"52":2,"55":3,"58":1,"61":1,"76":2,"83":3,"84":4,"85":2,"89":9,"95":1,"103":1,"119":5,"121":2,"123":3,"124":1,"128":1,"131":1,"134":4,"135":1,"137":3,"143":4,"144":1,"146":1,"148":2,"152":4,"156":2,"157":1,"158":6,"161":6,"162":8,"163":2,"164":5,"168":2}}],["fn",{"2":{"164":8}}],["fc",{"2":{"128":22,"148":3,"159":14}}],["fj",{"2":{"119":2}}],["f2",{"2":{"43":2}}],["f1",{"2":{"43":2}}],["f64",{"2":{"13":2,"14":2}}],["few",{"2":{"130":1}}],["fetch",{"2":{"128":2}}],["fetched",{"2":{"119":1}}],["feb",{"0":{"8":1},"1":{"9":1,"10":1}}],["featurecollection",{"2":{"6":2,"11":1,"18":1,"119":4,"128":7,"162":2}}],["featurecollectiontrait",{"2":{"1":1,"6":2,"123":1,"126":1,"128":14,"159":5}}],["features",{"0":{"68":1,"82":1,"99":1,"109":1},"2":{"1":1,"6":2,"11":1,"22":1,"119":3,"127":1,"128":19,"162":1}}],["featuretrait",{"2":{"1":2,"6":3,"68":4,"78":2,"82":4,"99":4,"109":4,"123":1,"126":3,"128":15,"159":5}}],["feature",{"2":{"1":6,"4":1,"6":10,"18":2,"22":1,"35":1,"45":1,"119":2,"121":1,"127":1,"128":49,"148":2,"159":2,"164":1}}],["fra",{"2":{"167":2}}],["frame",{"2":{"163":1}}],["framework",{"2":{"121":4}}],["fracs",{"2":{"43":20,"48":1}}],["frac",{"2":{"38":1,"43":2,"52":17,"148":2}}],["fractional",{"2":{"43":1,"52":3}}],["fractions",{"2":{"43":1,"52":4}}],["fraction",{"2":{"6":4,"52":2,"58":1,"148":1}}],["front",{"2":{"32":1}}],["from",{"2":{"1":3,"3":4,"4":16,"6":29,"7":1,"11":1,"20":1,"22":1,"29":1,"35":2,"37":1,"38":4,"39":1,"42":1,"43":6,"45":11,"48":1,"49":1,"50":3,"51":1,"52":11,"54":1,"55":6,"58":25,"81":2,"83":5,"84":4,"85":2,"86":1,"87":2,"89":6,"95":2,"118":2,"119":7,"123":3,"128":3,"137":1,"140":4,"142":1,"148":1,"149":1,"150":3,"151":1,"159":1,"160":1,"162":5,"164":1,"165":1,"166":1,"168":1}}],["footprint",{"2":{"162":1}}],["foldable",{"2":{"128":3}}],["follows",{"2":{"43":2,"67":1,"81":1,"98":1,"108":1,"119":1}}],["following",{"2":{"6":1,"38":1,"47":1,"130":1,"136":1,"148":1,"165":1}}],["focusing",{"2":{"25":1}}],["foundational",{"2":{"17":1}}],["found",{"2":{"6":8,"45":1,"48":1,"49":2,"51":2,"52":1,"54":2,"61":1,"119":5,"126":3,"128":7,"145":1}}],["forward",{"2":{"52":1}}],["forwards",{"2":{"43":1,"50":1,"55":1}}],["formats",{"2":{"160":1,"162":1,"164":3}}],["format",{"2":{"48":1,"164":3}}],["form",{"2":{"18":1,"43":3,"52":8,"55":3,"128":1}}],["formed",{"2":{"4":2,"6":3,"31":1,"32":4,"38":1,"43":8,"54":1,"55":1,"150":1}}],["formula",{"2":{"4":1,"6":1,"35":2,"45":1}}],["force",{"2":{"1":1,"128":1,"140":1,"148":1}}],["for",{"0":{"50":1,"52":1,"55":1},"2":{"0":2,"1":3,"3":1,"4":4,"5":3,"6":44,"7":4,"9":2,"13":5,"14":1,"18":1,"20":1,"22":1,"23":5,"25":3,"27":1,"29":1,"32":5,"35":8,"36":1,"37":1,"38":19,"39":3,"42":7,"43":35,"45":11,"48":5,"49":2,"50":3,"51":1,"52":7,"54":1,"55":9,"57":2,"58":7,"61":13,"67":3,"73":1,"74":1,"76":1,"78":6,"81":2,"87":1,"88":1,"89":22,"94":1,"95":11,"98":2,"104":1,"105":1,"108":3,"114":1,"115":1,"117":1,"118":5,"119":13,"120":1,"121":3,"123":6,"124":2,"128":6,"129":3,"130":2,"132":1,"133":5,"135":3,"136":1,"137":5,"138":1,"140":3,"142":4,"143":7,"144":6,"145":8,"146":4,"148":12,"149":2,"150":2,"151":1,"152":6,"156":1,"157":2,"158":5,"159":7,"160":1,"162":5,"164":3,"165":1,"167":2,"168":1}}],["fi",{"2":{"119":2}}],["fill",{"2":{"43":1,"119":1,"145":3}}],["filled",{"2":{"43":5,"45":3,"57":1,"58":2,"89":16}}],["files",{"2":{"155":1,"164":2}}],["file",{"2":{"43":1,"67":3,"81":3,"98":3,"108":3,"119":1,"120":1,"121":1,"132":1,"140":1,"145":1,"146":1,"155":2,"160":1,"164":2}}],["filters",{"2":{"43":1}}],["filtering",{"2":{"6":1,"148":1}}],["filter",{"2":{"4":1,"6":2,"43":2,"128":3,"137":2,"138":1,"148":1}}],["fine",{"2":{"143":1}}],["final",{"2":{"55":1,"133":4,"144":1}}],["finally",{"2":{"37":2,"52":1,"119":1,"128":3,"164":1}}],["findmin",{"2":{"152":1}}],["findmax",{"2":{"148":1,"150":1}}],["findall",{"2":{"133":1}}],["finding",{"2":{"52":1}}],["findfirst",{"2":{"43":6,"48":2,"148":1}}],["findnext",{"2":{"43":3}}],["findlast",{"2":{"43":2}}],["findprev",{"2":{"43":2}}],["finds",{"2":{"43":1,"45":1}}],["find",{"2":{"32":6,"35":1,"43":12,"45":3,"48":2,"49":4,"51":2,"52":8,"54":1,"58":3,"61":1,"89":7,"119":2,"150":5,"167":1}}],["finish",{"2":{"9":1}}],["fit",{"2":{"17":1}}],["field",{"2":{"13":2,"43":2}}],["figure",{"2":{"13":1,"14":1,"34":1,"37":2,"162":3}}],["fig",{"2":{"13":6,"14":6,"161":7,"162":4}}],["fix1",{"2":{"128":2,"145":1}}],["fixme",{"2":{"118":1}}],["fix2",{"2":{"43":2}}],["fixed",{"2":{"6":3,"49":1,"51":1,"54":1}}],["fix",{"0":{"20":1},"2":{"6":9,"9":3,"15":3,"17":1,"20":1,"49":1,"50":11,"51":1,"52":11,"54":1,"55":10,"130":1,"132":1,"133":1,"136":1}}],["firstisright",{"2":{"119":2}}],["firstisleft",{"2":{"119":4}}],["firstisstraight",{"2":{"119":4}}],["firstnode",{"2":{"119":9}}],["first",{"2":{"3":9,"6":10,"32":14,"35":7,"37":1,"38":9,"39":1,"42":1,"43":17,"45":2,"48":1,"49":2,"51":1,"52":5,"54":3,"58":8,"61":4,"63":2,"64":2,"66":1,"67":2,"70":1,"71":1,"72":1,"77":2,"81":3,"89":22,"95":1,"98":2,"100":1,"107":1,"108":2,"111":1,"112":1,"113":2,"118":1,"119":16,"128":6,"130":1,"145":3,"149":1,"150":2,"159":2,"160":1,"161":1,"162":2,"165":1,"166":1}}],["fancy",{"2":{"161":1}}],["fancis",{"2":{"6":1,"38":1}}],["fair",{"2":{"143":1}}],["fail",{"2":{"1":1,"6":2,"128":6,"144":1}}],["fallback",{"2":{"128":1}}],["falses",{"2":{"43":2,"48":1,"49":1,"51":1}}],["false",{"0":{"24":1},"2":{"1":29,"3":7,"4":3,"6":55,"32":2,"35":1,"37":5,"43":26,"45":5,"48":1,"49":1,"50":3,"52":1,"54":4,"58":2,"60":2,"61":27,"63":2,"67":8,"69":2,"70":4,"71":1,"72":1,"73":1,"74":1,"76":2,"78":11,"81":9,"83":1,"84":4,"87":1,"88":1,"89":39,"95":22,"98":8,"100":3,"101":4,"102":1,"104":1,"105":1,"107":1,"108":7,"110":2,"111":4,"112":1,"113":1,"114":1,"115":1,"118":10,"119":5,"128":18,"130":16,"136":44,"137":4,"145":2,"148":1,"152":2,"153":20,"157":2,"159":2,"161":242,"162":30,"165":1}}],["fashion",{"2":{"34":1}}],["faster",{"2":{"38":1,"128":1}}],["fast",{"2":{"12":1}}],["f",{"2":{"1":12,"6":25,"15":1,"18":3,"19":1,"22":2,"31":1,"34":2,"37":4,"39":1,"41":2,"43":19,"44":2,"47":2,"49":2,"50":2,"51":2,"52":2,"54":2,"55":2,"57":5,"60":2,"63":2,"66":2,"76":2,"80":2,"89":7,"91":2,"94":2,"97":2,"107":2,"119":30,"123":2,"126":2,"128":168,"141":1,"143":2,"144":1,"147":2,"148":1,"152":6,"153":6,"158":5,"159":16,"161":6,"162":2,"166":3}}],["fun",{"2":{"161":1}}],["fundamental",{"2":{"155":1}}],["func",{"2":{"13":5}}],["funcs",{"2":{"13":2,"14":3}}],["functionality",{"2":{"52":1,"121":1,"139":1,"140":1,"145":1,"158":1}}],["functionalities",{"2":{"43":1}}],["functionally",{"2":{"1":1,"6":1,"18":1,"27":1,"128":1}}],["function",{"2":{"1":8,"3":9,"4":9,"5":3,"6":12,"7":2,"9":1,"13":3,"14":2,"18":2,"27":1,"29":1,"32":5,"35":3,"38":13,"42":6,"43":18,"45":7,"47":2,"48":4,"49":3,"50":3,"51":2,"52":7,"53":1,"54":2,"55":4,"58":6,"60":1,"61":8,"63":1,"66":1,"67":1,"73":1,"74":1,"76":1,"78":5,"80":1,"81":1,"87":1,"88":1,"89":9,"91":1,"94":1,"95":7,"97":1,"98":1,"104":1,"105":1,"107":1,"108":1,"114":1,"115":1,"118":4,"119":16,"120":3,"123":3,"126":2,"128":29,"131":2,"133":7,"134":2,"137":2,"139":2,"140":1,"142":2,"144":2,"145":7,"148":3,"149":2,"150":3,"151":2,"152":7,"153":3,"154":1,"158":6,"159":12,"161":1,"165":1,"168":4}}],["functions",{"0":{"1":1,"50":1,"52":1,"55":1,"121":1,"123":1,"159":1},"1":{"122":1,"123":1,"124":1,"125":1,"126":1,"127":1,"128":1},"2":{"6":1,"9":3,"17":1,"27":1,"35":1,"38":1,"42":1,"43":2,"45":1,"47":1,"89":1,"120":1,"121":2,"126":1,"133":2,"134":1}}],["fulfilled",{"2":{"150":1}}],["fully",{"2":{"6":1,"43":4,"48":1,"95":4}}],["full",{"0":{"0":1},"1":{"1":1,"2":1,"3":1,"4":1,"5":1,"6":1},"2":{"0":1,"45":5,"133":1,"167":4}}],["furthest",{"2":{"119":1}}],["further",{"2":{"41":1,"128":1}}],["furthermore",{"2":{"3":2,"6":5,"43":1,"49":1,"51":1,"54":1,"67":1,"108":1}}],["future",{"2":{"23":1,"58":1,"142":2}}],["flexijoins",{"2":{"165":1,"166":3,"167":1,"168":5}}],["flags",{"2":{"43":5}}],["flag",{"2":{"43":12,"48":1}}],["flat",{"2":{"6":1,"152":2,"159":1}}],["flattened",{"2":{"18":1}}],["flattening",{"2":{"6":4,"144":2}}],["flatten",{"2":{"0":2,"6":4,"11":3,"13":1,"18":1,"38":1,"43":2,"45":3,"51":1,"55":1,"78":1,"123":4,"128":27,"137":1}}],["floating",{"2":{"6":1,"43":1,"52":5,"119":2}}],["float",{"2":{"6":3,"49":1,"51":1,"54":1}}],["float64x2",{"2":{"13":6,"14":6,"15":2}}],["float64",{"2":{"1":6,"4":10,"6":30,"13":1,"31":1,"32":3,"35":6,"42":1,"45":4,"48":2,"49":2,"51":1,"52":3,"54":1,"58":12,"89":4,"95":2,"118":4,"130":6,"136":26,"143":2,"144":2,"145":1,"149":4,"150":9,"151":2,"152":6,"153":6,"154":1,"159":8,"161":190,"162":17}}],["flipping",{"0":{"139":1},"2":{"139":1}}],["flipped",{"2":{"1":2,"6":2,"128":2}}],["flipaxis",{"2":{"37":1}}],["flip",{"2":{"0":1,"6":1,"29":1,"121":2,"128":1,"139":2}}],["wgs84",{"2":{"162":1}}],["wglmakie",{"2":{"14":1}}],["wₜₒₜ",{"2":{"38":8}}],["wᵢ",{"2":{"38":18}}],["wt",{"2":{"38":3}}],["w",{"2":{"13":13,"14":7,"58":4,"119":1}}],["wrong",{"2":{"135":1,"152":1}}],["writing",{"2":{"164":1}}],["written",{"2":{"61":1}}],["write",{"2":{"7":1,"28":1,"119":1,"164":7}}],["wrap",{"2":{"4":1,"6":1,"138":1,"144":1}}],["wrapped",{"2":{"22":1,"119":2,"126":1,"128":1}}],["wrapper",{"0":{"28":1},"2":{"28":1,"32":1,"35":1,"42":1,"45":1,"58":1,"61":1,"67":1,"81":1,"95":1,"98":1,"108":1}}],["wrappers`",{"2":{"128":1}}],["wrappers",{"2":{"1":10,"6":12,"22":1,"118":2,"119":1,"123":1,"130":8,"131":1,"136":22,"143":1,"144":1,"148":1,"153":10,"159":1,"161":121,"162":14}}],["wrappergeometry`",{"2":{"140":1}}],["wrappergeometry",{"2":{"1":1}}],["wrapping",{"2":{"1":1,"6":1,"61":1,"140":1,"154":1}}],["web",{"2":{"164":1}}],["west",{"2":{"45":8}}],["were",{"2":{"43":1,"119":1,"166":1}}],["welcome",{"2":{"25":1}}],["well",{"2":{"17":1,"43":1,"45":1,"142":1,"146":1,"157":1}}],["we",{"0":{"53":2},"2":{"7":1,"11":1,"13":1,"17":3,"19":1,"23":3,"24":1,"25":2,"32":1,"34":2,"35":2,"37":4,"38":8,"39":2,"42":1,"43":7,"45":4,"50":8,"51":2,"52":3,"55":1,"58":1,"60":1,"61":5,"63":1,"64":1,"66":1,"67":1,"77":1,"80":1,"81":1,"89":2,"91":3,"92":1,"94":1,"95":2,"97":1,"98":1,"107":1,"108":1,"119":21,"120":1,"126":1,"128":20,"129":1,"141":1,"142":2,"143":2,"144":3,"145":1,"148":5,"152":2,"155":1,"157":4,"158":1,"160":2,"161":4,"162":10,"163":1,"164":3,"165":3,"166":7}}],["weighting",{"2":{"41":2,"42":1}}],["weights",{"2":{"36":4}}],["weight",{"2":{"6":5,"38":14,"42":1}}],["weighted",{"2":{"0":1,"6":2,"36":3,"38":4,"42":4}}],["walk",{"2":{"48":1}}],["wall2",{"2":{"45":7}}],["wall1",{"2":{"45":12}}],["walls",{"2":{"45":3}}],["wall",{"2":{"45":69}}],["wachspress",{"2":{"38":1}}],["wasincreasing",{"2":{"119":10}}],["wasn",{"2":{"43":1}}],["was",{"2":{"29":1,"32":1,"35":1,"37":1,"38":4,"39":1,"42":1,"43":1,"45":1,"48":1,"49":1,"50":3,"51":1,"52":2,"53":1,"54":1,"55":3,"58":1,"61":1,"64":1,"74":1,"77":1,"78":1,"88":1,"89":1,"92":1,"95":1,"105":1,"115":1,"118":1,"119":1,"120":1,"126":1,"128":1,"131":1,"134":1,"137":1,"138":1,"139":1,"141":1,"143":1,"145":1,"152":1,"153":1,"154":1,"158":2,"159":1}}],["wanted",{"2":{"168":1}}],["wants",{"2":{"128":1}}],["want",{"0":{"23":1,"53":1},"2":{"13":1,"18":1,"23":1,"38":1,"43":1,"118":1,"162":2,"163":1,"167":1,"168":1}}],["ways",{"2":{"135":1}}],["way",{"2":{"6":1,"17":1,"18":1,"24":1,"27":1,"36":1,"121":1,"132":1,"145":1,"156":1,"158":2,"163":1}}],["warn",{"2":{"119":2}}],["warned",{"2":{"6":1,"158":1}}],["warning",{"2":{"0":1,"5":1,"6":2,"24":1,"38":1,"128":1,"144":1,"155":1,"167":1}}],["won",{"2":{"23":1,"43":1,"128":1}}],["wouldn",{"2":{"52":1}}],["would",{"0":{"53":1},"2":{"6":3,"23":1,"49":1,"51":1,"52":1,"54":1,"119":1,"157":2,"162":1,"167":1,"168":1}}],["world",{"0":{"167":1},"2":{"165":1}}],["worrying",{"2":{"24":1}}],["words",{"2":{"3":1,"6":1,"63":1,"91":1,"97":1,"98":1}}],["works",{"2":{"140":1,"142":1}}],["workflow",{"2":{"78":1,"95":1}}],["workflows",{"2":{"23":1,"25":1}}],["working",{"2":{"3":1,"6":1,"78":1,"162":1}}],["work",{"2":{"1":3,"6":3,"9":1,"32":1,"35":2,"42":1,"45":2,"48":2,"58":1,"61":1,"89":1,"95":1,"118":1,"128":2,"140":1,"153":1,"167":1}}],["whole",{"2":{"89":1}}],["whose",{"2":{"3":1,"6":1,"78":1}}],["white",{"2":{"37":1}}],["while",{"2":{"32":1,"41":1,"42":1,"43":5,"52":2,"57":1,"61":1,"78":1,"89":1,"119":3,"137":1,"150":1,"152":2,"166":1}}],["whichever",{"2":{"6":1,"148":1}}],["which",{"2":{"1":1,"4":2,"5":1,"6":7,"7":1,"11":1,"13":1,"14":1,"17":1,"18":4,"20":1,"23":2,"34":1,"35":1,"36":1,"37":2,"38":5,"39":1,"43":11,"45":2,"52":2,"61":2,"89":3,"119":3,"120":1,"121":1,"128":1,"129":2,"130":1,"133":1,"135":1,"136":1,"141":1,"142":1,"143":1,"144":3,"145":2,"148":1,"150":2,"153":1,"156":1,"158":4,"164":3,"165":3,"166":6,"168":1}}],["what",{"0":{"22":1,"28":1,"31":1,"34":2,"41":1,"44":1,"47":1,"57":2,"60":1,"63":1,"66":1,"76":1,"80":1,"91":1,"94":1,"97":1,"107":1,"126":1},"2":{"13":1,"14":1,"24":1,"41":1,"118":1,"119":1,"143":1,"157":1,"162":1,"167":1}}],["whatever",{"2":{"1":1,"6":1,"22":1,"128":1}}],["whyatt",{"2":{"146":1}}],["why",{"0":{"22":1,"23":1},"2":{"9":1,"17":1,"28":1,"35":1}}],["wheel",{"2":{"17":1}}],["whether",{"2":{"1":4,"4":1,"6":10,"117":1,"118":1,"125":2,"129":1}}],["when",{"2":{"1":1,"4":2,"5":1,"6":5,"18":1,"20":1,"23":2,"24":1,"35":1,"38":3,"42":1,"43":2,"50":5,"52":6,"55":7,"89":1,"119":1,"126":3,"128":1,"130":1,"133":1,"138":2,"148":1,"162":3,"164":1,"168":1}}],["wherever",{"2":{"6":1,"154":1}}],["where",{"2":{"1":2,"4":5,"6":11,"20":1,"29":2,"32":8,"35":12,"36":2,"38":24,"42":8,"43":14,"45":8,"48":5,"49":2,"50":5,"51":3,"52":18,"54":2,"55":9,"58":25,"61":1,"89":9,"119":3,"128":52,"135":1,"140":1,"143":1,"154":1,"155":1,"156":5,"159":3,"161":4}}],["widely",{"2":{"164":1}}],["widths",{"2":{"14":1}}],["width",{"2":{"6":2}}],["wiki",{"2":{"89":1,"150":1}}],["wikipedia",{"2":{"89":1,"150":2}}],["wind",{"2":{"4":1,"6":2,"35":1,"61":1}}],["winding",{"2":{"4":2,"6":2,"35":3,"43":7,"61":1,"119":1}}],["without",{"2":{"1":2,"6":1,"17":1,"24":1,"43":1,"80":1,"95":1,"128":3,"140":1,"153":1}}],["with",{"0":{"50":1,"52":1,"55":1,"149":1,"150":1,"151":1,"163":1},"2":{"1":5,"3":5,"4":7,"6":27,"11":1,"20":1,"22":2,"23":1,"31":1,"32":2,"35":7,"36":4,"37":1,"38":2,"42":1,"43":14,"45":6,"50":8,"51":5,"52":15,"54":1,"55":12,"57":1,"58":2,"67":1,"80":1,"84":1,"89":28,"91":1,"94":2,"95":5,"97":1,"98":1,"101":3,"102":2,"103":2,"113":1,"119":7,"121":1,"123":2,"126":1,"128":17,"130":1,"135":1,"138":1,"140":1,"142":1,"145":2,"148":2,"150":2,"151":1,"153":1,"157":1,"158":1,"160":1,"161":4,"162":8,"163":2,"164":2,"165":1,"166":1,"167":1}}],["within",{"0":{"106":1,"107":1,"110":1,"111":1,"113":1,"114":1,"115":1},"1":{"107":1,"108":1},"2":{"0":2,"3":9,"4":3,"5":1,"6":13,"7":1,"9":1,"29":1,"32":2,"35":1,"36":3,"38":1,"42":1,"43":9,"44":2,"45":5,"50":1,"52":2,"54":1,"55":6,"57":1,"58":5,"63":2,"64":3,"66":2,"83":1,"89":9,"94":1,"95":9,"106":1,"107":6,"108":11,"109":6,"110":14,"111":15,"112":15,"113":7,"114":4,"115":4,"121":1,"165":1,"166":4,"167":2}}],["will",{"2":{"1":8,"4":7,"5":1,"6":43,"11":1,"18":3,"23":2,"24":1,"32":4,"35":3,"38":2,"42":1,"43":5,"45":1,"48":1,"49":4,"50":4,"51":4,"52":4,"54":4,"55":4,"57":2,"58":4,"61":1,"78":1,"118":1,"119":2,"123":2,"126":1,"127":2,"128":8,"130":1,"134":2,"135":1,"137":2,"140":3,"142":2,"144":3,"148":2,"150":1,"152":1,"153":2,"158":1,"162":1,"164":1,"165":2,"167":1,"168":1}}],["wip",{"2":{"0":1}}]],"serializationVersion":2}';export{e as default}; diff --git a/dev/assets/chunks/VPLocalSearchBox.CgLvdMHL.js b/dev/assets/chunks/VPLocalSearchBox.C5YKFqyK.js similarity index 99% rename from dev/assets/chunks/VPLocalSearchBox.CgLvdMHL.js rename to dev/assets/chunks/VPLocalSearchBox.C5YKFqyK.js index 02644fb68..731c127ee 100644 --- a/dev/assets/chunks/VPLocalSearchBox.CgLvdMHL.js +++ b/dev/assets/chunks/VPLocalSearchBox.C5YKFqyK.js @@ -1,4 +1,4 @@ -var Ct=Object.defineProperty;var It=(o,e,t)=>e in o?Ct(o,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):o[e]=t;var Oe=(o,e,t)=>It(o,typeof e!="symbol"?e+"":e,t);import{X as Dt,s as oe,v as $e,ak as kt,al as Ot,d as Rt,G as xe,am as tt,h as Fe,an as _t,ao as Mt,x as Lt,ap as zt,y as Re,R as de,Q as Ee,aq as Pt,ar as Bt,Y as Vt,U as $t,as as Wt,o as ee,b as Kt,j as k,a1 as Jt,k as j,at as Ut,au as jt,av as Gt,c as re,n as rt,e as Se,E as at,F as nt,a as ve,t as pe,aw as Qt,p as qt,l as Ht,ax as it,ay as Yt,aa as Zt,ag as Xt,az as er,_ as tr}from"./framework.p73Oc50P.js";import{u as rr,c as ar}from"./theme.CDgO_tJT.js";const nr={root:()=>Dt(()=>import("./@localSearchIndexroot.BGg5hsxf.js"),[])};/*! +var Ct=Object.defineProperty;var It=(o,e,t)=>e in o?Ct(o,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):o[e]=t;var Oe=(o,e,t)=>It(o,typeof e!="symbol"?e+"":e,t);import{X as Dt,s as oe,v as $e,ak as kt,al as Ot,d as Rt,G as xe,am as tt,h as Fe,an as _t,ao as Mt,x as Lt,ap as zt,y as Re,R as de,Q as Ee,aq as Pt,ar as Bt,Y as Vt,U as $t,as as Wt,o as ee,b as Kt,j as k,a1 as Jt,k as j,at as Ut,au as jt,av as Gt,c as re,n as rt,e as Se,E as at,F as nt,a as ve,t as pe,aw as Qt,p as qt,l as Ht,ax as it,ay as Yt,aa as Zt,ag as Xt,az as er,_ as tr}from"./framework.DJCAxKqx.js";import{u as rr,c as ar}from"./theme.EsD5yLvy.js";const nr={root:()=>Dt(()=>import("./@localSearchIndexroot.CdsqOm-y.js"),[])};/*! * tabbable 6.2.0 * @license MIT, https://github.com/focus-trap/tabbable/blob/master/LICENSE */var yt=["input:not([inert])","select:not([inert])","textarea:not([inert])","a[href]:not([inert])","button:not([inert])","[tabindex]:not(slot):not([inert])","audio[controls]:not([inert])","video[controls]:not([inert])",'[contenteditable]:not([contenteditable="false"]):not([inert])',"details>summary:first-of-type:not([inert])","details:not([inert])"],Ne=yt.join(","),mt=typeof Element>"u",ue=mt?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector,Ce=!mt&&Element.prototype.getRootNode?function(o){var e;return o==null||(e=o.getRootNode)===null||e===void 0?void 0:e.call(o)}:function(o){return o==null?void 0:o.ownerDocument},Ie=function o(e,t){var r;t===void 0&&(t=!0);var n=e==null||(r=e.getAttribute)===null||r===void 0?void 0:r.call(e,"inert"),a=n===""||n==="true",i=a||t&&e&&o(e.parentNode);return i},ir=function(e){var t,r=e==null||(t=e.getAttribute)===null||t===void 0?void 0:t.call(e,"contenteditable");return r===""||r==="true"},gt=function(e,t,r){if(Ie(e))return[];var n=Array.prototype.slice.apply(e.querySelectorAll(Ne));return t&&ue.call(e,Ne)&&n.unshift(e),n=n.filter(r),n},bt=function o(e,t,r){for(var n=[],a=Array.from(e);a.length;){var i=a.shift();if(!Ie(i,!1))if(i.tagName==="SLOT"){var s=i.assignedElements(),u=s.length?s:i.children,l=o(u,!0,r);r.flatten?n.push.apply(n,l):n.push({scopeParent:i,candidates:l})}else{var h=ue.call(i,Ne);h&&r.filter(i)&&(t||!e.includes(i))&&n.push(i);var d=i.shadowRoot||typeof r.getShadowRoot=="function"&&r.getShadowRoot(i),v=!Ie(d,!1)&&(!r.shadowRootFilter||r.shadowRootFilter(i));if(d&&v){var y=o(d===!0?i.children:d.children,!0,r);r.flatten?n.push.apply(n,y):n.push({scopeParent:i,candidates:y})}else a.unshift.apply(a,i.children)}}return n},wt=function(e){return!isNaN(parseInt(e.getAttribute("tabindex"),10))},se=function(e){if(!e)throw new Error("No node provided");return e.tabIndex<0&&(/^(AUDIO|VIDEO|DETAILS)$/.test(e.tagName)||ir(e))&&!wt(e)?0:e.tabIndex},or=function(e,t){var r=se(e);return r<0&&t&&!wt(e)?0:r},sr=function(e,t){return e.tabIndex===t.tabIndex?e.documentOrder-t.documentOrder:e.tabIndex-t.tabIndex},xt=function(e){return e.tagName==="INPUT"},ur=function(e){return xt(e)&&e.type==="hidden"},lr=function(e){var t=e.tagName==="DETAILS"&&Array.prototype.slice.apply(e.children).some(function(r){return r.tagName==="SUMMARY"});return t},cr=function(e,t){for(var r=0;rsummary:first-of-type"),i=a?e.parentElement:e;if(ue.call(i,"details:not([open]) *"))return!0;if(!r||r==="full"||r==="legacy-full"){if(typeof n=="function"){for(var s=e;e;){var u=e.parentElement,l=Ce(e);if(u&&!u.shadowRoot&&n(u)===!0)return ot(e);e.assignedSlot?e=e.assignedSlot:!u&&l!==e.ownerDocument?e=l.host:e=u}e=s}if(vr(e))return!e.getClientRects().length;if(r!=="legacy-full")return!0}else if(r==="non-zero-area")return ot(e);return!1},yr=function(e){if(/^(INPUT|BUTTON|SELECT|TEXTAREA)$/.test(e.tagName))for(var t=e.parentElement;t;){if(t.tagName==="FIELDSET"&&t.disabled){for(var r=0;r=0)},gr=function o(e){var t=[],r=[];return e.forEach(function(n,a){var i=!!n.scopeParent,s=i?n.scopeParent:n,u=or(s,i),l=i?o(n.candidates):s;u===0?i?t.push.apply(t,l):t.push(s):r.push({documentOrder:a,tabIndex:u,item:n,isScope:i,content:l})}),r.sort(sr).reduce(function(n,a){return a.isScope?n.push.apply(n,a.content):n.push(a.content),n},[]).concat(t)},br=function(e,t){t=t||{};var r;return t.getShadowRoot?r=bt([e],t.includeContainer,{filter:We.bind(null,t),flatten:!1,getShadowRoot:t.getShadowRoot,shadowRootFilter:mr}):r=gt(e,t.includeContainer,We.bind(null,t)),gr(r)},wr=function(e,t){t=t||{};var r;return t.getShadowRoot?r=bt([e],t.includeContainer,{filter:De.bind(null,t),flatten:!0,getShadowRoot:t.getShadowRoot}):r=gt(e,t.includeContainer,De.bind(null,t)),r},le=function(e,t){if(t=t||{},!e)throw new Error("No node provided");return ue.call(e,Ne)===!1?!1:We(t,e)},xr=yt.concat("iframe").join(","),_e=function(e,t){if(t=t||{},!e)throw new Error("No node provided");return ue.call(e,xr)===!1?!1:De(t,e)};/*! diff --git a/dev/assets/chunks/framework.DJCAxKqx.js b/dev/assets/chunks/framework.DJCAxKqx.js new file mode 100644 index 000000000..10497f340 --- /dev/null +++ b/dev/assets/chunks/framework.DJCAxKqx.js @@ -0,0 +1,17 @@ +/** +* @vue/shared v3.4.30 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**//*! #__NO_SIDE_EFFECTS__ */function wr(e,t){const n=new Set(e.split(","));return r=>n.has(r)}const te={},mt=[],xe=()=>{},Li=()=>!1,kt=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),Er=e=>e.startsWith("onUpdate:"),le=Object.assign,Cr=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},Ii=Object.prototype.hasOwnProperty,Y=(e,t)=>Ii.call(e,t),k=Array.isArray,yt=e=>Sn(e)==="[object Map]",Ys=e=>Sn(e)==="[object Set]",K=e=>typeof e=="function",oe=e=>typeof e=="string",et=e=>typeof e=="symbol",Z=e=>e!==null&&typeof e=="object",Js=e=>(Z(e)||K(e))&&K(e.then)&&K(e.catch),Qs=Object.prototype.toString,Sn=e=>Qs.call(e),Mi=e=>Sn(e).slice(8,-1),Zs=e=>Sn(e)==="[object Object]",xr=e=>oe(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,_t=wr(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),Tn=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},Pi=/-(\w)/g,$e=Tn(e=>e.replace(Pi,(t,n)=>n?n.toUpperCase():"")),Ni=/\B([A-Z])/g,ft=Tn(e=>e.replace(Ni,"-$1").toLowerCase()),An=Tn(e=>e.charAt(0).toUpperCase()+e.slice(1)),un=Tn(e=>e?`on${An(e)}`:""),Qe=(e,t)=>!Object.is(e,t),fn=(e,...t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:r,value:n})},cr=e=>{const t=parseFloat(e);return isNaN(t)?e:t},Fi=e=>{const t=oe(e)?Number(e):NaN;return isNaN(t)?e:t};let Jr;const to=()=>Jr||(Jr=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function Sr(e){if(k(e)){const t={};for(let n=0;n{if(n){const r=n.split(Hi);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}function Tr(e){let t="";if(oe(e))t=e;else if(k(e))for(let n=0;noe(e)?e:e==null?"":k(e)||Z(e)&&(e.toString===Qs||!K(e.toString))?JSON.stringify(e,ro,2):String(e),ro=(e,t)=>t&&t.__v_isRef?ro(e,t.value):yt(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[r,s],o)=>(n[kn(r,o)+" =>"]=s,n),{})}:Ys(t)?{[`Set(${t.size})`]:[...t.values()].map(n=>kn(n))}:et(t)?kn(t):Z(t)&&!k(t)&&!Zs(t)?String(t):t,kn=(e,t="")=>{var n;return et(e)?`Symbol(${(n=e.description)!=null?n:t})`:e};/** +* @vue/reactivity v3.4.30 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/let we;class Bi{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this.parent=we,!t&&we&&(this.index=(we.scopes||(we.scopes=[])).push(this)-1)}get active(){return this._active}run(t){if(this._active){const n=we;try{return we=this,t()}finally{we=n}}}on(){we=this}off(){we=this.parent}stop(t){if(this._active){let n,r;for(n=0,r=this.effects.length;n=5)break}}this._dirtyLevel===1&&(this._dirtyLevel=0),Ue()}return this._dirtyLevel>=5}set dirty(t){this._dirtyLevel=t?5:0}run(){if(this._dirtyLevel=0,!this.active)return this.fn();let t=Ye,n=ct;try{return Ye=!0,ct=this,this._runnings++,Qr(this),this.fn()}finally{Zr(this),this._runnings--,ct=n,Ye=t}}stop(){this.active&&(Qr(this),Zr(this),this.onStop&&this.onStop(),this.active=!1)}}function Wi(e){return e.value}function Qr(e){e._trackId++,e._depsLength=0}function Zr(e){if(e.deps.length>e._depsLength){for(let t=e._depsLength;t0&&(s??(s=e.get(r)===r._trackId))){r._dirtyLevel=2;continue}r._dirtyLevel{const n=new Map;return n.cleanup=e,n.computed=t,n},mn=new WeakMap,at=Symbol(""),fr=Symbol("");function ve(e,t,n){if(Ye&&ct){let r=mn.get(e);r||mn.set(e,r=new Map);let s=r.get(n);s||r.set(n,s=ao(()=>r.delete(n))),lo(ct,s)}}function De(e,t,n,r,s,o){const i=mn.get(e);if(!i)return;let l=[];if(t==="clear")l=[...i.values()];else if(n==="length"&&k(e)){const c=Number(r);i.forEach((a,f)=>{(f==="length"||!et(f)&&f>=c)&&l.push(a)})}else switch(n!==void 0&&l.push(i.get(n)),t){case"add":k(e)?xr(n)&&l.push(i.get("length")):(l.push(i.get(at)),yt(e)&&l.push(i.get(fr)));break;case"delete":k(e)||(l.push(i.get(at)),yt(e)&&l.push(i.get(fr)));break;case"set":yt(e)&&l.push(i.get(at));break}Rr();for(const c of l)c&&co(c,5);Or()}function qi(e,t){const n=mn.get(e);return n&&n.get(t)}const Gi=wr("__proto__,__v_isRef,__isVue"),uo=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(et)),es=zi();function zi(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const r=J(this);for(let o=0,i=this.length;o{e[t]=function(...n){tt(),Rr();const r=J(this)[t].apply(this,n);return Or(),Ue(),r}}),e}function Xi(e){et(e)||(e=String(e));const t=J(this);return ve(t,"has",e),t.hasOwnProperty(e)}class fo{constructor(t=!1,n=!1){this._isReadonly=t,this._isShallow=n}get(t,n,r){const s=this._isReadonly,o=this._isShallow;if(n==="__v_isReactive")return!s;if(n==="__v_isReadonly")return s;if(n==="__v_isShallow")return o;if(n==="__v_raw")return r===(s?o?cl:mo:o?go:po).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(r)?t:void 0;const i=k(t);if(!s){if(i&&Y(es,n))return Reflect.get(es,n,r);if(n==="hasOwnProperty")return Xi}const l=Reflect.get(t,n,r);return(et(n)?uo.has(n):Gi(n))||(s||ve(t,"get",n),o)?l:de(l)?i&&xr(n)?l:l.value:Z(l)?s?Ln(l):On(l):l}}class ho extends fo{constructor(t=!1){super(!1,t)}set(t,n,r,s){let o=t[n];if(!this._isShallow){const c=$t(o);if(!yn(r)&&!$t(r)&&(o=J(o),r=J(r)),!k(t)&&de(o)&&!de(r))return c?!1:(o.value=r,!0)}const i=k(t)&&xr(n)?Number(n)e,Rn=e=>Reflect.getPrototypeOf(e);function Yt(e,t,n=!1,r=!1){e=e.__v_raw;const s=J(e),o=J(t);n||(Qe(t,o)&&ve(s,"get",t),ve(s,"get",o));const{has:i}=Rn(s),l=r?Lr:n?Pr:Ht;if(i.call(s,t))return l(e.get(t));if(i.call(s,o))return l(e.get(o));e!==s&&e.get(t)}function Jt(e,t=!1){const n=this.__v_raw,r=J(n),s=J(e);return t||(Qe(e,s)&&ve(r,"has",e),ve(r,"has",s)),e===s?n.has(e):n.has(e)||n.has(s)}function Qt(e,t=!1){return e=e.__v_raw,!t&&ve(J(e),"iterate",at),Reflect.get(e,"size",e)}function ts(e){e=J(e);const t=J(this);return Rn(t).has.call(t,e)||(t.add(e),De(t,"add",e,e)),this}function ns(e,t){t=J(t);const n=J(this),{has:r,get:s}=Rn(n);let o=r.call(n,e);o||(e=J(e),o=r.call(n,e));const i=s.call(n,e);return n.set(e,t),o?Qe(t,i)&&De(n,"set",e,t):De(n,"add",e,t),this}function rs(e){const t=J(this),{has:n,get:r}=Rn(t);let s=n.call(t,e);s||(e=J(e),s=n.call(t,e)),r&&r.call(t,e);const o=t.delete(e);return s&&De(t,"delete",e,void 0),o}function ss(){const e=J(this),t=e.size!==0,n=e.clear();return t&&De(e,"clear",void 0,void 0),n}function Zt(e,t){return function(r,s){const o=this,i=o.__v_raw,l=J(i),c=t?Lr:e?Pr:Ht;return!e&&ve(l,"iterate",at),i.forEach((a,f)=>r.call(s,c(a),c(f),o))}}function en(e,t,n){return function(...r){const s=this.__v_raw,o=J(s),i=yt(o),l=e==="entries"||e===Symbol.iterator&&i,c=e==="keys"&&i,a=s[e](...r),f=n?Lr:t?Pr:Ht;return!t&&ve(o,"iterate",c?fr:at),{next(){const{value:h,done:m}=a.next();return m?{value:h,done:m}:{value:l?[f(h[0]),f(h[1])]:f(h),done:m}},[Symbol.iterator](){return this}}}}function ke(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function el(){const e={get(o){return Yt(this,o)},get size(){return Qt(this)},has:Jt,add:ts,set:ns,delete:rs,clear:ss,forEach:Zt(!1,!1)},t={get(o){return Yt(this,o,!1,!0)},get size(){return Qt(this)},has:Jt,add:ts,set:ns,delete:rs,clear:ss,forEach:Zt(!1,!0)},n={get(o){return Yt(this,o,!0)},get size(){return Qt(this,!0)},has(o){return Jt.call(this,o,!0)},add:ke("add"),set:ke("set"),delete:ke("delete"),clear:ke("clear"),forEach:Zt(!0,!1)},r={get(o){return Yt(this,o,!0,!0)},get size(){return Qt(this,!0)},has(o){return Jt.call(this,o,!0)},add:ke("add"),set:ke("set"),delete:ke("delete"),clear:ke("clear"),forEach:Zt(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(o=>{e[o]=en(o,!1,!1),n[o]=en(o,!0,!1),t[o]=en(o,!1,!0),r[o]=en(o,!0,!0)}),[e,n,t,r]}const[tl,nl,rl,sl]=el();function Ir(e,t){const n=t?e?sl:rl:e?nl:tl;return(r,s,o)=>s==="__v_isReactive"?!e:s==="__v_isReadonly"?e:s==="__v_raw"?r:Reflect.get(Y(n,s)&&s in r?n:r,s,o)}const ol={get:Ir(!1,!1)},il={get:Ir(!1,!0)},ll={get:Ir(!0,!1)};const po=new WeakMap,go=new WeakMap,mo=new WeakMap,cl=new WeakMap;function al(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function ul(e){return e.__v_skip||!Object.isExtensible(e)?0:al(Mi(e))}function On(e){return $t(e)?e:Mr(e,!1,Ji,ol,po)}function fl(e){return Mr(e,!1,Zi,il,go)}function Ln(e){return Mr(e,!0,Qi,ll,mo)}function Mr(e,t,n,r,s){if(!Z(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const o=s.get(e);if(o)return o;const i=ul(e);if(i===0)return e;const l=new Proxy(e,i===2?r:n);return s.set(e,l),l}function Rt(e){return $t(e)?Rt(e.__v_raw):!!(e&&e.__v_isReactive)}function $t(e){return!!(e&&e.__v_isReadonly)}function yn(e){return!!(e&&e.__v_isShallow)}function yo(e){return e?!!e.__v_raw:!1}function J(e){const t=e&&e.__v_raw;return t?J(t):e}function dn(e){return Object.isExtensible(e)&&eo(e,"__v_skip",!0),e}const Ht=e=>Z(e)?On(e):e,Pr=e=>Z(e)?Ln(e):e;class _o{constructor(t,n,r,s){this.getter=t,this._setter=n,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this.effect=new Ar(()=>t(this._value),()=>Ot(this,this.effect._dirtyLevel===3?3:4)),this.effect.computed=this,this.effect.active=this._cacheable=!s,this.__v_isReadonly=r}get value(){const t=J(this),n=t.effect._dirtyLevel;return(!t._cacheable||t.effect.dirty)&&Qe(t._value,t._value=t.effect.run())&&n!==3&&Ot(t,5),Nr(t),t.effect._dirtyLevel>=2&&Ot(t,3),t._value}set value(t){this._setter(t)}get _dirty(){return this.effect.dirty}set _dirty(t){this.effect.dirty=t}}function dl(e,t,n=!1){let r,s;const o=K(e);return o?(r=e,s=xe):(r=e.get,s=e.set),new _o(r,s,o||!s,n)}function Nr(e){var t;Ye&&ct&&(e=J(e),lo(ct,(t=e.dep)!=null?t:e.dep=ao(()=>e.dep=void 0,e instanceof _o?e:void 0)))}function Ot(e,t=5,n,r){e=J(e);const s=e.dep;s&&co(s,t)}function de(e){return!!(e&&e.__v_isRef===!0)}function se(e){return vo(e,!1)}function Fr(e){return vo(e,!0)}function vo(e,t){return de(e)?e:new hl(e,t)}class hl{constructor(t,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?t:J(t),this._value=n?t:Ht(t)}get value(){return Nr(this),this._value}set value(t){const n=this.__v_isShallow||yn(t)||$t(t);t=n?t:J(t),Qe(t,this._rawValue)&&(this._rawValue,this._rawValue=t,this._value=n?t:Ht(t),Ot(this,5))}}function bo(e){return de(e)?e.value:e}const pl={get:(e,t,n)=>bo(Reflect.get(e,t,n)),set:(e,t,n,r)=>{const s=e[t];return de(s)&&!de(n)?(s.value=n,!0):Reflect.set(e,t,n,r)}};function wo(e){return Rt(e)?e:new Proxy(e,pl)}class gl{constructor(t){this.dep=void 0,this.__v_isRef=!0;const{get:n,set:r}=t(()=>Nr(this),()=>Ot(this));this._get=n,this._set=r}get value(){return this._get()}set value(t){this._set(t)}}function ml(e){return new gl(e)}class yl{constructor(t,n,r){this._object=t,this._key=n,this._defaultValue=r,this.__v_isRef=!0}get value(){const t=this._object[this._key];return t===void 0?this._defaultValue:t}set value(t){this._object[this._key]=t}get dep(){return qi(J(this._object),this._key)}}class _l{constructor(t){this._getter=t,this.__v_isRef=!0,this.__v_isReadonly=!0}get value(){return this._getter()}}function vl(e,t,n){return de(e)?e:K(e)?new _l(e):Z(e)&&arguments.length>1?bl(e,t,n):se(e)}function bl(e,t,n){const r=e[t];return de(r)?r:new yl(e,t,n)}/** +* @vue/runtime-core v3.4.30 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/function Je(e,t,n,r){try{return r?e(...r):e()}catch(s){Kt(s,t,n)}}function Se(e,t,n,r){if(K(e)){const s=Je(e,t,n,r);return s&&Js(s)&&s.catch(o=>{Kt(o,t,n)}),s}if(k(e)){const s=[];for(let o=0;o>>1,s=pe[r],o=Vt(s);oPe&&pe.splice(t,1)}function xl(e){k(e)?vt.push(...e):(!qe||!qe.includes(e,e.allowRecurse?it+1:it))&&vt.push(e),Co()}function os(e,t,n=jt?Pe+1:0){for(;nVt(n)-Vt(r));if(vt.length=0,qe){qe.push(...t);return}for(qe=t,it=0;ite.id==null?1/0:e.id,Sl=(e,t)=>{const n=Vt(e)-Vt(t);if(n===0){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function xo(e){dr=!1,jt=!0,pe.sort(Sl);try{for(Pe=0;Peoe(_)?_.trim():_)),h&&(s=n.map(cr))}let l,c=r[l=un(t)]||r[l=un($e(t))];!c&&o&&(c=r[l=un(ft(t))]),c&&Se(c,e,6,s);const a=r[l+"Once"];if(a){if(!e.emitted)e.emitted={};else if(e.emitted[l])return;e.emitted[l]=!0,Se(a,e,6,s)}}function So(e,t,n=!1){const r=t.emitsCache,s=r.get(e);if(s!==void 0)return s;const o=e.emits;let i={},l=!1;if(!K(e)){const c=a=>{const f=So(a,t,!0);f&&(l=!0,le(i,f))};!n&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}return!o&&!l?(Z(e)&&r.set(e,null),null):(k(o)?o.forEach(c=>i[c]=null):le(i,o),Z(e)&&r.set(e,i),i)}function Pn(e,t){return!e||!kt(t)?!1:(t=t.slice(2).replace(/Once$/,""),Y(e,t[0].toLowerCase()+t.slice(1))||Y(e,ft(t))||Y(e,t))}let fe=null,Nn=null;function vn(e){const t=fe;return fe=e,Nn=e&&e.type.__scopeId||null,t}function ru(e){Nn=e}function su(){Nn=null}function Al(e,t=fe,n){if(!t||e._n)return e;const r=(...s)=>{r._d&&ws(-1);const o=vn(t);let i;try{i=e(...s)}finally{vn(o),r._d&&ws(1)}return i};return r._n=!0,r._c=!0,r._d=!0,r}function Kn(e){const{type:t,vnode:n,proxy:r,withProxy:s,propsOptions:[o],slots:i,attrs:l,emit:c,render:a,renderCache:f,props:h,data:m,setupState:_,ctx:C,inheritAttrs:I}=e,H=vn(e);let W,D;try{if(n.shapeFlag&4){const y=s||r,M=y;W=Ae(a.call(M,y,f,h,_,m,C)),D=l}else{const y=t;W=Ae(y.length>1?y(h,{attrs:l,slots:i,emit:c}):y(h,null)),D=t.props?l:Rl(l)}}catch(y){Nt.length=0,Kt(y,e,1),W=ie(me)}let p=W;if(D&&I!==!1){const y=Object.keys(D),{shapeFlag:M}=p;y.length&&M&7&&(o&&y.some(Er)&&(D=Ol(D,o)),p=Ze(p,D,!1,!0))}return n.dirs&&(p=Ze(p,null,!1,!0),p.dirs=p.dirs?p.dirs.concat(n.dirs):n.dirs),n.transition&&(p.transition=n.transition),W=p,vn(H),W}const Rl=e=>{let t;for(const n in e)(n==="class"||n==="style"||kt(n))&&((t||(t={}))[n]=e[n]);return t},Ol=(e,t)=>{const n={};for(const r in e)(!Er(r)||!(r.slice(9)in t))&&(n[r]=e[r]);return n};function Ll(e,t,n){const{props:r,children:s,component:o}=e,{props:i,children:l,patchFlag:c}=t,a=o.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&c>=0){if(c&1024)return!0;if(c&16)return r?is(r,i,a):!!i;if(c&8){const f=t.dynamicProps;for(let h=0;he.__isSuspense;function Oo(e,t){t&&t.pendingBranch?k(e)?t.effects.push(...e):t.effects.push(e):xl(e)}function Fn(e,t,n=ue,r=!1){if(n){const s=n[e]||(n[e]=[]),o=t.__weh||(t.__weh=(...i)=>{tt();const l=qt(n),c=Se(t,n,e,i);return l(),Ue(),c});return r?s.unshift(o):s.push(o),o}}const Be=e=>(t,n=ue)=>{(!Gt||e==="sp")&&Fn(e,(...r)=>t(...r),n)},Pl=Be("bm"),xt=Be("m"),Nl=Be("bu"),Fl=Be("u"),Lo=Be("bum"),$n=Be("um"),$l=Be("sp"),Hl=Be("rtg"),jl=Be("rtc");function Vl(e,t=ue){Fn("ec",e,t)}function lu(e,t){if(fe===null)return e;const n=Vn(fe),r=e.dirs||(e.dirs=[]);for(let s=0;st(i,l,void 0,o));else{const i=Object.keys(e);s=new Array(i.length);for(let l=0,c=i.length;l!!e.type.__asyncLoader;/*! #__NO_SIDE_EFFECTS__ */function au(e){K(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:r,delay:s=200,timeout:o,suspensible:i=!0,onError:l}=e;let c=null,a,f=0;const h=()=>(f++,c=null,m()),m=()=>{let _;return c||(_=c=t().catch(C=>{if(C=C instanceof Error?C:new Error(String(C)),l)return new Promise((I,H)=>{l(C,()=>I(h()),()=>H(C),f+1)});throw C}).then(C=>_!==c&&c?c:(C&&(C.__esModule||C[Symbol.toStringTag]==="Module")&&(C=C.default),a=C,C)))};return Hr({name:"AsyncComponentWrapper",__asyncLoader:m,get __asyncResolved(){return a},setup(){const _=ue;if(a)return()=>Wn(a,_);const C=D=>{c=null,Kt(D,_,13,!r)};if(i&&_.suspense||Gt)return m().then(D=>()=>Wn(D,_)).catch(D=>(C(D),()=>r?ie(r,{error:D}):null));const I=se(!1),H=se(),W=se(!!s);return s&&setTimeout(()=>{W.value=!1},s),o!=null&&setTimeout(()=>{if(!I.value&&!H.value){const D=new Error(`Async component timed out after ${o}ms.`);C(D),H.value=D}},o),m().then(()=>{I.value=!0,_.parent&&Wt(_.parent.vnode)&&(_.parent.effect.dirty=!0,Mn(_.parent.update))}).catch(D=>{C(D),H.value=D}),()=>{if(I.value&&a)return Wn(a,_);if(H.value&&r)return ie(r,{error:H.value});if(n&&!W.value)return ie(n)}}})}function Wn(e,t){const{ref:n,props:r,children:s,ce:o}=t.vnode,i=ie(e,r,s);return i.ref=n,i.ce=o,delete t.vnode.ce,i}function uu(e,t,n={},r,s){if(fe.isCE||fe.parent&&bt(fe.parent)&&fe.parent.isCE)return t!=="default"&&(n.name=t),ie("slot",n,r&&r());let o=e[t];o&&o._c&&(o._d=!1),Qo();const i=o&&Io(o(n)),l=ei(_e,{key:n.key||i&&i.key||`_${t}`},i||(r?r():[]),i&&e._===1?64:-2);return!s&&l.scopeId&&(l.slotScopeIds=[l.scopeId+"-s"]),o&&o._c&&(o._d=!0),l}function Io(e){return e.some(t=>Cn(t)?!(t.type===me||t.type===_e&&!Io(t.children)):!0)?e:null}function fu(e,t){const n={};for(const r in e)n[/[A-Z]/.test(r)?`on:${r}`:un(r)]=e[r];return n}const hr=e=>e?si(e)?Vn(e):hr(e.parent):null,Lt=le(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>hr(e.parent),$root:e=>hr(e.root),$emit:e=>e.emit,$options:e=>jr(e),$forceUpdate:e=>e.f||(e.f=()=>{e.effect.dirty=!0,Mn(e.update)}),$nextTick:e=>e.n||(e.n=In.bind(e.proxy)),$watch:e=>ac.bind(e)}),qn=(e,t)=>e!==te&&!e.__isScriptSetup&&Y(e,t),Dl={get({_:e},t){if(t==="__v_skip")return!0;const{ctx:n,setupState:r,data:s,props:o,accessCache:i,type:l,appContext:c}=e;let a;if(t[0]!=="$"){const _=i[t];if(_!==void 0)switch(_){case 1:return r[t];case 2:return s[t];case 4:return n[t];case 3:return o[t]}else{if(qn(r,t))return i[t]=1,r[t];if(s!==te&&Y(s,t))return i[t]=2,s[t];if((a=e.propsOptions[0])&&Y(a,t))return i[t]=3,o[t];if(n!==te&&Y(n,t))return i[t]=4,n[t];pr&&(i[t]=0)}}const f=Lt[t];let h,m;if(f)return t==="$attrs"&&ve(e.attrs,"get",""),f(e);if((h=l.__cssModules)&&(h=h[t]))return h;if(n!==te&&Y(n,t))return i[t]=4,n[t];if(m=c.config.globalProperties,Y(m,t))return m[t]},set({_:e},t,n){const{data:r,setupState:s,ctx:o}=e;return qn(s,t)?(s[t]=n,!0):r!==te&&Y(r,t)?(r[t]=n,!0):Y(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(o[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:r,appContext:s,propsOptions:o}},i){let l;return!!n[i]||e!==te&&Y(e,i)||qn(t,i)||(l=o[0])&&Y(l,i)||Y(r,i)||Y(Lt,i)||Y(s.config.globalProperties,i)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:Y(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};function du(){return Ul().slots}function Ul(){const e=jn();return e.setupContext||(e.setupContext=ii(e))}function cs(e){return k(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}let pr=!0;function Bl(e){const t=jr(e),n=e.proxy,r=e.ctx;pr=!1,t.beforeCreate&&as(t.beforeCreate,e,"bc");const{data:s,computed:o,methods:i,watch:l,provide:c,inject:a,created:f,beforeMount:h,mounted:m,beforeUpdate:_,updated:C,activated:I,deactivated:H,beforeDestroy:W,beforeUnmount:D,destroyed:p,unmounted:y,render:M,renderTracked:A,renderTriggered:F,errorCaptured:$,serverPrefetch:L,expose:w,inheritAttrs:N,components:T,directives:G,filters:ne}=t;if(a&&kl(a,r,null),i)for(const X in i){const V=i[X];K(V)&&(r[X]=V.bind(n))}if(s){const X=s.call(n,n);Z(X)&&(e.data=On(X))}if(pr=!0,o)for(const X in o){const V=o[X],He=K(V)?V.bind(n,n):K(V.get)?V.get.bind(n,n):xe,zt=!K(V)&&K(V.set)?V.set.bind(n):xe,nt=re({get:He,set:zt});Object.defineProperty(r,X,{enumerable:!0,configurable:!0,get:()=>nt.value,set:Le=>nt.value=Le})}if(l)for(const X in l)Mo(l[X],r,n,X);if(c){const X=K(c)?c.call(n):c;Reflect.ownKeys(X).forEach(V=>{Xl(V,X[V])})}f&&as(f,e,"c");function U(X,V){k(V)?V.forEach(He=>X(He.bind(n))):V&&X(V.bind(n))}if(U(Pl,h),U(xt,m),U(Nl,_),U(Fl,C),U(uc,I),U(fc,H),U(Vl,$),U(jl,A),U(Hl,F),U(Lo,D),U($n,y),U($l,L),k(w))if(w.length){const X=e.exposed||(e.exposed={});w.forEach(V=>{Object.defineProperty(X,V,{get:()=>n[V],set:He=>n[V]=He})})}else e.exposed||(e.exposed={});M&&e.render===xe&&(e.render=M),N!=null&&(e.inheritAttrs=N),T&&(e.components=T),G&&(e.directives=G)}function kl(e,t,n=xe){k(e)&&(e=gr(e));for(const r in e){const s=e[r];let o;Z(s)?"default"in s?o=wt(s.from||r,s.default,!0):o=wt(s.from||r):o=wt(s),de(o)?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>o.value,set:i=>o.value=i}):t[r]=o}}function as(e,t,n){Se(k(e)?e.map(r=>r.bind(t.proxy)):e.bind(t.proxy),t,n)}function Mo(e,t,n,r){const s=r.includes(".")?Wo(n,r):()=>n[r];if(oe(e)){const o=t[e];K(o)&&Ne(s,o)}else if(K(e))Ne(s,e.bind(n));else if(Z(e))if(k(e))e.forEach(o=>Mo(o,t,n,r));else{const o=K(e.handler)?e.handler.bind(n):t[e.handler];K(o)&&Ne(s,o,e)}}function jr(e){const t=e.type,{mixins:n,extends:r}=t,{mixins:s,optionsCache:o,config:{optionMergeStrategies:i}}=e.appContext,l=o.get(t);let c;return l?c=l:!s.length&&!n&&!r?c=t:(c={},s.length&&s.forEach(a=>bn(c,a,i,!0)),bn(c,t,i)),Z(t)&&o.set(t,c),c}function bn(e,t,n,r=!1){const{mixins:s,extends:o}=t;o&&bn(e,o,n,!0),s&&s.forEach(i=>bn(e,i,n,!0));for(const i in t)if(!(r&&i==="expose")){const l=Kl[i]||n&&n[i];e[i]=l?l(e[i],t[i]):t[i]}return e}const Kl={data:us,props:fs,emits:fs,methods:At,computed:At,beforeCreate:ge,created:ge,beforeMount:ge,mounted:ge,beforeUpdate:ge,updated:ge,beforeDestroy:ge,beforeUnmount:ge,destroyed:ge,unmounted:ge,activated:ge,deactivated:ge,errorCaptured:ge,serverPrefetch:ge,components:At,directives:At,watch:ql,provide:us,inject:Wl};function us(e,t){return t?e?function(){return le(K(e)?e.call(this,this):e,K(t)?t.call(this,this):t)}:t:e}function Wl(e,t){return At(gr(e),gr(t))}function gr(e){if(k(e)){const t={};for(let n=0;n1)return n&&K(t)?t.call(r&&r.proxy):t}}const No={},Fo=()=>Object.create(No),$o=e=>Object.getPrototypeOf(e)===No;function Yl(e,t,n,r=!1){const s={},o=Fo();e.propsDefaults=Object.create(null),Ho(e,t,s,o);for(const i in e.propsOptions[0])i in s||(s[i]=void 0);n?e.props=r?s:fl(s):e.type.props?e.props=s:e.props=o,e.attrs=o}function Jl(e,t,n,r){const{props:s,attrs:o,vnode:{patchFlag:i}}=e,l=J(s),[c]=e.propsOptions;let a=!1;if((r||i>0)&&!(i&16)){if(i&8){const f=e.vnode.dynamicProps;for(let h=0;h{c=!0;const[m,_]=jo(h,t,!0);le(i,m),_&&l.push(..._)};!n&&t.mixins.length&&t.mixins.forEach(f),e.extends&&f(e.extends),e.mixins&&e.mixins.forEach(f)}if(!o&&!c)return Z(e)&&r.set(e,mt),mt;if(k(o))for(let f=0;f-1,_[1]=I<0||C-1||Y(_,"default"))&&l.push(h)}}}const a=[i,l];return Z(e)&&r.set(e,a),a}function ds(e){return e[0]!=="$"&&!_t(e)}function hs(e){return e===null?"null":typeof e=="function"?e.name||"":typeof e=="object"&&e.constructor&&e.constructor.name||""}function ps(e,t){return hs(e)===hs(t)}function gs(e,t){return k(t)?t.findIndex(n=>ps(n,e)):K(t)&&ps(t,e)?0:-1}const Vo=e=>e[0]==="_"||e==="$stable",Vr=e=>k(e)?e.map(Ae):[Ae(e)],Ql=(e,t,n)=>{if(t._n)return t;const r=Al((...s)=>Vr(t(...s)),n);return r._c=!1,r},Do=(e,t,n)=>{const r=e._ctx;for(const s in e){if(Vo(s))continue;const o=e[s];if(K(o))t[s]=Ql(s,o,r);else if(o!=null){const i=Vr(o);t[s]=()=>i}}},Uo=(e,t)=>{const n=Vr(t);e.slots.default=()=>n},Zl=(e,t)=>{const n=e.slots=Fo();if(e.vnode.shapeFlag&32){const r=t._;r?(le(n,t),eo(n,"_",r,!0)):Do(t,n)}else t&&Uo(e,t)},ec=(e,t,n)=>{const{vnode:r,slots:s}=e;let o=!0,i=te;if(r.shapeFlag&32){const l=t._;l?n&&l===1?o=!1:(le(s,t),!n&&l===1&&delete s._):(o=!t.$stable,Do(t,s)),i=t}else t&&(Uo(e,t),i={default:1});if(o)for(const l in s)!Vo(l)&&i[l]==null&&delete s[l]};function wn(e,t,n,r,s=!1){if(k(e)){e.forEach((m,_)=>wn(m,t&&(k(t)?t[_]:t),n,r,s));return}if(bt(r)&&!s)return;const o=r.shapeFlag&4?Vn(r.component):r.el,i=s?null:o,{i:l,r:c}=e,a=t&&t.r,f=l.refs===te?l.refs={}:l.refs,h=l.setupState;if(a!=null&&a!==c&&(oe(a)?(f[a]=null,Y(h,a)&&(h[a]=null)):de(a)&&(a.value=null)),K(c))Je(c,l,12,[i,f]);else{const m=oe(c),_=de(c);if(m||_){const C=()=>{if(e.f){const I=m?Y(h,c)?h[c]:f[c]:c.value;s?k(I)&&Cr(I,o):k(I)?I.includes(o)||I.push(o):m?(f[c]=[o],Y(h,c)&&(h[c]=f[c])):(c.value=[o],e.k&&(f[e.k]=c.value))}else m?(f[c]=i,Y(h,c)&&(h[c]=i)):_&&(c.value=i,e.k&&(f[e.k]=i))};i?(C.id=-1,ye(C,n)):C()}}}let ms=!1;const pt=()=>{ms||(console.error("Hydration completed but contains mismatches."),ms=!0)},tc=e=>e.namespaceURI.includes("svg")&&e.tagName!=="foreignObject",nc=e=>e.namespaceURI.includes("MathML"),tn=e=>{if(tc(e))return"svg";if(nc(e))return"mathml"},nn=e=>e.nodeType===8;function rc(e){const{mt:t,p:n,o:{patchProp:r,createText:s,nextSibling:o,parentNode:i,remove:l,insert:c,createComment:a}}=e,f=(p,y)=>{if(!y.hasChildNodes()){n(null,p,y),_n(),y._vnode=p;return}h(y.firstChild,p,null,null,null),_n(),y._vnode=p},h=(p,y,M,A,F,$=!1)=>{$=$||!!y.dynamicChildren;const L=nn(p)&&p.data==="[",w=()=>I(p,y,M,A,F,L),{type:N,ref:T,shapeFlag:G,patchFlag:ne}=y;let ce=p.nodeType;y.el=p,ne===-2&&($=!1,y.dynamicChildren=null);let U=null;switch(N){case Et:ce!==3?y.children===""?(c(y.el=s(""),i(p),p),U=p):U=w():(p.data!==y.children&&(pt(),p.data=y.children),U=o(p));break;case me:D(p)?(U=o(p),W(y.el=p.content.firstChild,p,M)):ce!==8||L?U=w():U=o(p);break;case Pt:if(L&&(p=o(p),ce=p.nodeType),ce===1||ce===3){U=p;const X=!y.children.length;for(let V=0;V{$=$||!!y.dynamicChildren;const{type:L,props:w,patchFlag:N,shapeFlag:T,dirs:G,transition:ne}=y,ce=L==="input"||L==="option";if(ce||N!==-1){G&&Me(y,null,M,"created");let U=!1;if(D(p)){U=ko(A,ne)&&M&&M.vnode.props&&M.vnode.props.appear;const V=p.content.firstChild;U&&ne.beforeEnter(V),W(V,p,M),y.el=p=V}if(T&16&&!(w&&(w.innerHTML||w.textContent))){let V=_(p.firstChild,y,p,M,A,F,$);for(;V;){pt();const He=V;V=V.nextSibling,l(He)}}else T&8&&p.textContent!==y.children&&(pt(),p.textContent=y.children);if(w)if(ce||!$||N&48)for(const V in w)(ce&&(V.endsWith("value")||V==="indeterminate")||kt(V)&&!_t(V)||V[0]===".")&&r(p,V,null,w[V],void 0,void 0,M);else w.onClick&&r(p,"onClick",null,w.onClick,void 0,void 0,M);let X;(X=w&&w.onVnodeBeforeMount)&&Ce(X,M,y),G&&Me(y,null,M,"beforeMount"),((X=w&&w.onVnodeMounted)||G||U)&&Oo(()=>{X&&Ce(X,M,y),U&&ne.enter(p),G&&Me(y,null,M,"mounted")},A)}return p.nextSibling},_=(p,y,M,A,F,$,L)=>{L=L||!!y.dynamicChildren;const w=y.children,N=w.length;for(let T=0;T{const{slotScopeIds:L}=y;L&&(F=F?F.concat(L):L);const w=i(p),N=_(o(p),y,w,M,A,F,$);return N&&nn(N)&&N.data==="]"?o(y.anchor=N):(pt(),c(y.anchor=a("]"),w,N),N)},I=(p,y,M,A,F,$)=>{if(pt(),y.el=null,$){const N=H(p);for(;;){const T=o(p);if(T&&T!==N)l(T);else break}}const L=o(p),w=i(p);return l(p),n(null,y,w,L,M,A,tn(w),F),L},H=(p,y="[",M="]")=>{let A=0;for(;p;)if(p=o(p),p&&nn(p)&&(p.data===y&&A++,p.data===M)){if(A===0)return o(p);A--}return p},W=(p,y,M)=>{const A=y.parentNode;A&&A.replaceChild(p,y);let F=M;for(;F;)F.vnode.el===y&&(F.vnode.el=F.subTree.el=p),F=F.parent},D=p=>p.nodeType===1&&p.tagName.toLowerCase()==="template";return[f,h]}const ye=Oo;function sc(e){return Bo(e)}function oc(e){return Bo(e,rc)}function Bo(e,t){const n=to();n.__VUE__=!0;const{insert:r,remove:s,patchProp:o,createElement:i,createText:l,createComment:c,setText:a,setElementText:f,parentNode:h,nextSibling:m,setScopeId:_=xe,insertStaticContent:C}=e,I=(u,d,g,v=null,b=null,S=null,O=void 0,x=null,R=!!d.dynamicChildren)=>{if(u===d)return;u&&!lt(u,d)&&(v=Xt(u),Le(u,b,S,!0),u=null),d.patchFlag===-2&&(R=!1,d.dynamicChildren=null);const{type:E,ref:P,shapeFlag:B}=d;switch(E){case Et:H(u,d,g,v);break;case me:W(u,d,g,v);break;case Pt:u==null&&D(d,g,v,O);break;case _e:T(u,d,g,v,b,S,O,x,R);break;default:B&1?M(u,d,g,v,b,S,O,x,R):B&6?G(u,d,g,v,b,S,O,x,R):(B&64||B&128)&&E.process(u,d,g,v,b,S,O,x,R,dt)}P!=null&&b&&wn(P,u&&u.ref,S,d||u,!d)},H=(u,d,g,v)=>{if(u==null)r(d.el=l(d.children),g,v);else{const b=d.el=u.el;d.children!==u.children&&a(b,d.children)}},W=(u,d,g,v)=>{u==null?r(d.el=c(d.children||""),g,v):d.el=u.el},D=(u,d,g,v)=>{[u.el,u.anchor]=C(u.children,d,g,v,u.el,u.anchor)},p=({el:u,anchor:d},g,v)=>{let b;for(;u&&u!==d;)b=m(u),r(u,g,v),u=b;r(d,g,v)},y=({el:u,anchor:d})=>{let g;for(;u&&u!==d;)g=m(u),s(u),u=g;s(d)},M=(u,d,g,v,b,S,O,x,R)=>{d.type==="svg"?O="svg":d.type==="math"&&(O="mathml"),u==null?A(d,g,v,b,S,O,x,R):L(u,d,b,S,O,x,R)},A=(u,d,g,v,b,S,O,x)=>{let R,E;const{props:P,shapeFlag:B,transition:j,dirs:q}=u;if(R=u.el=i(u.type,S,P&&P.is,P),B&8?f(R,u.children):B&16&&$(u.children,R,null,v,b,Gn(u,S),O,x),q&&Me(u,null,v,"created"),F(R,u,u.scopeId,O,v),P){for(const ee in P)ee!=="value"&&!_t(ee)&&o(R,ee,null,P[ee],S,u.children,v,b,je);"value"in P&&o(R,"value",null,P.value,S),(E=P.onVnodeBeforeMount)&&Ce(E,v,u)}q&&Me(u,null,v,"beforeMount");const z=ko(b,j);z&&j.beforeEnter(R),r(R,d,g),((E=P&&P.onVnodeMounted)||z||q)&&ye(()=>{E&&Ce(E,v,u),z&&j.enter(R),q&&Me(u,null,v,"mounted")},b)},F=(u,d,g,v,b)=>{if(g&&_(u,g),v)for(let S=0;S{for(let E=R;E{const x=d.el=u.el;let{patchFlag:R,dynamicChildren:E,dirs:P}=d;R|=u.patchFlag&16;const B=u.props||te,j=d.props||te;let q;if(g&&rt(g,!1),(q=j.onVnodeBeforeUpdate)&&Ce(q,g,d,u),P&&Me(d,u,g,"beforeUpdate"),g&&rt(g,!0),E?w(u.dynamicChildren,E,x,g,v,Gn(d,b),S):O||V(u,d,x,null,g,v,Gn(d,b),S,!1),R>0){if(R&16)N(x,d,B,j,g,v,b);else if(R&2&&B.class!==j.class&&o(x,"class",null,j.class,b),R&4&&o(x,"style",B.style,j.style,b),R&8){const z=d.dynamicProps;for(let ee=0;ee{q&&Ce(q,g,d,u),P&&Me(d,u,g,"updated")},v)},w=(u,d,g,v,b,S,O)=>{for(let x=0;x{if(g!==v){if(g!==te)for(const x in g)!_t(x)&&!(x in v)&&o(u,x,g[x],null,O,d.children,b,S,je);for(const x in v){if(_t(x))continue;const R=v[x],E=g[x];R!==E&&x!=="value"&&o(u,x,E,R,O,d.children,b,S,je)}"value"in v&&o(u,"value",g.value,v.value,O)}},T=(u,d,g,v,b,S,O,x,R)=>{const E=d.el=u?u.el:l(""),P=d.anchor=u?u.anchor:l("");let{patchFlag:B,dynamicChildren:j,slotScopeIds:q}=d;q&&(x=x?x.concat(q):q),u==null?(r(E,g,v),r(P,g,v),$(d.children||[],g,P,b,S,O,x,R)):B>0&&B&64&&j&&u.dynamicChildren?(w(u.dynamicChildren,j,g,b,S,O,x),(d.key!=null||b&&d===b.subTree)&&Dr(u,d,!0)):V(u,d,g,P,b,S,O,x,R)},G=(u,d,g,v,b,S,O,x,R)=>{d.slotScopeIds=x,u==null?d.shapeFlag&512?b.ctx.activate(d,g,v,O,R):ne(d,g,v,b,S,O,R):ce(u,d,R)},ne=(u,d,g,v,b,S,O)=>{const x=u.component=Sc(u,v,b);if(Wt(u)&&(x.ctx.renderer=dt),Tc(x),x.asyncDep){if(b&&b.registerDep(x,U,O),!u.el){const R=x.subTree=ie(me);W(null,R,d,g)}}else U(x,u,d,g,b,S,O)},ce=(u,d,g)=>{const v=d.component=u.component;if(Ll(u,d,g))if(v.asyncDep&&!v.asyncResolved){X(v,d,g);return}else v.next=d,Cl(v.update),v.effect.dirty=!0,v.update();else d.el=u.el,v.vnode=d},U=(u,d,g,v,b,S,O)=>{const x=()=>{if(u.isMounted){let{next:P,bu:B,u:j,parent:q,vnode:z}=u;{const ht=Ko(u);if(ht){P&&(P.el=z.el,X(u,P,O)),ht.asyncDep.then(()=>{u.isUnmounted||x()});return}}let ee=P,Q;rt(u,!1),P?(P.el=z.el,X(u,P,O)):P=z,B&&fn(B),(Q=P.props&&P.props.onVnodeBeforeUpdate)&&Ce(Q,q,P,z),rt(u,!0);const ae=Kn(u),Te=u.subTree;u.subTree=ae,I(Te,ae,h(Te.el),Xt(Te),u,b,S),P.el=ae.el,ee===null&&Il(u,ae.el),j&&ye(j,b),(Q=P.props&&P.props.onVnodeUpdated)&&ye(()=>Ce(Q,q,P,z),b)}else{let P;const{el:B,props:j}=d,{bm:q,m:z,parent:ee}=u,Q=bt(d);if(rt(u,!1),q&&fn(q),!Q&&(P=j&&j.onVnodeBeforeMount)&&Ce(P,ee,d),rt(u,!0),B&&Bn){const ae=()=>{u.subTree=Kn(u),Bn(B,u.subTree,u,b,null)};Q?d.type.__asyncLoader().then(()=>!u.isUnmounted&&ae()):ae()}else{const ae=u.subTree=Kn(u);I(null,ae,g,v,u,b,S),d.el=ae.el}if(z&&ye(z,b),!Q&&(P=j&&j.onVnodeMounted)){const ae=d;ye(()=>Ce(P,ee,ae),b)}(d.shapeFlag&256||ee&&bt(ee.vnode)&&ee.vnode.shapeFlag&256)&&u.a&&ye(u.a,b),u.isMounted=!0,d=g=v=null}},R=u.effect=new Ar(x,xe,()=>Mn(E),u.scope),E=u.update=()=>{R.dirty&&R.run()};E.id=u.uid,rt(u,!0),E()},X=(u,d,g)=>{d.component=u;const v=u.vnode.props;u.vnode=d,u.next=null,Jl(u,d.props,v,g),ec(u,d.children,g),tt(),os(u),Ue()},V=(u,d,g,v,b,S,O,x,R=!1)=>{const E=u&&u.children,P=u?u.shapeFlag:0,B=d.children,{patchFlag:j,shapeFlag:q}=d;if(j>0){if(j&128){zt(E,B,g,v,b,S,O,x,R);return}else if(j&256){He(E,B,g,v,b,S,O,x,R);return}}q&8?(P&16&&je(E,b,S),B!==E&&f(g,B)):P&16?q&16?zt(E,B,g,v,b,S,O,x,R):je(E,b,S,!0):(P&8&&f(g,""),q&16&&$(B,g,v,b,S,O,x,R))},He=(u,d,g,v,b,S,O,x,R)=>{u=u||mt,d=d||mt;const E=u.length,P=d.length,B=Math.min(E,P);let j;for(j=0;jP?je(u,b,S,!0,!1,B):$(d,g,v,b,S,O,x,R,B)},zt=(u,d,g,v,b,S,O,x,R)=>{let E=0;const P=d.length;let B=u.length-1,j=P-1;for(;E<=B&&E<=j;){const q=u[E],z=d[E]=R?ze(d[E]):Ae(d[E]);if(lt(q,z))I(q,z,g,null,b,S,O,x,R);else break;E++}for(;E<=B&&E<=j;){const q=u[B],z=d[j]=R?ze(d[j]):Ae(d[j]);if(lt(q,z))I(q,z,g,null,b,S,O,x,R);else break;B--,j--}if(E>B){if(E<=j){const q=j+1,z=qj)for(;E<=B;)Le(u[E],b,S,!0),E++;else{const q=E,z=E,ee=new Map;for(E=z;E<=j;E++){const be=d[E]=R?ze(d[E]):Ae(d[E]);be.key!=null&&ee.set(be.key,E)}let Q,ae=0;const Te=j-z+1;let ht=!1,zr=0;const St=new Array(Te);for(E=0;E=Te){Le(be,b,S,!0);continue}let Ie;if(be.key!=null)Ie=ee.get(be.key);else for(Q=z;Q<=j;Q++)if(St[Q-z]===0&<(be,d[Q])){Ie=Q;break}Ie===void 0?Le(be,b,S,!0):(St[Ie-z]=E+1,Ie>=zr?zr=Ie:ht=!0,I(be,d[Ie],g,null,b,S,O,x,R),ae++)}const Xr=ht?ic(St):mt;for(Q=Xr.length-1,E=Te-1;E>=0;E--){const be=z+E,Ie=d[be],Yr=be+1{const{el:S,type:O,transition:x,children:R,shapeFlag:E}=u;if(E&6){nt(u.component.subTree,d,g,v);return}if(E&128){u.suspense.move(d,g,v);return}if(E&64){O.move(u,d,g,dt);return}if(O===_e){r(S,d,g);for(let B=0;Bx.enter(S),b);else{const{leave:B,delayLeave:j,afterLeave:q}=x,z=()=>r(S,d,g),ee=()=>{B(S,()=>{z(),q&&q()})};j?j(S,z,ee):ee()}else r(S,d,g)},Le=(u,d,g,v=!1,b=!1)=>{const{type:S,props:O,ref:x,children:R,dynamicChildren:E,shapeFlag:P,patchFlag:B,dirs:j,memoIndex:q}=u;if(B===-2&&(b=!1),x!=null&&wn(x,null,g,u,!0),q!=null&&(d.renderCache[q]=void 0),P&256){d.ctx.deactivate(u);return}const z=P&1&&j,ee=!bt(u);let Q;if(ee&&(Q=O&&O.onVnodeBeforeUnmount)&&Ce(Q,d,u),P&6)Oi(u.component,g,v);else{if(P&128){u.suspense.unmount(g,v);return}z&&Me(u,null,d,"beforeUnmount"),P&64?u.type.remove(u,d,g,dt,v):E&&(S!==_e||B>0&&B&64)?je(E,d,g,!1,!0):(S===_e&&B&384||!b&&P&16)&&je(R,d,g),v&&qr(u)}(ee&&(Q=O&&O.onVnodeUnmounted)||z)&&ye(()=>{Q&&Ce(Q,d,u),z&&Me(u,null,d,"unmounted")},g)},qr=u=>{const{type:d,el:g,anchor:v,transition:b}=u;if(d===_e){Ri(g,v);return}if(d===Pt){y(u);return}const S=()=>{s(g),b&&!b.persisted&&b.afterLeave&&b.afterLeave()};if(u.shapeFlag&1&&b&&!b.persisted){const{leave:O,delayLeave:x}=b,R=()=>O(g,S);x?x(u.el,S,R):R()}else S()},Ri=(u,d)=>{let g;for(;u!==d;)g=m(u),s(u),u=g;s(d)},Oi=(u,d,g)=>{const{bum:v,scope:b,update:S,subTree:O,um:x,m:R,a:E}=u;ys(R),ys(E),v&&fn(v),b.stop(),S&&(S.active=!1,Le(O,u,d,g)),x&&ye(x,d),ye(()=>{u.isUnmounted=!0},d),d&&d.pendingBranch&&!d.isUnmounted&&u.asyncDep&&!u.asyncResolved&&u.suspenseId===d.pendingId&&(d.deps--,d.deps===0&&d.resolve())},je=(u,d,g,v=!1,b=!1,S=0)=>{for(let O=S;Ou.shapeFlag&6?Xt(u.component.subTree):u.shapeFlag&128?u.suspense.next():m(u.anchor||u.el);let Dn=!1;const Gr=(u,d,g)=>{u==null?d._vnode&&Le(d._vnode,null,null,!0):I(d._vnode||null,u,d,null,null,null,g),Dn||(Dn=!0,os(),_n(),Dn=!1),d._vnode=u},dt={p:I,um:Le,m:nt,r:qr,mt:ne,mc:$,pc:V,pbc:w,n:Xt,o:e};let Un,Bn;return t&&([Un,Bn]=t(dt)),{render:Gr,hydrate:Un,createApp:zl(Gr,Un)}}function Gn({type:e,props:t},n){return n==="svg"&&e==="foreignObject"||n==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:n}function rt({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function ko(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function Dr(e,t,n=!1){const r=e.children,s=t.children;if(k(r)&&k(s))for(let o=0;o>1,e[n[l]]0&&(t[r]=n[o-1]),n[o]=r)}}for(o=n.length,i=n[o-1];o-- >0;)n[o]=i,i=t[i];return n}function Ko(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:Ko(t)}function ys(e){if(e)for(let t=0;twt(lc);function Ur(e,t){return Hn(e,null,t)}function hu(e,t){return Hn(e,null,{flush:"post"})}const rn={};function Ne(e,t,n){return Hn(e,t,n)}function Hn(e,t,{immediate:n,deep:r,flush:s,once:o,onTrack:i,onTrigger:l}=te){if(t&&o){const A=t;t=(...F)=>{A(...F),M()}}const c=ue,a=A=>r===!0?A:Xe(A,r===!1?1:void 0);let f,h=!1,m=!1;if(de(e)?(f=()=>e.value,h=yn(e)):Rt(e)?(f=()=>a(e),h=!0):k(e)?(m=!0,h=e.some(A=>Rt(A)||yn(A)),f=()=>e.map(A=>{if(de(A))return A.value;if(Rt(A))return a(A);if(K(A))return Je(A,c,2)})):K(e)?t?f=()=>Je(e,c,2):f=()=>(_&&_(),Se(e,c,3,[C])):f=xe,t&&r){const A=f;f=()=>Xe(A())}let _,C=A=>{_=p.onStop=()=>{Je(A,c,4),_=p.onStop=void 0}},I;if(Gt)if(C=xe,t?n&&Se(t,c,3,[f(),m?[]:void 0,C]):f(),s==="sync"){const A=cc();I=A.__watcherHandles||(A.__watcherHandles=[])}else return xe;let H=m?new Array(e.length).fill(rn):rn;const W=()=>{if(!(!p.active||!p.dirty))if(t){const A=p.run();(r||h||(m?A.some((F,$)=>Qe(F,H[$])):Qe(A,H)))&&(_&&_(),Se(t,c,3,[A,H===rn?void 0:m&&H[0]===rn?[]:H,C]),H=A)}else p.run()};W.allowRecurse=!!t;let D;s==="sync"?D=W:s==="post"?D=()=>ye(W,c&&c.suspense):(W.pre=!0,c&&(W.id=c.uid),D=()=>Mn(W));const p=new Ar(f,xe,D),y=so(),M=()=>{p.stop(),y&&Cr(y.effects,p)};return t?n?W():H=p.run():s==="post"?ye(p.run.bind(p),c&&c.suspense):p.run(),I&&I.push(M),M}function ac(e,t,n){const r=this.proxy,s=oe(e)?e.includes(".")?Wo(r,e):()=>r[e]:e.bind(r,r);let o;K(t)?o=t:(o=t.handler,n=t);const i=qt(this),l=Hn(s,o.bind(r),n);return i(),l}function Wo(e,t){const n=t.split(".");return()=>{let r=e;for(let s=0;s{Xe(r,t,n)});else if(Zs(e)){for(const r in e)Xe(e[r],t,n);for(const r of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,r)&&Xe(e[r],t,n)}return e}const Wt=e=>e.type.__isKeepAlive;function uc(e,t){qo(e,"a",t)}function fc(e,t){qo(e,"da",t)}function qo(e,t,n=ue){const r=e.__wdc||(e.__wdc=()=>{let s=n;for(;s;){if(s.isDeactivated)return;s=s.parent}return e()});if(Fn(t,r,n),n){let s=n.parent;for(;s&&s.parent;)Wt(s.parent.vnode)&&dc(r,t,n,s),s=s.parent}}function dc(e,t,n,r){const s=Fn(t,e,r,!0);$n(()=>{Cr(r[t],s)},n)}const Ge=Symbol("_leaveCb"),sn=Symbol("_enterCb");function hc(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return xt(()=>{e.isMounted=!0}),Lo(()=>{e.isUnmounting=!0}),e}const Ee=[Function,Array],Go={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:Ee,onEnter:Ee,onAfterEnter:Ee,onEnterCancelled:Ee,onBeforeLeave:Ee,onLeave:Ee,onAfterLeave:Ee,onLeaveCancelled:Ee,onBeforeAppear:Ee,onAppear:Ee,onAfterAppear:Ee,onAppearCancelled:Ee},zo=e=>{const t=e.subTree;return t.component?zo(t.component):t},pc={name:"BaseTransition",props:Go,setup(e,{slots:t}){const n=jn(),r=hc();return()=>{const s=t.default&&Yo(t.default(),!0);if(!s||!s.length)return;let o=s[0];if(s.length>1){for(const m of s)if(m.type!==me){o=m;break}}const i=J(e),{mode:l}=i;if(r.isLeaving)return zn(o);const c=_s(o);if(!c)return zn(o);let a=yr(c,i,r,n,m=>a=m);En(c,a);const f=n.subTree,h=f&&_s(f);if(h&&h.type!==me&&!lt(c,h)&&zo(n).type!==me){const m=yr(h,i,r,n);if(En(h,m),l==="out-in"&&c.type!==me)return r.isLeaving=!0,m.afterLeave=()=>{r.isLeaving=!1,n.update.active!==!1&&(n.effect.dirty=!0,n.update())},zn(o);l==="in-out"&&c.type!==me&&(m.delayLeave=(_,C,I)=>{const H=Xo(r,h);H[String(h.key)]=h,_[Ge]=()=>{C(),_[Ge]=void 0,delete a.delayedLeave},a.delayedLeave=I})}return o}}},gc=pc;function Xo(e,t){const{leavingVNodes:n}=e;let r=n.get(t.type);return r||(r=Object.create(null),n.set(t.type,r)),r}function yr(e,t,n,r,s){const{appear:o,mode:i,persisted:l=!1,onBeforeEnter:c,onEnter:a,onAfterEnter:f,onEnterCancelled:h,onBeforeLeave:m,onLeave:_,onAfterLeave:C,onLeaveCancelled:I,onBeforeAppear:H,onAppear:W,onAfterAppear:D,onAppearCancelled:p}=t,y=String(e.key),M=Xo(n,e),A=(L,w)=>{L&&Se(L,r,9,w)},F=(L,w)=>{const N=w[1];A(L,w),k(L)?L.every(T=>T.length<=1)&&N():L.length<=1&&N()},$={mode:i,persisted:l,beforeEnter(L){let w=c;if(!n.isMounted)if(o)w=H||c;else return;L[Ge]&&L[Ge](!0);const N=M[y];N&<(e,N)&&N.el[Ge]&&N.el[Ge](),A(w,[L])},enter(L){let w=a,N=f,T=h;if(!n.isMounted)if(o)w=W||a,N=D||f,T=p||h;else return;let G=!1;const ne=L[sn]=ce=>{G||(G=!0,ce?A(T,[L]):A(N,[L]),$.delayedLeave&&$.delayedLeave(),L[sn]=void 0)};w?F(w,[L,ne]):ne()},leave(L,w){const N=String(e.key);if(L[sn]&&L[sn](!0),n.isUnmounting)return w();A(m,[L]);let T=!1;const G=L[Ge]=ne=>{T||(T=!0,w(),ne?A(I,[L]):A(C,[L]),L[Ge]=void 0,M[N]===e&&delete M[N])};M[N]=e,_?F(_,[L,G]):G()},clone(L){const w=yr(L,t,n,r,s);return s&&s(w),w}};return $}function zn(e){if(Wt(e))return e=Ze(e),e.children=null,e}function _s(e){if(!Wt(e))return e;const{shapeFlag:t,children:n}=e;if(n){if(t&16)return n[0];if(t&32&&K(n.default))return n.default()}}function En(e,t){e.shapeFlag&6&&e.component?En(e.component.subTree,t):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function Yo(e,t=!1,n){let r=[],s=0;for(let o=0;o1)for(let o=0;oe.__isTeleport,Mt=e=>e&&(e.disabled||e.disabled===""),vs=e=>typeof SVGElement<"u"&&e instanceof SVGElement,bs=e=>typeof MathMLElement=="function"&&e instanceof MathMLElement,_r=(e,t)=>{const n=e&&e.to;return oe(n)?t?t(n):null:n},yc={name:"Teleport",__isTeleport:!0,process(e,t,n,r,s,o,i,l,c,a){const{mc:f,pc:h,pbc:m,o:{insert:_,querySelector:C,createText:I,createComment:H}}=a,W=Mt(t.props);let{shapeFlag:D,children:p,dynamicChildren:y}=t;if(e==null){const M=t.el=I(""),A=t.anchor=I("");_(M,n,r),_(A,n,r);const F=t.target=_r(t.props,C),$=t.targetAnchor=I("");F&&(_($,F),i==="svg"||vs(F)?i="svg":(i==="mathml"||bs(F))&&(i="mathml"));const L=(w,N)=>{D&16&&f(p,w,N,s,o,i,l,c)};W?L(n,A):F&&L(F,$)}else{t.el=e.el;const M=t.anchor=e.anchor,A=t.target=e.target,F=t.targetAnchor=e.targetAnchor,$=Mt(e.props),L=$?n:A,w=$?M:F;if(i==="svg"||vs(A)?i="svg":(i==="mathml"||bs(A))&&(i="mathml"),y?(m(e.dynamicChildren,y,L,s,o,i,l),Dr(e,t,!0)):c||h(e,t,L,w,s,o,i,l,!1),W)$?t.props&&e.props&&t.props.to!==e.props.to&&(t.props.to=e.props.to):on(t,n,M,a,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const N=t.target=_r(t.props,C);N&&on(t,N,null,a,0)}else $&&on(t,A,F,a,1)}Jo(t)},remove(e,t,n,{um:r,o:{remove:s}},o){const{shapeFlag:i,children:l,anchor:c,targetAnchor:a,target:f,props:h}=e;if(f&&s(a),o&&s(c),i&16){const m=o||!Mt(h);for(let _=0;_0?Re||mt:null,vc(),Dt>0&&Re&&Re.push(e),e}function gu(e,t,n,r,s,o){return Zo(ni(e,t,n,r,s,o,!0))}function ei(e,t,n,r,s){return Zo(ie(e,t,n,r,s,!0))}function Cn(e){return e?e.__v_isVNode===!0:!1}function lt(e,t){return e.type===t.type&&e.key===t.key}const ti=({key:e})=>e??null,hn=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?oe(e)||de(e)||K(e)?{i:fe,r:e,k:t,f:!!n}:e:null);function ni(e,t=null,n=null,r=0,s=null,o=e===_e?0:1,i=!1,l=!1){const c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&ti(t),ref:t&&hn(t),scopeId:Nn,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:o,patchFlag:r,dynamicProps:s,dynamicChildren:null,appContext:null,ctx:fe};return l?(Br(c,n),o&128&&e.normalize(c)):n&&(c.shapeFlag|=oe(n)?8:16),Dt>0&&!i&&Re&&(c.patchFlag>0||o&6)&&c.patchFlag!==32&&Re.push(c),c}const ie=bc;function bc(e,t=null,n=null,r=0,s=null,o=!1){if((!e||e===Ao)&&(e=me),Cn(e)){const l=Ze(e,t,!0);return n&&Br(l,n),Dt>0&&!o&&Re&&(l.shapeFlag&6?Re[Re.indexOf(e)]=l:Re.push(l)),l.patchFlag=-2,l}if(Lc(e)&&(e=e.__vccOpts),t){t=wc(t);let{class:l,style:c}=t;l&&!oe(l)&&(t.class=Tr(l)),Z(c)&&(yo(c)&&!k(c)&&(c=le({},c)),t.style=Sr(c))}const i=oe(e)?1:Ml(e)?128:mc(e)?64:Z(e)?4:K(e)?2:0;return ni(e,t,n,r,s,i,o,!0)}function wc(e){return e?yo(e)||$o(e)?le({},e):e:null}function Ze(e,t,n=!1,r=!1){const{props:s,ref:o,patchFlag:i,children:l,transition:c}=e,a=t?Ec(s||{},t):s,f={__v_isVNode:!0,__v_skip:!0,type:e.type,props:a,key:a&&ti(a),ref:t&&t.ref?n&&o?k(o)?o.concat(hn(t)):[o,hn(t)]:hn(t):o,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:l,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==_e?i===-1?16:i|16:i,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:c,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Ze(e.ssContent),ssFallback:e.ssFallback&&Ze(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return c&&r&&En(f,c.clone(f)),f}function ri(e=" ",t=0){return ie(Et,null,e,t)}function mu(e,t){const n=ie(Pt,null,e);return n.staticCount=t,n}function yu(e="",t=!1){return t?(Qo(),ei(me,null,e)):ie(me,null,e)}function Ae(e){return e==null||typeof e=="boolean"?ie(me):k(e)?ie(_e,null,e.slice()):typeof e=="object"?ze(e):ie(Et,null,String(e))}function ze(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Ze(e)}function Br(e,t){let n=0;const{shapeFlag:r}=e;if(t==null)t=null;else if(k(t))n=16;else if(typeof t=="object")if(r&65){const s=t.default;s&&(s._c&&(s._d=!1),Br(e,s()),s._c&&(s._d=!0));return}else{n=32;const s=t._;!s&&!$o(t)?t._ctx=fe:s===3&&fe&&(fe.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else K(t)?(t={default:t,_ctx:fe},n=32):(t=String(t),r&64?(n=16,t=[ri(t)]):n=8);e.children=t,e.shapeFlag|=n}function Ec(...e){const t={};for(let n=0;nue||fe;let xn,vr;{const e=to(),t=(n,r)=>{let s;return(s=e[n])||(s=e[n]=[]),s.push(r),o=>{s.length>1?s.forEach(i=>i(o)):s[0](o)}};xn=t("__VUE_INSTANCE_SETTERS__",n=>ue=n),vr=t("__VUE_SSR_SETTERS__",n=>Gt=n)}const qt=e=>{const t=ue;return xn(e),e.scope.on(),()=>{e.scope.off(),xn(t)}},Es=()=>{ue&&ue.scope.off(),xn(null)};function si(e){return e.vnode.shapeFlag&4}let Gt=!1;function Tc(e,t=!1){t&&vr(t);const{props:n,children:r}=e.vnode,s=si(e);Yl(e,n,s,t),Zl(e,r);const o=s?Ac(e,t):void 0;return t&&vr(!1),o}function Ac(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,Dl);const{setup:r}=n;if(r){const s=e.setupContext=r.length>1?ii(e):null,o=qt(e);tt();const i=Je(r,e,0,[e.props,s]);if(Ue(),o(),Js(i)){if(i.then(Es,Es),t)return i.then(l=>{Cs(e,l,t)}).catch(l=>{Kt(l,e,0)});e.asyncDep=i}else Cs(e,i,t)}else oi(e,t)}function Cs(e,t,n){K(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:Z(t)&&(e.setupState=wo(t)),oi(e,n)}let xs;function oi(e,t,n){const r=e.type;if(!e.render){if(!t&&xs&&!r.render){const s=r.template||jr(e).template;if(s){const{isCustomElement:o,compilerOptions:i}=e.appContext.config,{delimiters:l,compilerOptions:c}=r,a=le(le({isCustomElement:o,delimiters:l},i),c);r.render=xs(s,a)}}e.render=r.render||xe}{const s=qt(e);tt();try{Bl(e)}finally{Ue(),s()}}}const Rc={get(e,t){return ve(e,"get",""),e[t]}};function ii(e){const t=n=>{e.exposed=n||{}};return{attrs:new Proxy(e.attrs,Rc),slots:e.slots,emit:e.emit,expose:t}}function Vn(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(wo(dn(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in Lt)return Lt[n](e)},has(t,n){return n in t||n in Lt}})):e.proxy}function Oc(e,t=!0){return K(e)?e.displayName||e.name:e.name||t&&e.__name}function Lc(e){return K(e)&&"__vccOpts"in e}const re=(e,t)=>dl(e,t,Gt);function br(e,t,n){const r=arguments.length;return r===2?Z(t)&&!k(t)?Cn(t)?ie(e,null,[t]):ie(e,t):ie(e,null,t):(r>3?n=Array.prototype.slice.call(arguments,2):r===3&&Cn(n)&&(n=[n]),ie(e,t,n))}const Ic="3.4.30";/** +* @vue/runtime-dom v3.4.30 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/const Mc="http://www.w3.org/2000/svg",Pc="http://www.w3.org/1998/Math/MathML",Ve=typeof document<"u"?document:null,Ss=Ve&&Ve.createElement("template"),Nc={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,r)=>{const s=t==="svg"?Ve.createElementNS(Mc,e):t==="mathml"?Ve.createElementNS(Pc,e):n?Ve.createElement(e,{is:n}):Ve.createElement(e);return e==="select"&&r&&r.multiple!=null&&s.setAttribute("multiple",r.multiple),s},createText:e=>Ve.createTextNode(e),createComment:e=>Ve.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>Ve.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,r,s,o){const i=n?n.previousSibling:t.lastChild;if(s&&(s===o||s.nextSibling))for(;t.insertBefore(s.cloneNode(!0),n),!(s===o||!(s=s.nextSibling)););else{Ss.innerHTML=r==="svg"?`${e}`:r==="mathml"?`${e}`:e;const l=Ss.content;if(r==="svg"||r==="mathml"){const c=l.firstChild;for(;c.firstChild;)l.appendChild(c.firstChild);l.removeChild(c)}t.insertBefore(l,n)}return[i?i.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},Ke="transition",Tt="animation",Ut=Symbol("_vtc"),li=(e,{slots:t})=>br(gc,Fc(e),t);li.displayName="Transition";const ci={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String};li.props=le({},Go,ci);const st=(e,t=[])=>{k(e)?e.forEach(n=>n(...t)):e&&e(...t)},Ts=e=>e?k(e)?e.some(t=>t.length>1):e.length>1:!1;function Fc(e){const t={};for(const T in e)T in ci||(t[T]=e[T]);if(e.css===!1)return t;const{name:n="v",type:r,duration:s,enterFromClass:o=`${n}-enter-from`,enterActiveClass:i=`${n}-enter-active`,enterToClass:l=`${n}-enter-to`,appearFromClass:c=o,appearActiveClass:a=i,appearToClass:f=l,leaveFromClass:h=`${n}-leave-from`,leaveActiveClass:m=`${n}-leave-active`,leaveToClass:_=`${n}-leave-to`}=e,C=$c(s),I=C&&C[0],H=C&&C[1],{onBeforeEnter:W,onEnter:D,onEnterCancelled:p,onLeave:y,onLeaveCancelled:M,onBeforeAppear:A=W,onAppear:F=D,onAppearCancelled:$=p}=t,L=(T,G,ne)=>{ot(T,G?f:l),ot(T,G?a:i),ne&&ne()},w=(T,G)=>{T._isLeaving=!1,ot(T,h),ot(T,_),ot(T,m),G&&G()},N=T=>(G,ne)=>{const ce=T?F:D,U=()=>L(G,T,ne);st(ce,[G,U]),As(()=>{ot(G,T?c:o),We(G,T?f:l),Ts(ce)||Rs(G,r,I,U)})};return le(t,{onBeforeEnter(T){st(W,[T]),We(T,o),We(T,i)},onBeforeAppear(T){st(A,[T]),We(T,c),We(T,a)},onEnter:N(!1),onAppear:N(!0),onLeave(T,G){T._isLeaving=!0;const ne=()=>w(T,G);We(T,h),We(T,m),Vc(),As(()=>{T._isLeaving&&(ot(T,h),We(T,_),Ts(y)||Rs(T,r,H,ne))}),st(y,[T,ne])},onEnterCancelled(T){L(T,!1),st(p,[T])},onAppearCancelled(T){L(T,!0),st($,[T])},onLeaveCancelled(T){w(T),st(M,[T])}})}function $c(e){if(e==null)return null;if(Z(e))return[Xn(e.enter),Xn(e.leave)];{const t=Xn(e);return[t,t]}}function Xn(e){return Fi(e)}function We(e,t){t.split(/\s+/).forEach(n=>n&&e.classList.add(n)),(e[Ut]||(e[Ut]=new Set)).add(t)}function ot(e,t){t.split(/\s+/).forEach(r=>r&&e.classList.remove(r));const n=e[Ut];n&&(n.delete(t),n.size||(e[Ut]=void 0))}function As(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let Hc=0;function Rs(e,t,n,r){const s=e._endId=++Hc,o=()=>{s===e._endId&&r()};if(n)return setTimeout(o,n);const{type:i,timeout:l,propCount:c}=jc(e,t);if(!i)return r();const a=i+"end";let f=0;const h=()=>{e.removeEventListener(a,m),o()},m=_=>{_.target===e&&++f>=c&&h()};setTimeout(()=>{f(n[C]||"").split(", "),s=r(`${Ke}Delay`),o=r(`${Ke}Duration`),i=Os(s,o),l=r(`${Tt}Delay`),c=r(`${Tt}Duration`),a=Os(l,c);let f=null,h=0,m=0;t===Ke?i>0&&(f=Ke,h=i,m=o.length):t===Tt?a>0&&(f=Tt,h=a,m=c.length):(h=Math.max(i,a),f=h>0?i>a?Ke:Tt:null,m=f?f===Ke?o.length:c.length:0);const _=f===Ke&&/\b(transform|all)(,|$)/.test(r(`${Ke}Property`).toString());return{type:f,timeout:h,propCount:m,hasTransform:_}}function Os(e,t){for(;e.lengthLs(n)+Ls(e[r])))}function Ls(e){return e==="auto"?0:Number(e.slice(0,-1).replace(",","."))*1e3}function Vc(){return document.body.offsetHeight}function Dc(e,t,n){const r=e[Ut];r&&(t=(t?[t,...r]:[...r]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const Is=Symbol("_vod"),Uc=Symbol("_vsh"),Bc=Symbol(""),kc=/(^|;)\s*display\s*:/;function Kc(e,t,n){const r=e.style,s=oe(n);let o=!1;if(n&&!s){if(t)if(oe(t))for(const i of t.split(";")){const l=i.slice(0,i.indexOf(":")).trim();n[l]==null&&pn(r,l,"")}else for(const i in t)n[i]==null&&pn(r,i,"");for(const i in n)i==="display"&&(o=!0),pn(r,i,n[i])}else if(s){if(t!==n){const i=r[Bc];i&&(n+=";"+i),r.cssText=n,o=kc.test(n)}}else t&&e.removeAttribute("style");Is in e&&(e[Is]=o?r.display:"",e[Uc]&&(r.display="none"))}const Ms=/\s*!important$/;function pn(e,t,n){if(k(n))n.forEach(r=>pn(e,t,r));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const r=Wc(e,t);Ms.test(n)?e.setProperty(ft(r),n.replace(Ms,""),"important"):e[r]=n}}const Ps=["Webkit","Moz","ms"],Yn={};function Wc(e,t){const n=Yn[t];if(n)return n;let r=$e(t);if(r!=="filter"&&r in e)return Yn[t]=r;r=An(r);for(let s=0;sJn||(Yc.then(()=>Jn=0),Jn=Date.now());function Qc(e,t){const n=r=>{if(!r._vts)r._vts=Date.now();else if(r._vts<=n.attached)return;Se(Zc(r,n.value),t,5,[r])};return n.value=e,n.attached=Jc(),n}function Zc(e,t){if(k(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(r=>s=>!s._stopped&&r&&r(s))}else return t}const js=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,ea=(e,t,n,r,s,o,i,l,c)=>{const a=s==="svg";t==="class"?Dc(e,r,a):t==="style"?Kc(e,n,r):kt(t)?Er(t)||zc(e,t,n,r,i):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):ta(e,t,r,a))?(qc(e,t,r,o,i,l,c),!e.tagName.includes("-")&&(t==="value"||t==="checked"||t==="selected")&&Fs(e,t,r,a,i,t!=="value")):(t==="true-value"?e._trueValue=r:t==="false-value"&&(e._falseValue=r),Fs(e,t,r,a))};function ta(e,t,n,r){if(r)return!!(t==="innerHTML"||t==="textContent"||t in e&&js(t)&&K(n));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const s=e.tagName;if(s==="IMG"||s==="VIDEO"||s==="CANVAS"||s==="SOURCE")return!1}return js(t)&&oe(n)?!1:t in e}const Vs=e=>{const t=e.props["onUpdate:modelValue"]||!1;return k(t)?n=>fn(t,n):t};function na(e){e.target.composing=!0}function Ds(e){const t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event("input")))}const Qn=Symbol("_assign"),_u={created(e,{modifiers:{lazy:t,trim:n,number:r}},s){e[Qn]=Vs(s);const o=r||s.props&&s.props.type==="number";gt(e,t?"change":"input",i=>{if(i.target.composing)return;let l=e.value;n&&(l=l.trim()),o&&(l=cr(l)),e[Qn](l)}),n&>(e,"change",()=>{e.value=e.value.trim()}),t||(gt(e,"compositionstart",na),gt(e,"compositionend",Ds),gt(e,"change",Ds))},mounted(e,{value:t}){e.value=t??""},beforeUpdate(e,{value:t,oldValue:n,modifiers:{lazy:r,trim:s,number:o}},i){if(e[Qn]=Vs(i),e.composing)return;const l=(o||e.type==="number")&&!/^0\d/.test(e.value)?cr(e.value):e.value,c=t??"";l!==c&&(document.activeElement===e&&e.type!=="range"&&(r&&t===n||s&&e.value.trim()===c)||(e.value=c))}},ra=["ctrl","shift","alt","meta"],sa={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,t)=>ra.some(n=>e[`${n}Key`]&&!t.includes(n))},vu=(e,t)=>{const n=e._withMods||(e._withMods={}),r=t.join(".");return n[r]||(n[r]=(s,...o)=>{for(let i=0;i{const n=e._withKeys||(e._withKeys={}),r=t.join(".");return n[r]||(n[r]=s=>{if(!("key"in s))return;const o=ft(s.key);if(t.some(i=>i===o||oa[i]===o))return e(s)})},ai=le({patchProp:ea},Nc);let Ft,Us=!1;function ia(){return Ft||(Ft=sc(ai))}function la(){return Ft=Us?Ft:oc(ai),Us=!0,Ft}const wu=(...e)=>{const t=ia().createApp(...e),{mount:n}=t;return t.mount=r=>{const s=fi(r);if(!s)return;const o=t._component;!K(o)&&!o.render&&!o.template&&(o.template=s.innerHTML),s.innerHTML="";const i=n(s,!1,ui(s));return s instanceof Element&&(s.removeAttribute("v-cloak"),s.setAttribute("data-v-app","")),i},t},Eu=(...e)=>{const t=la().createApp(...e),{mount:n}=t;return t.mount=r=>{const s=fi(r);if(s)return n(s,!0,ui(s))},t};function ui(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function fi(e){return oe(e)?document.querySelector(e):e}const Cu=(e,t)=>{const n=e.__vccOpts||e;for(const[r,s]of t)n[r]=s;return n},ca="modulepreload",aa=function(e){return"/GeometryOps.jl/dev/"+e},Bs={},xu=function(t,n,r){let s=Promise.resolve();if(n&&n.length>0){document.getElementsByTagName("link");const o=document.querySelector("meta[property=csp-nonce]"),i=(o==null?void 0:o.nonce)||(o==null?void 0:o.getAttribute("nonce"));s=Promise.all(n.map(l=>{if(l=aa(l),l in Bs)return;Bs[l]=!0;const c=l.endsWith(".css"),a=c?'[rel="stylesheet"]':"";if(document.querySelector(`link[href="${l}"]${a}`))return;const f=document.createElement("link");if(f.rel=c?"stylesheet":ca,c||(f.as="script",f.crossOrigin=""),f.href=l,i&&f.setAttribute("nonce",i),document.head.appendChild(f),c)return new Promise((h,m)=>{f.addEventListener("load",h),f.addEventListener("error",()=>m(new Error(`Unable to preload CSS for ${l}`)))})}))}return s.then(()=>t()).catch(o=>{const i=new Event("vite:preloadError",{cancelable:!0});if(i.payload=o,window.dispatchEvent(i),!i.defaultPrevented)throw o})},ua=window.__VP_SITE_DATA__;function kr(e){return so()?(Ki(e),!0):!1}function Fe(e){return typeof e=="function"?e():bo(e)}const di=typeof window<"u"&&typeof document<"u";typeof WorkerGlobalScope<"u"&&globalThis instanceof WorkerGlobalScope;const fa=Object.prototype.toString,da=e=>fa.call(e)==="[object Object]",Bt=()=>{},ks=ha();function ha(){var e,t;return di&&((e=window==null?void 0:window.navigator)==null?void 0:e.userAgent)&&(/iP(?:ad|hone|od)/.test(window.navigator.userAgent)||((t=window==null?void 0:window.navigator)==null?void 0:t.maxTouchPoints)>2&&/iPad|Macintosh/.test(window==null?void 0:window.navigator.userAgent))}function pa(e,t){function n(...r){return new Promise((s,o)=>{Promise.resolve(e(()=>t.apply(this,r),{fn:t,thisArg:this,args:r})).then(s).catch(o)})}return n}const hi=e=>e();function ga(e,t={}){let n,r,s=Bt;const o=l=>{clearTimeout(l),s(),s=Bt};return l=>{const c=Fe(e),a=Fe(t.maxWait);return n&&o(n),c<=0||a!==void 0&&a<=0?(r&&(o(r),r=null),Promise.resolve(l())):new Promise((f,h)=>{s=t.rejectOnCancel?h:f,a&&!r&&(r=setTimeout(()=>{n&&o(n),r=null,f(l())},a)),n=setTimeout(()=>{r&&o(r),r=null,f(l())},c)})}}function ma(e=hi){const t=se(!0);function n(){t.value=!1}function r(){t.value=!0}const s=(...o)=>{t.value&&e(...o)};return{isActive:Ln(t),pause:n,resume:r,eventFilter:s}}function ya(e){return jn()}function pi(...e){if(e.length!==1)return vl(...e);const t=e[0];return typeof t=="function"?Ln(ml(()=>({get:t,set:Bt}))):se(t)}function gi(e,t,n={}){const{eventFilter:r=hi,...s}=n;return Ne(e,pa(r,t),s)}function _a(e,t,n={}){const{eventFilter:r,...s}=n,{eventFilter:o,pause:i,resume:l,isActive:c}=ma(r);return{stop:gi(e,t,{...s,eventFilter:o}),pause:i,resume:l,isActive:c}}function Kr(e,t=!0,n){ya()?xt(e,n):t?e():In(e)}function Su(e,t,n={}){const{debounce:r=0,maxWait:s=void 0,...o}=n;return gi(e,t,{...o,eventFilter:ga(r,{maxWait:s})})}function Tu(e,t,n){let r;de(n)?r={evaluating:n}:r={};const{lazy:s=!1,evaluating:o=void 0,shallow:i=!0,onError:l=Bt}=r,c=se(!s),a=i?Fr(t):se(t);let f=0;return Ur(async h=>{if(!c.value)return;f++;const m=f;let _=!1;o&&Promise.resolve().then(()=>{o.value=!0});try{const C=await e(I=>{h(()=>{o&&(o.value=!1),_||I()})});m===f&&(a.value=C)}catch(C){l(C)}finally{o&&m===f&&(o.value=!1),_=!0}}),s?re(()=>(c.value=!0,a.value)):a}function mi(e){var t;const n=Fe(e);return(t=n==null?void 0:n.$el)!=null?t:n}const Oe=di?window:void 0;function Ct(...e){let t,n,r,s;if(typeof e[0]=="string"||Array.isArray(e[0])?([n,r,s]=e,t=Oe):[t,n,r,s]=e,!t)return Bt;Array.isArray(n)||(n=[n]),Array.isArray(r)||(r=[r]);const o=[],i=()=>{o.forEach(f=>f()),o.length=0},l=(f,h,m,_)=>(f.addEventListener(h,m,_),()=>f.removeEventListener(h,m,_)),c=Ne(()=>[mi(t),Fe(s)],([f,h])=>{if(i(),!f)return;const m=da(h)?{...h}:h;o.push(...n.flatMap(_=>r.map(C=>l(f,_,C,m))))},{immediate:!0,flush:"post"}),a=()=>{c(),i()};return kr(a),a}function va(e){return typeof e=="function"?e:typeof e=="string"?t=>t.key===e:Array.isArray(e)?t=>e.includes(t.key):()=>!0}function Au(...e){let t,n,r={};e.length===3?(t=e[0],n=e[1],r=e[2]):e.length===2?typeof e[1]=="object"?(t=!0,n=e[0],r=e[1]):(t=e[0],n=e[1]):(t=!0,n=e[0]);const{target:s=Oe,eventName:o="keydown",passive:i=!1,dedupe:l=!1}=r,c=va(t);return Ct(s,o,f=>{f.repeat&&Fe(l)||c(f)&&n(f)},i)}function ba(){const e=se(!1),t=jn();return t&&xt(()=>{e.value=!0},t),e}function wa(e){const t=ba();return re(()=>(t.value,!!e()))}function yi(e,t={}){const{window:n=Oe}=t,r=wa(()=>n&&"matchMedia"in n&&typeof n.matchMedia=="function");let s;const o=se(!1),i=a=>{o.value=a.matches},l=()=>{s&&("removeEventListener"in s?s.removeEventListener("change",i):s.removeListener(i))},c=Ur(()=>{r.value&&(l(),s=n.matchMedia(Fe(e)),"addEventListener"in s?s.addEventListener("change",i):s.addListener(i),o.value=s.matches)});return kr(()=>{c(),l(),s=void 0}),o}const ln=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},cn="__vueuse_ssr_handlers__",Ea=Ca();function Ca(){return cn in ln||(ln[cn]=ln[cn]||{}),ln[cn]}function _i(e,t){return Ea[e]||t}function xa(e){return e==null?"any":e instanceof Set?"set":e instanceof Map?"map":e instanceof Date?"date":typeof e=="boolean"?"boolean":typeof e=="string"?"string":typeof e=="object"?"object":Number.isNaN(e)?"any":"number"}const Sa={boolean:{read:e=>e==="true",write:e=>String(e)},object:{read:e=>JSON.parse(e),write:e=>JSON.stringify(e)},number:{read:e=>Number.parseFloat(e),write:e=>String(e)},any:{read:e=>e,write:e=>String(e)},string:{read:e=>e,write:e=>String(e)},map:{read:e=>new Map(JSON.parse(e)),write:e=>JSON.stringify(Array.from(e.entries()))},set:{read:e=>new Set(JSON.parse(e)),write:e=>JSON.stringify(Array.from(e))},date:{read:e=>new Date(e),write:e=>e.toISOString()}},Ks="vueuse-storage";function Wr(e,t,n,r={}){var s;const{flush:o="pre",deep:i=!0,listenToStorageChanges:l=!0,writeDefaults:c=!0,mergeDefaults:a=!1,shallow:f,window:h=Oe,eventFilter:m,onError:_=w=>{console.error(w)},initOnMounted:C}=r,I=(f?Fr:se)(typeof t=="function"?t():t);if(!n)try{n=_i("getDefaultStorage",()=>{var w;return(w=Oe)==null?void 0:w.localStorage})()}catch(w){_(w)}if(!n)return I;const H=Fe(t),W=xa(H),D=(s=r.serializer)!=null?s:Sa[W],{pause:p,resume:y}=_a(I,()=>A(I.value),{flush:o,deep:i,eventFilter:m});h&&l&&Kr(()=>{Ct(h,"storage",$),Ct(h,Ks,L),C&&$()}),C||$();function M(w,N){h&&h.dispatchEvent(new CustomEvent(Ks,{detail:{key:e,oldValue:w,newValue:N,storageArea:n}}))}function A(w){try{const N=n.getItem(e);if(w==null)M(N,null),n.removeItem(e);else{const T=D.write(w);N!==T&&(n.setItem(e,T),M(N,T))}}catch(N){_(N)}}function F(w){const N=w?w.newValue:n.getItem(e);if(N==null)return c&&H!=null&&n.setItem(e,D.write(H)),H;if(!w&&a){const T=D.read(N);return typeof a=="function"?a(T,H):W==="object"&&!Array.isArray(T)?{...H,...T}:T}else return typeof N!="string"?N:D.read(N)}function $(w){if(!(w&&w.storageArea!==n)){if(w&&w.key==null){I.value=H;return}if(!(w&&w.key!==e)){p();try{(w==null?void 0:w.newValue)!==D.write(I.value)&&(I.value=F(w))}catch(N){_(N)}finally{w?In(y):y()}}}}function L(w){$(w.detail)}return I}function vi(e){return yi("(prefers-color-scheme: dark)",e)}function Ta(e={}){const{selector:t="html",attribute:n="class",initialValue:r="auto",window:s=Oe,storage:o,storageKey:i="vueuse-color-scheme",listenToStorageChanges:l=!0,storageRef:c,emitAuto:a,disableTransition:f=!0}=e,h={auto:"",light:"light",dark:"dark",...e.modes||{}},m=vi({window:s}),_=re(()=>m.value?"dark":"light"),C=c||(i==null?pi(r):Wr(i,r,o,{window:s,listenToStorageChanges:l})),I=re(()=>C.value==="auto"?_.value:C.value),H=_i("updateHTMLAttrs",(y,M,A)=>{const F=typeof y=="string"?s==null?void 0:s.document.querySelector(y):mi(y);if(!F)return;let $;if(f&&($=s.document.createElement("style"),$.appendChild(document.createTextNode("*,*::before,*::after{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;-ms-transition:none!important;transition:none!important}")),s.document.head.appendChild($)),M==="class"){const L=A.split(/\s/g);Object.values(h).flatMap(w=>(w||"").split(/\s/g)).filter(Boolean).forEach(w=>{L.includes(w)?F.classList.add(w):F.classList.remove(w)})}else F.setAttribute(M,A);f&&(s.getComputedStyle($).opacity,document.head.removeChild($))});function W(y){var M;H(t,n,(M=h[y])!=null?M:y)}function D(y){e.onChanged?e.onChanged(y,W):W(y)}Ne(I,D,{flush:"post",immediate:!0}),Kr(()=>D(I.value));const p=re({get(){return a?C.value:I.value},set(y){C.value=y}});try{return Object.assign(p,{store:C,system:_,state:I})}catch{return p}}function Aa(e={}){const{valueDark:t="dark",valueLight:n="",window:r=Oe}=e,s=Ta({...e,onChanged:(l,c)=>{var a;e.onChanged?(a=e.onChanged)==null||a.call(e,l==="dark",c,l):c(l)},modes:{dark:t,light:n}}),o=re(()=>s.system?s.system.value:vi({window:r}).value?"dark":"light");return re({get(){return s.value==="dark"},set(l){const c=l?"dark":"light";o.value===c?s.value="auto":s.value=c}})}function Zn(e){return typeof Window<"u"&&e instanceof Window?e.document.documentElement:typeof Document<"u"&&e instanceof Document?e.documentElement:e}function Ru(e,t,n={}){const{window:r=Oe}=n;return Wr(e,t,r==null?void 0:r.localStorage,n)}function bi(e){const t=window.getComputedStyle(e);if(t.overflowX==="scroll"||t.overflowY==="scroll"||t.overflowX==="auto"&&e.clientWidth1?!0:(t.preventDefault&&t.preventDefault(),!1)}const er=new WeakMap;function Ou(e,t=!1){const n=se(t);let r=null,s="";Ne(pi(e),l=>{const c=Zn(Fe(l));if(c){const a=c;if(er.get(a)||er.set(a,a.style.overflow),a.style.overflow!=="hidden"&&(s=a.style.overflow),a.style.overflow==="hidden")return n.value=!0;if(n.value)return a.style.overflow="hidden"}},{immediate:!0});const o=()=>{const l=Zn(Fe(e));!l||n.value||(ks&&(r=Ct(l,"touchmove",c=>{Ra(c)},{passive:!1})),l.style.overflow="hidden",n.value=!0)},i=()=>{const l=Zn(Fe(e));!l||!n.value||(ks&&(r==null||r()),l.style.overflow=s,er.delete(l),n.value=!1)};return kr(i),re({get(){return n.value},set(l){l?o():i()}})}function Lu(e,t,n={}){const{window:r=Oe}=n;return Wr(e,t,r==null?void 0:r.sessionStorage,n)}function Iu(e={}){const{window:t=Oe,behavior:n="auto"}=e;if(!t)return{x:se(0),y:se(0)};const r=se(t.scrollX),s=se(t.scrollY),o=re({get(){return r.value},set(l){scrollTo({left:l,behavior:n})}}),i=re({get(){return s.value},set(l){scrollTo({top:l,behavior:n})}});return Ct(t,"scroll",()=>{r.value=t.scrollX,s.value=t.scrollY},{capture:!1,passive:!0}),{x:o,y:i}}function Mu(e={}){const{window:t=Oe,initialWidth:n=Number.POSITIVE_INFINITY,initialHeight:r=Number.POSITIVE_INFINITY,listenOrientation:s=!0,includeScrollbar:o=!0}=e,i=se(n),l=se(r),c=()=>{t&&(o?(i.value=t.innerWidth,l.value=t.innerHeight):(i.value=t.document.documentElement.clientWidth,l.value=t.document.documentElement.clientHeight))};if(c(),Kr(c),Ct("resize",c,{passive:!0}),s){const a=yi("(orientation: portrait)");Ne(a,()=>c())}return{width:i,height:l}}var tr={BASE_URL:"/GeometryOps.jl/dev/",MODE:"production",DEV:!1,PROD:!0,SSR:!1},nr={};const wi=/^(?:[a-z]+:|\/\/)/i,Oa="vitepress-theme-appearance",La=/#.*$/,Ia=/[?#].*$/,Ma=/(?:(^|\/)index)?\.(?:md|html)$/,he=typeof document<"u",Ei={relativePath:"404.md",filePath:"",title:"404",description:"Not Found",headers:[],frontmatter:{sidebar:!1,layout:"page"},lastUpdated:0,isNotFound:!0};function Pa(e,t,n=!1){if(t===void 0)return!1;if(e=Ws(`/${e}`),n)return new RegExp(t).test(e);if(Ws(t)!==e)return!1;const r=t.match(La);return r?(he?location.hash:"")===r[0]:!0}function Ws(e){return decodeURI(e).replace(Ia,"").replace(Ma,"$1")}function Na(e){return wi.test(e)}function Fa(e,t){return Object.keys((e==null?void 0:e.locales)||{}).find(n=>n!=="root"&&!Na(n)&&Pa(t,`/${n}/`,!0))||"root"}function $a(e,t){var r,s,o,i,l,c,a;const n=Fa(e,t);return Object.assign({},e,{localeIndex:n,lang:((r=e.locales[n])==null?void 0:r.lang)??e.lang,dir:((s=e.locales[n])==null?void 0:s.dir)??e.dir,title:((o=e.locales[n])==null?void 0:o.title)??e.title,titleTemplate:((i=e.locales[n])==null?void 0:i.titleTemplate)??e.titleTemplate,description:((l=e.locales[n])==null?void 0:l.description)??e.description,head:xi(e.head,((c=e.locales[n])==null?void 0:c.head)??[]),themeConfig:{...e.themeConfig,...(a=e.locales[n])==null?void 0:a.themeConfig}})}function Ci(e,t){const n=t.title||e.title,r=t.titleTemplate??e.titleTemplate;if(typeof r=="string"&&r.includes(":title"))return r.replace(/:title/g,n);const s=Ha(e.title,r);return n===s.slice(3)?n:`${n}${s}`}function Ha(e,t){return t===!1?"":t===!0||t===void 0?` | ${e}`:e===t?"":` | ${t}`}function ja(e,t){const[n,r]=t;if(n!=="meta")return!1;const s=Object.entries(r)[0];return s==null?!1:e.some(([o,i])=>o===n&&i[s[0]]===s[1])}function xi(e,t){return[...e.filter(n=>!ja(t,n)),...t]}const Va=/[\u0000-\u001F"#$&*+,:;<=>?[\]^`{|}\u007F]/g,Da=/^[a-z]:/i;function qs(e){const t=Da.exec(e),n=t?t[0]:"";return n+e.slice(n.length).replace(Va,"_").replace(/(^|\/)_+(?=[^/]*$)/,"$1")}const rr=new Set;function Ua(e){if(rr.size===0){const n=typeof process=="object"&&(nr==null?void 0:nr.VITE_EXTRA_EXTENSIONS)||(tr==null?void 0:tr.VITE_EXTRA_EXTENSIONS)||"";("3g2,3gp,aac,ai,apng,au,avif,bin,bmp,cer,class,conf,crl,css,csv,dll,doc,eps,epub,exe,gif,gz,ics,ief,jar,jpe,jpeg,jpg,js,json,jsonld,m4a,man,mid,midi,mjs,mov,mp2,mp3,mp4,mpe,mpeg,mpg,mpp,oga,ogg,ogv,ogx,opus,otf,p10,p7c,p7m,p7s,pdf,png,ps,qt,roff,rtf,rtx,ser,svg,t,tif,tiff,tr,ts,tsv,ttf,txt,vtt,wav,weba,webm,webp,woff,woff2,xhtml,xml,yaml,yml,zip"+(n&&typeof n=="string"?","+n:"")).split(",").forEach(r=>rr.add(r))}const t=e.split(".").pop();return t==null||!rr.has(t.toLowerCase())}function Pu(e){return e.replace(/[|\\{}()[\]^$+*?.]/g,"\\$&").replace(/-/g,"\\x2d")}const Ba=Symbol(),ut=Fr(ua);function Nu(e){const t=re(()=>$a(ut.value,e.data.relativePath)),n=t.value.appearance,r=n==="force-dark"?se(!0):n?Aa({storageKey:Oa,initialValue:()=>typeof n=="string"?n:"auto",...typeof n=="object"?n:{}}):se(!1),s=se(he?location.hash:"");return he&&window.addEventListener("hashchange",()=>{s.value=location.hash}),Ne(()=>e.data,()=>{s.value=he?location.hash:""}),{site:t,theme:re(()=>t.value.themeConfig),page:re(()=>e.data),frontmatter:re(()=>e.data.frontmatter),params:re(()=>e.data.params),lang:re(()=>t.value.lang),dir:re(()=>e.data.frontmatter.dir||t.value.dir),localeIndex:re(()=>t.value.localeIndex||"root"),title:re(()=>Ci(t.value,e.data)),description:re(()=>e.data.description||t.value.description),isDark:r,hash:re(()=>s.value)}}function ka(){const e=wt(Ba);if(!e)throw new Error("vitepress data not properly injected in app");return e}function Ka(e,t){return`${e}${t}`.replace(/\/+/g,"/")}function Gs(e){return wi.test(e)||!e.startsWith("/")?e:Ka(ut.value.base,e)}function Wa(e){let t=e.replace(/\.html$/,"");if(t=decodeURIComponent(t),t=t.replace(/\/$/,"/index"),he){const n="/GeometryOps.jl/dev/";t=qs(t.slice(n.length).replace(/\//g,"_")||"index")+".md";let r=__VP_HASH_MAP__[t.toLowerCase()];if(r||(t=t.endsWith("_index.md")?t.slice(0,-9)+".md":t.slice(0,-3)+"_index.md",r=__VP_HASH_MAP__[t.toLowerCase()]),!r)return null;t=`${n}assets/${t}.${r}.js`}else t=`./${qs(t.slice(1).replace(/\//g,"_"))}.md.js`;return t}let gn=[];function Fu(e){gn.push(e),$n(()=>{gn=gn.filter(t=>t!==e)})}function qa(){let e=ut.value.scrollOffset,t=0,n=24;if(typeof e=="object"&&"padding"in e&&(n=e.padding,e=e.selector),typeof e=="number")t=e;else if(typeof e=="string")t=zs(e,n);else if(Array.isArray(e))for(const r of e){const s=zs(r,n);if(s){t=s;break}}return t}function zs(e,t){const n=document.querySelector(e);if(!n)return 0;const r=n.getBoundingClientRect().bottom;return r<0?0:r+t}const Ga=Symbol(),Si="http://a.com",za=()=>({path:"/",component:null,data:Ei});function $u(e,t){const n=On(za()),r={route:n,go:s};async function s(l=he?location.href:"/"){var c,a;l=sr(l),await((c=r.onBeforeRouteChange)==null?void 0:c.call(r,l))!==!1&&(he&&l!==sr(location.href)&&(history.replaceState({scrollPosition:window.scrollY},""),history.pushState({},"",l)),await i(l),await((a=r.onAfterRouteChanged)==null?void 0:a.call(r,l)))}let o=null;async function i(l,c=0,a=!1){var m;if(await((m=r.onBeforePageLoad)==null?void 0:m.call(r,l))===!1)return;const f=new URL(l,Si),h=o=f.pathname;try{let _=await e(h);if(!_)throw new Error(`Page not found: ${h}`);if(o===h){o=null;const{default:C,__pageData:I}=_;if(!C)throw new Error(`Invalid route component: ${C}`);n.path=he?h:Gs(h),n.component=dn(C),n.data=dn(I),he&&In(()=>{let H=ut.value.base+I.relativePath.replace(/(?:(^|\/)index)?\.md$/,"$1");if(!ut.value.cleanUrls&&!H.endsWith("/")&&(H+=".html"),H!==f.pathname&&(f.pathname=H,l=H+f.search+f.hash,history.replaceState({},"",l)),f.hash&&!c){let W=null;try{W=document.getElementById(decodeURIComponent(f.hash).slice(1))}catch(D){console.warn(D)}if(W){Xs(W,f.hash);return}}window.scrollTo(0,c)})}}catch(_){if(!/fetch|Page not found/.test(_.message)&&!/^\/404(\.html|\/)?$/.test(l)&&console.error(_),!a)try{const C=await fetch(ut.value.base+"hashmap.json");window.__VP_HASH_MAP__=await C.json(),await i(l,c,!0);return}catch{}if(o===h){o=null,n.path=he?h:Gs(h),n.component=t?dn(t):null;const C=he?h.replace(/(^|\/)$/,"$1index").replace(/(\.html)?$/,".md").replace(/^\//,""):"404.md";n.data={...Ei,relativePath:C}}}}return he&&(history.state===null&&history.replaceState({},""),window.addEventListener("click",l=>{if(l.target.closest("button"))return;const a=l.target.closest("a");if(a&&!a.closest(".vp-raw")&&(a instanceof SVGElement||!a.download)){const{target:f}=a,{href:h,origin:m,pathname:_,hash:C,search:I}=new URL(a.href instanceof SVGAnimatedString?a.href.animVal:a.href,a.baseURI),H=new URL(location.href);!l.ctrlKey&&!l.shiftKey&&!l.altKey&&!l.metaKey&&!f&&m===H.origin&&Ua(_)&&(l.preventDefault(),_===H.pathname&&I===H.search?(C!==H.hash&&(history.pushState({},"",h),window.dispatchEvent(new HashChangeEvent("hashchange",{oldURL:H.href,newURL:h}))),C?Xs(a,C,a.classList.contains("header-anchor")):window.scrollTo(0,0)):s(h))}},{capture:!0}),window.addEventListener("popstate",async l=>{var c;l.state!==null&&(await i(sr(location.href),l.state&&l.state.scrollPosition||0),(c=r.onAfterRouteChanged)==null||c.call(r,location.href))}),window.addEventListener("hashchange",l=>{l.preventDefault()})),r}function Xa(){const e=wt(Ga);if(!e)throw new Error("useRouter() is called without provider.");return e}function Ti(){return Xa().route}function Xs(e,t,n=!1){let r=null;try{r=e.classList.contains("header-anchor")?e:document.getElementById(decodeURIComponent(t).slice(1))}catch(s){console.warn(s)}if(r){let s=function(){!n||Math.abs(i-window.scrollY)>window.innerHeight?window.scrollTo(0,i):window.scrollTo({left:0,top:i,behavior:"smooth"})};const o=parseInt(window.getComputedStyle(r).paddingTop,10),i=window.scrollY+r.getBoundingClientRect().top-qa()+o;requestAnimationFrame(s)}}function sr(e){const t=new URL(e,Si);return t.pathname=t.pathname.replace(/(^|\/)index(\.html)?$/,"$1"),ut.value.cleanUrls?t.pathname=t.pathname.replace(/\.html$/,""):!t.pathname.endsWith("/")&&!t.pathname.endsWith(".html")&&(t.pathname+=".html"),t.pathname+t.search+t.hash}const or=()=>gn.forEach(e=>e()),Hu=Hr({name:"VitePressContent",props:{as:{type:[Object,String],default:"div"}},setup(e){const t=Ti(),{site:n}=ka();return()=>br(e.as,n.value.contentProps??{style:{position:"relative"}},[t.component?br(t.component,{onVnodeMounted:or,onVnodeUpdated:or,onVnodeUnmounted:or}):"404 Page Not Found"])}}),ju=Hr({setup(e,{slots:t}){const n=se(!1);return xt(()=>{n.value=!0}),()=>n.value&&t.default?t.default():null}});function Vu(){he&&window.addEventListener("click",e=>{var n;const t=e.target;if(t.matches(".vp-code-group input")){const r=(n=t.parentElement)==null?void 0:n.parentElement;if(!r)return;const s=Array.from(r.querySelectorAll("input")).indexOf(t);if(s<0)return;const o=r.querySelector(".blocks");if(!o)return;const i=Array.from(o.children).find(a=>a.classList.contains("active"));if(!i)return;const l=o.children[s];if(!l||i===l)return;i.classList.remove("active"),l.classList.add("active");const c=r==null?void 0:r.querySelector(`label[for="${t.id}"]`);c==null||c.scrollIntoView({block:"nearest"})}})}function Du(){if(he){const e=new WeakMap;window.addEventListener("click",t=>{var r;const n=t.target;if(n.matches('div[class*="language-"] > button.copy')){const s=n.parentElement,o=(r=n.nextElementSibling)==null?void 0:r.nextElementSibling;if(!s||!o)return;const i=/language-(shellscript|shell|bash|sh|zsh)/.test(s.className),l=[".vp-copy-ignore",".diff.remove"],c=o.cloneNode(!0);c.querySelectorAll(l.join(",")).forEach(f=>f.remove());let a=c.textContent||"";i&&(a=a.replace(/^ *(\$|>) /gm,"").trim()),Ya(a).then(()=>{n.classList.add("copied"),clearTimeout(e.get(n));const f=setTimeout(()=>{n.classList.remove("copied"),n.blur(),e.delete(n)},2e3);e.set(n,f)})}})}}async function Ya(e){try{return navigator.clipboard.writeText(e)}catch{const t=document.createElement("textarea"),n=document.activeElement;t.value=e,t.setAttribute("readonly",""),t.style.contain="strict",t.style.position="absolute",t.style.left="-9999px",t.style.fontSize="12pt";const r=document.getSelection(),s=r?r.rangeCount>0&&r.getRangeAt(0):null;document.body.appendChild(t),t.select(),t.selectionStart=0,t.selectionEnd=e.length,document.execCommand("copy"),document.body.removeChild(t),s&&(r.removeAllRanges(),r.addRange(s)),n&&n.focus()}}function Uu(e,t){let n=!0,r=[];const s=o=>{if(n){n=!1,o.forEach(l=>{const c=ir(l);for(const a of document.head.children)if(a.isEqualNode(c)){r.push(a);return}});return}const i=o.map(ir);r.forEach((l,c)=>{const a=i.findIndex(f=>f==null?void 0:f.isEqualNode(l??null));a!==-1?delete i[a]:(l==null||l.remove(),delete r[c])}),i.forEach(l=>l&&document.head.appendChild(l)),r=[...r,...i].filter(Boolean)};Ur(()=>{const o=e.data,i=t.value,l=o&&o.description,c=o&&o.frontmatter.head||[],a=Ci(i,o);a!==document.title&&(document.title=a);const f=l||i.description;let h=document.querySelector("meta[name=description]");h?h.getAttribute("content")!==f&&h.setAttribute("content",f):ir(["meta",{name:"description",content:f}]),s(xi(i.head,Qa(c)))})}function ir([e,t,n]){const r=document.createElement(e);for(const s in t)r.setAttribute(s,t[s]);return n&&(r.innerHTML=n),e==="script"&&!t.async&&(r.async=!1),r}function Ja(e){return e[0]==="meta"&&e[1]&&e[1].name==="description"}function Qa(e){return e.filter(t=>!Ja(t))}const lr=new Set,Ai=()=>document.createElement("link"),Za=e=>{const t=Ai();t.rel="prefetch",t.href=e,document.head.appendChild(t)},eu=e=>{const t=new XMLHttpRequest;t.open("GET",e,t.withCredentials=!0),t.send()};let an;const tu=he&&(an=Ai())&&an.relList&&an.relList.supports&&an.relList.supports("prefetch")?Za:eu;function Bu(){if(!he||!window.IntersectionObserver)return;let e;if((e=navigator.connection)&&(e.saveData||/2g/.test(e.effectiveType)))return;const t=window.requestIdleCallback||setTimeout;let n=null;const r=()=>{n&&n.disconnect(),n=new IntersectionObserver(o=>{o.forEach(i=>{if(i.isIntersecting){const l=i.target;n.unobserve(l);const{pathname:c}=l;if(!lr.has(c)){lr.add(c);const a=Wa(c);a&&tu(a)}}})}),t(()=>{document.querySelectorAll("#app a").forEach(o=>{const{hostname:i,pathname:l}=new URL(o.href instanceof SVGAnimatedString?o.href.animVal:o.href,o.baseURI),c=l.match(/\.\w+$/);c&&c[0]!==".html"||o.target!=="_blank"&&i===location.hostname&&(l!==location.pathname?n.observe(o):lr.add(l))})})};xt(r);const s=Ti();Ne(()=>s.path,r),$n(()=>{n&&n.disconnect()})}export{bu as $,hu as A,Fl as B,qa as C,ou as D,cu as E,_e as F,Fr as G,Fu as H,ie as I,iu as J,wi as K,Ti as L,Ec as M,wt as N,Mu as O,Sr as P,Au as Q,In as R,Iu as S,li as T,he as U,Ln as V,au as W,xu as X,Ou as Y,Xl as Z,Cu as _,ri as a,fu as a0,vu as a1,du as a2,On as a3,vl as a4,br as a5,mu as a6,Uu as a7,Ga as a8,Nu as a9,Ba as aa,Hu as ab,ju as ac,ut as ad,Eu as ae,$u as af,Wa as ag,Bu as ah,Du as ai,Vu as aj,mi as ak,kr as al,Tu as am,Lu as an,Ru as ao,Su as ap,Xa as aq,Ct as ar,Lo as as,lu as at,_u as au,de as av,pu as aw,dn as ax,wu as ay,Pu as az,ei as b,gu as c,Hr as d,yu as e,Ua as f,Gs as g,re as h,Na as i,ni as j,bo as k,su as l,Pa as m,Tr as n,Qo as o,ru as p,yi as q,uu as r,se as s,nu as t,ka as u,Ne as v,Al as w,Ur as x,xt as y,$n as z}; diff --git a/dev/assets/chunks/framework.p73Oc50P.js b/dev/assets/chunks/framework.p73Oc50P.js deleted file mode 100644 index bebbe8a11..000000000 --- a/dev/assets/chunks/framework.p73Oc50P.js +++ /dev/null @@ -1,17 +0,0 @@ -/** -* @vue/shared v3.4.29 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**//*! #__NO_SIDE_EFFECTS__ */function wr(e,t){const n=new Set(e.split(","));return r=>n.has(r)}const te={},mt=[],xe=()=>{},Li=()=>!1,kt=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),Er=e=>e.startsWith("onUpdate:"),le=Object.assign,Cr=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},Ii=Object.prototype.hasOwnProperty,Y=(e,t)=>Ii.call(e,t),k=Array.isArray,yt=e=>Sn(e)==="[object Map]",Ys=e=>Sn(e)==="[object Set]",K=e=>typeof e=="function",oe=e=>typeof e=="string",ut=e=>typeof e=="symbol",Z=e=>e!==null&&typeof e=="object",Js=e=>(Z(e)||K(e))&&K(e.then)&&K(e.catch),Qs=Object.prototype.toString,Sn=e=>Qs.call(e),Mi=e=>Sn(e).slice(8,-1),Zs=e=>Sn(e)==="[object Object]",xr=e=>oe(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,_t=wr(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),Tn=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},Pi=/-(\w)/g,$e=Tn(e=>e.replace(Pi,(t,n)=>n?n.toUpperCase():"")),Ni=/\B([A-Z])/g,ft=Tn(e=>e.replace(Ni,"-$1").toLowerCase()),An=Tn(e=>e.charAt(0).toUpperCase()+e.slice(1)),un=Tn(e=>e?`on${An(e)}`:""),Je=(e,t)=>!Object.is(e,t),fn=(e,...t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:r,value:n})},cr=e=>{const t=parseFloat(e);return isNaN(t)?e:t},Fi=e=>{const t=oe(e)?Number(e):NaN;return isNaN(t)?e:t};let Jr;const to=()=>Jr||(Jr=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function Sr(e){if(k(e)){const t={};for(let n=0;n{if(n){const r=n.split(Hi);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}function Tr(e){let t="";if(oe(e))t=e;else if(k(e))for(let n=0;noe(e)?e:e==null?"":k(e)||Z(e)&&(e.toString===Qs||!K(e.toString))?JSON.stringify(e,ro,2):String(e),ro=(e,t)=>t&&t.__v_isRef?ro(e,t.value):yt(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[r,s],o)=>(n[kn(r,o)+" =>"]=s,n),{})}:Ys(t)?{[`Set(${t.size})`]:[...t.values()].map(n=>kn(n))}:ut(t)?kn(t):Z(t)&&!k(t)&&!Zs(t)?String(t):t,kn=(e,t="")=>{var n;return ut(e)?`Symbol(${(n=e.description)!=null?n:t})`:e};/** -* @vue/reactivity v3.4.29 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/let we;class Bi{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this.parent=we,!t&&we&&(this.index=(we.scopes||(we.scopes=[])).push(this)-1)}get active(){return this._active}run(t){if(this._active){const n=we;try{return we=this,t()}finally{we=n}}}on(){we=this}off(){we=this.parent}stop(t){if(this._active){let n,r;for(n=0,r=this.effects.length;n=5)break}}this._dirtyLevel===1&&(this._dirtyLevel=0),et()}return this._dirtyLevel>=5}set dirty(t){this._dirtyLevel=t?5:0}run(){if(this._dirtyLevel=0,!this.active)return this.fn();let t=Xe,n=lt;try{return Xe=!0,lt=this,this._runnings++,Qr(this),this.fn()}finally{Zr(this),this._runnings--,lt=n,Xe=t}}stop(){this.active&&(Qr(this),Zr(this),this.onStop&&this.onStop(),this.active=!1)}}function Wi(e){return e.value}function Qr(e){e._trackId++,e._depsLength=0}function Zr(e){if(e.deps.length>e._depsLength){for(let t=e._depsLength;t0){r._dirtyLevel=2;continue}let s;r._dirtyLevel{const n=new Map;return n.cleanup=e,n.computed=t,n},mn=new WeakMap,ct=Symbol(""),fr=Symbol("");function ve(e,t,n){if(Xe&<){let r=mn.get(e);r||mn.set(e,r=new Map);let s=r.get(n);s||r.set(n,s=ao(()=>r.delete(n))),lo(lt,s)}}function De(e,t,n,r,s,o){const i=mn.get(e);if(!i)return;let l=[];if(t==="clear")l=[...i.values()];else if(n==="length"&&k(e)){const c=Number(r);i.forEach((a,f)=>{(f==="length"||!ut(f)&&f>=c)&&l.push(a)})}else switch(n!==void 0&&l.push(i.get(n)),t){case"add":k(e)?xr(n)&&l.push(i.get("length")):(l.push(i.get(ct)),yt(e)&&l.push(i.get(fr)));break;case"delete":k(e)||(l.push(i.get(ct)),yt(e)&&l.push(i.get(fr)));break;case"set":yt(e)&&l.push(i.get(ct));break}Rr();for(const c of l)c&&co(c,5);Or()}function qi(e,t){const n=mn.get(e);return n&&n.get(t)}const Gi=wr("__proto__,__v_isRef,__isVue"),uo=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(ut)),es=zi();function zi(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const r=J(this);for(let o=0,i=this.length;o{e[t]=function(...n){Ze(),Rr();const r=J(this)[t].apply(this,n);return Or(),et(),r}}),e}function Xi(e){ut(e)||(e=String(e));const t=J(this);return ve(t,"has",e),t.hasOwnProperty(e)}class fo{constructor(t=!1,n=!1){this._isReadonly=t,this._isShallow=n}get(t,n,r){const s=this._isReadonly,o=this._isShallow;if(n==="__v_isReactive")return!s;if(n==="__v_isReadonly")return s;if(n==="__v_isShallow")return o;if(n==="__v_raw")return r===(s?o?cl:mo:o?go:po).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(r)?t:void 0;const i=k(t);if(!s){if(i&&Y(es,n))return Reflect.get(es,n,r);if(n==="hasOwnProperty")return Xi}const l=Reflect.get(t,n,r);return(ut(n)?uo.has(n):Gi(n))||(s||ve(t,"get",n),o)?l:de(l)?i&&xr(n)?l:l.value:Z(l)?s?Ln(l):On(l):l}}class ho extends fo{constructor(t=!1){super(!1,t)}set(t,n,r,s){let o=t[n];if(!this._isShallow){const c=$t(o);if(!yn(r)&&!$t(r)&&(o=J(o),r=J(r)),!k(t)&&de(o)&&!de(r))return c?!1:(o.value=r,!0)}const i=k(t)&&xr(n)?Number(n)e,Rn=e=>Reflect.getPrototypeOf(e);function Yt(e,t,n=!1,r=!1){e=e.__v_raw;const s=J(e),o=J(t);n||(Je(t,o)&&ve(s,"get",t),ve(s,"get",o));const{has:i}=Rn(s),l=r?Lr:n?Pr:Ht;if(i.call(s,t))return l(e.get(t));if(i.call(s,o))return l(e.get(o));e!==s&&e.get(t)}function Jt(e,t=!1){const n=this.__v_raw,r=J(n),s=J(e);return t||(Je(e,s)&&ve(r,"has",e),ve(r,"has",s)),e===s?n.has(e):n.has(e)||n.has(s)}function Qt(e,t=!1){return e=e.__v_raw,!t&&ve(J(e),"iterate",ct),Reflect.get(e,"size",e)}function ts(e){e=J(e);const t=J(this);return Rn(t).has.call(t,e)||(t.add(e),De(t,"add",e,e)),this}function ns(e,t){t=J(t);const n=J(this),{has:r,get:s}=Rn(n);let o=r.call(n,e);o||(e=J(e),o=r.call(n,e));const i=s.call(n,e);return n.set(e,t),o?Je(t,i)&&De(n,"set",e,t):De(n,"add",e,t),this}function rs(e){const t=J(this),{has:n,get:r}=Rn(t);let s=n.call(t,e);s||(e=J(e),s=n.call(t,e)),r&&r.call(t,e);const o=t.delete(e);return s&&De(t,"delete",e,void 0),o}function ss(){const e=J(this),t=e.size!==0,n=e.clear();return t&&De(e,"clear",void 0,void 0),n}function Zt(e,t){return function(r,s){const o=this,i=o.__v_raw,l=J(i),c=t?Lr:e?Pr:Ht;return!e&&ve(l,"iterate",ct),i.forEach((a,f)=>r.call(s,c(a),c(f),o))}}function en(e,t,n){return function(...r){const s=this.__v_raw,o=J(s),i=yt(o),l=e==="entries"||e===Symbol.iterator&&i,c=e==="keys"&&i,a=s[e](...r),f=n?Lr:t?Pr:Ht;return!t&&ve(o,"iterate",c?fr:ct),{next(){const{value:h,done:m}=a.next();return m?{value:h,done:m}:{value:l?[f(h[0]),f(h[1])]:f(h),done:m}},[Symbol.iterator](){return this}}}}function Be(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function el(){const e={get(o){return Yt(this,o)},get size(){return Qt(this)},has:Jt,add:ts,set:ns,delete:rs,clear:ss,forEach:Zt(!1,!1)},t={get(o){return Yt(this,o,!1,!0)},get size(){return Qt(this)},has:Jt,add:ts,set:ns,delete:rs,clear:ss,forEach:Zt(!1,!0)},n={get(o){return Yt(this,o,!0)},get size(){return Qt(this,!0)},has(o){return Jt.call(this,o,!0)},add:Be("add"),set:Be("set"),delete:Be("delete"),clear:Be("clear"),forEach:Zt(!0,!1)},r={get(o){return Yt(this,o,!0,!0)},get size(){return Qt(this,!0)},has(o){return Jt.call(this,o,!0)},add:Be("add"),set:Be("set"),delete:Be("delete"),clear:Be("clear"),forEach:Zt(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(o=>{e[o]=en(o,!1,!1),n[o]=en(o,!0,!1),t[o]=en(o,!1,!0),r[o]=en(o,!0,!0)}),[e,n,t,r]}const[tl,nl,rl,sl]=el();function Ir(e,t){const n=t?e?sl:rl:e?nl:tl;return(r,s,o)=>s==="__v_isReactive"?!e:s==="__v_isReadonly"?e:s==="__v_raw"?r:Reflect.get(Y(n,s)&&s in r?n:r,s,o)}const ol={get:Ir(!1,!1)},il={get:Ir(!1,!0)},ll={get:Ir(!0,!1)};const po=new WeakMap,go=new WeakMap,mo=new WeakMap,cl=new WeakMap;function al(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function ul(e){return e.__v_skip||!Object.isExtensible(e)?0:al(Mi(e))}function On(e){return $t(e)?e:Mr(e,!1,Ji,ol,po)}function fl(e){return Mr(e,!1,Zi,il,go)}function Ln(e){return Mr(e,!0,Qi,ll,mo)}function Mr(e,t,n,r,s){if(!Z(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const o=s.get(e);if(o)return o;const i=ul(e);if(i===0)return e;const l=new Proxy(e,i===2?r:n);return s.set(e,l),l}function Rt(e){return $t(e)?Rt(e.__v_raw):!!(e&&e.__v_isReactive)}function $t(e){return!!(e&&e.__v_isReadonly)}function yn(e){return!!(e&&e.__v_isShallow)}function yo(e){return e?!!e.__v_raw:!1}function J(e){const t=e&&e.__v_raw;return t?J(t):e}function dn(e){return Object.isExtensible(e)&&eo(e,"__v_skip",!0),e}const Ht=e=>Z(e)?On(e):e,Pr=e=>Z(e)?Ln(e):e;class _o{constructor(t,n,r,s){this.getter=t,this._setter=n,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this.effect=new Ar(()=>t(this._value),()=>Ot(this,this.effect._dirtyLevel===3?3:4)),this.effect.computed=this,this.effect.active=this._cacheable=!s,this.__v_isReadonly=r}get value(){const t=J(this);return(!t._cacheable||t.effect.dirty)&&Je(t._value,t._value=t.effect.run())&&Ot(t,5),Nr(t),t.effect._dirtyLevel>=2&&Ot(t,3),t._value}set value(t){this._setter(t)}get _dirty(){return this.effect.dirty}set _dirty(t){this.effect.dirty=t}}function dl(e,t,n=!1){let r,s;const o=K(e);return o?(r=e,s=xe):(r=e.get,s=e.set),new _o(r,s,o||!s,n)}function Nr(e){var t;Xe&<&&(e=J(e),lo(lt,(t=e.dep)!=null?t:e.dep=ao(()=>e.dep=void 0,e instanceof _o?e:void 0)))}function Ot(e,t=5,n,r){e=J(e);const s=e.dep;s&&co(s,t)}function de(e){return!!(e&&e.__v_isRef===!0)}function se(e){return vo(e,!1)}function Fr(e){return vo(e,!0)}function vo(e,t){return de(e)?e:new hl(e,t)}class hl{constructor(t,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?t:J(t),this._value=n?t:Ht(t)}get value(){return Nr(this),this._value}set value(t){const n=this.__v_isShallow||yn(t)||$t(t);t=n?t:J(t),Je(t,this._rawValue)&&(this._rawValue,this._rawValue=t,this._value=n?t:Ht(t),Ot(this,5))}}function bo(e){return de(e)?e.value:e}const pl={get:(e,t,n)=>bo(Reflect.get(e,t,n)),set:(e,t,n,r)=>{const s=e[t];return de(s)&&!de(n)?(s.value=n,!0):Reflect.set(e,t,n,r)}};function wo(e){return Rt(e)?e:new Proxy(e,pl)}class gl{constructor(t){this.dep=void 0,this.__v_isRef=!0;const{get:n,set:r}=t(()=>Nr(this),()=>Ot(this));this._get=n,this._set=r}get value(){return this._get()}set value(t){this._set(t)}}function ml(e){return new gl(e)}class yl{constructor(t,n,r){this._object=t,this._key=n,this._defaultValue=r,this.__v_isRef=!0}get value(){const t=this._object[this._key];return t===void 0?this._defaultValue:t}set value(t){this._object[this._key]=t}get dep(){return qi(J(this._object),this._key)}}class _l{constructor(t){this._getter=t,this.__v_isRef=!0,this.__v_isReadonly=!0}get value(){return this._getter()}}function vl(e,t,n){return de(e)?e:K(e)?new _l(e):Z(e)&&arguments.length>1?bl(e,t,n):se(e)}function bl(e,t,n){const r=e[t];return de(r)?r:new yl(e,t,n)}/** -* @vue/runtime-core v3.4.29 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/function Ye(e,t,n,r){try{return r?e(...r):e()}catch(s){Kt(s,t,n)}}function Se(e,t,n,r){if(K(e)){const s=Ye(e,t,n,r);return s&&Js(s)&&s.catch(o=>{Kt(o,t,n)}),s}if(k(e)){const s=[];for(let o=0;o>>1,s=pe[r],o=Vt(s);oPe&&pe.splice(t,1)}function xl(e){k(e)?vt.push(...e):(!We||!We.includes(e,e.allowRecurse?ot+1:ot))&&vt.push(e),Co()}function os(e,t,n=jt?Pe+1:0){for(;nVt(n)-Vt(r));if(vt.length=0,We){We.push(...t);return}for(We=t,ot=0;ote.id==null?1/0:e.id,Sl=(e,t)=>{const n=Vt(e)-Vt(t);if(n===0){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function xo(e){dr=!1,jt=!0,pe.sort(Sl);try{for(Pe=0;Peoe(_)?_.trim():_)),h&&(s=n.map(cr))}let l,c=r[l=un(t)]||r[l=un($e(t))];!c&&o&&(c=r[l=un(ft(t))]),c&&Se(c,e,6,s);const a=r[l+"Once"];if(a){if(!e.emitted)e.emitted={};else if(e.emitted[l])return;e.emitted[l]=!0,Se(a,e,6,s)}}function So(e,t,n=!1){const r=t.emitsCache,s=r.get(e);if(s!==void 0)return s;const o=e.emits;let i={},l=!1;if(!K(e)){const c=a=>{const f=So(a,t,!0);f&&(l=!0,le(i,f))};!n&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}return!o&&!l?(Z(e)&&r.set(e,null),null):(k(o)?o.forEach(c=>i[c]=null):le(i,o),Z(e)&&r.set(e,i),i)}function Pn(e,t){return!e||!kt(t)?!1:(t=t.slice(2).replace(/Once$/,""),Y(e,t[0].toLowerCase()+t.slice(1))||Y(e,ft(t))||Y(e,t))}let fe=null,Nn=null;function vn(e){const t=fe;return fe=e,Nn=e&&e.type.__scopeId||null,t}function ru(e){Nn=e}function su(){Nn=null}function Al(e,t=fe,n){if(!t||e._n)return e;const r=(...s)=>{r._d&&ws(-1);const o=vn(t);let i;try{i=e(...s)}finally{vn(o),r._d&&ws(1)}return i};return r._n=!0,r._c=!0,r._d=!0,r}function Kn(e){const{type:t,vnode:n,proxy:r,withProxy:s,propsOptions:[o],slots:i,attrs:l,emit:c,render:a,renderCache:f,props:h,data:m,setupState:_,ctx:C,inheritAttrs:L}=e,H=vn(e);let W,D;try{if(n.shapeFlag&4){const y=s||r,M=y;W=Ae(a.call(M,y,f,h,_,m,C)),D=l}else{const y=t;W=Ae(y.length>1?y(h,{attrs:l,slots:i,emit:c}):y(h,null)),D=t.props?l:Rl(l)}}catch(y){Nt.length=0,Kt(y,e,1),W=ie(me)}let p=W;if(D&&L!==!1){const y=Object.keys(D),{shapeFlag:M}=p;y.length&&M&7&&(o&&y.some(Er)&&(D=Ol(D,o)),p=Qe(p,D,!1,!0))}return n.dirs&&(p=Qe(p,null,!1,!0),p.dirs=p.dirs?p.dirs.concat(n.dirs):n.dirs),n.transition&&(p.transition=n.transition),W=p,vn(H),W}const Rl=e=>{let t;for(const n in e)(n==="class"||n==="style"||kt(n))&&((t||(t={}))[n]=e[n]);return t},Ol=(e,t)=>{const n={};for(const r in e)(!Er(r)||!(r.slice(9)in t))&&(n[r]=e[r]);return n};function Ll(e,t,n){const{props:r,children:s,component:o}=e,{props:i,children:l,patchFlag:c}=t,a=o.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&c>=0){if(c&1024)return!0;if(c&16)return r?is(r,i,a):!!i;if(c&8){const f=t.dynamicProps;for(let h=0;he.__isSuspense;function Oo(e,t){t&&t.pendingBranch?k(e)?t.effects.push(...e):t.effects.push(e):xl(e)}function Fn(e,t,n=ue,r=!1){if(n){const s=n[e]||(n[e]=[]),o=t.__weh||(t.__weh=(...i)=>{Ze();const l=qt(n),c=Se(t,n,e,i);return l(),et(),c});return r?s.unshift(o):s.push(o),o}}const Ue=e=>(t,n=ue)=>{(!Gt||e==="sp")&&Fn(e,(...r)=>t(...r),n)},Pl=Ue("bm"),xt=Ue("m"),Nl=Ue("bu"),Fl=Ue("u"),Lo=Ue("bum"),$n=Ue("um"),$l=Ue("sp"),Hl=Ue("rtg"),jl=Ue("rtc");function Vl(e,t=ue){Fn("ec",e,t)}function lu(e,t){if(fe===null)return e;const n=Vn(fe),r=e.dirs||(e.dirs=[]);for(let s=0;st(i,l,void 0,o));else{const i=Object.keys(e);s=new Array(i.length);for(let l=0,c=i.length;l!!e.type.__asyncLoader;/*! #__NO_SIDE_EFFECTS__ */function au(e){K(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:r,delay:s=200,timeout:o,suspensible:i=!0,onError:l}=e;let c=null,a,f=0;const h=()=>(f++,c=null,m()),m=()=>{let _;return c||(_=c=t().catch(C=>{if(C=C instanceof Error?C:new Error(String(C)),l)return new Promise((L,H)=>{l(C,()=>L(h()),()=>H(C),f+1)});throw C}).then(C=>_!==c&&c?c:(C&&(C.__esModule||C[Symbol.toStringTag]==="Module")&&(C=C.default),a=C,C)))};return Hr({name:"AsyncComponentWrapper",__asyncLoader:m,get __asyncResolved(){return a},setup(){const _=ue;if(a)return()=>Wn(a,_);const C=D=>{c=null,Kt(D,_,13,!r)};if(i&&_.suspense||Gt)return m().then(D=>()=>Wn(D,_)).catch(D=>(C(D),()=>r?ie(r,{error:D}):null));const L=se(!1),H=se(),W=se(!!s);return s&&setTimeout(()=>{W.value=!1},s),o!=null&&setTimeout(()=>{if(!L.value&&!H.value){const D=new Error(`Async component timed out after ${o}ms.`);C(D),H.value=D}},o),m().then(()=>{L.value=!0,_.parent&&Wt(_.parent.vnode)&&(_.parent.effect.dirty=!0,Mn(_.parent.update))}).catch(D=>{C(D),H.value=D}),()=>{if(L.value&&a)return Wn(a,_);if(H.value&&r)return ie(r,{error:H.value});if(n&&!W.value)return ie(n)}}})}function Wn(e,t){const{ref:n,props:r,children:s,ce:o}=t.vnode,i=ie(e,r,s);return i.ref=n,i.ce=o,delete t.vnode.ce,i}function uu(e,t,n={},r,s){if(fe.isCE||fe.parent&&bt(fe.parent)&&fe.parent.isCE)return t!=="default"&&(n.name=t),ie("slot",n,r&&r());let o=e[t];o&&o._c&&(o._d=!1),Qo();const i=o&&Io(o(n)),l=ei(_e,{key:n.key||i&&i.key||`_${t}`},i||(r?r():[]),i&&e._===1?64:-2);return!s&&l.scopeId&&(l.slotScopeIds=[l.scopeId+"-s"]),o&&o._c&&(o._d=!0),l}function Io(e){return e.some(t=>Cn(t)?!(t.type===me||t.type===_e&&!Io(t.children)):!0)?e:null}function fu(e,t){const n={};for(const r in e)n[/[A-Z]/.test(r)?`on:${r}`:un(r)]=e[r];return n}const hr=e=>e?si(e)?Vn(e):hr(e.parent):null,Lt=le(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>hr(e.parent),$root:e=>hr(e.root),$emit:e=>e.emit,$options:e=>jr(e),$forceUpdate:e=>e.f||(e.f=()=>{e.effect.dirty=!0,Mn(e.update)}),$nextTick:e=>e.n||(e.n=In.bind(e.proxy)),$watch:e=>ac.bind(e)}),qn=(e,t)=>e!==te&&!e.__isScriptSetup&&Y(e,t),Dl={get({_:e},t){if(t==="__v_skip")return!0;const{ctx:n,setupState:r,data:s,props:o,accessCache:i,type:l,appContext:c}=e;let a;if(t[0]!=="$"){const _=i[t];if(_!==void 0)switch(_){case 1:return r[t];case 2:return s[t];case 4:return n[t];case 3:return o[t]}else{if(qn(r,t))return i[t]=1,r[t];if(s!==te&&Y(s,t))return i[t]=2,s[t];if((a=e.propsOptions[0])&&Y(a,t))return i[t]=3,o[t];if(n!==te&&Y(n,t))return i[t]=4,n[t];pr&&(i[t]=0)}}const f=Lt[t];let h,m;if(f)return t==="$attrs"&&ve(e.attrs,"get",""),f(e);if((h=l.__cssModules)&&(h=h[t]))return h;if(n!==te&&Y(n,t))return i[t]=4,n[t];if(m=c.config.globalProperties,Y(m,t))return m[t]},set({_:e},t,n){const{data:r,setupState:s,ctx:o}=e;return qn(s,t)?(s[t]=n,!0):r!==te&&Y(r,t)?(r[t]=n,!0):Y(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(o[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:r,appContext:s,propsOptions:o}},i){let l;return!!n[i]||e!==te&&Y(e,i)||qn(t,i)||(l=o[0])&&Y(l,i)||Y(r,i)||Y(Lt,i)||Y(s.config.globalProperties,i)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:Y(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};function du(){return Ul().slots}function Ul(){const e=jn();return e.setupContext||(e.setupContext=ii(e))}function cs(e){return k(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}let pr=!0;function Bl(e){const t=jr(e),n=e.proxy,r=e.ctx;pr=!1,t.beforeCreate&&as(t.beforeCreate,e,"bc");const{data:s,computed:o,methods:i,watch:l,provide:c,inject:a,created:f,beforeMount:h,mounted:m,beforeUpdate:_,updated:C,activated:L,deactivated:H,beforeDestroy:W,beforeUnmount:D,destroyed:p,unmounted:y,render:M,renderTracked:A,renderTriggered:F,errorCaptured:$,serverPrefetch:I,expose:w,inheritAttrs:N,components:T,directives:G,filters:ne}=t;if(a&&kl(a,r,null),i)for(const X in i){const V=i[X];K(V)&&(r[X]=V.bind(n))}if(s){const X=s.call(n,n);Z(X)&&(e.data=On(X))}if(pr=!0,o)for(const X in o){const V=o[X],He=K(V)?V.bind(n,n):K(V.get)?V.get.bind(n,n):xe,zt=!K(V)&&K(V.set)?V.set.bind(n):xe,tt=re({get:He,set:zt});Object.defineProperty(r,X,{enumerable:!0,configurable:!0,get:()=>tt.value,set:Le=>tt.value=Le})}if(l)for(const X in l)Mo(l[X],r,n,X);if(c){const X=K(c)?c.call(n):c;Reflect.ownKeys(X).forEach(V=>{Xl(V,X[V])})}f&&as(f,e,"c");function U(X,V){k(V)?V.forEach(He=>X(He.bind(n))):V&&X(V.bind(n))}if(U(Pl,h),U(xt,m),U(Nl,_),U(Fl,C),U(uc,L),U(fc,H),U(Vl,$),U(jl,A),U(Hl,F),U(Lo,D),U($n,y),U($l,I),k(w))if(w.length){const X=e.exposed||(e.exposed={});w.forEach(V=>{Object.defineProperty(X,V,{get:()=>n[V],set:He=>n[V]=He})})}else e.exposed||(e.exposed={});M&&e.render===xe&&(e.render=M),N!=null&&(e.inheritAttrs=N),T&&(e.components=T),G&&(e.directives=G)}function kl(e,t,n=xe){k(e)&&(e=gr(e));for(const r in e){const s=e[r];let o;Z(s)?"default"in s?o=wt(s.from||r,s.default,!0):o=wt(s.from||r):o=wt(s),de(o)?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>o.value,set:i=>o.value=i}):t[r]=o}}function as(e,t,n){Se(k(e)?e.map(r=>r.bind(t.proxy)):e.bind(t.proxy),t,n)}function Mo(e,t,n,r){const s=r.includes(".")?Wo(n,r):()=>n[r];if(oe(e)){const o=t[e];K(o)&&Ne(s,o)}else if(K(e))Ne(s,e.bind(n));else if(Z(e))if(k(e))e.forEach(o=>Mo(o,t,n,r));else{const o=K(e.handler)?e.handler.bind(n):t[e.handler];K(o)&&Ne(s,o,e)}}function jr(e){const t=e.type,{mixins:n,extends:r}=t,{mixins:s,optionsCache:o,config:{optionMergeStrategies:i}}=e.appContext,l=o.get(t);let c;return l?c=l:!s.length&&!n&&!r?c=t:(c={},s.length&&s.forEach(a=>bn(c,a,i,!0)),bn(c,t,i)),Z(t)&&o.set(t,c),c}function bn(e,t,n,r=!1){const{mixins:s,extends:o}=t;o&&bn(e,o,n,!0),s&&s.forEach(i=>bn(e,i,n,!0));for(const i in t)if(!(r&&i==="expose")){const l=Kl[i]||n&&n[i];e[i]=l?l(e[i],t[i]):t[i]}return e}const Kl={data:us,props:fs,emits:fs,methods:At,computed:At,beforeCreate:ge,created:ge,beforeMount:ge,mounted:ge,beforeUpdate:ge,updated:ge,beforeDestroy:ge,beforeUnmount:ge,destroyed:ge,unmounted:ge,activated:ge,deactivated:ge,errorCaptured:ge,serverPrefetch:ge,components:At,directives:At,watch:ql,provide:us,inject:Wl};function us(e,t){return t?e?function(){return le(K(e)?e.call(this,this):e,K(t)?t.call(this,this):t)}:t:e}function Wl(e,t){return At(gr(e),gr(t))}function gr(e){if(k(e)){const t={};for(let n=0;n1)return n&&K(t)?t.call(r&&r.proxy):t}}const No={},Fo=()=>Object.create(No),$o=e=>Object.getPrototypeOf(e)===No;function Yl(e,t,n,r=!1){const s={},o=Fo();e.propsDefaults=Object.create(null),Ho(e,t,s,o);for(const i in e.propsOptions[0])i in s||(s[i]=void 0);n?e.props=r?s:fl(s):e.type.props?e.props=s:e.props=o,e.attrs=o}function Jl(e,t,n,r){const{props:s,attrs:o,vnode:{patchFlag:i}}=e,l=J(s),[c]=e.propsOptions;let a=!1;if((r||i>0)&&!(i&16)){if(i&8){const f=e.vnode.dynamicProps;for(let h=0;h{c=!0;const[m,_]=jo(h,t,!0);le(i,m),_&&l.push(..._)};!n&&t.mixins.length&&t.mixins.forEach(f),e.extends&&f(e.extends),e.mixins&&e.mixins.forEach(f)}if(!o&&!c)return Z(e)&&r.set(e,mt),mt;if(k(o))for(let f=0;f-1,_[1]=L<0||C-1||Y(_,"default"))&&l.push(h)}}}const a=[i,l];return Z(e)&&r.set(e,a),a}function ds(e){return e[0]!=="$"&&!_t(e)}function hs(e){return e===null?"null":typeof e=="function"?e.name||"":typeof e=="object"&&e.constructor&&e.constructor.name||""}function ps(e,t){return hs(e)===hs(t)}function gs(e,t){return k(t)?t.findIndex(n=>ps(n,e)):K(t)&&ps(t,e)?0:-1}const Vo=e=>e[0]==="_"||e==="$stable",Vr=e=>k(e)?e.map(Ae):[Ae(e)],Ql=(e,t,n)=>{if(t._n)return t;const r=Al((...s)=>Vr(t(...s)),n);return r._c=!1,r},Do=(e,t,n)=>{const r=e._ctx;for(const s in e){if(Vo(s))continue;const o=e[s];if(K(o))t[s]=Ql(s,o,r);else if(o!=null){const i=Vr(o);t[s]=()=>i}}},Uo=(e,t)=>{const n=Vr(t);e.slots.default=()=>n},Zl=(e,t)=>{const n=e.slots=Fo();if(e.vnode.shapeFlag&32){const r=t._;r?(le(n,t),eo(n,"_",r,!0)):Do(t,n)}else t&&Uo(e,t)},ec=(e,t,n)=>{const{vnode:r,slots:s}=e;let o=!0,i=te;if(r.shapeFlag&32){const l=t._;l?n&&l===1?o=!1:(le(s,t),!n&&l===1&&delete s._):(o=!t.$stable,Do(t,s)),i=t}else t&&(Uo(e,t),i={default:1});if(o)for(const l in s)!Vo(l)&&i[l]==null&&delete s[l]};function wn(e,t,n,r,s=!1){if(k(e)){e.forEach((m,_)=>wn(m,t&&(k(t)?t[_]:t),n,r,s));return}if(bt(r)&&!s)return;const o=r.shapeFlag&4?Vn(r.component):r.el,i=s?null:o,{i:l,r:c}=e,a=t&&t.r,f=l.refs===te?l.refs={}:l.refs,h=l.setupState;if(a!=null&&a!==c&&(oe(a)?(f[a]=null,Y(h,a)&&(h[a]=null)):de(a)&&(a.value=null)),K(c))Ye(c,l,12,[i,f]);else{const m=oe(c),_=de(c);if(m||_){const C=()=>{if(e.f){const L=m?Y(h,c)?h[c]:f[c]:c.value;s?k(L)&&Cr(L,o):k(L)?L.includes(o)||L.push(o):m?(f[c]=[o],Y(h,c)&&(h[c]=f[c])):(c.value=[o],e.k&&(f[e.k]=c.value))}else m?(f[c]=i,Y(h,c)&&(h[c]=i)):_&&(c.value=i,e.k&&(f[e.k]=i))};i?(C.id=-1,ye(C,n)):C()}}}let ms=!1;const pt=()=>{ms||(console.error("Hydration completed but contains mismatches."),ms=!0)},tc=e=>e.namespaceURI.includes("svg")&&e.tagName!=="foreignObject",nc=e=>e.namespaceURI.includes("MathML"),tn=e=>{if(tc(e))return"svg";if(nc(e))return"mathml"},nn=e=>e.nodeType===8;function rc(e){const{mt:t,p:n,o:{patchProp:r,createText:s,nextSibling:o,parentNode:i,remove:l,insert:c,createComment:a}}=e,f=(p,y)=>{if(!y.hasChildNodes()){n(null,p,y),_n(),y._vnode=p;return}h(y.firstChild,p,null,null,null),_n(),y._vnode=p},h=(p,y,M,A,F,$=!1)=>{$=$||!!y.dynamicChildren;const I=nn(p)&&p.data==="[",w=()=>L(p,y,M,A,F,I),{type:N,ref:T,shapeFlag:G,patchFlag:ne}=y;let ce=p.nodeType;y.el=p,ne===-2&&($=!1,y.dynamicChildren=null);let U=null;switch(N){case Et:ce!==3?y.children===""?(c(y.el=s(""),i(p),p),U=p):U=w():(p.data!==y.children&&(pt(),p.data=y.children),U=o(p));break;case me:D(p)?(U=o(p),W(y.el=p.content.firstChild,p,M)):ce!==8||I?U=w():U=o(p);break;case Pt:if(I&&(p=o(p),ce=p.nodeType),ce===1||ce===3){U=p;const X=!y.children.length;for(let V=0;V{$=$||!!y.dynamicChildren;const{type:I,props:w,patchFlag:N,shapeFlag:T,dirs:G,transition:ne}=y,ce=I==="input"||I==="option";if(ce||N!==-1){G&&Me(y,null,M,"created");let U=!1;if(D(p)){U=ko(A,ne)&&M&&M.vnode.props&&M.vnode.props.appear;const V=p.content.firstChild;U&&ne.beforeEnter(V),W(V,p,M),y.el=p=V}if(T&16&&!(w&&(w.innerHTML||w.textContent))){let V=_(p.firstChild,y,p,M,A,F,$);for(;V;){pt();const He=V;V=V.nextSibling,l(He)}}else T&8&&p.textContent!==y.children&&(pt(),p.textContent=y.children);if(w)if(ce||!$||N&48)for(const V in w)(ce&&(V.endsWith("value")||V==="indeterminate")||kt(V)&&!_t(V)||V[0]===".")&&r(p,V,null,w[V],void 0,void 0,M);else w.onClick&&r(p,"onClick",null,w.onClick,void 0,void 0,M);let X;(X=w&&w.onVnodeBeforeMount)&&Ce(X,M,y),G&&Me(y,null,M,"beforeMount"),((X=w&&w.onVnodeMounted)||G||U)&&Oo(()=>{X&&Ce(X,M,y),U&&ne.enter(p),G&&Me(y,null,M,"mounted")},A)}return p.nextSibling},_=(p,y,M,A,F,$,I)=>{I=I||!!y.dynamicChildren;const w=y.children,N=w.length;for(let T=0;T{const{slotScopeIds:I}=y;I&&(F=F?F.concat(I):I);const w=i(p),N=_(o(p),y,w,M,A,F,$);return N&&nn(N)&&N.data==="]"?o(y.anchor=N):(pt(),c(y.anchor=a("]"),w,N),N)},L=(p,y,M,A,F,$)=>{if(pt(),y.el=null,$){const N=H(p);for(;;){const T=o(p);if(T&&T!==N)l(T);else break}}const I=o(p),w=i(p);return l(p),n(null,y,w,I,M,A,tn(w),F),I},H=(p,y="[",M="]")=>{let A=0;for(;p;)if(p=o(p),p&&nn(p)&&(p.data===y&&A++,p.data===M)){if(A===0)return o(p);A--}return p},W=(p,y,M)=>{const A=y.parentNode;A&&A.replaceChild(p,y);let F=M;for(;F;)F.vnode.el===y&&(F.vnode.el=F.subTree.el=p),F=F.parent},D=p=>p.nodeType===1&&p.tagName.toLowerCase()==="template";return[f,h]}const ye=Oo;function sc(e){return Bo(e)}function oc(e){return Bo(e,rc)}function Bo(e,t){const n=to();n.__VUE__=!0;const{insert:r,remove:s,patchProp:o,createElement:i,createText:l,createComment:c,setText:a,setElementText:f,parentNode:h,nextSibling:m,setScopeId:_=xe,insertStaticContent:C}=e,L=(u,d,g,v=null,b=null,S=null,O=void 0,x=null,R=!!d.dynamicChildren)=>{if(u===d)return;u&&!it(u,d)&&(v=Xt(u),Le(u,b,S,!0),u=null),d.patchFlag===-2&&(R=!1,d.dynamicChildren=null);const{type:E,ref:P,shapeFlag:B}=d;switch(E){case Et:H(u,d,g,v);break;case me:W(u,d,g,v);break;case Pt:u==null&&D(d,g,v,O);break;case _e:T(u,d,g,v,b,S,O,x,R);break;default:B&1?M(u,d,g,v,b,S,O,x,R):B&6?G(u,d,g,v,b,S,O,x,R):(B&64||B&128)&&E.process(u,d,g,v,b,S,O,x,R,dt)}P!=null&&b&&wn(P,u&&u.ref,S,d||u,!d)},H=(u,d,g,v)=>{if(u==null)r(d.el=l(d.children),g,v);else{const b=d.el=u.el;d.children!==u.children&&a(b,d.children)}},W=(u,d,g,v)=>{u==null?r(d.el=c(d.children||""),g,v):d.el=u.el},D=(u,d,g,v)=>{[u.el,u.anchor]=C(u.children,d,g,v,u.el,u.anchor)},p=({el:u,anchor:d},g,v)=>{let b;for(;u&&u!==d;)b=m(u),r(u,g,v),u=b;r(d,g,v)},y=({el:u,anchor:d})=>{let g;for(;u&&u!==d;)g=m(u),s(u),u=g;s(d)},M=(u,d,g,v,b,S,O,x,R)=>{d.type==="svg"?O="svg":d.type==="math"&&(O="mathml"),u==null?A(d,g,v,b,S,O,x,R):I(u,d,b,S,O,x,R)},A=(u,d,g,v,b,S,O,x)=>{let R,E;const{props:P,shapeFlag:B,transition:j,dirs:q}=u;if(R=u.el=i(u.type,S,P&&P.is,P),B&8?f(R,u.children):B&16&&$(u.children,R,null,v,b,Gn(u,S),O,x),q&&Me(u,null,v,"created"),F(R,u,u.scopeId,O,v),P){for(const ee in P)ee!=="value"&&!_t(ee)&&o(R,ee,null,P[ee],S,u.children,v,b,je);"value"in P&&o(R,"value",null,P.value,S),(E=P.onVnodeBeforeMount)&&Ce(E,v,u)}q&&Me(u,null,v,"beforeMount");const z=ko(b,j);z&&j.beforeEnter(R),r(R,d,g),((E=P&&P.onVnodeMounted)||z||q)&&ye(()=>{E&&Ce(E,v,u),z&&j.enter(R),q&&Me(u,null,v,"mounted")},b)},F=(u,d,g,v,b)=>{if(g&&_(u,g),v)for(let S=0;S{for(let E=R;E{const x=d.el=u.el;let{patchFlag:R,dynamicChildren:E,dirs:P}=d;R|=u.patchFlag&16;const B=u.props||te,j=d.props||te;let q;if(g&&nt(g,!1),(q=j.onVnodeBeforeUpdate)&&Ce(q,g,d,u),P&&Me(d,u,g,"beforeUpdate"),g&&nt(g,!0),E?w(u.dynamicChildren,E,x,g,v,Gn(d,b),S):O||V(u,d,x,null,g,v,Gn(d,b),S,!1),R>0){if(R&16)N(x,d,B,j,g,v,b);else if(R&2&&B.class!==j.class&&o(x,"class",null,j.class,b),R&4&&o(x,"style",B.style,j.style,b),R&8){const z=d.dynamicProps;for(let ee=0;ee{q&&Ce(q,g,d,u),P&&Me(d,u,g,"updated")},v)},w=(u,d,g,v,b,S,O)=>{for(let x=0;x{if(g!==v){if(g!==te)for(const x in g)!_t(x)&&!(x in v)&&o(u,x,g[x],null,O,d.children,b,S,je);for(const x in v){if(_t(x))continue;const R=v[x],E=g[x];R!==E&&x!=="value"&&o(u,x,E,R,O,d.children,b,S,je)}"value"in v&&o(u,"value",g.value,v.value,O)}},T=(u,d,g,v,b,S,O,x,R)=>{const E=d.el=u?u.el:l(""),P=d.anchor=u?u.anchor:l("");let{patchFlag:B,dynamicChildren:j,slotScopeIds:q}=d;q&&(x=x?x.concat(q):q),u==null?(r(E,g,v),r(P,g,v),$(d.children||[],g,P,b,S,O,x,R)):B>0&&B&64&&j&&u.dynamicChildren?(w(u.dynamicChildren,j,g,b,S,O,x),(d.key!=null||b&&d===b.subTree)&&Dr(u,d,!0)):V(u,d,g,P,b,S,O,x,R)},G=(u,d,g,v,b,S,O,x,R)=>{d.slotScopeIds=x,u==null?d.shapeFlag&512?b.ctx.activate(d,g,v,O,R):ne(d,g,v,b,S,O,R):ce(u,d,R)},ne=(u,d,g,v,b,S,O)=>{const x=u.component=Sc(u,v,b);if(Wt(u)&&(x.ctx.renderer=dt),Tc(x),x.asyncDep){if(b&&b.registerDep(x,U,O),!u.el){const R=x.subTree=ie(me);W(null,R,d,g)}}else U(x,u,d,g,b,S,O)},ce=(u,d,g)=>{const v=d.component=u.component;if(Ll(u,d,g))if(v.asyncDep&&!v.asyncResolved){X(v,d,g);return}else v.next=d,Cl(v.update),v.effect.dirty=!0,v.update();else d.el=u.el,v.vnode=d},U=(u,d,g,v,b,S,O)=>{const x=()=>{if(u.isMounted){let{next:P,bu:B,u:j,parent:q,vnode:z}=u;{const ht=Ko(u);if(ht){P&&(P.el=z.el,X(u,P,O)),ht.asyncDep.then(()=>{u.isUnmounted||x()});return}}let ee=P,Q;nt(u,!1),P?(P.el=z.el,X(u,P,O)):P=z,B&&fn(B),(Q=P.props&&P.props.onVnodeBeforeUpdate)&&Ce(Q,q,P,z),nt(u,!0);const ae=Kn(u),Te=u.subTree;u.subTree=ae,L(Te,ae,h(Te.el),Xt(Te),u,b,S),P.el=ae.el,ee===null&&Il(u,ae.el),j&&ye(j,b),(Q=P.props&&P.props.onVnodeUpdated)&&ye(()=>Ce(Q,q,P,z),b)}else{let P;const{el:B,props:j}=d,{bm:q,m:z,parent:ee}=u,Q=bt(d);if(nt(u,!1),q&&fn(q),!Q&&(P=j&&j.onVnodeBeforeMount)&&Ce(P,ee,d),nt(u,!0),B&&Bn){const ae=()=>{u.subTree=Kn(u),Bn(B,u.subTree,u,b,null)};Q?d.type.__asyncLoader().then(()=>!u.isUnmounted&&ae()):ae()}else{const ae=u.subTree=Kn(u);L(null,ae,g,v,u,b,S),d.el=ae.el}if(z&&ye(z,b),!Q&&(P=j&&j.onVnodeMounted)){const ae=d;ye(()=>Ce(P,ee,ae),b)}(d.shapeFlag&256||ee&&bt(ee.vnode)&&ee.vnode.shapeFlag&256)&&u.a&&ye(u.a,b),u.isMounted=!0,d=g=v=null}},R=u.effect=new Ar(x,xe,()=>Mn(E),u.scope),E=u.update=()=>{R.dirty&&R.run()};E.id=u.uid,nt(u,!0),E()},X=(u,d,g)=>{d.component=u;const v=u.vnode.props;u.vnode=d,u.next=null,Jl(u,d.props,v,g),ec(u,d.children,g),Ze(),os(u),et()},V=(u,d,g,v,b,S,O,x,R=!1)=>{const E=u&&u.children,P=u?u.shapeFlag:0,B=d.children,{patchFlag:j,shapeFlag:q}=d;if(j>0){if(j&128){zt(E,B,g,v,b,S,O,x,R);return}else if(j&256){He(E,B,g,v,b,S,O,x,R);return}}q&8?(P&16&&je(E,b,S),B!==E&&f(g,B)):P&16?q&16?zt(E,B,g,v,b,S,O,x,R):je(E,b,S,!0):(P&8&&f(g,""),q&16&&$(B,g,v,b,S,O,x,R))},He=(u,d,g,v,b,S,O,x,R)=>{u=u||mt,d=d||mt;const E=u.length,P=d.length,B=Math.min(E,P);let j;for(j=0;jP?je(u,b,S,!0,!1,B):$(d,g,v,b,S,O,x,R,B)},zt=(u,d,g,v,b,S,O,x,R)=>{let E=0;const P=d.length;let B=u.length-1,j=P-1;for(;E<=B&&E<=j;){const q=u[E],z=d[E]=R?Ge(d[E]):Ae(d[E]);if(it(q,z))L(q,z,g,null,b,S,O,x,R);else break;E++}for(;E<=B&&E<=j;){const q=u[B],z=d[j]=R?Ge(d[j]):Ae(d[j]);if(it(q,z))L(q,z,g,null,b,S,O,x,R);else break;B--,j--}if(E>B){if(E<=j){const q=j+1,z=qj)for(;E<=B;)Le(u[E],b,S,!0),E++;else{const q=E,z=E,ee=new Map;for(E=z;E<=j;E++){const be=d[E]=R?Ge(d[E]):Ae(d[E]);be.key!=null&&ee.set(be.key,E)}let Q,ae=0;const Te=j-z+1;let ht=!1,zr=0;const St=new Array(Te);for(E=0;E=Te){Le(be,b,S,!0);continue}let Ie;if(be.key!=null)Ie=ee.get(be.key);else for(Q=z;Q<=j;Q++)if(St[Q-z]===0&&it(be,d[Q])){Ie=Q;break}Ie===void 0?Le(be,b,S,!0):(St[Ie-z]=E+1,Ie>=zr?zr=Ie:ht=!0,L(be,d[Ie],g,null,b,S,O,x,R),ae++)}const Xr=ht?ic(St):mt;for(Q=Xr.length-1,E=Te-1;E>=0;E--){const be=z+E,Ie=d[be],Yr=be+1{const{el:S,type:O,transition:x,children:R,shapeFlag:E}=u;if(E&6){tt(u.component.subTree,d,g,v);return}if(E&128){u.suspense.move(d,g,v);return}if(E&64){O.move(u,d,g,dt);return}if(O===_e){r(S,d,g);for(let B=0;Bx.enter(S),b);else{const{leave:B,delayLeave:j,afterLeave:q}=x,z=()=>r(S,d,g),ee=()=>{B(S,()=>{z(),q&&q()})};j?j(S,z,ee):ee()}else r(S,d,g)},Le=(u,d,g,v=!1,b=!1)=>{const{type:S,props:O,ref:x,children:R,dynamicChildren:E,shapeFlag:P,patchFlag:B,dirs:j,memoIndex:q}=u;if(x!=null&&wn(x,null,g,u,!0),q!=null&&(d.renderCache[q]=void 0),P&256){d.ctx.deactivate(u);return}const z=P&1&&j,ee=!bt(u);let Q;if(ee&&(Q=O&&O.onVnodeBeforeUnmount)&&Ce(Q,d,u),P&6)Oi(u.component,g,v);else{if(P&128){u.suspense.unmount(g,v);return}z&&Me(u,null,d,"beforeUnmount"),P&64?u.type.remove(u,d,g,b,dt,v):E&&(S!==_e||B>0&&B&64)?je(E,d,g,!1,!0):(S===_e&&B&384||!b&&P&16)&&je(R,d,g),v&&qr(u)}(ee&&(Q=O&&O.onVnodeUnmounted)||z)&&ye(()=>{Q&&Ce(Q,d,u),z&&Me(u,null,d,"unmounted")},g)},qr=u=>{const{type:d,el:g,anchor:v,transition:b}=u;if(d===_e){Ri(g,v);return}if(d===Pt){y(u);return}const S=()=>{s(g),b&&!b.persisted&&b.afterLeave&&b.afterLeave()};if(u.shapeFlag&1&&b&&!b.persisted){const{leave:O,delayLeave:x}=b,R=()=>O(g,S);x?x(u.el,S,R):R()}else S()},Ri=(u,d)=>{let g;for(;u!==d;)g=m(u),s(u),u=g;s(d)},Oi=(u,d,g)=>{const{bum:v,scope:b,update:S,subTree:O,um:x,m:R,a:E}=u;ys(R),ys(E),v&&fn(v),b.stop(),S&&(S.active=!1,Le(O,u,d,g)),x&&ye(x,d),ye(()=>{u.isUnmounted=!0},d),d&&d.pendingBranch&&!d.isUnmounted&&u.asyncDep&&!u.asyncResolved&&u.suspenseId===d.pendingId&&(d.deps--,d.deps===0&&d.resolve())},je=(u,d,g,v=!1,b=!1,S=0)=>{for(let O=S;Ou.shapeFlag&6?Xt(u.component.subTree):u.shapeFlag&128?u.suspense.next():m(u.anchor||u.el);let Dn=!1;const Gr=(u,d,g)=>{u==null?d._vnode&&Le(d._vnode,null,null,!0):L(d._vnode||null,u,d,null,null,null,g),Dn||(Dn=!0,os(),_n(),Dn=!1),d._vnode=u},dt={p:L,um:Le,m:tt,r:qr,mt:ne,mc:$,pc:V,pbc:w,n:Xt,o:e};let Un,Bn;return t&&([Un,Bn]=t(dt)),{render:Gr,hydrate:Un,createApp:zl(Gr,Un)}}function Gn({type:e,props:t},n){return n==="svg"&&e==="foreignObject"||n==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:n}function nt({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function ko(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function Dr(e,t,n=!1){const r=e.children,s=t.children;if(k(r)&&k(s))for(let o=0;o>1,e[n[l]]0&&(t[r]=n[o-1]),n[o]=r)}}for(o=n.length,i=n[o-1];o-- >0;)n[o]=i,i=t[i];return n}function Ko(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:Ko(t)}function ys(e){if(e)for(let t=0;twt(lc);function Ur(e,t){return Hn(e,null,t)}function hu(e,t){return Hn(e,null,{flush:"post"})}const rn={};function Ne(e,t,n){return Hn(e,t,n)}function Hn(e,t,{immediate:n,deep:r,flush:s,once:o,onTrack:i,onTrigger:l}=te){if(t&&o){const A=t;t=(...F)=>{A(...F),M()}}const c=ue,a=A=>r===!0?A:ze(A,r===!1?1:void 0);let f,h=!1,m=!1;if(de(e)?(f=()=>e.value,h=yn(e)):Rt(e)?(f=()=>a(e),h=!0):k(e)?(m=!0,h=e.some(A=>Rt(A)||yn(A)),f=()=>e.map(A=>{if(de(A))return A.value;if(Rt(A))return a(A);if(K(A))return Ye(A,c,2)})):K(e)?t?f=()=>Ye(e,c,2):f=()=>(_&&_(),Se(e,c,3,[C])):f=xe,t&&r){const A=f;f=()=>ze(A())}let _,C=A=>{_=p.onStop=()=>{Ye(A,c,4),_=p.onStop=void 0}},L;if(Gt)if(C=xe,t?n&&Se(t,c,3,[f(),m?[]:void 0,C]):f(),s==="sync"){const A=cc();L=A.__watcherHandles||(A.__watcherHandles=[])}else return xe;let H=m?new Array(e.length).fill(rn):rn;const W=()=>{if(!(!p.active||!p.dirty))if(t){const A=p.run();(r||h||(m?A.some((F,$)=>Je(F,H[$])):Je(A,H)))&&(_&&_(),Se(t,c,3,[A,H===rn?void 0:m&&H[0]===rn?[]:H,C]),H=A)}else p.run()};W.allowRecurse=!!t;let D;s==="sync"?D=W:s==="post"?D=()=>ye(W,c&&c.suspense):(W.pre=!0,c&&(W.id=c.uid),D=()=>Mn(W));const p=new Ar(f,xe,D),y=so(),M=()=>{p.stop(),y&&Cr(y.effects,p)};return t?n?W():H=p.run():s==="post"?ye(p.run.bind(p),c&&c.suspense):p.run(),L&&L.push(M),M}function ac(e,t,n){const r=this.proxy,s=oe(e)?e.includes(".")?Wo(r,e):()=>r[e]:e.bind(r,r);let o;K(t)?o=t:(o=t.handler,n=t);const i=qt(this),l=Hn(s,o.bind(r),n);return i(),l}function Wo(e,t){const n=t.split(".");return()=>{let r=e;for(let s=0;s{ze(r,t,n)});else if(Zs(e)){for(const r in e)ze(e[r],t,n);for(const r of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,r)&&ze(e[r],t,n)}return e}const Wt=e=>e.type.__isKeepAlive;function uc(e,t){qo(e,"a",t)}function fc(e,t){qo(e,"da",t)}function qo(e,t,n=ue){const r=e.__wdc||(e.__wdc=()=>{let s=n;for(;s;){if(s.isDeactivated)return;s=s.parent}return e()});if(Fn(t,r,n),n){let s=n.parent;for(;s&&s.parent;)Wt(s.parent.vnode)&&dc(r,t,n,s),s=s.parent}}function dc(e,t,n,r){const s=Fn(t,e,r,!0);$n(()=>{Cr(r[t],s)},n)}const qe=Symbol("_leaveCb"),sn=Symbol("_enterCb");function hc(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return xt(()=>{e.isMounted=!0}),Lo(()=>{e.isUnmounting=!0}),e}const Ee=[Function,Array],Go={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:Ee,onEnter:Ee,onAfterEnter:Ee,onEnterCancelled:Ee,onBeforeLeave:Ee,onLeave:Ee,onAfterLeave:Ee,onLeaveCancelled:Ee,onBeforeAppear:Ee,onAppear:Ee,onAfterAppear:Ee,onAppearCancelled:Ee},zo=e=>{const t=e.subTree;return t.component?zo(t.component):t},pc={name:"BaseTransition",props:Go,setup(e,{slots:t}){const n=jn(),r=hc();return()=>{const s=t.default&&Yo(t.default(),!0);if(!s||!s.length)return;let o=s[0];if(s.length>1){for(const m of s)if(m.type!==me){o=m;break}}const i=J(e),{mode:l}=i;if(r.isLeaving)return zn(o);const c=_s(o);if(!c)return zn(o);let a=yr(c,i,r,n,m=>a=m);En(c,a);const f=n.subTree,h=f&&_s(f);if(h&&h.type!==me&&!it(c,h)&&zo(n).type!==me){const m=yr(h,i,r,n);if(En(h,m),l==="out-in"&&c.type!==me)return r.isLeaving=!0,m.afterLeave=()=>{r.isLeaving=!1,n.update.active!==!1&&(n.effect.dirty=!0,n.update())},zn(o);l==="in-out"&&c.type!==me&&(m.delayLeave=(_,C,L)=>{const H=Xo(r,h);H[String(h.key)]=h,_[qe]=()=>{C(),_[qe]=void 0,delete a.delayedLeave},a.delayedLeave=L})}return o}}},gc=pc;function Xo(e,t){const{leavingVNodes:n}=e;let r=n.get(t.type);return r||(r=Object.create(null),n.set(t.type,r)),r}function yr(e,t,n,r,s){const{appear:o,mode:i,persisted:l=!1,onBeforeEnter:c,onEnter:a,onAfterEnter:f,onEnterCancelled:h,onBeforeLeave:m,onLeave:_,onAfterLeave:C,onLeaveCancelled:L,onBeforeAppear:H,onAppear:W,onAfterAppear:D,onAppearCancelled:p}=t,y=String(e.key),M=Xo(n,e),A=(I,w)=>{I&&Se(I,r,9,w)},F=(I,w)=>{const N=w[1];A(I,w),k(I)?I.every(T=>T.length<=1)&&N():I.length<=1&&N()},$={mode:i,persisted:l,beforeEnter(I){let w=c;if(!n.isMounted)if(o)w=H||c;else return;I[qe]&&I[qe](!0);const N=M[y];N&&it(e,N)&&N.el[qe]&&N.el[qe](),A(w,[I])},enter(I){let w=a,N=f,T=h;if(!n.isMounted)if(o)w=W||a,N=D||f,T=p||h;else return;let G=!1;const ne=I[sn]=ce=>{G||(G=!0,ce?A(T,[I]):A(N,[I]),$.delayedLeave&&$.delayedLeave(),I[sn]=void 0)};w?F(w,[I,ne]):ne()},leave(I,w){const N=String(e.key);if(I[sn]&&I[sn](!0),n.isUnmounting)return w();A(m,[I]);let T=!1;const G=I[qe]=ne=>{T||(T=!0,w(),ne?A(L,[I]):A(C,[I]),I[qe]=void 0,M[N]===e&&delete M[N])};M[N]=e,_?F(_,[I,G]):G()},clone(I){const w=yr(I,t,n,r,s);return s&&s(w),w}};return $}function zn(e){if(Wt(e))return e=Qe(e),e.children=null,e}function _s(e){if(!Wt(e))return e;const{shapeFlag:t,children:n}=e;if(n){if(t&16)return n[0];if(t&32&&K(n.default))return n.default()}}function En(e,t){e.shapeFlag&6&&e.component?En(e.component.subTree,t):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function Yo(e,t=!1,n){let r=[],s=0;for(let o=0;o1)for(let o=0;oe.__isTeleport,Mt=e=>e&&(e.disabled||e.disabled===""),vs=e=>typeof SVGElement<"u"&&e instanceof SVGElement,bs=e=>typeof MathMLElement=="function"&&e instanceof MathMLElement,_r=(e,t)=>{const n=e&&e.to;return oe(n)?t?t(n):null:n},yc={name:"Teleport",__isTeleport:!0,process(e,t,n,r,s,o,i,l,c,a){const{mc:f,pc:h,pbc:m,o:{insert:_,querySelector:C,createText:L,createComment:H}}=a,W=Mt(t.props);let{shapeFlag:D,children:p,dynamicChildren:y}=t;if(e==null){const M=t.el=L(""),A=t.anchor=L("");_(M,n,r),_(A,n,r);const F=t.target=_r(t.props,C),$=t.targetAnchor=L("");F&&(_($,F),i==="svg"||vs(F)?i="svg":(i==="mathml"||bs(F))&&(i="mathml"));const I=(w,N)=>{D&16&&f(p,w,N,s,o,i,l,c)};W?I(n,A):F&&I(F,$)}else{t.el=e.el;const M=t.anchor=e.anchor,A=t.target=e.target,F=t.targetAnchor=e.targetAnchor,$=Mt(e.props),I=$?n:A,w=$?M:F;if(i==="svg"||vs(A)?i="svg":(i==="mathml"||bs(A))&&(i="mathml"),y?(m(e.dynamicChildren,y,I,s,o,i,l),Dr(e,t,!0)):c||h(e,t,I,w,s,o,i,l,!1),W)$?t.props&&e.props&&t.props.to!==e.props.to&&(t.props.to=e.props.to):on(t,n,M,a,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const N=t.target=_r(t.props,C);N&&on(t,N,null,a,0)}else $&&on(t,A,F,a,1)}Jo(t)},remove(e,t,n,r,{um:s,o:{remove:o}},i){const{shapeFlag:l,children:c,anchor:a,targetAnchor:f,target:h,props:m}=e;if(h&&o(f),i&&o(a),l&16){const _=i||!Mt(m);for(let C=0;C0?Re||mt:null,vc(),Dt>0&&Re&&Re.push(e),e}function gu(e,t,n,r,s,o){return Zo(ni(e,t,n,r,s,o,!0))}function ei(e,t,n,r,s){return Zo(ie(e,t,n,r,s,!0))}function Cn(e){return e?e.__v_isVNode===!0:!1}function it(e,t){return e.type===t.type&&e.key===t.key}const ti=({key:e})=>e??null,hn=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?oe(e)||de(e)||K(e)?{i:fe,r:e,k:t,f:!!n}:e:null);function ni(e,t=null,n=null,r=0,s=null,o=e===_e?0:1,i=!1,l=!1){const c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&ti(t),ref:t&&hn(t),scopeId:Nn,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:o,patchFlag:r,dynamicProps:s,dynamicChildren:null,appContext:null,ctx:fe};return l?(Br(c,n),o&128&&e.normalize(c)):n&&(c.shapeFlag|=oe(n)?8:16),Dt>0&&!i&&Re&&(c.patchFlag>0||o&6)&&c.patchFlag!==32&&Re.push(c),c}const ie=bc;function bc(e,t=null,n=null,r=0,s=null,o=!1){if((!e||e===Ao)&&(e=me),Cn(e)){const l=Qe(e,t,!0);return n&&Br(l,n),Dt>0&&!o&&Re&&(l.shapeFlag&6?Re[Re.indexOf(e)]=l:Re.push(l)),l.patchFlag=-2,l}if(Lc(e)&&(e=e.__vccOpts),t){t=wc(t);let{class:l,style:c}=t;l&&!oe(l)&&(t.class=Tr(l)),Z(c)&&(yo(c)&&!k(c)&&(c=le({},c)),t.style=Sr(c))}const i=oe(e)?1:Ml(e)?128:mc(e)?64:Z(e)?4:K(e)?2:0;return ni(e,t,n,r,s,i,o,!0)}function wc(e){return e?yo(e)||$o(e)?le({},e):e:null}function Qe(e,t,n=!1,r=!1){const{props:s,ref:o,patchFlag:i,children:l,transition:c}=e,a=t?Ec(s||{},t):s,f={__v_isVNode:!0,__v_skip:!0,type:e.type,props:a,key:a&&ti(a),ref:t&&t.ref?n&&o?k(o)?o.concat(hn(t)):[o,hn(t)]:hn(t):o,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:l,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==_e?i===-1?16:i|16:i,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:c,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Qe(e.ssContent),ssFallback:e.ssFallback&&Qe(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return c&&r&&En(f,c.clone(f)),f}function ri(e=" ",t=0){return ie(Et,null,e,t)}function mu(e,t){const n=ie(Pt,null,e);return n.staticCount=t,n}function yu(e="",t=!1){return t?(Qo(),ei(me,null,e)):ie(me,null,e)}function Ae(e){return e==null||typeof e=="boolean"?ie(me):k(e)?ie(_e,null,e.slice()):typeof e=="object"?Ge(e):ie(Et,null,String(e))}function Ge(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Qe(e)}function Br(e,t){let n=0;const{shapeFlag:r}=e;if(t==null)t=null;else if(k(t))n=16;else if(typeof t=="object")if(r&65){const s=t.default;s&&(s._c&&(s._d=!1),Br(e,s()),s._c&&(s._d=!0));return}else{n=32;const s=t._;!s&&!$o(t)?t._ctx=fe:s===3&&fe&&(fe.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else K(t)?(t={default:t,_ctx:fe},n=32):(t=String(t),r&64?(n=16,t=[ri(t)]):n=8);e.children=t,e.shapeFlag|=n}function Ec(...e){const t={};for(let n=0;nue||fe;let xn,vr;{const e=to(),t=(n,r)=>{let s;return(s=e[n])||(s=e[n]=[]),s.push(r),o=>{s.length>1?s.forEach(i=>i(o)):s[0](o)}};xn=t("__VUE_INSTANCE_SETTERS__",n=>ue=n),vr=t("__VUE_SSR_SETTERS__",n=>Gt=n)}const qt=e=>{const t=ue;return xn(e),e.scope.on(),()=>{e.scope.off(),xn(t)}},Es=()=>{ue&&ue.scope.off(),xn(null)};function si(e){return e.vnode.shapeFlag&4}let Gt=!1;function Tc(e,t=!1){t&&vr(t);const{props:n,children:r}=e.vnode,s=si(e);Yl(e,n,s,t),Zl(e,r);const o=s?Ac(e,t):void 0;return t&&vr(!1),o}function Ac(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,Dl);const{setup:r}=n;if(r){const s=e.setupContext=r.length>1?ii(e):null,o=qt(e);Ze();const i=Ye(r,e,0,[e.props,s]);if(et(),o(),Js(i)){if(i.then(Es,Es),t)return i.then(l=>{Cs(e,l,t)}).catch(l=>{Kt(l,e,0)});e.asyncDep=i}else Cs(e,i,t)}else oi(e,t)}function Cs(e,t,n){K(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:Z(t)&&(e.setupState=wo(t)),oi(e,n)}let xs;function oi(e,t,n){const r=e.type;if(!e.render){if(!t&&xs&&!r.render){const s=r.template||jr(e).template;if(s){const{isCustomElement:o,compilerOptions:i}=e.appContext.config,{delimiters:l,compilerOptions:c}=r,a=le(le({isCustomElement:o,delimiters:l},i),c);r.render=xs(s,a)}}e.render=r.render||xe}{const s=qt(e);Ze();try{Bl(e)}finally{et(),s()}}}const Rc={get(e,t){return ve(e,"get",""),e[t]}};function ii(e){const t=n=>{e.exposed=n||{}};return{attrs:new Proxy(e.attrs,Rc),slots:e.slots,emit:e.emit,expose:t}}function Vn(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(wo(dn(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in Lt)return Lt[n](e)},has(t,n){return n in t||n in Lt}})):e.proxy}function Oc(e,t=!0){return K(e)?e.displayName||e.name:e.name||t&&e.__name}function Lc(e){return K(e)&&"__vccOpts"in e}const re=(e,t)=>dl(e,t,Gt);function br(e,t,n){const r=arguments.length;return r===2?Z(t)&&!k(t)?Cn(t)?ie(e,null,[t]):ie(e,t):ie(e,null,t):(r>3?n=Array.prototype.slice.call(arguments,2):r===3&&Cn(n)&&(n=[n]),ie(e,t,n))}const Ic="3.4.29";/** -* @vue/runtime-dom v3.4.29 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/const Mc="http://www.w3.org/2000/svg",Pc="http://www.w3.org/1998/Math/MathML",Ve=typeof document<"u"?document:null,Ss=Ve&&Ve.createElement("template"),Nc={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,r)=>{const s=t==="svg"?Ve.createElementNS(Mc,e):t==="mathml"?Ve.createElementNS(Pc,e):n?Ve.createElement(e,{is:n}):Ve.createElement(e);return e==="select"&&r&&r.multiple!=null&&s.setAttribute("multiple",r.multiple),s},createText:e=>Ve.createTextNode(e),createComment:e=>Ve.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>Ve.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,r,s,o){const i=n?n.previousSibling:t.lastChild;if(s&&(s===o||s.nextSibling))for(;t.insertBefore(s.cloneNode(!0),n),!(s===o||!(s=s.nextSibling)););else{Ss.innerHTML=r==="svg"?`${e}`:r==="mathml"?`${e}`:e;const l=Ss.content;if(r==="svg"||r==="mathml"){const c=l.firstChild;for(;c.firstChild;)l.appendChild(c.firstChild);l.removeChild(c)}t.insertBefore(l,n)}return[i?i.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},ke="transition",Tt="animation",Ut=Symbol("_vtc"),li=(e,{slots:t})=>br(gc,Fc(e),t);li.displayName="Transition";const ci={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String};li.props=le({},Go,ci);const rt=(e,t=[])=>{k(e)?e.forEach(n=>n(...t)):e&&e(...t)},Ts=e=>e?k(e)?e.some(t=>t.length>1):e.length>1:!1;function Fc(e){const t={};for(const T in e)T in ci||(t[T]=e[T]);if(e.css===!1)return t;const{name:n="v",type:r,duration:s,enterFromClass:o=`${n}-enter-from`,enterActiveClass:i=`${n}-enter-active`,enterToClass:l=`${n}-enter-to`,appearFromClass:c=o,appearActiveClass:a=i,appearToClass:f=l,leaveFromClass:h=`${n}-leave-from`,leaveActiveClass:m=`${n}-leave-active`,leaveToClass:_=`${n}-leave-to`}=e,C=$c(s),L=C&&C[0],H=C&&C[1],{onBeforeEnter:W,onEnter:D,onEnterCancelled:p,onLeave:y,onLeaveCancelled:M,onBeforeAppear:A=W,onAppear:F=D,onAppearCancelled:$=p}=t,I=(T,G,ne)=>{st(T,G?f:l),st(T,G?a:i),ne&&ne()},w=(T,G)=>{T._isLeaving=!1,st(T,h),st(T,_),st(T,m),G&&G()},N=T=>(G,ne)=>{const ce=T?F:D,U=()=>I(G,T,ne);rt(ce,[G,U]),As(()=>{st(G,T?c:o),Ke(G,T?f:l),Ts(ce)||Rs(G,r,L,U)})};return le(t,{onBeforeEnter(T){rt(W,[T]),Ke(T,o),Ke(T,i)},onBeforeAppear(T){rt(A,[T]),Ke(T,c),Ke(T,a)},onEnter:N(!1),onAppear:N(!0),onLeave(T,G){T._isLeaving=!0;const ne=()=>w(T,G);Ke(T,h),Ke(T,m),Vc(),As(()=>{T._isLeaving&&(st(T,h),Ke(T,_),Ts(y)||Rs(T,r,H,ne))}),rt(y,[T,ne])},onEnterCancelled(T){I(T,!1),rt(p,[T])},onAppearCancelled(T){I(T,!0),rt($,[T])},onLeaveCancelled(T){w(T),rt(M,[T])}})}function $c(e){if(e==null)return null;if(Z(e))return[Xn(e.enter),Xn(e.leave)];{const t=Xn(e);return[t,t]}}function Xn(e){return Fi(e)}function Ke(e,t){t.split(/\s+/).forEach(n=>n&&e.classList.add(n)),(e[Ut]||(e[Ut]=new Set)).add(t)}function st(e,t){t.split(/\s+/).forEach(r=>r&&e.classList.remove(r));const n=e[Ut];n&&(n.delete(t),n.size||(e[Ut]=void 0))}function As(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let Hc=0;function Rs(e,t,n,r){const s=e._endId=++Hc,o=()=>{s===e._endId&&r()};if(n)return setTimeout(o,n);const{type:i,timeout:l,propCount:c}=jc(e,t);if(!i)return r();const a=i+"end";let f=0;const h=()=>{e.removeEventListener(a,m),o()},m=_=>{_.target===e&&++f>=c&&h()};setTimeout(()=>{f(n[C]||"").split(", "),s=r(`${ke}Delay`),o=r(`${ke}Duration`),i=Os(s,o),l=r(`${Tt}Delay`),c=r(`${Tt}Duration`),a=Os(l,c);let f=null,h=0,m=0;t===ke?i>0&&(f=ke,h=i,m=o.length):t===Tt?a>0&&(f=Tt,h=a,m=c.length):(h=Math.max(i,a),f=h>0?i>a?ke:Tt:null,m=f?f===ke?o.length:c.length:0);const _=f===ke&&/\b(transform|all)(,|$)/.test(r(`${ke}Property`).toString());return{type:f,timeout:h,propCount:m,hasTransform:_}}function Os(e,t){for(;e.lengthLs(n)+Ls(e[r])))}function Ls(e){return e==="auto"?0:Number(e.slice(0,-1).replace(",","."))*1e3}function Vc(){return document.body.offsetHeight}function Dc(e,t,n){const r=e[Ut];r&&(t=(t?[t,...r]:[...r]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const Is=Symbol("_vod"),Uc=Symbol("_vsh"),Bc=Symbol(""),kc=/(^|;)\s*display\s*:/;function Kc(e,t,n){const r=e.style,s=oe(n);let o=!1;if(n&&!s){if(t)if(oe(t))for(const i of t.split(";")){const l=i.slice(0,i.indexOf(":")).trim();n[l]==null&&pn(r,l,"")}else for(const i in t)n[i]==null&&pn(r,i,"");for(const i in n)i==="display"&&(o=!0),pn(r,i,n[i])}else if(s){if(t!==n){const i=r[Bc];i&&(n+=";"+i),r.cssText=n,o=kc.test(n)}}else t&&e.removeAttribute("style");Is in e&&(e[Is]=o?r.display:"",e[Uc]&&(r.display="none"))}const Ms=/\s*!important$/;function pn(e,t,n){if(k(n))n.forEach(r=>pn(e,t,r));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const r=Wc(e,t);Ms.test(n)?e.setProperty(ft(r),n.replace(Ms,""),"important"):e[r]=n}}const Ps=["Webkit","Moz","ms"],Yn={};function Wc(e,t){const n=Yn[t];if(n)return n;let r=$e(t);if(r!=="filter"&&r in e)return Yn[t]=r;r=An(r);for(let s=0;sJn||(Yc.then(()=>Jn=0),Jn=Date.now());function Qc(e,t){const n=r=>{if(!r._vts)r._vts=Date.now();else if(r._vts<=n.attached)return;Se(Zc(r,n.value),t,5,[r])};return n.value=e,n.attached=Jc(),n}function Zc(e,t){if(k(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(r=>s=>!s._stopped&&r&&r(s))}else return t}const js=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,ea=(e,t,n,r,s,o,i,l,c)=>{const a=s==="svg";t==="class"?Dc(e,r,a):t==="style"?Kc(e,n,r):kt(t)?Er(t)||zc(e,t,n,r,i):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):ta(e,t,r,a))?(qc(e,t,r,o,i,l,c),(t==="value"||t==="checked"||t==="selected")&&Fs(e,t,r,a,i,t!=="value")):(t==="true-value"?e._trueValue=r:t==="false-value"&&(e._falseValue=r),Fs(e,t,r,a))};function ta(e,t,n,r){if(r)return!!(t==="innerHTML"||t==="textContent"||t in e&&js(t)&&K(n));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const s=e.tagName;if(s==="IMG"||s==="VIDEO"||s==="CANVAS"||s==="SOURCE")return!1}return js(t)&&oe(n)?!1:t in e}const Vs=e=>{const t=e.props["onUpdate:modelValue"]||!1;return k(t)?n=>fn(t,n):t};function na(e){e.target.composing=!0}function Ds(e){const t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event("input")))}const Qn=Symbol("_assign"),_u={created(e,{modifiers:{lazy:t,trim:n,number:r}},s){e[Qn]=Vs(s);const o=r||s.props&&s.props.type==="number";gt(e,t?"change":"input",i=>{if(i.target.composing)return;let l=e.value;n&&(l=l.trim()),o&&(l=cr(l)),e[Qn](l)}),n&>(e,"change",()=>{e.value=e.value.trim()}),t||(gt(e,"compositionstart",na),gt(e,"compositionend",Ds),gt(e,"change",Ds))},mounted(e,{value:t}){e.value=t??""},beforeUpdate(e,{value:t,oldValue:n,modifiers:{lazy:r,trim:s,number:o}},i){if(e[Qn]=Vs(i),e.composing)return;const l=(o||e.type==="number")&&!/^0\d/.test(e.value)?cr(e.value):e.value,c=t??"";l!==c&&(document.activeElement===e&&e.type!=="range"&&(r&&t===n||s&&e.value.trim()===c)||(e.value=c))}},ra=["ctrl","shift","alt","meta"],sa={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,t)=>ra.some(n=>e[`${n}Key`]&&!t.includes(n))},vu=(e,t)=>{const n=e._withMods||(e._withMods={}),r=t.join(".");return n[r]||(n[r]=(s,...o)=>{for(let i=0;i{const n=e._withKeys||(e._withKeys={}),r=t.join(".");return n[r]||(n[r]=s=>{if(!("key"in s))return;const o=ft(s.key);if(t.some(i=>i===o||oa[i]===o))return e(s)})},ai=le({patchProp:ea},Nc);let Ft,Us=!1;function ia(){return Ft||(Ft=sc(ai))}function la(){return Ft=Us?Ft:oc(ai),Us=!0,Ft}const wu=(...e)=>{const t=ia().createApp(...e),{mount:n}=t;return t.mount=r=>{const s=fi(r);if(!s)return;const o=t._component;!K(o)&&!o.render&&!o.template&&(o.template=s.innerHTML),s.innerHTML="";const i=n(s,!1,ui(s));return s instanceof Element&&(s.removeAttribute("v-cloak"),s.setAttribute("data-v-app","")),i},t},Eu=(...e)=>{const t=la().createApp(...e),{mount:n}=t;return t.mount=r=>{const s=fi(r);if(s)return n(s,!0,ui(s))},t};function ui(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function fi(e){return oe(e)?document.querySelector(e):e}const Cu=(e,t)=>{const n=e.__vccOpts||e;for(const[r,s]of t)n[r]=s;return n},ca="modulepreload",aa=function(e){return"/GeometryOps.jl/dev/"+e},Bs={},xu=function(t,n,r){let s=Promise.resolve();if(n&&n.length>0){document.getElementsByTagName("link");const o=document.querySelector("meta[property=csp-nonce]"),i=(o==null?void 0:o.nonce)||(o==null?void 0:o.getAttribute("nonce"));s=Promise.all(n.map(l=>{if(l=aa(l),l in Bs)return;Bs[l]=!0;const c=l.endsWith(".css"),a=c?'[rel="stylesheet"]':"";if(document.querySelector(`link[href="${l}"]${a}`))return;const f=document.createElement("link");if(f.rel=c?"stylesheet":ca,c||(f.as="script",f.crossOrigin=""),f.href=l,i&&f.setAttribute("nonce",i),document.head.appendChild(f),c)return new Promise((h,m)=>{f.addEventListener("load",h),f.addEventListener("error",()=>m(new Error(`Unable to preload CSS for ${l}`)))})}))}return s.then(()=>t()).catch(o=>{const i=new Event("vite:preloadError",{cancelable:!0});if(i.payload=o,window.dispatchEvent(i),!i.defaultPrevented)throw o})},ua=window.__VP_SITE_DATA__;function kr(e){return so()?(Ki(e),!0):!1}function Fe(e){return typeof e=="function"?e():bo(e)}const di=typeof window<"u"&&typeof document<"u";typeof WorkerGlobalScope<"u"&&globalThis instanceof WorkerGlobalScope;const fa=Object.prototype.toString,da=e=>fa.call(e)==="[object Object]",Bt=()=>{},ks=ha();function ha(){var e,t;return di&&((e=window==null?void 0:window.navigator)==null?void 0:e.userAgent)&&(/iP(?:ad|hone|od)/.test(window.navigator.userAgent)||((t=window==null?void 0:window.navigator)==null?void 0:t.maxTouchPoints)>2&&/iPad|Macintosh/.test(window==null?void 0:window.navigator.userAgent))}function pa(e,t){function n(...r){return new Promise((s,o)=>{Promise.resolve(e(()=>t.apply(this,r),{fn:t,thisArg:this,args:r})).then(s).catch(o)})}return n}const hi=e=>e();function ga(e,t={}){let n,r,s=Bt;const o=l=>{clearTimeout(l),s(),s=Bt};return l=>{const c=Fe(e),a=Fe(t.maxWait);return n&&o(n),c<=0||a!==void 0&&a<=0?(r&&(o(r),r=null),Promise.resolve(l())):new Promise((f,h)=>{s=t.rejectOnCancel?h:f,a&&!r&&(r=setTimeout(()=>{n&&o(n),r=null,f(l())},a)),n=setTimeout(()=>{r&&o(r),r=null,f(l())},c)})}}function ma(e=hi){const t=se(!0);function n(){t.value=!1}function r(){t.value=!0}const s=(...o)=>{t.value&&e(...o)};return{isActive:Ln(t),pause:n,resume:r,eventFilter:s}}function ya(e){return jn()}function pi(...e){if(e.length!==1)return vl(...e);const t=e[0];return typeof t=="function"?Ln(ml(()=>({get:t,set:Bt}))):se(t)}function gi(e,t,n={}){const{eventFilter:r=hi,...s}=n;return Ne(e,pa(r,t),s)}function _a(e,t,n={}){const{eventFilter:r,...s}=n,{eventFilter:o,pause:i,resume:l,isActive:c}=ma(r);return{stop:gi(e,t,{...s,eventFilter:o}),pause:i,resume:l,isActive:c}}function Kr(e,t=!0,n){ya()?xt(e,n):t?e():In(e)}function Su(e,t,n={}){const{debounce:r=0,maxWait:s=void 0,...o}=n;return gi(e,t,{...o,eventFilter:ga(r,{maxWait:s})})}function Tu(e,t,n){let r;de(n)?r={evaluating:n}:r={};const{lazy:s=!1,evaluating:o=void 0,shallow:i=!0,onError:l=Bt}=r,c=se(!s),a=i?Fr(t):se(t);let f=0;return Ur(async h=>{if(!c.value)return;f++;const m=f;let _=!1;o&&Promise.resolve().then(()=>{o.value=!0});try{const C=await e(L=>{h(()=>{o&&(o.value=!1),_||L()})});m===f&&(a.value=C)}catch(C){l(C)}finally{o&&m===f&&(o.value=!1),_=!0}}),s?re(()=>(c.value=!0,a.value)):a}function mi(e){var t;const n=Fe(e);return(t=n==null?void 0:n.$el)!=null?t:n}const Oe=di?window:void 0;function Ct(...e){let t,n,r,s;if(typeof e[0]=="string"||Array.isArray(e[0])?([n,r,s]=e,t=Oe):[t,n,r,s]=e,!t)return Bt;Array.isArray(n)||(n=[n]),Array.isArray(r)||(r=[r]);const o=[],i=()=>{o.forEach(f=>f()),o.length=0},l=(f,h,m,_)=>(f.addEventListener(h,m,_),()=>f.removeEventListener(h,m,_)),c=Ne(()=>[mi(t),Fe(s)],([f,h])=>{if(i(),!f)return;const m=da(h)?{...h}:h;o.push(...n.flatMap(_=>r.map(C=>l(f,_,C,m))))},{immediate:!0,flush:"post"}),a=()=>{c(),i()};return kr(a),a}function va(e){return typeof e=="function"?e:typeof e=="string"?t=>t.key===e:Array.isArray(e)?t=>e.includes(t.key):()=>!0}function Au(...e){let t,n,r={};e.length===3?(t=e[0],n=e[1],r=e[2]):e.length===2?typeof e[1]=="object"?(t=!0,n=e[0],r=e[1]):(t=e[0],n=e[1]):(t=!0,n=e[0]);const{target:s=Oe,eventName:o="keydown",passive:i=!1,dedupe:l=!1}=r,c=va(t);return Ct(s,o,f=>{f.repeat&&Fe(l)||c(f)&&n(f)},i)}function ba(){const e=se(!1),t=jn();return t&&xt(()=>{e.value=!0},t),e}function wa(e){const t=ba();return re(()=>(t.value,!!e()))}function yi(e,t={}){const{window:n=Oe}=t,r=wa(()=>n&&"matchMedia"in n&&typeof n.matchMedia=="function");let s;const o=se(!1),i=a=>{o.value=a.matches},l=()=>{s&&("removeEventListener"in s?s.removeEventListener("change",i):s.removeListener(i))},c=Ur(()=>{r.value&&(l(),s=n.matchMedia(Fe(e)),"addEventListener"in s?s.addEventListener("change",i):s.addListener(i),o.value=s.matches)});return kr(()=>{c(),l(),s=void 0}),o}const ln=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},cn="__vueuse_ssr_handlers__",Ea=Ca();function Ca(){return cn in ln||(ln[cn]=ln[cn]||{}),ln[cn]}function _i(e,t){return Ea[e]||t}function xa(e){return e==null?"any":e instanceof Set?"set":e instanceof Map?"map":e instanceof Date?"date":typeof e=="boolean"?"boolean":typeof e=="string"?"string":typeof e=="object"?"object":Number.isNaN(e)?"any":"number"}const Sa={boolean:{read:e=>e==="true",write:e=>String(e)},object:{read:e=>JSON.parse(e),write:e=>JSON.stringify(e)},number:{read:e=>Number.parseFloat(e),write:e=>String(e)},any:{read:e=>e,write:e=>String(e)},string:{read:e=>e,write:e=>String(e)},map:{read:e=>new Map(JSON.parse(e)),write:e=>JSON.stringify(Array.from(e.entries()))},set:{read:e=>new Set(JSON.parse(e)),write:e=>JSON.stringify(Array.from(e))},date:{read:e=>new Date(e),write:e=>e.toISOString()}},Ks="vueuse-storage";function Wr(e,t,n,r={}){var s;const{flush:o="pre",deep:i=!0,listenToStorageChanges:l=!0,writeDefaults:c=!0,mergeDefaults:a=!1,shallow:f,window:h=Oe,eventFilter:m,onError:_=w=>{console.error(w)},initOnMounted:C}=r,L=(f?Fr:se)(typeof t=="function"?t():t);if(!n)try{n=_i("getDefaultStorage",()=>{var w;return(w=Oe)==null?void 0:w.localStorage})()}catch(w){_(w)}if(!n)return L;const H=Fe(t),W=xa(H),D=(s=r.serializer)!=null?s:Sa[W],{pause:p,resume:y}=_a(L,()=>A(L.value),{flush:o,deep:i,eventFilter:m});h&&l&&Kr(()=>{Ct(h,"storage",$),Ct(h,Ks,I),C&&$()}),C||$();function M(w,N){h&&h.dispatchEvent(new CustomEvent(Ks,{detail:{key:e,oldValue:w,newValue:N,storageArea:n}}))}function A(w){try{const N=n.getItem(e);if(w==null)M(N,null),n.removeItem(e);else{const T=D.write(w);N!==T&&(n.setItem(e,T),M(N,T))}}catch(N){_(N)}}function F(w){const N=w?w.newValue:n.getItem(e);if(N==null)return c&&H!=null&&n.setItem(e,D.write(H)),H;if(!w&&a){const T=D.read(N);return typeof a=="function"?a(T,H):W==="object"&&!Array.isArray(T)?{...H,...T}:T}else return typeof N!="string"?N:D.read(N)}function $(w){if(!(w&&w.storageArea!==n)){if(w&&w.key==null){L.value=H;return}if(!(w&&w.key!==e)){p();try{(w==null?void 0:w.newValue)!==D.write(L.value)&&(L.value=F(w))}catch(N){_(N)}finally{w?In(y):y()}}}}function I(w){$(w.detail)}return L}function vi(e){return yi("(prefers-color-scheme: dark)",e)}function Ta(e={}){const{selector:t="html",attribute:n="class",initialValue:r="auto",window:s=Oe,storage:o,storageKey:i="vueuse-color-scheme",listenToStorageChanges:l=!0,storageRef:c,emitAuto:a,disableTransition:f=!0}=e,h={auto:"",light:"light",dark:"dark",...e.modes||{}},m=vi({window:s}),_=re(()=>m.value?"dark":"light"),C=c||(i==null?pi(r):Wr(i,r,o,{window:s,listenToStorageChanges:l})),L=re(()=>C.value==="auto"?_.value:C.value),H=_i("updateHTMLAttrs",(y,M,A)=>{const F=typeof y=="string"?s==null?void 0:s.document.querySelector(y):mi(y);if(!F)return;let $;if(f&&($=s.document.createElement("style"),$.appendChild(document.createTextNode("*,*::before,*::after{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;-ms-transition:none!important;transition:none!important}")),s.document.head.appendChild($)),M==="class"){const I=A.split(/\s/g);Object.values(h).flatMap(w=>(w||"").split(/\s/g)).filter(Boolean).forEach(w=>{I.includes(w)?F.classList.add(w):F.classList.remove(w)})}else F.setAttribute(M,A);f&&(s.getComputedStyle($).opacity,document.head.removeChild($))});function W(y){var M;H(t,n,(M=h[y])!=null?M:y)}function D(y){e.onChanged?e.onChanged(y,W):W(y)}Ne(L,D,{flush:"post",immediate:!0}),Kr(()=>D(L.value));const p=re({get(){return a?C.value:L.value},set(y){C.value=y}});try{return Object.assign(p,{store:C,system:_,state:L})}catch{return p}}function Aa(e={}){const{valueDark:t="dark",valueLight:n="",window:r=Oe}=e,s=Ta({...e,onChanged:(l,c)=>{var a;e.onChanged?(a=e.onChanged)==null||a.call(e,l==="dark",c,l):c(l)},modes:{dark:t,light:n}}),o=re(()=>s.system?s.system.value:vi({window:r}).value?"dark":"light");return re({get(){return s.value==="dark"},set(l){const c=l?"dark":"light";o.value===c?s.value="auto":s.value=c}})}function Zn(e){return typeof Window<"u"&&e instanceof Window?e.document.documentElement:typeof Document<"u"&&e instanceof Document?e.documentElement:e}function Ru(e,t,n={}){const{window:r=Oe}=n;return Wr(e,t,r==null?void 0:r.localStorage,n)}function bi(e){const t=window.getComputedStyle(e);if(t.overflowX==="scroll"||t.overflowY==="scroll"||t.overflowX==="auto"&&e.clientWidth1?!0:(t.preventDefault&&t.preventDefault(),!1)}const er=new WeakMap;function Ou(e,t=!1){const n=se(t);let r=null,s="";Ne(pi(e),l=>{const c=Zn(Fe(l));if(c){const a=c;if(er.get(a)||er.set(a,a.style.overflow),a.style.overflow!=="hidden"&&(s=a.style.overflow),a.style.overflow==="hidden")return n.value=!0;if(n.value)return a.style.overflow="hidden"}},{immediate:!0});const o=()=>{const l=Zn(Fe(e));!l||n.value||(ks&&(r=Ct(l,"touchmove",c=>{Ra(c)},{passive:!1})),l.style.overflow="hidden",n.value=!0)},i=()=>{const l=Zn(Fe(e));!l||!n.value||(ks&&(r==null||r()),l.style.overflow=s,er.delete(l),n.value=!1)};return kr(i),re({get(){return n.value},set(l){l?o():i()}})}function Lu(e,t,n={}){const{window:r=Oe}=n;return Wr(e,t,r==null?void 0:r.sessionStorage,n)}function Iu(e={}){const{window:t=Oe,behavior:n="auto"}=e;if(!t)return{x:se(0),y:se(0)};const r=se(t.scrollX),s=se(t.scrollY),o=re({get(){return r.value},set(l){scrollTo({left:l,behavior:n})}}),i=re({get(){return s.value},set(l){scrollTo({top:l,behavior:n})}});return Ct(t,"scroll",()=>{r.value=t.scrollX,s.value=t.scrollY},{capture:!1,passive:!0}),{x:o,y:i}}function Mu(e={}){const{window:t=Oe,initialWidth:n=Number.POSITIVE_INFINITY,initialHeight:r=Number.POSITIVE_INFINITY,listenOrientation:s=!0,includeScrollbar:o=!0}=e,i=se(n),l=se(r),c=()=>{t&&(o?(i.value=t.innerWidth,l.value=t.innerHeight):(i.value=t.document.documentElement.clientWidth,l.value=t.document.documentElement.clientHeight))};if(c(),Kr(c),Ct("resize",c,{passive:!0}),s){const a=yi("(orientation: portrait)");Ne(a,()=>c())}return{width:i,height:l}}var tr={BASE_URL:"/GeometryOps.jl/dev/",MODE:"production",DEV:!1,PROD:!0,SSR:!1},nr={};const wi=/^(?:[a-z]+:|\/\/)/i,Oa="vitepress-theme-appearance",La=/#.*$/,Ia=/[?#].*$/,Ma=/(?:(^|\/)index)?\.(?:md|html)$/,he=typeof document<"u",Ei={relativePath:"404.md",filePath:"",title:"404",description:"Not Found",headers:[],frontmatter:{sidebar:!1,layout:"page"},lastUpdated:0,isNotFound:!0};function Pa(e,t,n=!1){if(t===void 0)return!1;if(e=Ws(`/${e}`),n)return new RegExp(t).test(e);if(Ws(t)!==e)return!1;const r=t.match(La);return r?(he?location.hash:"")===r[0]:!0}function Ws(e){return decodeURI(e).replace(Ia,"").replace(Ma,"$1")}function Na(e){return wi.test(e)}function Fa(e,t){return Object.keys((e==null?void 0:e.locales)||{}).find(n=>n!=="root"&&!Na(n)&&Pa(t,`/${n}/`,!0))||"root"}function $a(e,t){var r,s,o,i,l,c,a;const n=Fa(e,t);return Object.assign({},e,{localeIndex:n,lang:((r=e.locales[n])==null?void 0:r.lang)??e.lang,dir:((s=e.locales[n])==null?void 0:s.dir)??e.dir,title:((o=e.locales[n])==null?void 0:o.title)??e.title,titleTemplate:((i=e.locales[n])==null?void 0:i.titleTemplate)??e.titleTemplate,description:((l=e.locales[n])==null?void 0:l.description)??e.description,head:xi(e.head,((c=e.locales[n])==null?void 0:c.head)??[]),themeConfig:{...e.themeConfig,...(a=e.locales[n])==null?void 0:a.themeConfig}})}function Ci(e,t){const n=t.title||e.title,r=t.titleTemplate??e.titleTemplate;if(typeof r=="string"&&r.includes(":title"))return r.replace(/:title/g,n);const s=Ha(e.title,r);return n===s.slice(3)?n:`${n}${s}`}function Ha(e,t){return t===!1?"":t===!0||t===void 0?` | ${e}`:e===t?"":` | ${t}`}function ja(e,t){const[n,r]=t;if(n!=="meta")return!1;const s=Object.entries(r)[0];return s==null?!1:e.some(([o,i])=>o===n&&i[s[0]]===s[1])}function xi(e,t){return[...e.filter(n=>!ja(t,n)),...t]}const Va=/[\u0000-\u001F"#$&*+,:;<=>?[\]^`{|}\u007F]/g,Da=/^[a-z]:/i;function qs(e){const t=Da.exec(e),n=t?t[0]:"";return n+e.slice(n.length).replace(Va,"_").replace(/(^|\/)_+(?=[^/]*$)/,"$1")}const rr=new Set;function Ua(e){if(rr.size===0){const n=typeof process=="object"&&(nr==null?void 0:nr.VITE_EXTRA_EXTENSIONS)||(tr==null?void 0:tr.VITE_EXTRA_EXTENSIONS)||"";("3g2,3gp,aac,ai,apng,au,avif,bin,bmp,cer,class,conf,crl,css,csv,dll,doc,eps,epub,exe,gif,gz,ics,ief,jar,jpe,jpeg,jpg,js,json,jsonld,m4a,man,mid,midi,mjs,mov,mp2,mp3,mp4,mpe,mpeg,mpg,mpp,oga,ogg,ogv,ogx,opus,otf,p10,p7c,p7m,p7s,pdf,png,ps,qt,roff,rtf,rtx,ser,svg,t,tif,tiff,tr,ts,tsv,ttf,txt,vtt,wav,weba,webm,webp,woff,woff2,xhtml,xml,yaml,yml,zip"+(n&&typeof n=="string"?","+n:"")).split(",").forEach(r=>rr.add(r))}const t=e.split(".").pop();return t==null||!rr.has(t.toLowerCase())}function Pu(e){return e.replace(/[|\\{}()[\]^$+*?.]/g,"\\$&").replace(/-/g,"\\x2d")}const Ba=Symbol(),at=Fr(ua);function Nu(e){const t=re(()=>$a(at.value,e.data.relativePath)),n=t.value.appearance,r=n==="force-dark"?se(!0):n?Aa({storageKey:Oa,initialValue:()=>typeof n=="string"?n:"auto",...typeof n=="object"?n:{}}):se(!1),s=se(he?location.hash:"");return he&&window.addEventListener("hashchange",()=>{s.value=location.hash}),Ne(()=>e.data,()=>{s.value=he?location.hash:""}),{site:t,theme:re(()=>t.value.themeConfig),page:re(()=>e.data),frontmatter:re(()=>e.data.frontmatter),params:re(()=>e.data.params),lang:re(()=>t.value.lang),dir:re(()=>e.data.frontmatter.dir||t.value.dir),localeIndex:re(()=>t.value.localeIndex||"root"),title:re(()=>Ci(t.value,e.data)),description:re(()=>e.data.description||t.value.description),isDark:r,hash:re(()=>s.value)}}function ka(){const e=wt(Ba);if(!e)throw new Error("vitepress data not properly injected in app");return e}function Ka(e,t){return`${e}${t}`.replace(/\/+/g,"/")}function Gs(e){return wi.test(e)||!e.startsWith("/")?e:Ka(at.value.base,e)}function Wa(e){let t=e.replace(/\.html$/,"");if(t=decodeURIComponent(t),t=t.replace(/\/$/,"/index"),he){const n="/GeometryOps.jl/dev/";t=qs(t.slice(n.length).replace(/\//g,"_")||"index")+".md";let r=__VP_HASH_MAP__[t.toLowerCase()];if(r||(t=t.endsWith("_index.md")?t.slice(0,-9)+".md":t.slice(0,-3)+"_index.md",r=__VP_HASH_MAP__[t.toLowerCase()]),!r)return null;t=`${n}assets/${t}.${r}.js`}else t=`./${qs(t.slice(1).replace(/\//g,"_"))}.md.js`;return t}let gn=[];function Fu(e){gn.push(e),$n(()=>{gn=gn.filter(t=>t!==e)})}function qa(){let e=at.value.scrollOffset,t=0,n=24;if(typeof e=="object"&&"padding"in e&&(n=e.padding,e=e.selector),typeof e=="number")t=e;else if(typeof e=="string")t=zs(e,n);else if(Array.isArray(e))for(const r of e){const s=zs(r,n);if(s){t=s;break}}return t}function zs(e,t){const n=document.querySelector(e);if(!n)return 0;const r=n.getBoundingClientRect().bottom;return r<0?0:r+t}const Ga=Symbol(),Si="http://a.com",za=()=>({path:"/",component:null,data:Ei});function $u(e,t){const n=On(za()),r={route:n,go:s};async function s(l=he?location.href:"/"){var c,a;l=sr(l),await((c=r.onBeforeRouteChange)==null?void 0:c.call(r,l))!==!1&&(he&&l!==sr(location.href)&&(history.replaceState({scrollPosition:window.scrollY},""),history.pushState({},"",l)),await i(l),await((a=r.onAfterRouteChanged)==null?void 0:a.call(r,l)))}let o=null;async function i(l,c=0,a=!1){var m;if(await((m=r.onBeforePageLoad)==null?void 0:m.call(r,l))===!1)return;const f=new URL(l,Si),h=o=f.pathname;try{let _=await e(h);if(!_)throw new Error(`Page not found: ${h}`);if(o===h){o=null;const{default:C,__pageData:L}=_;if(!C)throw new Error(`Invalid route component: ${C}`);n.path=he?h:Gs(h),n.component=dn(C),n.data=dn(L),he&&In(()=>{let H=at.value.base+L.relativePath.replace(/(?:(^|\/)index)?\.md$/,"$1");if(!at.value.cleanUrls&&!H.endsWith("/")&&(H+=".html"),H!==f.pathname&&(f.pathname=H,l=H+f.search+f.hash,history.replaceState({},"",l)),f.hash&&!c){let W=null;try{W=document.getElementById(decodeURIComponent(f.hash).slice(1))}catch(D){console.warn(D)}if(W){Xs(W,f.hash);return}}window.scrollTo(0,c)})}}catch(_){if(!/fetch|Page not found/.test(_.message)&&!/^\/404(\.html|\/)?$/.test(l)&&console.error(_),!a)try{const C=await fetch(at.value.base+"hashmap.json");window.__VP_HASH_MAP__=await C.json(),await i(l,c,!0);return}catch{}if(o===h){o=null,n.path=he?h:Gs(h),n.component=t?dn(t):null;const C=he?h.replace(/(^|\/)$/,"$1index").replace(/(\.html)?$/,".md").replace(/^\//,""):"404.md";n.data={...Ei,relativePath:C}}}}return he&&(history.state===null&&history.replaceState({},""),window.addEventListener("click",l=>{if(l.target.closest("button"))return;const a=l.target.closest("a");if(a&&!a.closest(".vp-raw")&&(a instanceof SVGElement||!a.download)){const{target:f}=a,{href:h,origin:m,pathname:_,hash:C,search:L}=new URL(a.href instanceof SVGAnimatedString?a.href.animVal:a.href,a.baseURI),H=new URL(location.href);!l.ctrlKey&&!l.shiftKey&&!l.altKey&&!l.metaKey&&!f&&m===H.origin&&Ua(_)&&(l.preventDefault(),_===H.pathname&&L===H.search?(C!==H.hash&&(history.pushState({},"",h),window.dispatchEvent(new HashChangeEvent("hashchange",{oldURL:H.href,newURL:h}))),C?Xs(a,C,a.classList.contains("header-anchor")):window.scrollTo(0,0)):s(h))}},{capture:!0}),window.addEventListener("popstate",async l=>{var c;l.state!==null&&(await i(sr(location.href),l.state&&l.state.scrollPosition||0),(c=r.onAfterRouteChanged)==null||c.call(r,location.href))}),window.addEventListener("hashchange",l=>{l.preventDefault()})),r}function Xa(){const e=wt(Ga);if(!e)throw new Error("useRouter() is called without provider.");return e}function Ti(){return Xa().route}function Xs(e,t,n=!1){let r=null;try{r=e.classList.contains("header-anchor")?e:document.getElementById(decodeURIComponent(t).slice(1))}catch(s){console.warn(s)}if(r){let s=function(){!n||Math.abs(i-window.scrollY)>window.innerHeight?window.scrollTo(0,i):window.scrollTo({left:0,top:i,behavior:"smooth"})};const o=parseInt(window.getComputedStyle(r).paddingTop,10),i=window.scrollY+r.getBoundingClientRect().top-qa()+o;requestAnimationFrame(s)}}function sr(e){const t=new URL(e,Si);return t.pathname=t.pathname.replace(/(^|\/)index(\.html)?$/,"$1"),at.value.cleanUrls?t.pathname=t.pathname.replace(/\.html$/,""):!t.pathname.endsWith("/")&&!t.pathname.endsWith(".html")&&(t.pathname+=".html"),t.pathname+t.search+t.hash}const or=()=>gn.forEach(e=>e()),Hu=Hr({name:"VitePressContent",props:{as:{type:[Object,String],default:"div"}},setup(e){const t=Ti(),{site:n}=ka();return()=>br(e.as,n.value.contentProps??{style:{position:"relative"}},[t.component?br(t.component,{onVnodeMounted:or,onVnodeUpdated:or,onVnodeUnmounted:or}):"404 Page Not Found"])}}),ju=Hr({setup(e,{slots:t}){const n=se(!1);return xt(()=>{n.value=!0}),()=>n.value&&t.default?t.default():null}});function Vu(){he&&window.addEventListener("click",e=>{var n;const t=e.target;if(t.matches(".vp-code-group input")){const r=(n=t.parentElement)==null?void 0:n.parentElement;if(!r)return;const s=Array.from(r.querySelectorAll("input")).indexOf(t);if(s<0)return;const o=r.querySelector(".blocks");if(!o)return;const i=Array.from(o.children).find(a=>a.classList.contains("active"));if(!i)return;const l=o.children[s];if(!l||i===l)return;i.classList.remove("active"),l.classList.add("active");const c=r==null?void 0:r.querySelector(`label[for="${t.id}"]`);c==null||c.scrollIntoView({block:"nearest"})}})}function Du(){if(he){const e=new WeakMap;window.addEventListener("click",t=>{var r;const n=t.target;if(n.matches('div[class*="language-"] > button.copy')){const s=n.parentElement,o=(r=n.nextElementSibling)==null?void 0:r.nextElementSibling;if(!s||!o)return;const i=/language-(shellscript|shell|bash|sh|zsh)/.test(s.className),l=[".vp-copy-ignore",".diff.remove"],c=o.cloneNode(!0);c.querySelectorAll(l.join(",")).forEach(f=>f.remove());let a=c.textContent||"";i&&(a=a.replace(/^ *(\$|>) /gm,"").trim()),Ya(a).then(()=>{n.classList.add("copied"),clearTimeout(e.get(n));const f=setTimeout(()=>{n.classList.remove("copied"),n.blur(),e.delete(n)},2e3);e.set(n,f)})}})}}async function Ya(e){try{return navigator.clipboard.writeText(e)}catch{const t=document.createElement("textarea"),n=document.activeElement;t.value=e,t.setAttribute("readonly",""),t.style.contain="strict",t.style.position="absolute",t.style.left="-9999px",t.style.fontSize="12pt";const r=document.getSelection(),s=r?r.rangeCount>0&&r.getRangeAt(0):null;document.body.appendChild(t),t.select(),t.selectionStart=0,t.selectionEnd=e.length,document.execCommand("copy"),document.body.removeChild(t),s&&(r.removeAllRanges(),r.addRange(s)),n&&n.focus()}}function Uu(e,t){let n=!0,r=[];const s=o=>{if(n){n=!1,o.forEach(l=>{const c=ir(l);for(const a of document.head.children)if(a.isEqualNode(c)){r.push(a);return}});return}const i=o.map(ir);r.forEach((l,c)=>{const a=i.findIndex(f=>f==null?void 0:f.isEqualNode(l??null));a!==-1?delete i[a]:(l==null||l.remove(),delete r[c])}),i.forEach(l=>l&&document.head.appendChild(l)),r=[...r,...i].filter(Boolean)};Ur(()=>{const o=e.data,i=t.value,l=o&&o.description,c=o&&o.frontmatter.head||[],a=Ci(i,o);a!==document.title&&(document.title=a);const f=l||i.description;let h=document.querySelector("meta[name=description]");h?h.getAttribute("content")!==f&&h.setAttribute("content",f):ir(["meta",{name:"description",content:f}]),s(xi(i.head,Qa(c)))})}function ir([e,t,n]){const r=document.createElement(e);for(const s in t)r.setAttribute(s,t[s]);return n&&(r.innerHTML=n),e==="script"&&!t.async&&(r.async=!1),r}function Ja(e){return e[0]==="meta"&&e[1]&&e[1].name==="description"}function Qa(e){return e.filter(t=>!Ja(t))}const lr=new Set,Ai=()=>document.createElement("link"),Za=e=>{const t=Ai();t.rel="prefetch",t.href=e,document.head.appendChild(t)},eu=e=>{const t=new XMLHttpRequest;t.open("GET",e,t.withCredentials=!0),t.send()};let an;const tu=he&&(an=Ai())&&an.relList&&an.relList.supports&&an.relList.supports("prefetch")?Za:eu;function Bu(){if(!he||!window.IntersectionObserver)return;let e;if((e=navigator.connection)&&(e.saveData||/2g/.test(e.effectiveType)))return;const t=window.requestIdleCallback||setTimeout;let n=null;const r=()=>{n&&n.disconnect(),n=new IntersectionObserver(o=>{o.forEach(i=>{if(i.isIntersecting){const l=i.target;n.unobserve(l);const{pathname:c}=l;if(!lr.has(c)){lr.add(c);const a=Wa(c);a&&tu(a)}}})}),t(()=>{document.querySelectorAll("#app a").forEach(o=>{const{hostname:i,pathname:l}=new URL(o.href instanceof SVGAnimatedString?o.href.animVal:o.href,o.baseURI),c=l.match(/\.\w+$/);c&&c[0]!==".html"||o.target!=="_blank"&&i===location.hostname&&(l!==location.pathname?n.observe(o):lr.add(l))})})};xt(r);const s=Ti();Ne(()=>s.path,r),$n(()=>{n&&n.disconnect()})}export{bu as $,hu as A,Fl as B,qa as C,ou as D,cu as E,_e as F,Fr as G,Fu as H,ie as I,iu as J,wi as K,Ti as L,Ec as M,wt as N,Mu as O,Sr as P,Au as Q,In as R,Iu as S,li as T,he as U,Ln as V,au as W,xu as X,Ou as Y,Xl as Z,Cu as _,ri as a,fu as a0,vu as a1,du as a2,On as a3,vl as a4,br as a5,mu as a6,Uu as a7,Ga as a8,Nu as a9,Ba as aa,Hu as ab,ju as ac,at as ad,Eu as ae,$u as af,Wa as ag,Bu as ah,Du as ai,Vu as aj,mi as ak,kr as al,Tu as am,Lu as an,Ru as ao,Su as ap,Xa as aq,Ct as ar,Lo as as,lu as at,_u as au,de as av,pu as aw,dn as ax,wu as ay,Pu as az,ei as b,gu as c,Hr as d,yu as e,Ua as f,Gs as g,re as h,Na as i,ni as j,bo as k,su as l,Pa as m,Tr as n,Qo as o,ru as p,yi as q,uu as r,se as s,nu as t,ka as u,Ne as v,Al as w,Ur as x,xt as y,$n as z}; diff --git a/dev/assets/chunks/theme.CDgO_tJT.js b/dev/assets/chunks/theme.EsD5yLvy.js similarity index 99% rename from dev/assets/chunks/theme.CDgO_tJT.js rename to dev/assets/chunks/theme.EsD5yLvy.js index 32d8fc195..d970fa5ec 100644 --- a/dev/assets/chunks/theme.CDgO_tJT.js +++ b/dev/assets/chunks/theme.EsD5yLvy.js @@ -1,2 +1,2 @@ -const __vite__fileDeps=["assets/chunks/VPLocalSearchBox.CgLvdMHL.js","assets/chunks/framework.p73Oc50P.js"],__vite__mapDeps=i=>i.map(i=>__vite__fileDeps[i]); -import{d as _,o as a,c as u,r as c,n as N,a as F,t as w,b as y,w as p,e as f,T as pe,_ as $,u as Je,i as Ye,f as Xe,g as he,h as g,j as v,k as i,p as B,l as H,m as z,q as le,s as I,v as O,x as ee,y as K,z as fe,A as Le,B as Qe,C as Ze,D as R,F as M,E,G as Te,H as te,I as k,J as W,K as we,L as se,M as Q,N as J,O as xe,P as Ie,Q as ce,R as Ne,S as Me,U as oe,V as et,W as tt,X as st,Y as Ae,Z as _e,$ as ot,a0 as nt,a1 as at,a2 as Ce,a3 as rt,a4 as it,a5 as lt}from"./framework.p73Oc50P.js";const ct=_({__name:"VPBadge",props:{text:{},type:{default:"tip"}},setup(s){return(e,t)=>(a(),u("span",{class:N(["VPBadge",e.type])},[c(e.$slots,"default",{},()=>[F(w(e.text),1)])],2))}}),ut={key:0,class:"VPBackdrop"},dt=_({__name:"VPBackdrop",props:{show:{type:Boolean}},setup(s){return(e,t)=>(a(),y(pe,{name:"fade"},{default:p(()=>[e.show?(a(),u("div",ut)):f("",!0)]),_:1}))}}),vt=$(dt,[["__scopeId","data-v-b06cdb19"]]),L=Je;function pt(s,e){let t,o=!1;return()=>{t&&clearTimeout(t),o?t=setTimeout(s,e):(s(),(o=!0)&&setTimeout(()=>o=!1,e))}}function ue(s){return/^\//.test(s)?s:`/${s}`}function me(s){const{pathname:e,search:t,hash:o,protocol:n}=new URL(s,"http://a.com");if(Ye(s)||s.startsWith("#")||!n.startsWith("http")||!Xe(e))return s;const{site:r}=L(),l=e.endsWith("/")||e.endsWith(".html")?s:s.replace(/(?:(^\.+)\/)?.*$/,`$1${e.replace(/(\.md)?$/,r.value.cleanUrls?"":".html")}${t}${o}`);return he(l)}function X({correspondingLink:s=!1}={}){const{site:e,localeIndex:t,page:o,theme:n,hash:r}=L(),l=g(()=>{var d,m;return{label:(d=e.value.locales[t.value])==null?void 0:d.label,link:((m=e.value.locales[t.value])==null?void 0:m.link)||(t.value==="root"?"/":`/${t.value}/`)}});return{localeLinks:g(()=>Object.entries(e.value.locales).flatMap(([d,m])=>l.value.label===m.label?[]:{text:m.label,link:ht(m.link||(d==="root"?"/":`/${d}/`),n.value.i18nRouting!==!1&&s,o.value.relativePath.slice(l.value.link.length-1),!e.value.cleanUrls)+r.value})),currentLang:l}}function ht(s,e,t,o){return e?s.replace(/\/$/,"")+ue(t.replace(/(^|\/)index\.md$/,"$1").replace(/\.md$/,o?".html":"")):s}const ft=s=>(B("data-v-951cab6c"),s=s(),H(),s),_t={class:"NotFound"},mt={class:"code"},bt={class:"title"},kt=ft(()=>v("div",{class:"divider"},null,-1)),$t={class:"quote"},gt={class:"action"},yt=["href","aria-label"],Pt=_({__name:"NotFound",setup(s){const{theme:e}=L(),{currentLang:t}=X();return(o,n)=>{var r,l,h,d,m;return a(),u("div",_t,[v("p",mt,w(((r=i(e).notFound)==null?void 0:r.code)??"404"),1),v("h1",bt,w(((l=i(e).notFound)==null?void 0:l.title)??"PAGE NOT FOUND"),1),kt,v("blockquote",$t,w(((h=i(e).notFound)==null?void 0:h.quote)??"But if you don't change your direction, and if you keep looking, you may end up where you are heading."),1),v("div",gt,[v("a",{class:"link",href:i(he)(i(t).link),"aria-label":((d=i(e).notFound)==null?void 0:d.linkLabel)??"go to home"},w(((m=i(e).notFound)==null?void 0:m.linkText)??"Take me home"),9,yt)])])}}}),St=$(Pt,[["__scopeId","data-v-951cab6c"]]);function Be(s,e){if(Array.isArray(s))return Z(s);if(s==null)return[];e=ue(e);const t=Object.keys(s).sort((n,r)=>r.split("/").length-n.split("/").length).find(n=>e.startsWith(ue(n))),o=t?s[t]:[];return Array.isArray(o)?Z(o):Z(o.items,o.base)}function Vt(s){const e=[];let t=0;for(const o in s){const n=s[o];if(n.items){t=e.push(n);continue}e[t]||e.push({items:[]}),e[t].items.push(n)}return e}function Lt(s){const e=[];function t(o){for(const n of o)n.text&&n.link&&e.push({text:n.text,link:n.link,docFooterText:n.docFooterText}),n.items&&t(n.items)}return t(s),e}function de(s,e){return Array.isArray(e)?e.some(t=>de(s,t)):z(s,e.link)?!0:e.items?de(s,e.items):!1}function Z(s,e){return[...s].map(t=>{const o={...t},n=o.base||e;return n&&o.link&&(o.link=n+o.link),o.items&&(o.items=Z(o.items,n)),o})}function U(){const{frontmatter:s,page:e,theme:t}=L(),o=le("(min-width: 960px)"),n=I(!1),r=g(()=>{const C=t.value.sidebar,T=e.value.relativePath;return C?Be(C,T):[]}),l=I(r.value);O(r,(C,T)=>{JSON.stringify(C)!==JSON.stringify(T)&&(l.value=r.value)});const h=g(()=>s.value.sidebar!==!1&&l.value.length>0&&s.value.layout!=="home"),d=g(()=>m?s.value.aside==null?t.value.aside==="left":s.value.aside==="left":!1),m=g(()=>s.value.layout==="home"?!1:s.value.aside!=null?!!s.value.aside:t.value.aside!==!1),V=g(()=>h.value&&o.value),b=g(()=>h.value?Vt(l.value):[]);function P(){n.value=!0}function S(){n.value=!1}function A(){n.value?S():P()}return{isOpen:n,sidebar:l,sidebarGroups:b,hasSidebar:h,hasAside:m,leftAside:d,isSidebarEnabled:V,open:P,close:S,toggle:A}}function Tt(s,e){let t;ee(()=>{t=s.value?document.activeElement:void 0}),K(()=>{window.addEventListener("keyup",o)}),fe(()=>{window.removeEventListener("keyup",o)});function o(n){n.key==="Escape"&&s.value&&(e(),t==null||t.focus())}}function wt(s){const{page:e,hash:t}=L(),o=I(!1),n=g(()=>s.value.collapsed!=null),r=g(()=>!!s.value.link),l=I(!1),h=()=>{l.value=z(e.value.relativePath,s.value.link)};O([e,s,t],h),K(h);const d=g(()=>l.value?!0:s.value.items?de(e.value.relativePath,s.value.items):!1),m=g(()=>!!(s.value.items&&s.value.items.length));ee(()=>{o.value=!!(n.value&&s.value.collapsed)}),Le(()=>{(l.value||d.value)&&(o.value=!1)});function V(){n.value&&(o.value=!o.value)}return{collapsed:o,collapsible:n,isLink:r,isActiveLink:l,hasActiveLink:d,hasChildren:m,toggle:V}}function It(){const{hasSidebar:s}=U(),e=le("(min-width: 960px)"),t=le("(min-width: 1280px)");return{isAsideEnabled:g(()=>!t.value&&!e.value?!1:s.value?t.value:e.value)}}const ve=[];function He(s){return typeof s.outline=="object"&&!Array.isArray(s.outline)&&s.outline.label||s.outlineTitle||"On this page"}function be(s){const e=[...document.querySelectorAll(".VPDoc :where(h1,h2,h3,h4,h5,h6)")].filter(t=>t.id&&t.hasChildNodes()).map(t=>{const o=Number(t.tagName[1]);return{element:t,title:Nt(t),link:"#"+t.id,level:o}});return Mt(e,s)}function Nt(s){let e="";for(const t of s.childNodes)if(t.nodeType===1){if(t.classList.contains("VPBadge")||t.classList.contains("header-anchor")||t.classList.contains("ignore-header"))continue;e+=t.textContent}else t.nodeType===3&&(e+=t.textContent);return e.trim()}function Mt(s,e){if(e===!1)return[];const t=(typeof e=="object"&&!Array.isArray(e)?e.level:e)||2,[o,n]=typeof t=="number"?[t,t]:t==="deep"?[2,6]:t;s=s.filter(l=>l.level>=o&&l.level<=n),ve.length=0;for(const{element:l,link:h}of s)ve.push({element:l,link:h});const r=[];e:for(let l=0;l=0;d--){const m=s[d];if(m.level{requestAnimationFrame(r),window.addEventListener("scroll",o)}),Qe(()=>{l(location.hash)}),fe(()=>{window.removeEventListener("scroll",o)});function r(){if(!t.value)return;const h=window.scrollY,d=window.innerHeight,m=document.body.offsetHeight,V=Math.abs(h+d-m)<1,b=ve.map(({element:S,link:A})=>({link:A,top:Ct(S)})).filter(({top:S})=>!Number.isNaN(S)).sort((S,A)=>S.top-A.top);if(!b.length){l(null);return}if(h<1){l(null);return}if(V){l(b[b.length-1].link);return}let P=null;for(const{link:S,top:A}of b){if(A>h+Ze()+4)break;P=S}l(P)}function l(h){n&&n.classList.remove("active"),h==null?n=null:n=s.value.querySelector(`a[href="${decodeURIComponent(h)}"]`);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 Ct(s){let e=0;for(;s!==document.body;){if(s===null)return NaN;e+=s.offsetTop,s=s.offsetParent}return e}const Bt=["href","title"],Ht=_({__name:"VPDocOutlineItem",props:{headers:{},root:{type:Boolean}},setup(s){function e({target:t}){const o=t.href.split("#")[1],n=document.getElementById(decodeURIComponent(o));n==null||n.focus({preventScroll:!0})}return(t,o)=>{const n=R("VPDocOutlineItem",!0);return a(),u("ul",{class:N(["VPDocOutlineItem",t.root?"root":"nested"])},[(a(!0),u(M,null,E(t.headers,({children:r,link:l,title:h})=>(a(),u("li",null,[v("a",{class:"outline-link",href:l,onClick:e,title:h},w(h),9,Bt),r!=null&&r.length?(a(),y(n,{key:0,headers:r},null,8,["headers"])):f("",!0)]))),256))],2)}}}),Ee=$(Ht,[["__scopeId","data-v-3f927ebe"]]),Et={class:"content"},Dt={"aria-level":"2",class:"outline-title",id:"doc-outline-aria-label",role:"heading"},Ft=_({__name:"VPDocAsideOutline",setup(s){const{frontmatter:e,theme:t}=L(),o=Te([]);te(()=>{o.value=be(e.value.outline??t.value.outline)});const n=I(),r=I();return At(n,r),(l,h)=>(a(),u("nav",{"aria-labelledby":"doc-outline-aria-label",class:N(["VPDocAsideOutline",{"has-outline":o.value.length>0}]),ref_key:"container",ref:n},[v("div",Et,[v("div",{class:"outline-marker",ref_key:"marker",ref:r},null,512),v("div",Dt,w(i(He)(i(t))),1),k(Ee,{headers:o.value,root:!0},null,8,["headers"])])],2))}}),Ot=$(Ft,[["__scopeId","data-v-b38bf2ff"]]),Ut={class:"VPDocAsideCarbonAds"},jt=_({__name:"VPDocAsideCarbonAds",props:{carbonAds:{}},setup(s){const e=()=>null;return(t,o)=>(a(),u("div",Ut,[k(i(e),{"carbon-ads":t.carbonAds},null,8,["carbon-ads"])]))}}),Gt=s=>(B("data-v-6d7b3c46"),s=s(),H(),s),zt={class:"VPDocAside"},Kt=Gt(()=>v("div",{class:"spacer"},null,-1)),Rt=_({__name:"VPDocAside",setup(s){const{theme:e}=L();return(t,o)=>(a(),u("div",zt,[c(t.$slots,"aside-top",{},void 0,!0),c(t.$slots,"aside-outline-before",{},void 0,!0),k(Ot),c(t.$slots,"aside-outline-after",{},void 0,!0),Kt,c(t.$slots,"aside-ads-before",{},void 0,!0),i(e).carbonAds?(a(),y(jt,{key:0,"carbon-ads":i(e).carbonAds},null,8,["carbon-ads"])):f("",!0),c(t.$slots,"aside-ads-after",{},void 0,!0),c(t.$slots,"aside-bottom",{},void 0,!0)]))}}),qt=$(Rt,[["__scopeId","data-v-6d7b3c46"]]);function Wt(){const{theme:s,page:e}=L();return g(()=>{const{text:t="Edit this page",pattern:o=""}=s.value.editLink||{};let n;return typeof o=="function"?n=o(e.value):n=o.replace(/:path/g,e.value.filePath),{url:n,text:t}})}function Jt(){const{page:s,theme:e,frontmatter:t}=L();return g(()=>{var m,V,b,P,S,A,C,T;const o=Be(e.value.sidebar,s.value.relativePath),n=Lt(o),r=Yt(n,j=>j.link.replace(/[?#].*$/,"")),l=r.findIndex(j=>z(s.value.relativePath,j.link)),h=((m=e.value.docFooter)==null?void 0:m.prev)===!1&&!t.value.prev||t.value.prev===!1,d=((V=e.value.docFooter)==null?void 0:V.next)===!1&&!t.value.next||t.value.next===!1;return{prev:h?void 0:{text:(typeof t.value.prev=="string"?t.value.prev:typeof t.value.prev=="object"?t.value.prev.text:void 0)??((b=r[l-1])==null?void 0:b.docFooterText)??((P=r[l-1])==null?void 0:P.text),link:(typeof t.value.prev=="object"?t.value.prev.link:void 0)??((S=r[l-1])==null?void 0:S.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)??((A=r[l+1])==null?void 0:A.docFooterText)??((C=r[l+1])==null?void 0:C.text),link:(typeof t.value.next=="object"?t.value.next.link:void 0)??((T=r[l+1])==null?void 0:T.link)}}})}function Yt(s,e){const t=new Set;return s.filter(o=>{const n=e(o);return t.has(n)?!1:t.add(n)})}const D=_({__name:"VPLink",props:{tag:{},href:{},noIcon:{type:Boolean},target:{},rel:{}},setup(s){const e=s,t=g(()=>e.tag??(e.href?"a":"span")),o=g(()=>e.href&&we.test(e.href)||e.target==="_blank");return(n,r)=>(a(),y(W(t.value),{class:N(["VPLink",{link:n.href,"vp-external-link-icon":o.value,"no-icon":n.noIcon}]),href:n.href?i(me)(n.href):void 0,target:n.target??(o.value?"_blank":void 0),rel:n.rel??(o.value?"noreferrer":void 0)},{default:p(()=>[c(n.$slots,"default")]),_:3},8,["class","href","target","rel"]))}}),Xt={class:"VPLastUpdated"},Qt=["datetime"],Zt=_({__name:"VPDocFooterLastUpdated",setup(s){const{theme:e,page:t,frontmatter:o,lang:n}=L(),r=g(()=>new Date(o.value.lastUpdated??t.value.lastUpdated)),l=g(()=>r.value.toISOString()),h=I("");return K(()=>{ee(()=>{var d,m,V;h.value=new Intl.DateTimeFormat((m=(d=e.value.lastUpdated)==null?void 0:d.formatOptions)!=null&&m.forceLocale?n.value:void 0,((V=e.value.lastUpdated)==null?void 0:V.formatOptions)??{dateStyle:"short",timeStyle:"short"}).format(r.value)})}),(d,m)=>{var V;return a(),u("p",Xt,[F(w(((V=i(e).lastUpdated)==null?void 0:V.text)||i(e).lastUpdatedText||"Last updated")+": ",1),v("time",{datetime:l.value},w(h.value),9,Qt)])}}}),xt=$(Zt,[["__scopeId","data-v-9da12f1d"]]),De=s=>(B("data-v-b88cabfa"),s=s(),H(),s),es={key:0,class:"VPDocFooter"},ts={key:0,class:"edit-info"},ss={key:0,class:"edit-link"},os=De(()=>v("span",{class:"vpi-square-pen edit-link-icon"},null,-1)),ns={key:1,class:"last-updated"},as={key:1,class:"prev-next","aria-labelledby":"doc-footer-aria-label"},rs=De(()=>v("span",{class:"visually-hidden",id:"doc-footer-aria-label"},"Pager",-1)),is={class:"pager"},ls=["innerHTML"],cs=["innerHTML"],us={class:"pager"},ds=["innerHTML"],vs=["innerHTML"],ps=_({__name:"VPDocFooter",setup(s){const{theme:e,page:t,frontmatter:o}=L(),n=Wt(),r=Jt(),l=g(()=>e.value.editLink&&o.value.editLink!==!1),h=g(()=>t.value.lastUpdated&&o.value.lastUpdated!==!1),d=g(()=>l.value||h.value||r.value.prev||r.value.next);return(m,V)=>{var b,P,S,A;return d.value?(a(),u("footer",es,[c(m.$slots,"doc-footer-before",{},void 0,!0),l.value||h.value?(a(),u("div",ts,[l.value?(a(),u("div",ss,[k(D,{class:"edit-link-button",href:i(n).url,"no-icon":!0},{default:p(()=>[os,F(" "+w(i(n).text),1)]),_:1},8,["href"])])):f("",!0),h.value?(a(),u("div",ns,[k(xt)])):f("",!0)])):f("",!0),(b=i(r).prev)!=null&&b.link||(P=i(r).next)!=null&&P.link?(a(),u("nav",as,[rs,v("div",is,[(S=i(r).prev)!=null&&S.link?(a(),y(D,{key:0,class:"pager-link prev",href:i(r).prev.link},{default:p(()=>{var C;return[v("span",{class:"desc",innerHTML:((C=i(e).docFooter)==null?void 0:C.prev)||"Previous page"},null,8,ls),v("span",{class:"title",innerHTML:i(r).prev.text},null,8,cs)]}),_:1},8,["href"])):f("",!0)]),v("div",us,[(A=i(r).next)!=null&&A.link?(a(),y(D,{key:0,class:"pager-link next",href:i(r).next.link},{default:p(()=>{var C;return[v("span",{class:"desc",innerHTML:((C=i(e).docFooter)==null?void 0:C.next)||"Next page"},null,8,ds),v("span",{class:"title",innerHTML:i(r).next.text},null,8,vs)]}),_:1},8,["href"])):f("",!0)])])):f("",!0)])):f("",!0)}}}),hs=$(ps,[["__scopeId","data-v-b88cabfa"]]),fs=s=>(B("data-v-83890dd9"),s=s(),H(),s),_s={class:"container"},ms=fs(()=>v("div",{class:"aside-curtain"},null,-1)),bs={class:"aside-container"},ks={class:"aside-content"},$s={class:"content"},gs={class:"content-container"},ys={class:"main"},Ps=_({__name:"VPDoc",setup(s){const{theme:e}=L(),t=se(),{hasSidebar:o,hasAside:n,leftAside:r}=U(),l=g(()=>t.path.replace(/[./]+/g,"_").replace(/_html$/,""));return(h,d)=>{const m=R("Content");return a(),u("div",{class:N(["VPDoc",{"has-sidebar":i(o),"has-aside":i(n)}])},[c(h.$slots,"doc-top",{},void 0,!0),v("div",_s,[i(n)?(a(),u("div",{key:0,class:N(["aside",{"left-aside":i(r)}])},[ms,v("div",bs,[v("div",ks,[k(qt,null,{"aside-top":p(()=>[c(h.$slots,"aside-top",{},void 0,!0)]),"aside-bottom":p(()=>[c(h.$slots,"aside-bottom",{},void 0,!0)]),"aside-outline-before":p(()=>[c(h.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":p(()=>[c(h.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":p(()=>[c(h.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":p(()=>[c(h.$slots,"aside-ads-after",{},void 0,!0)]),_:3})])])],2)):f("",!0),v("div",$s,[v("div",gs,[c(h.$slots,"doc-before",{},void 0,!0),v("main",ys,[k(m,{class:N(["vp-doc",[l.value,i(e).externalLinkIcon&&"external-link-icon-enabled"]])},null,8,["class"])]),k(hs,null,{"doc-footer-before":p(()=>[c(h.$slots,"doc-footer-before",{},void 0,!0)]),_:3}),c(h.$slots,"doc-after",{},void 0,!0)])])]),c(h.$slots,"doc-bottom",{},void 0,!0)],2)}}}),Ss=$(Ps,[["__scopeId","data-v-83890dd9"]]),Vs=_({__name:"VPButton",props:{tag:{},size:{default:"medium"},theme:{default:"brand"},text:{},href:{},target:{},rel:{}},setup(s){const e=s,t=g(()=>e.href&&we.test(e.href)),o=g(()=>e.tag||e.href?"a":"button");return(n,r)=>(a(),y(W(o.value),{class:N(["VPButton",[n.size,n.theme]]),href:n.href?i(me)(n.href):void 0,target:e.target??(t.value?"_blank":void 0),rel:e.rel??(t.value?"noreferrer":void 0)},{default:p(()=>[F(w(n.text),1)]),_:1},8,["class","href","target","rel"]))}}),Ls=$(Vs,[["__scopeId","data-v-14206e74"]]),Ts=["src","alt"],ws=_({inheritAttrs:!1,__name:"VPImage",props:{image:{},alt:{}},setup(s){return(e,t)=>{const o=R("VPImage",!0);return e.image?(a(),u(M,{key:0},[typeof e.image=="string"||"src"in e.image?(a(),u("img",Q({key:0,class:"VPImage"},typeof e.image=="string"?e.$attrs:{...e.image,...e.$attrs},{src:i(he)(typeof e.image=="string"?e.image:e.image.src),alt:e.alt??(typeof e.image=="string"?"":e.image.alt||"")}),null,16,Ts)):(a(),u(M,{key:1},[k(o,Q({class:"dark",image:e.image.dark,alt:e.image.alt},e.$attrs),null,16,["image","alt"]),k(o,Q({class:"light",image:e.image.light,alt:e.image.alt},e.$attrs),null,16,["image","alt"])],64))],64)):f("",!0)}}}),x=$(ws,[["__scopeId","data-v-35a7d0b8"]]),Is=s=>(B("data-v-955009fc"),s=s(),H(),s),Ns={class:"container"},Ms={class:"main"},As={key:0,class:"name"},Cs=["innerHTML"],Bs=["innerHTML"],Hs=["innerHTML"],Es={key:0,class:"actions"},Ds={key:0,class:"image"},Fs={class:"image-container"},Os=Is(()=>v("div",{class:"image-bg"},null,-1)),Us=_({__name:"VPHero",props:{name:{},text:{},tagline:{},image:{},actions:{}},setup(s){const e=J("hero-image-slot-exists");return(t,o)=>(a(),u("div",{class:N(["VPHero",{"has-image":t.image||i(e)}])},[v("div",Ns,[v("div",Ms,[c(t.$slots,"home-hero-info-before",{},void 0,!0),c(t.$slots,"home-hero-info",{},()=>[t.name?(a(),u("h1",As,[v("span",{innerHTML:t.name,class:"clip"},null,8,Cs)])):f("",!0),t.text?(a(),u("p",{key:1,innerHTML:t.text,class:"text"},null,8,Bs)):f("",!0),t.tagline?(a(),u("p",{key:2,innerHTML:t.tagline,class:"tagline"},null,8,Hs)):f("",!0)],!0),c(t.$slots,"home-hero-info-after",{},void 0,!0),t.actions?(a(),u("div",Es,[(a(!0),u(M,null,E(t.actions,n=>(a(),u("div",{key:n.link,class:"action"},[k(Ls,{tag:"a",size:"medium",theme:n.theme,text:n.text,href:n.link,target:n.target,rel:n.rel},null,8,["theme","text","href","target","rel"])]))),128))])):f("",!0),c(t.$slots,"home-hero-actions-after",{},void 0,!0)]),t.image||i(e)?(a(),u("div",Ds,[v("div",Fs,[Os,c(t.$slots,"home-hero-image",{},()=>[t.image?(a(),y(x,{key:0,class:"image-src",image:t.image},null,8,["image"])):f("",!0)],!0)])])):f("",!0)])],2))}}),js=$(Us,[["__scopeId","data-v-955009fc"]]),Gs=_({__name:"VPHomeHero",setup(s){const{frontmatter:e}=L();return(t,o)=>i(e).hero?(a(),y(js,{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":p(()=>[c(t.$slots,"home-hero-info-before")]),"home-hero-info":p(()=>[c(t.$slots,"home-hero-info")]),"home-hero-info-after":p(()=>[c(t.$slots,"home-hero-info-after")]),"home-hero-actions-after":p(()=>[c(t.$slots,"home-hero-actions-after")]),"home-hero-image":p(()=>[c(t.$slots,"home-hero-image")]),_:3},8,["name","text","tagline","image","actions"])):f("",!0)}}),zs=s=>(B("data-v-f5e9645b"),s=s(),H(),s),Ks={class:"box"},Rs={key:0,class:"icon"},qs=["innerHTML"],Ws=["innerHTML"],Js=["innerHTML"],Ys={key:4,class:"link-text"},Xs={class:"link-text-value"},Qs=zs(()=>v("span",{class:"vpi-arrow-right link-text-icon"},null,-1)),Zs=_({__name:"VPFeature",props:{icon:{},title:{},details:{},link:{},linkText:{},rel:{},target:{}},setup(s){return(e,t)=>(a(),y(D,{class:"VPFeature",href:e.link,rel:e.rel,target:e.target,"no-icon":!0,tag:e.link?"a":"div"},{default:p(()=>[v("article",Ks,[typeof e.icon=="object"&&e.icon.wrap?(a(),u("div",Rs,[k(x,{image:e.icon,alt:e.icon.alt,height:e.icon.height||48,width:e.icon.width||48},null,8,["image","alt","height","width"])])):typeof e.icon=="object"?(a(),y(x,{key:1,image:e.icon,alt:e.icon.alt,height:e.icon.height||48,width:e.icon.width||48},null,8,["image","alt","height","width"])):e.icon?(a(),u("div",{key:2,class:"icon",innerHTML:e.icon},null,8,qs)):f("",!0),v("h2",{class:"title",innerHTML:e.title},null,8,Ws),e.details?(a(),u("p",{key:3,class:"details",innerHTML:e.details},null,8,Js)):f("",!0),e.linkText?(a(),u("div",Ys,[v("p",Xs,[F(w(e.linkText)+" ",1),Qs])])):f("",!0)])]),_:1},8,["href","rel","target","tag"]))}}),xs=$(Zs,[["__scopeId","data-v-f5e9645b"]]),eo={key:0,class:"VPFeatures"},to={class:"container"},so={class:"items"},oo=_({__name:"VPFeatures",props:{features:{}},setup(s){const e=s,t=g(()=>{const o=e.features.length;if(o){if(o===2)return"grid-2";if(o===3)return"grid-3";if(o%3===0)return"grid-6";if(o>3)return"grid-4"}else return});return(o,n)=>o.features?(a(),u("div",eo,[v("div",to,[v("div",so,[(a(!0),u(M,null,E(o.features,r=>(a(),u("div",{key:r.title,class:N(["item",[t.value]])},[k(xs,{icon:r.icon,title:r.title,details:r.details,link:r.link,"link-text":r.linkText,rel:r.rel,target:r.target},null,8,["icon","title","details","link","link-text","rel","target"])],2))),128))])])])):f("",!0)}}),no=$(oo,[["__scopeId","data-v-d0a190d7"]]),ao=_({__name:"VPHomeFeatures",setup(s){const{frontmatter:e}=L();return(t,o)=>i(e).features?(a(),y(no,{key:0,class:"VPHomeFeatures",features:i(e).features},null,8,["features"])):f("",!0)}}),ro=_({__name:"VPHomeContent",setup(s){const{width:e}=xe({initialWidth:0,includeScrollbar:!1});return(t,o)=>(a(),u("div",{class:"vp-doc container",style:Ie(i(e)?{"--vp-offset":`calc(50% - ${i(e)/2}px)`}:{})},[c(t.$slots,"default",{},void 0,!0)],4))}}),io=$(ro,[["__scopeId","data-v-7a48a447"]]),lo={class:"VPHome"},co=_({__name:"VPHome",setup(s){const{frontmatter:e}=L();return(t,o)=>{const n=R("Content");return a(),u("div",lo,[c(t.$slots,"home-hero-before",{},void 0,!0),k(Gs,null,{"home-hero-info-before":p(()=>[c(t.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":p(()=>[c(t.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":p(()=>[c(t.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":p(()=>[c(t.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":p(()=>[c(t.$slots,"home-hero-image",{},void 0,!0)]),_:3}),c(t.$slots,"home-hero-after",{},void 0,!0),c(t.$slots,"home-features-before",{},void 0,!0),k(ao),c(t.$slots,"home-features-after",{},void 0,!0),i(e).markdownStyles!==!1?(a(),y(io,{key:0},{default:p(()=>[k(n)]),_:1})):(a(),y(n,{key:1}))])}}}),uo=$(co,[["__scopeId","data-v-cbb6ec48"]]),vo={},po={class:"VPPage"};function ho(s,e){const t=R("Content");return a(),u("div",po,[c(s.$slots,"page-top"),k(t),c(s.$slots,"page-bottom")])}const fo=$(vo,[["render",ho]]),_o=_({__name:"VPContent",setup(s){const{page:e,frontmatter:t}=L(),{hasSidebar:o}=U();return(n,r)=>(a(),u("div",{class:N(["VPContent",{"has-sidebar":i(o),"is-home":i(t).layout==="home"}]),id:"VPContent"},[i(e).isNotFound?c(n.$slots,"not-found",{key:0},()=>[k(St)],!0):i(t).layout==="page"?(a(),y(fo,{key:1},{"page-top":p(()=>[c(n.$slots,"page-top",{},void 0,!0)]),"page-bottom":p(()=>[c(n.$slots,"page-bottom",{},void 0,!0)]),_:3})):i(t).layout==="home"?(a(),y(uo,{key:2},{"home-hero-before":p(()=>[c(n.$slots,"home-hero-before",{},void 0,!0)]),"home-hero-info-before":p(()=>[c(n.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":p(()=>[c(n.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":p(()=>[c(n.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":p(()=>[c(n.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":p(()=>[c(n.$slots,"home-hero-image",{},void 0,!0)]),"home-hero-after":p(()=>[c(n.$slots,"home-hero-after",{},void 0,!0)]),"home-features-before":p(()=>[c(n.$slots,"home-features-before",{},void 0,!0)]),"home-features-after":p(()=>[c(n.$slots,"home-features-after",{},void 0,!0)]),_:3})):i(t).layout&&i(t).layout!=="doc"?(a(),y(W(i(t).layout),{key:3})):(a(),y(Ss,{key:4},{"doc-top":p(()=>[c(n.$slots,"doc-top",{},void 0,!0)]),"doc-bottom":p(()=>[c(n.$slots,"doc-bottom",{},void 0,!0)]),"doc-footer-before":p(()=>[c(n.$slots,"doc-footer-before",{},void 0,!0)]),"doc-before":p(()=>[c(n.$slots,"doc-before",{},void 0,!0)]),"doc-after":p(()=>[c(n.$slots,"doc-after",{},void 0,!0)]),"aside-top":p(()=>[c(n.$slots,"aside-top",{},void 0,!0)]),"aside-outline-before":p(()=>[c(n.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":p(()=>[c(n.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":p(()=>[c(n.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":p(()=>[c(n.$slots,"aside-ads-after",{},void 0,!0)]),"aside-bottom":p(()=>[c(n.$slots,"aside-bottom",{},void 0,!0)]),_:3}))],2))}}),mo=$(_o,[["__scopeId","data-v-91765379"]]),bo={class:"container"},ko=["innerHTML"],$o=["innerHTML"],go=_({__name:"VPFooter",setup(s){const{theme:e,frontmatter:t}=L(),{hasSidebar:o}=U();return(n,r)=>i(e).footer&&i(t).footer!==!1?(a(),u("footer",{key:0,class:N(["VPFooter",{"has-sidebar":i(o)}])},[v("div",bo,[i(e).footer.message?(a(),u("p",{key:0,class:"message",innerHTML:i(e).footer.message},null,8,ko)):f("",!0),i(e).footer.copyright?(a(),u("p",{key:1,class:"copyright",innerHTML:i(e).footer.copyright},null,8,$o)):f("",!0)])],2)):f("",!0)}}),yo=$(go,[["__scopeId","data-v-c970a860"]]);function Po(){const{theme:s,frontmatter:e}=L(),t=Te([]),o=g(()=>t.value.length>0);return te(()=>{t.value=be(e.value.outline??s.value.outline)}),{headers:t,hasLocalNav:o}}const So=s=>(B("data-v-bc9dc845"),s=s(),H(),s),Vo={class:"menu-text"},Lo=So(()=>v("span",{class:"vpi-chevron-right icon"},null,-1)),To={class:"header"},wo={class:"outline"},Io=_({__name:"VPLocalNavOutlineDropdown",props:{headers:{},navHeight:{}},setup(s){const e=s,{theme:t}=L(),o=I(!1),n=I(0),r=I(),l=I();function h(b){var P;(P=r.value)!=null&&P.contains(b.target)||(o.value=!1)}O(o,b=>{if(b){document.addEventListener("click",h);return}document.removeEventListener("click",h)}),ce("Escape",()=>{o.value=!1}),te(()=>{o.value=!1});function d(){o.value=!o.value,n.value=window.innerHeight+Math.min(window.scrollY-e.navHeight,0)}function m(b){b.target.classList.contains("outline-link")&&(l.value&&(l.value.style.transition="none"),Ne(()=>{o.value=!1}))}function V(){o.value=!1,window.scrollTo({top:0,left:0,behavior:"smooth"})}return(b,P)=>(a(),u("div",{class:"VPLocalNavOutlineDropdown",style:Ie({"--vp-vh":n.value+"px"}),ref_key:"main",ref:r},[b.headers.length>0?(a(),u("button",{key:0,onClick:d,class:N({open:o.value})},[v("span",Vo,w(i(He)(i(t))),1),Lo],2)):(a(),u("button",{key:1,onClick:V},w(i(t).returnToTopLabel||"Return to top"),1)),k(pe,{name:"flyout"},{default:p(()=>[o.value?(a(),u("div",{key:0,ref_key:"items",ref:l,class:"items",onClick:m},[v("div",To,[v("a",{class:"top-link",href:"#",onClick:V},w(i(t).returnToTopLabel||"Return to top"),1)]),v("div",wo,[k(Ee,{headers:b.headers},null,8,["headers"])])],512)):f("",!0)]),_:1})],4))}}),No=$(Io,[["__scopeId","data-v-bc9dc845"]]),Mo=s=>(B("data-v-070ab83d"),s=s(),H(),s),Ao={class:"container"},Co=["aria-expanded"],Bo=Mo(()=>v("span",{class:"vpi-align-left menu-icon"},null,-1)),Ho={class:"menu-text"},Eo=_({__name:"VPLocalNav",props:{open:{type:Boolean}},emits:["open-menu"],setup(s){const{theme:e,frontmatter:t}=L(),{hasSidebar:o}=U(),{headers:n}=Po(),{y:r}=Me(),l=I(0);K(()=>{l.value=parseInt(getComputedStyle(document.documentElement).getPropertyValue("--vp-nav-height"))}),te(()=>{n.value=be(t.value.outline??e.value.outline)});const h=g(()=>n.value.length===0),d=g(()=>h.value&&!o.value),m=g(()=>({VPLocalNav:!0,"has-sidebar":o.value,empty:h.value,fixed:d.value}));return(V,b)=>i(t).layout!=="home"&&(!d.value||i(r)>=l.value)?(a(),u("div",{key:0,class:N(m.value)},[v("div",Ao,[i(o)?(a(),u("button",{key:0,class:"menu","aria-expanded":V.open,"aria-controls":"VPSidebarNav",onClick:b[0]||(b[0]=P=>V.$emit("open-menu"))},[Bo,v("span",Ho,w(i(e).sidebarMenuLabel||"Menu"),1)],8,Co)):f("",!0),k(No,{headers:i(n),navHeight:l.value},null,8,["headers","navHeight"])])],2)):f("",!0)}}),Do=$(Eo,[["__scopeId","data-v-070ab83d"]]);function Fo(){const s=I(!1);function e(){s.value=!0,window.addEventListener("resize",n)}function t(){s.value=!1,window.removeEventListener("resize",n)}function o(){s.value?t():e()}function n(){window.outerWidth>=768&&t()}const r=se();return O(()=>r.path,t),{isScreenOpen:s,openScreen:e,closeScreen:t,toggleScreen:o}}const Oo={},Uo={class:"VPSwitch",type:"button",role:"switch"},jo={class:"check"},Go={key:0,class:"icon"};function zo(s,e){return a(),u("button",Uo,[v("span",jo,[s.$slots.default?(a(),u("span",Go,[c(s.$slots,"default",{},void 0,!0)])):f("",!0)])])}const Ko=$(Oo,[["render",zo],["__scopeId","data-v-4a1c76db"]]),Fe=s=>(B("data-v-b79b56d4"),s=s(),H(),s),Ro=Fe(()=>v("span",{class:"vpi-sun sun"},null,-1)),qo=Fe(()=>v("span",{class:"vpi-moon moon"},null,-1)),Wo=_({__name:"VPSwitchAppearance",setup(s){const{isDark:e,theme:t}=L(),o=J("toggle-appearance",()=>{e.value=!e.value}),n=g(()=>e.value?t.value.lightModeSwitchTitle||"Switch to light theme":t.value.darkModeSwitchTitle||"Switch to dark theme");return(r,l)=>(a(),y(Ko,{title:n.value,class:"VPSwitchAppearance","aria-checked":i(e),onClick:i(o)},{default:p(()=>[Ro,qo]),_:1},8,["title","aria-checked","onClick"]))}}),ke=$(Wo,[["__scopeId","data-v-b79b56d4"]]),Jo={key:0,class:"VPNavBarAppearance"},Yo=_({__name:"VPNavBarAppearance",setup(s){const{site:e}=L();return(t,o)=>i(e).appearance&&i(e).appearance!=="force-dark"?(a(),u("div",Jo,[k(ke)])):f("",!0)}}),Xo=$(Yo,[["__scopeId","data-v-ead91a81"]]),$e=I();let Oe=!1,ie=0;function Qo(s){const e=I(!1);if(oe){!Oe&&Zo(),ie++;const t=O($e,o=>{var n,r,l;o===s.el.value||(n=s.el.value)!=null&&n.contains(o)?(e.value=!0,(r=s.onFocus)==null||r.call(s)):(e.value=!1,(l=s.onBlur)==null||l.call(s))});fe(()=>{t(),ie--,ie||xo()})}return et(e)}function Zo(){document.addEventListener("focusin",Ue),Oe=!0,$e.value=document.activeElement}function xo(){document.removeEventListener("focusin",Ue)}function Ue(){$e.value=document.activeElement}const en={class:"VPMenuLink"},tn=_({__name:"VPMenuLink",props:{item:{}},setup(s){const{page:e}=L();return(t,o)=>(a(),u("div",en,[k(D,{class:N({active:i(z)(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:p(()=>[F(w(t.item.text),1)]),_:1},8,["class","href","target","rel"])]))}}),ne=$(tn,[["__scopeId","data-v-8b74d055"]]),sn={class:"VPMenuGroup"},on={key:0,class:"title"},nn=_({__name:"VPMenuGroup",props:{text:{},items:{}},setup(s){return(e,t)=>(a(),u("div",sn,[e.text?(a(),u("p",on,w(e.text),1)):f("",!0),(a(!0),u(M,null,E(e.items,o=>(a(),u(M,null,["link"in o?(a(),y(ne,{key:0,item:o},null,8,["item"])):f("",!0)],64))),256))]))}}),an=$(nn,[["__scopeId","data-v-48c802d0"]]),rn={class:"VPMenu"},ln={key:0,class:"items"},cn=_({__name:"VPMenu",props:{items:{}},setup(s){return(e,t)=>(a(),u("div",rn,[e.items?(a(),u("div",ln,[(a(!0),u(M,null,E(e.items,o=>(a(),u(M,{key:o.text},["link"in o?(a(),y(ne,{key:0,item:o},null,8,["item"])):(a(),y(an,{key:1,text:o.text,items:o.items},null,8,["text","items"]))],64))),128))])):f("",!0),c(e.$slots,"default",{},void 0,!0)]))}}),un=$(cn,[["__scopeId","data-v-97491713"]]),dn=s=>(B("data-v-e5380155"),s=s(),H(),s),vn=["aria-expanded","aria-label"],pn={key:0,class:"text"},hn=["innerHTML"],fn=dn(()=>v("span",{class:"vpi-chevron-down text-icon"},null,-1)),_n={key:1,class:"vpi-more-horizontal icon"},mn={class:"menu"},bn=_({__name:"VPFlyout",props:{icon:{},button:{},label:{},items:{}},setup(s){const e=I(!1),t=I();Qo({el:t,onBlur:o});function o(){e.value=!1}return(n,r)=>(a(),u("div",{class:"VPFlyout",ref_key:"el",ref:t,onMouseenter:r[1]||(r[1]=l=>e.value=!0),onMouseleave:r[2]||(r[2]=l=>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]=l=>e.value=!e.value)},[n.button||n.icon?(a(),u("span",pn,[n.icon?(a(),u("span",{key:0,class:N([n.icon,"option-icon"])},null,2)):f("",!0),n.button?(a(),u("span",{key:1,innerHTML:n.button},null,8,hn)):f("",!0),fn])):(a(),u("span",_n))],8,vn),v("div",mn,[k(un,{items:n.items},{default:p(()=>[c(n.$slots,"default",{},void 0,!0)]),_:3},8,["items"])])],544))}}),ge=$(bn,[["__scopeId","data-v-e5380155"]]),kn=["href","aria-label","innerHTML"],$n=_({__name:"VPSocialLink",props:{icon:{},link:{},ariaLabel:{}},setup(s){const e=s,t=g(()=>typeof e.icon=="object"?e.icon.svg:``);return(o,n)=>(a(),u("a",{class:"VPSocialLink no-icon",href:o.link,"aria-label":o.ariaLabel??(typeof o.icon=="string"?o.icon:""),target:"_blank",rel:"noopener",innerHTML:t.value},null,8,kn))}}),gn=$($n,[["__scopeId","data-v-717b8b75"]]),yn={class:"VPSocialLinks"},Pn=_({__name:"VPSocialLinks",props:{links:{}},setup(s){return(e,t)=>(a(),u("div",yn,[(a(!0),u(M,null,E(e.links,({link:o,icon:n,ariaLabel:r})=>(a(),y(gn,{key:o,icon:n,link:o,ariaLabel:r},null,8,["icon","link","ariaLabel"]))),128))]))}}),ye=$(Pn,[["__scopeId","data-v-ee7a9424"]]),Sn={key:0,class:"group translations"},Vn={class:"trans-title"},Ln={key:1,class:"group"},Tn={class:"item appearance"},wn={class:"label"},In={class:"appearance-action"},Nn={key:2,class:"group"},Mn={class:"item social-links"},An=_({__name:"VPNavBarExtra",setup(s){const{site:e,theme:t}=L(),{localeLinks:o,currentLang:n}=X({correspondingLink:!0}),r=g(()=>o.value.length&&n.value.label||e.value.appearance||t.value.socialLinks);return(l,h)=>r.value?(a(),y(ge,{key:0,class:"VPNavBarExtra",label:"extra navigation"},{default:p(()=>[i(o).length&&i(n).label?(a(),u("div",Sn,[v("p",Vn,w(i(n).label),1),(a(!0),u(M,null,E(i(o),d=>(a(),y(ne,{key:d.link,item:d},null,8,["item"]))),128))])):f("",!0),i(e).appearance&&i(e).appearance!=="force-dark"?(a(),u("div",Ln,[v("div",Tn,[v("p",wn,w(i(t).darkModeSwitchLabel||"Appearance"),1),v("div",In,[k(ke)])])])):f("",!0),i(t).socialLinks?(a(),u("div",Nn,[v("div",Mn,[k(ye,{class:"social-links-list",links:i(t).socialLinks},null,8,["links"])])])):f("",!0)]),_:1})):f("",!0)}}),Cn=$(An,[["__scopeId","data-v-9b536d0b"]]),Bn=s=>(B("data-v-5dea55bf"),s=s(),H(),s),Hn=["aria-expanded"],En=Bn(()=>v("span",{class:"container"},[v("span",{class:"top"}),v("span",{class:"middle"}),v("span",{class:"bottom"})],-1)),Dn=[En],Fn=_({__name:"VPNavBarHamburger",props:{active:{type:Boolean}},emits:["click"],setup(s){return(e,t)=>(a(),u("button",{type:"button",class:N(["VPNavBarHamburger",{active:e.active}]),"aria-label":"mobile navigation","aria-expanded":e.active,"aria-controls":"VPNavScreen",onClick:t[0]||(t[0]=o=>e.$emit("click"))},Dn,10,Hn))}}),On=$(Fn,[["__scopeId","data-v-5dea55bf"]]),Un=["innerHTML"],jn=_({__name:"VPNavBarMenuLink",props:{item:{}},setup(s){const{page:e}=L();return(t,o)=>(a(),y(D,{class:N({VPNavBarMenuLink:!0,active:i(z)(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:p(()=>[v("span",{innerHTML:t.item.text},null,8,Un)]),_:1},8,["class","href","noIcon","target","rel"]))}}),Gn=$(jn,[["__scopeId","data-v-ed5ac1f6"]]),zn=_({__name:"VPNavBarMenuGroup",props:{item:{}},setup(s){const e=s,{page:t}=L(),o=r=>"link"in r?z(t.value.relativePath,r.link,!!e.item.activeMatch):r.items.some(o),n=g(()=>o(e.item));return(r,l)=>(a(),y(ge,{class:N({VPNavBarMenuGroup:!0,active:i(z)(i(t).relativePath,r.item.activeMatch,!!r.item.activeMatch)||n.value}),button:r.item.text,items:r.item.items},null,8,["class","button","items"]))}}),Kn=s=>(B("data-v-492ea56d"),s=s(),H(),s),Rn={key:0,"aria-labelledby":"main-nav-aria-label",class:"VPNavBarMenu"},qn=Kn(()=>v("span",{id:"main-nav-aria-label",class:"visually-hidden"},"Main Navigation",-1)),Wn=_({__name:"VPNavBarMenu",setup(s){const{theme:e}=L();return(t,o)=>i(e).nav?(a(),u("nav",Rn,[qn,(a(!0),u(M,null,E(i(e).nav,n=>(a(),u(M,{key:n.text},["link"in n?(a(),y(Gn,{key:0,item:n},null,8,["item"])):(a(),y(zn,{key:1,item:n},null,8,["item"]))],64))),128))])):f("",!0)}}),Jn=$(Wn,[["__scopeId","data-v-492ea56d"]]);function Yn(s){const{localeIndex:e,theme:t}=L();function o(n){var A,C,T;const r=n.split("."),l=(A=t.value.search)==null?void 0:A.options,h=l&&typeof l=="object",d=h&&((T=(C=l.locales)==null?void 0:C[e.value])==null?void 0:T.translations)||null,m=h&&l.translations||null;let V=d,b=m,P=s;const S=r.pop();for(const j of r){let G=null;const q=P==null?void 0:P[j];q&&(G=P=q);const ae=b==null?void 0:b[j];ae&&(G=b=ae);const re=V==null?void 0:V[j];re&&(G=V=re),q||(P=G),ae||(b=G),re||(V=G)}return(V==null?void 0:V[S])??(b==null?void 0:b[S])??(P==null?void 0:P[S])??""}return o}const Xn=["aria-label"],Qn={class:"DocSearch-Button-Container"},Zn=v("span",{class:"vp-icon DocSearch-Search-Icon"},null,-1),xn={class:"DocSearch-Button-Placeholder"},ea=v("span",{class:"DocSearch-Button-Keys"},[v("kbd",{class:"DocSearch-Button-Key"}),v("kbd",{class:"DocSearch-Button-Key"},"K")],-1),Pe=_({__name:"VPNavBarSearchButton",setup(s){const t=Yn({button:{buttonText:"Search",buttonAriaLabel:"Search"}});return(o,n)=>(a(),u("button",{type:"button",class:"DocSearch DocSearch-Button","aria-label":i(t)("button.buttonAriaLabel")},[v("span",Qn,[Zn,v("span",xn,w(i(t)("button.buttonText")),1)]),ea],8,Xn))}}),ta={class:"VPNavBarSearch"},sa={id:"local-search"},oa={key:1,id:"docsearch"},na=_({__name:"VPNavBarSearch",setup(s){const e=tt(()=>st(()=>import("./VPLocalSearchBox.CgLvdMHL.js"),__vite__mapDeps([0,1]))),t=()=>null,{theme:o}=L(),n=I(!1),r=I(!1);K(()=>{});function l(){n.value||(n.value=!0,setTimeout(h,16))}function h(){const b=new Event("keydown");b.key="k",b.metaKey=!0,window.dispatchEvent(b),setTimeout(()=>{document.querySelector(".DocSearch-Modal")||h()},16)}function d(b){const P=b.target,S=P.tagName;return P.isContentEditable||S==="INPUT"||S==="SELECT"||S==="TEXTAREA"}const m=I(!1);ce("k",b=>{(b.ctrlKey||b.metaKey)&&(b.preventDefault(),m.value=!0)}),ce("/",b=>{d(b)||(b.preventDefault(),m.value=!0)});const V="local";return(b,P)=>{var S;return a(),u("div",ta,[i(V)==="local"?(a(),u(M,{key:0},[m.value?(a(),y(i(e),{key:0,onClose:P[0]||(P[0]=A=>m.value=!1)})):f("",!0),v("div",sa,[k(Pe,{onClick:P[1]||(P[1]=A=>m.value=!0)})])],64)):i(V)==="algolia"?(a(),u(M,{key:1},[n.value?(a(),y(i(t),{key:0,algolia:((S=i(o).search)==null?void 0:S.options)??i(o).algolia,onVnodeBeforeMount:P[2]||(P[2]=A=>r.value=!0)},null,8,["algolia"])):f("",!0),r.value?f("",!0):(a(),u("div",oa,[k(Pe,{onClick:l})]))],64)):f("",!0)])}}}),aa=_({__name:"VPNavBarSocialLinks",setup(s){const{theme:e}=L();return(t,o)=>i(e).socialLinks?(a(),y(ye,{key:0,class:"VPNavBarSocialLinks",links:i(e).socialLinks},null,8,["links"])):f("",!0)}}),ra=$(aa,[["__scopeId","data-v-164c457f"]]),ia=["href","rel","target"],la={key:1},ca={key:2},ua=_({__name:"VPNavBarTitle",setup(s){const{site:e,theme:t}=L(),{hasSidebar:o}=U(),{currentLang:n}=X(),r=g(()=>{var d;return typeof t.value.logoLink=="string"?t.value.logoLink:(d=t.value.logoLink)==null?void 0:d.link}),l=g(()=>{var d;return typeof t.value.logoLink=="string"||(d=t.value.logoLink)==null?void 0:d.rel}),h=g(()=>{var d;return typeof t.value.logoLink=="string"||(d=t.value.logoLink)==null?void 0:d.target});return(d,m)=>(a(),u("div",{class:N(["VPNavBarTitle",{"has-sidebar":i(o)}])},[v("a",{class:"title",href:r.value??i(me)(i(n).link),rel:l.value,target:h.value},[c(d.$slots,"nav-bar-title-before",{},void 0,!0),i(t).logo?(a(),y(x,{key:0,class:"logo",image:i(t).logo},null,8,["image"])):f("",!0),i(t).siteTitle?(a(),u("span",la,w(i(t).siteTitle),1)):i(t).siteTitle===void 0?(a(),u("span",ca,w(i(e).title),1)):f("",!0),c(d.$slots,"nav-bar-title-after",{},void 0,!0)],8,ia)],2))}}),da=$(ua,[["__scopeId","data-v-28a961f9"]]),va={class:"items"},pa={class:"title"},ha=_({__name:"VPNavBarTranslations",setup(s){const{theme:e}=L(),{localeLinks:t,currentLang:o}=X({correspondingLink:!0});return(n,r)=>i(t).length&&i(o).label?(a(),y(ge,{key:0,class:"VPNavBarTranslations",icon:"vpi-languages",label:i(e).langMenuLabel||"Change language"},{default:p(()=>[v("div",va,[v("p",pa,w(i(o).label),1),(a(!0),u(M,null,E(i(t),l=>(a(),y(ne,{key:l.link,item:l},null,8,["item"]))),128))])]),_:1},8,["label"])):f("",!0)}}),fa=$(ha,[["__scopeId","data-v-c80d9ad0"]]),_a=s=>(B("data-v-40788ea0"),s=s(),H(),s),ma={class:"wrapper"},ba={class:"container"},ka={class:"title"},$a={class:"content"},ga={class:"content-body"},ya=_a(()=>v("div",{class:"divider"},[v("div",{class:"divider-line"})],-1)),Pa=_({__name:"VPNavBar",props:{isScreenOpen:{type:Boolean}},emits:["toggle-screen"],setup(s){const{y:e}=Me(),{hasSidebar:t}=U(),{frontmatter:o}=L(),n=I({});return Le(()=>{n.value={"has-sidebar":t.value,home:o.value.layout==="home",top:e.value===0}}),(r,l)=>(a(),u("div",{class:N(["VPNavBar",n.value])},[v("div",ma,[v("div",ba,[v("div",ka,[k(da,null,{"nav-bar-title-before":p(()=>[c(r.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":p(()=>[c(r.$slots,"nav-bar-title-after",{},void 0,!0)]),_:3})]),v("div",$a,[v("div",ga,[c(r.$slots,"nav-bar-content-before",{},void 0,!0),k(na,{class:"search"}),k(Jn,{class:"menu"}),k(fa,{class:"translations"}),k(Xo,{class:"appearance"}),k(ra,{class:"social-links"}),k(Cn,{class:"extra"}),c(r.$slots,"nav-bar-content-after",{},void 0,!0),k(On,{class:"hamburger",active:r.isScreenOpen,onClick:l[0]||(l[0]=h=>r.$emit("toggle-screen"))},null,8,["active"])])])])]),ya],2))}}),Sa=$(Pa,[["__scopeId","data-v-40788ea0"]]),Va={key:0,class:"VPNavScreenAppearance"},La={class:"text"},Ta=_({__name:"VPNavScreenAppearance",setup(s){const{site:e,theme:t}=L();return(o,n)=>i(e).appearance&&i(e).appearance!=="force-dark"?(a(),u("div",Va,[v("p",La,w(i(t).darkModeSwitchLabel||"Appearance"),1),k(ke)])):f("",!0)}}),wa=$(Ta,[["__scopeId","data-v-2b89f08b"]]),Ia=_({__name:"VPNavScreenMenuLink",props:{item:{}},setup(s){const e=J("close-screen");return(t,o)=>(a(),y(D,{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"]))}}),Na=$(Ia,[["__scopeId","data-v-27d04aeb"]]),Ma=_({__name:"VPNavScreenMenuGroupLink",props:{item:{}},setup(s){const e=J("close-screen");return(t,o)=>(a(),y(D,{class:"VPNavScreenMenuGroupLink",href:t.item.link,target:t.item.target,rel:t.item.rel,onClick:i(e)},{default:p(()=>[F(w(t.item.text),1)]),_:1},8,["href","target","rel","onClick"]))}}),je=$(Ma,[["__scopeId","data-v-7179dbb7"]]),Aa={class:"VPNavScreenMenuGroupSection"},Ca={key:0,class:"title"},Ba=_({__name:"VPNavScreenMenuGroupSection",props:{text:{},items:{}},setup(s){return(e,t)=>(a(),u("div",Aa,[e.text?(a(),u("p",Ca,w(e.text),1)):f("",!0),(a(!0),u(M,null,E(e.items,o=>(a(),y(je,{key:o.text,item:o},null,8,["item"]))),128))]))}}),Ha=$(Ba,[["__scopeId","data-v-4b8941ac"]]),Ea=s=>(B("data-v-c9df2649"),s=s(),H(),s),Da=["aria-controls","aria-expanded"],Fa=["innerHTML"],Oa=Ea(()=>v("span",{class:"vpi-plus button-icon"},null,-1)),Ua=["id"],ja={key:1,class:"group"},Ga=_({__name:"VPNavScreenMenuGroup",props:{text:{},items:{}},setup(s){const e=s,t=I(!1),o=g(()=>`NavScreenGroup-${e.text.replace(" ","-").toLowerCase()}`);function n(){t.value=!t.value}return(r,l)=>(a(),u("div",{class:N(["VPNavScreenMenuGroup",{open:t.value}])},[v("button",{class:"button","aria-controls":o.value,"aria-expanded":t.value,onClick:n},[v("span",{class:"button-text",innerHTML:r.text},null,8,Fa),Oa],8,Da),v("div",{id:o.value,class:"items"},[(a(!0),u(M,null,E(r.items,h=>(a(),u(M,{key:h.text},["link"in h?(a(),u("div",{key:h.text,class:"item"},[k(je,{item:h},null,8,["item"])])):(a(),u("div",ja,[k(Ha,{text:h.text,items:h.items},null,8,["text","items"])]))],64))),128))],8,Ua)],2))}}),za=$(Ga,[["__scopeId","data-v-c9df2649"]]),Ka={key:0,class:"VPNavScreenMenu"},Ra=_({__name:"VPNavScreenMenu",setup(s){const{theme:e}=L();return(t,o)=>i(e).nav?(a(),u("nav",Ka,[(a(!0),u(M,null,E(i(e).nav,n=>(a(),u(M,{key:n.text},["link"in n?(a(),y(Na,{key:0,item:n},null,8,["item"])):(a(),y(za,{key:1,text:n.text||"",items:n.items},null,8,["text","items"]))],64))),128))])):f("",!0)}}),qa=_({__name:"VPNavScreenSocialLinks",setup(s){const{theme:e}=L();return(t,o)=>i(e).socialLinks?(a(),y(ye,{key:0,class:"VPNavScreenSocialLinks",links:i(e).socialLinks},null,8,["links"])):f("",!0)}}),Ge=s=>(B("data-v-362991c2"),s=s(),H(),s),Wa=Ge(()=>v("span",{class:"vpi-languages icon lang"},null,-1)),Ja=Ge(()=>v("span",{class:"vpi-chevron-down icon chevron"},null,-1)),Ya={class:"list"},Xa=_({__name:"VPNavScreenTranslations",setup(s){const{localeLinks:e,currentLang:t}=X({correspondingLink:!0}),o=I(!1);function n(){o.value=!o.value}return(r,l)=>i(e).length&&i(t).label?(a(),u("div",{key:0,class:N(["VPNavScreenTranslations",{open:o.value}])},[v("button",{class:"title",onClick:n},[Wa,F(" "+w(i(t).label)+" ",1),Ja]),v("ul",Ya,[(a(!0),u(M,null,E(i(e),h=>(a(),u("li",{key:h.link,class:"item"},[k(D,{class:"link",href:h.link},{default:p(()=>[F(w(h.text),1)]),_:2},1032,["href"])]))),128))])],2)):f("",!0)}}),Qa=$(Xa,[["__scopeId","data-v-362991c2"]]),Za={class:"container"},xa=_({__name:"VPNavScreen",props:{open:{type:Boolean}},setup(s){const e=I(null),t=Ae(oe?document.body:null);return(o,n)=>(a(),y(pe,{name:"fade",onEnter:n[0]||(n[0]=r=>t.value=!0),onAfterLeave:n[1]||(n[1]=r=>t.value=!1)},{default:p(()=>[o.open?(a(),u("div",{key:0,class:"VPNavScreen",ref_key:"screen",ref:e,id:"VPNavScreen"},[v("div",Za,[c(o.$slots,"nav-screen-content-before",{},void 0,!0),k(Ra,{class:"menu"}),k(Qa,{class:"translations"}),k(wa,{class:"appearance"}),k(qa,{class:"social-links"}),c(o.$slots,"nav-screen-content-after",{},void 0,!0)])],512)):f("",!0)]),_:3}))}}),er=$(xa,[["__scopeId","data-v-382f42e9"]]),tr={key:0,class:"VPNav"},sr=_({__name:"VPNav",setup(s){const{isScreenOpen:e,closeScreen:t,toggleScreen:o}=Fo(),{frontmatter:n}=L(),r=g(()=>n.value.navbar!==!1);return _e("close-screen",t),ee(()=>{oe&&document.documentElement.classList.toggle("hide-nav",!r.value)}),(l,h)=>r.value?(a(),u("header",tr,[k(Sa,{"is-screen-open":i(e),onToggleScreen:i(o)},{"nav-bar-title-before":p(()=>[c(l.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":p(()=>[c(l.$slots,"nav-bar-title-after",{},void 0,!0)]),"nav-bar-content-before":p(()=>[c(l.$slots,"nav-bar-content-before",{},void 0,!0)]),"nav-bar-content-after":p(()=>[c(l.$slots,"nav-bar-content-after",{},void 0,!0)]),_:3},8,["is-screen-open","onToggleScreen"]),k(er,{open:i(e)},{"nav-screen-content-before":p(()=>[c(l.$slots,"nav-screen-content-before",{},void 0,!0)]),"nav-screen-content-after":p(()=>[c(l.$slots,"nav-screen-content-after",{},void 0,!0)]),_:3},8,["open"])])):f("",!0)}}),or=$(sr,[["__scopeId","data-v-f1e365da"]]),ze=s=>(B("data-v-2ea20db7"),s=s(),H(),s),nr=["role","tabindex"],ar=ze(()=>v("div",{class:"indicator"},null,-1)),rr=ze(()=>v("span",{class:"vpi-chevron-right caret-icon"},null,-1)),ir=[rr],lr={key:1,class:"items"},cr=_({__name:"VPSidebarItem",props:{item:{},depth:{}},setup(s){const e=s,{collapsed:t,collapsible:o,isLink:n,isActiveLink:r,hasActiveLink:l,hasChildren:h,toggle:d}=wt(g(()=>e.item)),m=g(()=>h.value?"section":"div"),V=g(()=>n.value?"a":"div"),b=g(()=>h.value?e.depth+2===7?"p":`h${e.depth+2}`:"p"),P=g(()=>n.value?void 0:"button"),S=g(()=>[[`level-${e.depth}`],{collapsible:o.value},{collapsed:t.value},{"is-link":n.value},{"is-active":r.value},{"has-active":l.value}]);function A(T){"key"in T&&T.key!=="Enter"||!e.item.link&&d()}function C(){e.item.link&&d()}return(T,j)=>{const G=R("VPSidebarItem",!0);return a(),y(W(m.value),{class:N(["VPSidebarItem",S.value])},{default:p(()=>[T.item.text?(a(),u("div",Q({key:0,class:"item",role:P.value},nt(T.item.items?{click:A,keydown:A}:{},!0),{tabindex:T.item.items&&0}),[ar,T.item.link?(a(),y(D,{key:0,tag:V.value,class:"link",href:T.item.link,rel:T.item.rel,target:T.item.target},{default:p(()=>[(a(),y(W(b.value),{class:"text",innerHTML:T.item.text},null,8,["innerHTML"]))]),_:1},8,["tag","href","rel","target"])):(a(),y(W(b.value),{key:1,class:"text",innerHTML:T.item.text},null,8,["innerHTML"])),T.item.collapsed!=null&&T.item.items&&T.item.items.length?(a(),u("div",{key:2,class:"caret",role:"button","aria-label":"toggle section",onClick:C,onKeydown:ot(C,["enter"]),tabindex:"0"},ir,32)):f("",!0)],16,nr)):f("",!0),T.item.items&&T.item.items.length?(a(),u("div",lr,[T.depth<5?(a(!0),u(M,{key:0},E(T.item.items,q=>(a(),y(G,{key:q.text,item:q,depth:T.depth+1},null,8,["item","depth"]))),128)):f("",!0)])):f("",!0)]),_:1},8,["class"])}}}),ur=$(cr,[["__scopeId","data-v-2ea20db7"]]),Ke=s=>(B("data-v-ec846e01"),s=s(),H(),s),dr=Ke(()=>v("div",{class:"curtain"},null,-1)),vr={class:"nav",id:"VPSidebarNav","aria-labelledby":"sidebar-aria-label",tabindex:"-1"},pr=Ke(()=>v("span",{class:"visually-hidden",id:"sidebar-aria-label"}," Sidebar Navigation ",-1)),hr=_({__name:"VPSidebar",props:{open:{type:Boolean}},setup(s){const{sidebarGroups:e,hasSidebar:t}=U(),o=s,n=I(null),r=Ae(oe?document.body:null);return O([o,n],()=>{var l;o.open?(r.value=!0,(l=n.value)==null||l.focus()):r.value=!1},{immediate:!0,flush:"post"}),(l,h)=>i(t)?(a(),u("aside",{key:0,class:N(["VPSidebar",{open:l.open}]),ref_key:"navEl",ref:n,onClick:h[0]||(h[0]=at(()=>{},["stop"]))},[dr,v("nav",vr,[pr,c(l.$slots,"sidebar-nav-before",{},void 0,!0),(a(!0),u(M,null,E(i(e),d=>(a(),u("div",{key:d.text,class:"group"},[k(ur,{item:d,depth:0},null,8,["item"])]))),128)),c(l.$slots,"sidebar-nav-after",{},void 0,!0)])],2)):f("",!0)}}),fr=$(hr,[["__scopeId","data-v-ec846e01"]]),_r=_({__name:"VPSkipLink",setup(s){const e=se(),t=I();O(()=>e.path,()=>t.value.focus());function o({target:n}){const r=document.getElementById(decodeURIComponent(n.hash).slice(1));if(r){const l=()=>{r.removeAttribute("tabindex"),r.removeEventListener("blur",l)};r.setAttribute("tabindex","-1"),r.addEventListener("blur",l),r.focus(),window.scrollTo(0,0)}}return(n,r)=>(a(),u(M,null,[v("span",{ref_key:"backToTop",ref:t,tabindex:"-1"},null,512),v("a",{href:"#VPContent",class:"VPSkipLink visually-hidden",onClick:o}," Skip to content ")],64))}}),mr=$(_r,[["__scopeId","data-v-c3508ec8"]]),br=_({__name:"Layout",setup(s){const{isOpen:e,open:t,close:o}=U(),n=se();O(()=>n.path,o),Tt(e,o);const{frontmatter:r}=L(),l=Ce(),h=g(()=>!!l["home-hero-image"]);return _e("hero-image-slot-exists",h),(d,m)=>{const V=R("Content");return i(r).layout!==!1?(a(),u("div",{key:0,class:N(["Layout",i(r).pageClass])},[c(d.$slots,"layout-top",{},void 0,!0),k(mr),k(vt,{class:"backdrop",show:i(e),onClick:i(o)},null,8,["show","onClick"]),k(or,null,{"nav-bar-title-before":p(()=>[c(d.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":p(()=>[c(d.$slots,"nav-bar-title-after",{},void 0,!0)]),"nav-bar-content-before":p(()=>[c(d.$slots,"nav-bar-content-before",{},void 0,!0)]),"nav-bar-content-after":p(()=>[c(d.$slots,"nav-bar-content-after",{},void 0,!0)]),"nav-screen-content-before":p(()=>[c(d.$slots,"nav-screen-content-before",{},void 0,!0)]),"nav-screen-content-after":p(()=>[c(d.$slots,"nav-screen-content-after",{},void 0,!0)]),_:3}),k(Do,{open:i(e),onOpenMenu:i(t)},null,8,["open","onOpenMenu"]),k(fr,{open:i(e)},{"sidebar-nav-before":p(()=>[c(d.$slots,"sidebar-nav-before",{},void 0,!0)]),"sidebar-nav-after":p(()=>[c(d.$slots,"sidebar-nav-after",{},void 0,!0)]),_:3},8,["open"]),k(mo,null,{"page-top":p(()=>[c(d.$slots,"page-top",{},void 0,!0)]),"page-bottom":p(()=>[c(d.$slots,"page-bottom",{},void 0,!0)]),"not-found":p(()=>[c(d.$slots,"not-found",{},void 0,!0)]),"home-hero-before":p(()=>[c(d.$slots,"home-hero-before",{},void 0,!0)]),"home-hero-info-before":p(()=>[c(d.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":p(()=>[c(d.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":p(()=>[c(d.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":p(()=>[c(d.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":p(()=>[c(d.$slots,"home-hero-image",{},void 0,!0)]),"home-hero-after":p(()=>[c(d.$slots,"home-hero-after",{},void 0,!0)]),"home-features-before":p(()=>[c(d.$slots,"home-features-before",{},void 0,!0)]),"home-features-after":p(()=>[c(d.$slots,"home-features-after",{},void 0,!0)]),"doc-footer-before":p(()=>[c(d.$slots,"doc-footer-before",{},void 0,!0)]),"doc-before":p(()=>[c(d.$slots,"doc-before",{},void 0,!0)]),"doc-after":p(()=>[c(d.$slots,"doc-after",{},void 0,!0)]),"doc-top":p(()=>[c(d.$slots,"doc-top",{},void 0,!0)]),"doc-bottom":p(()=>[c(d.$slots,"doc-bottom",{},void 0,!0)]),"aside-top":p(()=>[c(d.$slots,"aside-top",{},void 0,!0)]),"aside-bottom":p(()=>[c(d.$slots,"aside-bottom",{},void 0,!0)]),"aside-outline-before":p(()=>[c(d.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":p(()=>[c(d.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":p(()=>[c(d.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":p(()=>[c(d.$slots,"aside-ads-after",{},void 0,!0)]),_:3}),k(yo),c(d.$slots,"layout-bottom",{},void 0,!0)],2)):(a(),y(V,{key:1}))}}}),kr=$(br,[["__scopeId","data-v-a9a9e638"]]),Se={Layout:kr,enhanceApp:({app:s})=>{s.component("Badge",ct)}},$r=s=>{if(typeof document>"u")return{stabilizeScrollPosition:n=>async(...r)=>n(...r)};const e=document.documentElement;return{stabilizeScrollPosition:o=>async(...n)=>{const r=o(...n),l=s.value;if(!l)return r;const h=l.offsetTop-e.scrollTop;return await Ne(),e.scrollTop=l.offsetTop-h,r}}},Re="vitepress:tabSharedState",Y=typeof localStorage<"u"?localStorage:null,qe="vitepress:tabsSharedState",gr=()=>{const s=Y==null?void 0:Y.getItem(qe);if(s)try{return JSON.parse(s)}catch{}return{}},yr=s=>{Y&&Y.setItem(qe,JSON.stringify(s))},Pr=s=>{const e=rt({});O(()=>e.content,(t,o)=>{t&&o&&yr(t)},{deep:!0}),s.provide(Re,e)},Sr=(s,e)=>{const t=J(Re);if(!t)throw new Error("[vitepress-plugin-tabs] TabsSharedState should be injected");K(()=>{t.content||(t.content=gr())});const o=I(),n=g({get(){var d;const l=e.value,h=s.value;if(l){const m=(d=t.content)==null?void 0:d[l];if(m&&h.includes(m))return m}else{const m=o.value;if(m)return m}return h[0]},set(l){const h=e.value;h?t.content&&(t.content[h]=l):o.value=l}});return{selected:n,select:l=>{n.value=l}}};let Ve=0;const Vr=()=>(Ve++,""+Ve);function Lr(){const s=Ce();return g(()=>{var o;const t=(o=s.default)==null?void 0:o.call(s);return t?t.filter(n=>typeof n.type=="object"&&"__name"in n.type&&n.type.__name==="PluginTabsTab"&&n.props).map(n=>{var r;return(r=n.props)==null?void 0:r.label}):[]})}const We="vitepress:tabSingleState",Tr=s=>{_e(We,s)},wr=()=>{const s=J(We);if(!s)throw new Error("[vitepress-plugin-tabs] TabsSingleState should be injected");return s},Ir={class:"plugin-tabs"},Nr=["id","aria-selected","aria-controls","tabindex","onClick"],Mr=_({__name:"PluginTabs",props:{sharedStateKey:{}},setup(s){const e=s,t=Lr(),{selected:o,select:n}=Sr(t,it(e,"sharedStateKey")),r=I(),{stabilizeScrollPosition:l}=$r(r),h=l(n),d=I([]),m=b=>{var A;const P=t.value.indexOf(o.value);let S;b.key==="ArrowLeft"?S=P>=1?P-1:t.value.length-1:b.key==="ArrowRight"&&(S=P(a(),u("div",Ir,[v("div",{ref_key:"tablist",ref:r,class:"plugin-tabs--tab-list",role:"tablist",onKeydown:m},[(a(!0),u(M,null,E(i(t),S=>(a(),u("button",{id:`tab-${S}-${i(V)}`,ref_for:!0,ref_key:"buttonRefs",ref:d,key:S,role:"tab",class:"plugin-tabs--tab","aria-selected":S===i(o),"aria-controls":`panel-${S}-${i(V)}`,tabindex:S===i(o)?0:-1,onClick:()=>i(h)(S)},w(S),9,Nr))),128))],544),c(b.$slots,"default")]))}}),Ar=["id","aria-labelledby"],Cr=_({__name:"PluginTabsTab",props:{label:{}},setup(s){const{uid:e,selected:t}=wr();return(o,n)=>i(t)===o.label?(a(),u("div",{key:0,id:`panel-${o.label}-${i(e)}`,class:"plugin-tabs--content",role:"tabpanel",tabindex:"0","aria-labelledby":`tab-${o.label}-${i(e)}`},[c(o.$slots,"default",{},void 0,!0)],8,Ar)):f("",!0)}}),Br=$(Cr,[["__scopeId","data-v-9b0d03d2"]]),Hr=s=>{Pr(s),s.component("PluginTabs",Mr),s.component("PluginTabsTab",Br)},Dr={extends:Se,Layout(){return lt(Se.Layout,null,{})},enhanceApp({app:s,router:e,siteData:t}){Hr(s)}};export{Dr as R,Yn as c,L as u}; +const __vite__fileDeps=["assets/chunks/VPLocalSearchBox.C5YKFqyK.js","assets/chunks/framework.DJCAxKqx.js"],__vite__mapDeps=i=>i.map(i=>__vite__fileDeps[i]); +import{d as _,o as a,c as u,r as c,n as N,a as F,t as w,b as y,w as p,e as f,T as pe,_ as $,u as Je,i as Ye,f as Xe,g as he,h as g,j as v,k as i,p as B,l as H,m as z,q as le,s as I,v as O,x as ee,y as K,z as fe,A as Le,B as Qe,C as Ze,D as R,F as M,E,G as Te,H as te,I as k,J as W,K as we,L as se,M as Q,N as J,O as xe,P as Ie,Q as ce,R as Ne,S as Me,U as oe,V as et,W as tt,X as st,Y as Ae,Z as _e,$ as ot,a0 as nt,a1 as at,a2 as Ce,a3 as rt,a4 as it,a5 as lt}from"./framework.DJCAxKqx.js";const ct=_({__name:"VPBadge",props:{text:{},type:{default:"tip"}},setup(s){return(e,t)=>(a(),u("span",{class:N(["VPBadge",e.type])},[c(e.$slots,"default",{},()=>[F(w(e.text),1)])],2))}}),ut={key:0,class:"VPBackdrop"},dt=_({__name:"VPBackdrop",props:{show:{type:Boolean}},setup(s){return(e,t)=>(a(),y(pe,{name:"fade"},{default:p(()=>[e.show?(a(),u("div",ut)):f("",!0)]),_:1}))}}),vt=$(dt,[["__scopeId","data-v-b06cdb19"]]),L=Je;function pt(s,e){let t,o=!1;return()=>{t&&clearTimeout(t),o?t=setTimeout(s,e):(s(),(o=!0)&&setTimeout(()=>o=!1,e))}}function ue(s){return/^\//.test(s)?s:`/${s}`}function me(s){const{pathname:e,search:t,hash:o,protocol:n}=new URL(s,"http://a.com");if(Ye(s)||s.startsWith("#")||!n.startsWith("http")||!Xe(e))return s;const{site:r}=L(),l=e.endsWith("/")||e.endsWith(".html")?s:s.replace(/(?:(^\.+)\/)?.*$/,`$1${e.replace(/(\.md)?$/,r.value.cleanUrls?"":".html")}${t}${o}`);return he(l)}function X({correspondingLink:s=!1}={}){const{site:e,localeIndex:t,page:o,theme:n,hash:r}=L(),l=g(()=>{var d,m;return{label:(d=e.value.locales[t.value])==null?void 0:d.label,link:((m=e.value.locales[t.value])==null?void 0:m.link)||(t.value==="root"?"/":`/${t.value}/`)}});return{localeLinks:g(()=>Object.entries(e.value.locales).flatMap(([d,m])=>l.value.label===m.label?[]:{text:m.label,link:ht(m.link||(d==="root"?"/":`/${d}/`),n.value.i18nRouting!==!1&&s,o.value.relativePath.slice(l.value.link.length-1),!e.value.cleanUrls)+r.value})),currentLang:l}}function ht(s,e,t,o){return e?s.replace(/\/$/,"")+ue(t.replace(/(^|\/)index\.md$/,"$1").replace(/\.md$/,o?".html":"")):s}const ft=s=>(B("data-v-951cab6c"),s=s(),H(),s),_t={class:"NotFound"},mt={class:"code"},bt={class:"title"},kt=ft(()=>v("div",{class:"divider"},null,-1)),$t={class:"quote"},gt={class:"action"},yt=["href","aria-label"],Pt=_({__name:"NotFound",setup(s){const{theme:e}=L(),{currentLang:t}=X();return(o,n)=>{var r,l,h,d,m;return a(),u("div",_t,[v("p",mt,w(((r=i(e).notFound)==null?void 0:r.code)??"404"),1),v("h1",bt,w(((l=i(e).notFound)==null?void 0:l.title)??"PAGE NOT FOUND"),1),kt,v("blockquote",$t,w(((h=i(e).notFound)==null?void 0:h.quote)??"But if you don't change your direction, and if you keep looking, you may end up where you are heading."),1),v("div",gt,[v("a",{class:"link",href:i(he)(i(t).link),"aria-label":((d=i(e).notFound)==null?void 0:d.linkLabel)??"go to home"},w(((m=i(e).notFound)==null?void 0:m.linkText)??"Take me home"),9,yt)])])}}}),St=$(Pt,[["__scopeId","data-v-951cab6c"]]);function Be(s,e){if(Array.isArray(s))return Z(s);if(s==null)return[];e=ue(e);const t=Object.keys(s).sort((n,r)=>r.split("/").length-n.split("/").length).find(n=>e.startsWith(ue(n))),o=t?s[t]:[];return Array.isArray(o)?Z(o):Z(o.items,o.base)}function Vt(s){const e=[];let t=0;for(const o in s){const n=s[o];if(n.items){t=e.push(n);continue}e[t]||e.push({items:[]}),e[t].items.push(n)}return e}function Lt(s){const e=[];function t(o){for(const n of o)n.text&&n.link&&e.push({text:n.text,link:n.link,docFooterText:n.docFooterText}),n.items&&t(n.items)}return t(s),e}function de(s,e){return Array.isArray(e)?e.some(t=>de(s,t)):z(s,e.link)?!0:e.items?de(s,e.items):!1}function Z(s,e){return[...s].map(t=>{const o={...t},n=o.base||e;return n&&o.link&&(o.link=n+o.link),o.items&&(o.items=Z(o.items,n)),o})}function U(){const{frontmatter:s,page:e,theme:t}=L(),o=le("(min-width: 960px)"),n=I(!1),r=g(()=>{const C=t.value.sidebar,T=e.value.relativePath;return C?Be(C,T):[]}),l=I(r.value);O(r,(C,T)=>{JSON.stringify(C)!==JSON.stringify(T)&&(l.value=r.value)});const h=g(()=>s.value.sidebar!==!1&&l.value.length>0&&s.value.layout!=="home"),d=g(()=>m?s.value.aside==null?t.value.aside==="left":s.value.aside==="left":!1),m=g(()=>s.value.layout==="home"?!1:s.value.aside!=null?!!s.value.aside:t.value.aside!==!1),V=g(()=>h.value&&o.value),b=g(()=>h.value?Vt(l.value):[]);function P(){n.value=!0}function S(){n.value=!1}function A(){n.value?S():P()}return{isOpen:n,sidebar:l,sidebarGroups:b,hasSidebar:h,hasAside:m,leftAside:d,isSidebarEnabled:V,open:P,close:S,toggle:A}}function Tt(s,e){let t;ee(()=>{t=s.value?document.activeElement:void 0}),K(()=>{window.addEventListener("keyup",o)}),fe(()=>{window.removeEventListener("keyup",o)});function o(n){n.key==="Escape"&&s.value&&(e(),t==null||t.focus())}}function wt(s){const{page:e,hash:t}=L(),o=I(!1),n=g(()=>s.value.collapsed!=null),r=g(()=>!!s.value.link),l=I(!1),h=()=>{l.value=z(e.value.relativePath,s.value.link)};O([e,s,t],h),K(h);const d=g(()=>l.value?!0:s.value.items?de(e.value.relativePath,s.value.items):!1),m=g(()=>!!(s.value.items&&s.value.items.length));ee(()=>{o.value=!!(n.value&&s.value.collapsed)}),Le(()=>{(l.value||d.value)&&(o.value=!1)});function V(){n.value&&(o.value=!o.value)}return{collapsed:o,collapsible:n,isLink:r,isActiveLink:l,hasActiveLink:d,hasChildren:m,toggle:V}}function It(){const{hasSidebar:s}=U(),e=le("(min-width: 960px)"),t=le("(min-width: 1280px)");return{isAsideEnabled:g(()=>!t.value&&!e.value?!1:s.value?t.value:e.value)}}const ve=[];function He(s){return typeof s.outline=="object"&&!Array.isArray(s.outline)&&s.outline.label||s.outlineTitle||"On this page"}function be(s){const e=[...document.querySelectorAll(".VPDoc :where(h1,h2,h3,h4,h5,h6)")].filter(t=>t.id&&t.hasChildNodes()).map(t=>{const o=Number(t.tagName[1]);return{element:t,title:Nt(t),link:"#"+t.id,level:o}});return Mt(e,s)}function Nt(s){let e="";for(const t of s.childNodes)if(t.nodeType===1){if(t.classList.contains("VPBadge")||t.classList.contains("header-anchor")||t.classList.contains("ignore-header"))continue;e+=t.textContent}else t.nodeType===3&&(e+=t.textContent);return e.trim()}function Mt(s,e){if(e===!1)return[];const t=(typeof e=="object"&&!Array.isArray(e)?e.level:e)||2,[o,n]=typeof t=="number"?[t,t]:t==="deep"?[2,6]:t;s=s.filter(l=>l.level>=o&&l.level<=n),ve.length=0;for(const{element:l,link:h}of s)ve.push({element:l,link:h});const r=[];e:for(let l=0;l=0;d--){const m=s[d];if(m.level{requestAnimationFrame(r),window.addEventListener("scroll",o)}),Qe(()=>{l(location.hash)}),fe(()=>{window.removeEventListener("scroll",o)});function r(){if(!t.value)return;const h=window.scrollY,d=window.innerHeight,m=document.body.offsetHeight,V=Math.abs(h+d-m)<1,b=ve.map(({element:S,link:A})=>({link:A,top:Ct(S)})).filter(({top:S})=>!Number.isNaN(S)).sort((S,A)=>S.top-A.top);if(!b.length){l(null);return}if(h<1){l(null);return}if(V){l(b[b.length-1].link);return}let P=null;for(const{link:S,top:A}of b){if(A>h+Ze()+4)break;P=S}l(P)}function l(h){n&&n.classList.remove("active"),h==null?n=null:n=s.value.querySelector(`a[href="${decodeURIComponent(h)}"]`);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 Ct(s){let e=0;for(;s!==document.body;){if(s===null)return NaN;e+=s.offsetTop,s=s.offsetParent}return e}const Bt=["href","title"],Ht=_({__name:"VPDocOutlineItem",props:{headers:{},root:{type:Boolean}},setup(s){function e({target:t}){const o=t.href.split("#")[1],n=document.getElementById(decodeURIComponent(o));n==null||n.focus({preventScroll:!0})}return(t,o)=>{const n=R("VPDocOutlineItem",!0);return a(),u("ul",{class:N(["VPDocOutlineItem",t.root?"root":"nested"])},[(a(!0),u(M,null,E(t.headers,({children:r,link:l,title:h})=>(a(),u("li",null,[v("a",{class:"outline-link",href:l,onClick:e,title:h},w(h),9,Bt),r!=null&&r.length?(a(),y(n,{key:0,headers:r},null,8,["headers"])):f("",!0)]))),256))],2)}}}),Ee=$(Ht,[["__scopeId","data-v-3f927ebe"]]),Et={class:"content"},Dt={"aria-level":"2",class:"outline-title",id:"doc-outline-aria-label",role:"heading"},Ft=_({__name:"VPDocAsideOutline",setup(s){const{frontmatter:e,theme:t}=L(),o=Te([]);te(()=>{o.value=be(e.value.outline??t.value.outline)});const n=I(),r=I();return At(n,r),(l,h)=>(a(),u("nav",{"aria-labelledby":"doc-outline-aria-label",class:N(["VPDocAsideOutline",{"has-outline":o.value.length>0}]),ref_key:"container",ref:n},[v("div",Et,[v("div",{class:"outline-marker",ref_key:"marker",ref:r},null,512),v("div",Dt,w(i(He)(i(t))),1),k(Ee,{headers:o.value,root:!0},null,8,["headers"])])],2))}}),Ot=$(Ft,[["__scopeId","data-v-b38bf2ff"]]),Ut={class:"VPDocAsideCarbonAds"},jt=_({__name:"VPDocAsideCarbonAds",props:{carbonAds:{}},setup(s){const e=()=>null;return(t,o)=>(a(),u("div",Ut,[k(i(e),{"carbon-ads":t.carbonAds},null,8,["carbon-ads"])]))}}),Gt=s=>(B("data-v-6d7b3c46"),s=s(),H(),s),zt={class:"VPDocAside"},Kt=Gt(()=>v("div",{class:"spacer"},null,-1)),Rt=_({__name:"VPDocAside",setup(s){const{theme:e}=L();return(t,o)=>(a(),u("div",zt,[c(t.$slots,"aside-top",{},void 0,!0),c(t.$slots,"aside-outline-before",{},void 0,!0),k(Ot),c(t.$slots,"aside-outline-after",{},void 0,!0),Kt,c(t.$slots,"aside-ads-before",{},void 0,!0),i(e).carbonAds?(a(),y(jt,{key:0,"carbon-ads":i(e).carbonAds},null,8,["carbon-ads"])):f("",!0),c(t.$slots,"aside-ads-after",{},void 0,!0),c(t.$slots,"aside-bottom",{},void 0,!0)]))}}),qt=$(Rt,[["__scopeId","data-v-6d7b3c46"]]);function Wt(){const{theme:s,page:e}=L();return g(()=>{const{text:t="Edit this page",pattern:o=""}=s.value.editLink||{};let n;return typeof o=="function"?n=o(e.value):n=o.replace(/:path/g,e.value.filePath),{url:n,text:t}})}function Jt(){const{page:s,theme:e,frontmatter:t}=L();return g(()=>{var m,V,b,P,S,A,C,T;const o=Be(e.value.sidebar,s.value.relativePath),n=Lt(o),r=Yt(n,j=>j.link.replace(/[?#].*$/,"")),l=r.findIndex(j=>z(s.value.relativePath,j.link)),h=((m=e.value.docFooter)==null?void 0:m.prev)===!1&&!t.value.prev||t.value.prev===!1,d=((V=e.value.docFooter)==null?void 0:V.next)===!1&&!t.value.next||t.value.next===!1;return{prev:h?void 0:{text:(typeof t.value.prev=="string"?t.value.prev:typeof t.value.prev=="object"?t.value.prev.text:void 0)??((b=r[l-1])==null?void 0:b.docFooterText)??((P=r[l-1])==null?void 0:P.text),link:(typeof t.value.prev=="object"?t.value.prev.link:void 0)??((S=r[l-1])==null?void 0:S.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)??((A=r[l+1])==null?void 0:A.docFooterText)??((C=r[l+1])==null?void 0:C.text),link:(typeof t.value.next=="object"?t.value.next.link:void 0)??((T=r[l+1])==null?void 0:T.link)}}})}function Yt(s,e){const t=new Set;return s.filter(o=>{const n=e(o);return t.has(n)?!1:t.add(n)})}const D=_({__name:"VPLink",props:{tag:{},href:{},noIcon:{type:Boolean},target:{},rel:{}},setup(s){const e=s,t=g(()=>e.tag??(e.href?"a":"span")),o=g(()=>e.href&&we.test(e.href)||e.target==="_blank");return(n,r)=>(a(),y(W(t.value),{class:N(["VPLink",{link:n.href,"vp-external-link-icon":o.value,"no-icon":n.noIcon}]),href:n.href?i(me)(n.href):void 0,target:n.target??(o.value?"_blank":void 0),rel:n.rel??(o.value?"noreferrer":void 0)},{default:p(()=>[c(n.$slots,"default")]),_:3},8,["class","href","target","rel"]))}}),Xt={class:"VPLastUpdated"},Qt=["datetime"],Zt=_({__name:"VPDocFooterLastUpdated",setup(s){const{theme:e,page:t,frontmatter:o,lang:n}=L(),r=g(()=>new Date(o.value.lastUpdated??t.value.lastUpdated)),l=g(()=>r.value.toISOString()),h=I("");return K(()=>{ee(()=>{var d,m,V;h.value=new Intl.DateTimeFormat((m=(d=e.value.lastUpdated)==null?void 0:d.formatOptions)!=null&&m.forceLocale?n.value:void 0,((V=e.value.lastUpdated)==null?void 0:V.formatOptions)??{dateStyle:"short",timeStyle:"short"}).format(r.value)})}),(d,m)=>{var V;return a(),u("p",Xt,[F(w(((V=i(e).lastUpdated)==null?void 0:V.text)||i(e).lastUpdatedText||"Last updated")+": ",1),v("time",{datetime:l.value},w(h.value),9,Qt)])}}}),xt=$(Zt,[["__scopeId","data-v-9da12f1d"]]),De=s=>(B("data-v-b88cabfa"),s=s(),H(),s),es={key:0,class:"VPDocFooter"},ts={key:0,class:"edit-info"},ss={key:0,class:"edit-link"},os=De(()=>v("span",{class:"vpi-square-pen edit-link-icon"},null,-1)),ns={key:1,class:"last-updated"},as={key:1,class:"prev-next","aria-labelledby":"doc-footer-aria-label"},rs=De(()=>v("span",{class:"visually-hidden",id:"doc-footer-aria-label"},"Pager",-1)),is={class:"pager"},ls=["innerHTML"],cs=["innerHTML"],us={class:"pager"},ds=["innerHTML"],vs=["innerHTML"],ps=_({__name:"VPDocFooter",setup(s){const{theme:e,page:t,frontmatter:o}=L(),n=Wt(),r=Jt(),l=g(()=>e.value.editLink&&o.value.editLink!==!1),h=g(()=>t.value.lastUpdated&&o.value.lastUpdated!==!1),d=g(()=>l.value||h.value||r.value.prev||r.value.next);return(m,V)=>{var b,P,S,A;return d.value?(a(),u("footer",es,[c(m.$slots,"doc-footer-before",{},void 0,!0),l.value||h.value?(a(),u("div",ts,[l.value?(a(),u("div",ss,[k(D,{class:"edit-link-button",href:i(n).url,"no-icon":!0},{default:p(()=>[os,F(" "+w(i(n).text),1)]),_:1},8,["href"])])):f("",!0),h.value?(a(),u("div",ns,[k(xt)])):f("",!0)])):f("",!0),(b=i(r).prev)!=null&&b.link||(P=i(r).next)!=null&&P.link?(a(),u("nav",as,[rs,v("div",is,[(S=i(r).prev)!=null&&S.link?(a(),y(D,{key:0,class:"pager-link prev",href:i(r).prev.link},{default:p(()=>{var C;return[v("span",{class:"desc",innerHTML:((C=i(e).docFooter)==null?void 0:C.prev)||"Previous page"},null,8,ls),v("span",{class:"title",innerHTML:i(r).prev.text},null,8,cs)]}),_:1},8,["href"])):f("",!0)]),v("div",us,[(A=i(r).next)!=null&&A.link?(a(),y(D,{key:0,class:"pager-link next",href:i(r).next.link},{default:p(()=>{var C;return[v("span",{class:"desc",innerHTML:((C=i(e).docFooter)==null?void 0:C.next)||"Next page"},null,8,ds),v("span",{class:"title",innerHTML:i(r).next.text},null,8,vs)]}),_:1},8,["href"])):f("",!0)])])):f("",!0)])):f("",!0)}}}),hs=$(ps,[["__scopeId","data-v-b88cabfa"]]),fs=s=>(B("data-v-83890dd9"),s=s(),H(),s),_s={class:"container"},ms=fs(()=>v("div",{class:"aside-curtain"},null,-1)),bs={class:"aside-container"},ks={class:"aside-content"},$s={class:"content"},gs={class:"content-container"},ys={class:"main"},Ps=_({__name:"VPDoc",setup(s){const{theme:e}=L(),t=se(),{hasSidebar:o,hasAside:n,leftAside:r}=U(),l=g(()=>t.path.replace(/[./]+/g,"_").replace(/_html$/,""));return(h,d)=>{const m=R("Content");return a(),u("div",{class:N(["VPDoc",{"has-sidebar":i(o),"has-aside":i(n)}])},[c(h.$slots,"doc-top",{},void 0,!0),v("div",_s,[i(n)?(a(),u("div",{key:0,class:N(["aside",{"left-aside":i(r)}])},[ms,v("div",bs,[v("div",ks,[k(qt,null,{"aside-top":p(()=>[c(h.$slots,"aside-top",{},void 0,!0)]),"aside-bottom":p(()=>[c(h.$slots,"aside-bottom",{},void 0,!0)]),"aside-outline-before":p(()=>[c(h.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":p(()=>[c(h.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":p(()=>[c(h.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":p(()=>[c(h.$slots,"aside-ads-after",{},void 0,!0)]),_:3})])])],2)):f("",!0),v("div",$s,[v("div",gs,[c(h.$slots,"doc-before",{},void 0,!0),v("main",ys,[k(m,{class:N(["vp-doc",[l.value,i(e).externalLinkIcon&&"external-link-icon-enabled"]])},null,8,["class"])]),k(hs,null,{"doc-footer-before":p(()=>[c(h.$slots,"doc-footer-before",{},void 0,!0)]),_:3}),c(h.$slots,"doc-after",{},void 0,!0)])])]),c(h.$slots,"doc-bottom",{},void 0,!0)],2)}}}),Ss=$(Ps,[["__scopeId","data-v-83890dd9"]]),Vs=_({__name:"VPButton",props:{tag:{},size:{default:"medium"},theme:{default:"brand"},text:{},href:{},target:{},rel:{}},setup(s){const e=s,t=g(()=>e.href&&we.test(e.href)),o=g(()=>e.tag||e.href?"a":"button");return(n,r)=>(a(),y(W(o.value),{class:N(["VPButton",[n.size,n.theme]]),href:n.href?i(me)(n.href):void 0,target:e.target??(t.value?"_blank":void 0),rel:e.rel??(t.value?"noreferrer":void 0)},{default:p(()=>[F(w(n.text),1)]),_:1},8,["class","href","target","rel"]))}}),Ls=$(Vs,[["__scopeId","data-v-14206e74"]]),Ts=["src","alt"],ws=_({inheritAttrs:!1,__name:"VPImage",props:{image:{},alt:{}},setup(s){return(e,t)=>{const o=R("VPImage",!0);return e.image?(a(),u(M,{key:0},[typeof e.image=="string"||"src"in e.image?(a(),u("img",Q({key:0,class:"VPImage"},typeof e.image=="string"?e.$attrs:{...e.image,...e.$attrs},{src:i(he)(typeof e.image=="string"?e.image:e.image.src),alt:e.alt??(typeof e.image=="string"?"":e.image.alt||"")}),null,16,Ts)):(a(),u(M,{key:1},[k(o,Q({class:"dark",image:e.image.dark,alt:e.image.alt},e.$attrs),null,16,["image","alt"]),k(o,Q({class:"light",image:e.image.light,alt:e.image.alt},e.$attrs),null,16,["image","alt"])],64))],64)):f("",!0)}}}),x=$(ws,[["__scopeId","data-v-35a7d0b8"]]),Is=s=>(B("data-v-955009fc"),s=s(),H(),s),Ns={class:"container"},Ms={class:"main"},As={key:0,class:"name"},Cs=["innerHTML"],Bs=["innerHTML"],Hs=["innerHTML"],Es={key:0,class:"actions"},Ds={key:0,class:"image"},Fs={class:"image-container"},Os=Is(()=>v("div",{class:"image-bg"},null,-1)),Us=_({__name:"VPHero",props:{name:{},text:{},tagline:{},image:{},actions:{}},setup(s){const e=J("hero-image-slot-exists");return(t,o)=>(a(),u("div",{class:N(["VPHero",{"has-image":t.image||i(e)}])},[v("div",Ns,[v("div",Ms,[c(t.$slots,"home-hero-info-before",{},void 0,!0),c(t.$slots,"home-hero-info",{},()=>[t.name?(a(),u("h1",As,[v("span",{innerHTML:t.name,class:"clip"},null,8,Cs)])):f("",!0),t.text?(a(),u("p",{key:1,innerHTML:t.text,class:"text"},null,8,Bs)):f("",!0),t.tagline?(a(),u("p",{key:2,innerHTML:t.tagline,class:"tagline"},null,8,Hs)):f("",!0)],!0),c(t.$slots,"home-hero-info-after",{},void 0,!0),t.actions?(a(),u("div",Es,[(a(!0),u(M,null,E(t.actions,n=>(a(),u("div",{key:n.link,class:"action"},[k(Ls,{tag:"a",size:"medium",theme:n.theme,text:n.text,href:n.link,target:n.target,rel:n.rel},null,8,["theme","text","href","target","rel"])]))),128))])):f("",!0),c(t.$slots,"home-hero-actions-after",{},void 0,!0)]),t.image||i(e)?(a(),u("div",Ds,[v("div",Fs,[Os,c(t.$slots,"home-hero-image",{},()=>[t.image?(a(),y(x,{key:0,class:"image-src",image:t.image},null,8,["image"])):f("",!0)],!0)])])):f("",!0)])],2))}}),js=$(Us,[["__scopeId","data-v-955009fc"]]),Gs=_({__name:"VPHomeHero",setup(s){const{frontmatter:e}=L();return(t,o)=>i(e).hero?(a(),y(js,{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":p(()=>[c(t.$slots,"home-hero-info-before")]),"home-hero-info":p(()=>[c(t.$slots,"home-hero-info")]),"home-hero-info-after":p(()=>[c(t.$slots,"home-hero-info-after")]),"home-hero-actions-after":p(()=>[c(t.$slots,"home-hero-actions-after")]),"home-hero-image":p(()=>[c(t.$slots,"home-hero-image")]),_:3},8,["name","text","tagline","image","actions"])):f("",!0)}}),zs=s=>(B("data-v-f5e9645b"),s=s(),H(),s),Ks={class:"box"},Rs={key:0,class:"icon"},qs=["innerHTML"],Ws=["innerHTML"],Js=["innerHTML"],Ys={key:4,class:"link-text"},Xs={class:"link-text-value"},Qs=zs(()=>v("span",{class:"vpi-arrow-right link-text-icon"},null,-1)),Zs=_({__name:"VPFeature",props:{icon:{},title:{},details:{},link:{},linkText:{},rel:{},target:{}},setup(s){return(e,t)=>(a(),y(D,{class:"VPFeature",href:e.link,rel:e.rel,target:e.target,"no-icon":!0,tag:e.link?"a":"div"},{default:p(()=>[v("article",Ks,[typeof e.icon=="object"&&e.icon.wrap?(a(),u("div",Rs,[k(x,{image:e.icon,alt:e.icon.alt,height:e.icon.height||48,width:e.icon.width||48},null,8,["image","alt","height","width"])])):typeof e.icon=="object"?(a(),y(x,{key:1,image:e.icon,alt:e.icon.alt,height:e.icon.height||48,width:e.icon.width||48},null,8,["image","alt","height","width"])):e.icon?(a(),u("div",{key:2,class:"icon",innerHTML:e.icon},null,8,qs)):f("",!0),v("h2",{class:"title",innerHTML:e.title},null,8,Ws),e.details?(a(),u("p",{key:3,class:"details",innerHTML:e.details},null,8,Js)):f("",!0),e.linkText?(a(),u("div",Ys,[v("p",Xs,[F(w(e.linkText)+" ",1),Qs])])):f("",!0)])]),_:1},8,["href","rel","target","tag"]))}}),xs=$(Zs,[["__scopeId","data-v-f5e9645b"]]),eo={key:0,class:"VPFeatures"},to={class:"container"},so={class:"items"},oo=_({__name:"VPFeatures",props:{features:{}},setup(s){const e=s,t=g(()=>{const o=e.features.length;if(o){if(o===2)return"grid-2";if(o===3)return"grid-3";if(o%3===0)return"grid-6";if(o>3)return"grid-4"}else return});return(o,n)=>o.features?(a(),u("div",eo,[v("div",to,[v("div",so,[(a(!0),u(M,null,E(o.features,r=>(a(),u("div",{key:r.title,class:N(["item",[t.value]])},[k(xs,{icon:r.icon,title:r.title,details:r.details,link:r.link,"link-text":r.linkText,rel:r.rel,target:r.target},null,8,["icon","title","details","link","link-text","rel","target"])],2))),128))])])])):f("",!0)}}),no=$(oo,[["__scopeId","data-v-d0a190d7"]]),ao=_({__name:"VPHomeFeatures",setup(s){const{frontmatter:e}=L();return(t,o)=>i(e).features?(a(),y(no,{key:0,class:"VPHomeFeatures",features:i(e).features},null,8,["features"])):f("",!0)}}),ro=_({__name:"VPHomeContent",setup(s){const{width:e}=xe({initialWidth:0,includeScrollbar:!1});return(t,o)=>(a(),u("div",{class:"vp-doc container",style:Ie(i(e)?{"--vp-offset":`calc(50% - ${i(e)/2}px)`}:{})},[c(t.$slots,"default",{},void 0,!0)],4))}}),io=$(ro,[["__scopeId","data-v-7a48a447"]]),lo={class:"VPHome"},co=_({__name:"VPHome",setup(s){const{frontmatter:e}=L();return(t,o)=>{const n=R("Content");return a(),u("div",lo,[c(t.$slots,"home-hero-before",{},void 0,!0),k(Gs,null,{"home-hero-info-before":p(()=>[c(t.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":p(()=>[c(t.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":p(()=>[c(t.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":p(()=>[c(t.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":p(()=>[c(t.$slots,"home-hero-image",{},void 0,!0)]),_:3}),c(t.$slots,"home-hero-after",{},void 0,!0),c(t.$slots,"home-features-before",{},void 0,!0),k(ao),c(t.$slots,"home-features-after",{},void 0,!0),i(e).markdownStyles!==!1?(a(),y(io,{key:0},{default:p(()=>[k(n)]),_:1})):(a(),y(n,{key:1}))])}}}),uo=$(co,[["__scopeId","data-v-cbb6ec48"]]),vo={},po={class:"VPPage"};function ho(s,e){const t=R("Content");return a(),u("div",po,[c(s.$slots,"page-top"),k(t),c(s.$slots,"page-bottom")])}const fo=$(vo,[["render",ho]]),_o=_({__name:"VPContent",setup(s){const{page:e,frontmatter:t}=L(),{hasSidebar:o}=U();return(n,r)=>(a(),u("div",{class:N(["VPContent",{"has-sidebar":i(o),"is-home":i(t).layout==="home"}]),id:"VPContent"},[i(e).isNotFound?c(n.$slots,"not-found",{key:0},()=>[k(St)],!0):i(t).layout==="page"?(a(),y(fo,{key:1},{"page-top":p(()=>[c(n.$slots,"page-top",{},void 0,!0)]),"page-bottom":p(()=>[c(n.$slots,"page-bottom",{},void 0,!0)]),_:3})):i(t).layout==="home"?(a(),y(uo,{key:2},{"home-hero-before":p(()=>[c(n.$slots,"home-hero-before",{},void 0,!0)]),"home-hero-info-before":p(()=>[c(n.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":p(()=>[c(n.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":p(()=>[c(n.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":p(()=>[c(n.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":p(()=>[c(n.$slots,"home-hero-image",{},void 0,!0)]),"home-hero-after":p(()=>[c(n.$slots,"home-hero-after",{},void 0,!0)]),"home-features-before":p(()=>[c(n.$slots,"home-features-before",{},void 0,!0)]),"home-features-after":p(()=>[c(n.$slots,"home-features-after",{},void 0,!0)]),_:3})):i(t).layout&&i(t).layout!=="doc"?(a(),y(W(i(t).layout),{key:3})):(a(),y(Ss,{key:4},{"doc-top":p(()=>[c(n.$slots,"doc-top",{},void 0,!0)]),"doc-bottom":p(()=>[c(n.$slots,"doc-bottom",{},void 0,!0)]),"doc-footer-before":p(()=>[c(n.$slots,"doc-footer-before",{},void 0,!0)]),"doc-before":p(()=>[c(n.$slots,"doc-before",{},void 0,!0)]),"doc-after":p(()=>[c(n.$slots,"doc-after",{},void 0,!0)]),"aside-top":p(()=>[c(n.$slots,"aside-top",{},void 0,!0)]),"aside-outline-before":p(()=>[c(n.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":p(()=>[c(n.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":p(()=>[c(n.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":p(()=>[c(n.$slots,"aside-ads-after",{},void 0,!0)]),"aside-bottom":p(()=>[c(n.$slots,"aside-bottom",{},void 0,!0)]),_:3}))],2))}}),mo=$(_o,[["__scopeId","data-v-91765379"]]),bo={class:"container"},ko=["innerHTML"],$o=["innerHTML"],go=_({__name:"VPFooter",setup(s){const{theme:e,frontmatter:t}=L(),{hasSidebar:o}=U();return(n,r)=>i(e).footer&&i(t).footer!==!1?(a(),u("footer",{key:0,class:N(["VPFooter",{"has-sidebar":i(o)}])},[v("div",bo,[i(e).footer.message?(a(),u("p",{key:0,class:"message",innerHTML:i(e).footer.message},null,8,ko)):f("",!0),i(e).footer.copyright?(a(),u("p",{key:1,class:"copyright",innerHTML:i(e).footer.copyright},null,8,$o)):f("",!0)])],2)):f("",!0)}}),yo=$(go,[["__scopeId","data-v-c970a860"]]);function Po(){const{theme:s,frontmatter:e}=L(),t=Te([]),o=g(()=>t.value.length>0);return te(()=>{t.value=be(e.value.outline??s.value.outline)}),{headers:t,hasLocalNav:o}}const So=s=>(B("data-v-bc9dc845"),s=s(),H(),s),Vo={class:"menu-text"},Lo=So(()=>v("span",{class:"vpi-chevron-right icon"},null,-1)),To={class:"header"},wo={class:"outline"},Io=_({__name:"VPLocalNavOutlineDropdown",props:{headers:{},navHeight:{}},setup(s){const e=s,{theme:t}=L(),o=I(!1),n=I(0),r=I(),l=I();function h(b){var P;(P=r.value)!=null&&P.contains(b.target)||(o.value=!1)}O(o,b=>{if(b){document.addEventListener("click",h);return}document.removeEventListener("click",h)}),ce("Escape",()=>{o.value=!1}),te(()=>{o.value=!1});function d(){o.value=!o.value,n.value=window.innerHeight+Math.min(window.scrollY-e.navHeight,0)}function m(b){b.target.classList.contains("outline-link")&&(l.value&&(l.value.style.transition="none"),Ne(()=>{o.value=!1}))}function V(){o.value=!1,window.scrollTo({top:0,left:0,behavior:"smooth"})}return(b,P)=>(a(),u("div",{class:"VPLocalNavOutlineDropdown",style:Ie({"--vp-vh":n.value+"px"}),ref_key:"main",ref:r},[b.headers.length>0?(a(),u("button",{key:0,onClick:d,class:N({open:o.value})},[v("span",Vo,w(i(He)(i(t))),1),Lo],2)):(a(),u("button",{key:1,onClick:V},w(i(t).returnToTopLabel||"Return to top"),1)),k(pe,{name:"flyout"},{default:p(()=>[o.value?(a(),u("div",{key:0,ref_key:"items",ref:l,class:"items",onClick:m},[v("div",To,[v("a",{class:"top-link",href:"#",onClick:V},w(i(t).returnToTopLabel||"Return to top"),1)]),v("div",wo,[k(Ee,{headers:b.headers},null,8,["headers"])])],512)):f("",!0)]),_:1})],4))}}),No=$(Io,[["__scopeId","data-v-bc9dc845"]]),Mo=s=>(B("data-v-070ab83d"),s=s(),H(),s),Ao={class:"container"},Co=["aria-expanded"],Bo=Mo(()=>v("span",{class:"vpi-align-left menu-icon"},null,-1)),Ho={class:"menu-text"},Eo=_({__name:"VPLocalNav",props:{open:{type:Boolean}},emits:["open-menu"],setup(s){const{theme:e,frontmatter:t}=L(),{hasSidebar:o}=U(),{headers:n}=Po(),{y:r}=Me(),l=I(0);K(()=>{l.value=parseInt(getComputedStyle(document.documentElement).getPropertyValue("--vp-nav-height"))}),te(()=>{n.value=be(t.value.outline??e.value.outline)});const h=g(()=>n.value.length===0),d=g(()=>h.value&&!o.value),m=g(()=>({VPLocalNav:!0,"has-sidebar":o.value,empty:h.value,fixed:d.value}));return(V,b)=>i(t).layout!=="home"&&(!d.value||i(r)>=l.value)?(a(),u("div",{key:0,class:N(m.value)},[v("div",Ao,[i(o)?(a(),u("button",{key:0,class:"menu","aria-expanded":V.open,"aria-controls":"VPSidebarNav",onClick:b[0]||(b[0]=P=>V.$emit("open-menu"))},[Bo,v("span",Ho,w(i(e).sidebarMenuLabel||"Menu"),1)],8,Co)):f("",!0),k(No,{headers:i(n),navHeight:l.value},null,8,["headers","navHeight"])])],2)):f("",!0)}}),Do=$(Eo,[["__scopeId","data-v-070ab83d"]]);function Fo(){const s=I(!1);function e(){s.value=!0,window.addEventListener("resize",n)}function t(){s.value=!1,window.removeEventListener("resize",n)}function o(){s.value?t():e()}function n(){window.outerWidth>=768&&t()}const r=se();return O(()=>r.path,t),{isScreenOpen:s,openScreen:e,closeScreen:t,toggleScreen:o}}const Oo={},Uo={class:"VPSwitch",type:"button",role:"switch"},jo={class:"check"},Go={key:0,class:"icon"};function zo(s,e){return a(),u("button",Uo,[v("span",jo,[s.$slots.default?(a(),u("span",Go,[c(s.$slots,"default",{},void 0,!0)])):f("",!0)])])}const Ko=$(Oo,[["render",zo],["__scopeId","data-v-4a1c76db"]]),Fe=s=>(B("data-v-b79b56d4"),s=s(),H(),s),Ro=Fe(()=>v("span",{class:"vpi-sun sun"},null,-1)),qo=Fe(()=>v("span",{class:"vpi-moon moon"},null,-1)),Wo=_({__name:"VPSwitchAppearance",setup(s){const{isDark:e,theme:t}=L(),o=J("toggle-appearance",()=>{e.value=!e.value}),n=g(()=>e.value?t.value.lightModeSwitchTitle||"Switch to light theme":t.value.darkModeSwitchTitle||"Switch to dark theme");return(r,l)=>(a(),y(Ko,{title:n.value,class:"VPSwitchAppearance","aria-checked":i(e),onClick:i(o)},{default:p(()=>[Ro,qo]),_:1},8,["title","aria-checked","onClick"]))}}),ke=$(Wo,[["__scopeId","data-v-b79b56d4"]]),Jo={key:0,class:"VPNavBarAppearance"},Yo=_({__name:"VPNavBarAppearance",setup(s){const{site:e}=L();return(t,o)=>i(e).appearance&&i(e).appearance!=="force-dark"?(a(),u("div",Jo,[k(ke)])):f("",!0)}}),Xo=$(Yo,[["__scopeId","data-v-ead91a81"]]),$e=I();let Oe=!1,ie=0;function Qo(s){const e=I(!1);if(oe){!Oe&&Zo(),ie++;const t=O($e,o=>{var n,r,l;o===s.el.value||(n=s.el.value)!=null&&n.contains(o)?(e.value=!0,(r=s.onFocus)==null||r.call(s)):(e.value=!1,(l=s.onBlur)==null||l.call(s))});fe(()=>{t(),ie--,ie||xo()})}return et(e)}function Zo(){document.addEventListener("focusin",Ue),Oe=!0,$e.value=document.activeElement}function xo(){document.removeEventListener("focusin",Ue)}function Ue(){$e.value=document.activeElement}const en={class:"VPMenuLink"},tn=_({__name:"VPMenuLink",props:{item:{}},setup(s){const{page:e}=L();return(t,o)=>(a(),u("div",en,[k(D,{class:N({active:i(z)(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:p(()=>[F(w(t.item.text),1)]),_:1},8,["class","href","target","rel"])]))}}),ne=$(tn,[["__scopeId","data-v-8b74d055"]]),sn={class:"VPMenuGroup"},on={key:0,class:"title"},nn=_({__name:"VPMenuGroup",props:{text:{},items:{}},setup(s){return(e,t)=>(a(),u("div",sn,[e.text?(a(),u("p",on,w(e.text),1)):f("",!0),(a(!0),u(M,null,E(e.items,o=>(a(),u(M,null,["link"in o?(a(),y(ne,{key:0,item:o},null,8,["item"])):f("",!0)],64))),256))]))}}),an=$(nn,[["__scopeId","data-v-48c802d0"]]),rn={class:"VPMenu"},ln={key:0,class:"items"},cn=_({__name:"VPMenu",props:{items:{}},setup(s){return(e,t)=>(a(),u("div",rn,[e.items?(a(),u("div",ln,[(a(!0),u(M,null,E(e.items,o=>(a(),u(M,{key:o.text},["link"in o?(a(),y(ne,{key:0,item:o},null,8,["item"])):(a(),y(an,{key:1,text:o.text,items:o.items},null,8,["text","items"]))],64))),128))])):f("",!0),c(e.$slots,"default",{},void 0,!0)]))}}),un=$(cn,[["__scopeId","data-v-97491713"]]),dn=s=>(B("data-v-e5380155"),s=s(),H(),s),vn=["aria-expanded","aria-label"],pn={key:0,class:"text"},hn=["innerHTML"],fn=dn(()=>v("span",{class:"vpi-chevron-down text-icon"},null,-1)),_n={key:1,class:"vpi-more-horizontal icon"},mn={class:"menu"},bn=_({__name:"VPFlyout",props:{icon:{},button:{},label:{},items:{}},setup(s){const e=I(!1),t=I();Qo({el:t,onBlur:o});function o(){e.value=!1}return(n,r)=>(a(),u("div",{class:"VPFlyout",ref_key:"el",ref:t,onMouseenter:r[1]||(r[1]=l=>e.value=!0),onMouseleave:r[2]||(r[2]=l=>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]=l=>e.value=!e.value)},[n.button||n.icon?(a(),u("span",pn,[n.icon?(a(),u("span",{key:0,class:N([n.icon,"option-icon"])},null,2)):f("",!0),n.button?(a(),u("span",{key:1,innerHTML:n.button},null,8,hn)):f("",!0),fn])):(a(),u("span",_n))],8,vn),v("div",mn,[k(un,{items:n.items},{default:p(()=>[c(n.$slots,"default",{},void 0,!0)]),_:3},8,["items"])])],544))}}),ge=$(bn,[["__scopeId","data-v-e5380155"]]),kn=["href","aria-label","innerHTML"],$n=_({__name:"VPSocialLink",props:{icon:{},link:{},ariaLabel:{}},setup(s){const e=s,t=g(()=>typeof e.icon=="object"?e.icon.svg:``);return(o,n)=>(a(),u("a",{class:"VPSocialLink no-icon",href:o.link,"aria-label":o.ariaLabel??(typeof o.icon=="string"?o.icon:""),target:"_blank",rel:"noopener",innerHTML:t.value},null,8,kn))}}),gn=$($n,[["__scopeId","data-v-717b8b75"]]),yn={class:"VPSocialLinks"},Pn=_({__name:"VPSocialLinks",props:{links:{}},setup(s){return(e,t)=>(a(),u("div",yn,[(a(!0),u(M,null,E(e.links,({link:o,icon:n,ariaLabel:r})=>(a(),y(gn,{key:o,icon:n,link:o,ariaLabel:r},null,8,["icon","link","ariaLabel"]))),128))]))}}),ye=$(Pn,[["__scopeId","data-v-ee7a9424"]]),Sn={key:0,class:"group translations"},Vn={class:"trans-title"},Ln={key:1,class:"group"},Tn={class:"item appearance"},wn={class:"label"},In={class:"appearance-action"},Nn={key:2,class:"group"},Mn={class:"item social-links"},An=_({__name:"VPNavBarExtra",setup(s){const{site:e,theme:t}=L(),{localeLinks:o,currentLang:n}=X({correspondingLink:!0}),r=g(()=>o.value.length&&n.value.label||e.value.appearance||t.value.socialLinks);return(l,h)=>r.value?(a(),y(ge,{key:0,class:"VPNavBarExtra",label:"extra navigation"},{default:p(()=>[i(o).length&&i(n).label?(a(),u("div",Sn,[v("p",Vn,w(i(n).label),1),(a(!0),u(M,null,E(i(o),d=>(a(),y(ne,{key:d.link,item:d},null,8,["item"]))),128))])):f("",!0),i(e).appearance&&i(e).appearance!=="force-dark"?(a(),u("div",Ln,[v("div",Tn,[v("p",wn,w(i(t).darkModeSwitchLabel||"Appearance"),1),v("div",In,[k(ke)])])])):f("",!0),i(t).socialLinks?(a(),u("div",Nn,[v("div",Mn,[k(ye,{class:"social-links-list",links:i(t).socialLinks},null,8,["links"])])])):f("",!0)]),_:1})):f("",!0)}}),Cn=$(An,[["__scopeId","data-v-9b536d0b"]]),Bn=s=>(B("data-v-5dea55bf"),s=s(),H(),s),Hn=["aria-expanded"],En=Bn(()=>v("span",{class:"container"},[v("span",{class:"top"}),v("span",{class:"middle"}),v("span",{class:"bottom"})],-1)),Dn=[En],Fn=_({__name:"VPNavBarHamburger",props:{active:{type:Boolean}},emits:["click"],setup(s){return(e,t)=>(a(),u("button",{type:"button",class:N(["VPNavBarHamburger",{active:e.active}]),"aria-label":"mobile navigation","aria-expanded":e.active,"aria-controls":"VPNavScreen",onClick:t[0]||(t[0]=o=>e.$emit("click"))},Dn,10,Hn))}}),On=$(Fn,[["__scopeId","data-v-5dea55bf"]]),Un=["innerHTML"],jn=_({__name:"VPNavBarMenuLink",props:{item:{}},setup(s){const{page:e}=L();return(t,o)=>(a(),y(D,{class:N({VPNavBarMenuLink:!0,active:i(z)(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:p(()=>[v("span",{innerHTML:t.item.text},null,8,Un)]),_:1},8,["class","href","noIcon","target","rel"]))}}),Gn=$(jn,[["__scopeId","data-v-ed5ac1f6"]]),zn=_({__name:"VPNavBarMenuGroup",props:{item:{}},setup(s){const e=s,{page:t}=L(),o=r=>"link"in r?z(t.value.relativePath,r.link,!!e.item.activeMatch):r.items.some(o),n=g(()=>o(e.item));return(r,l)=>(a(),y(ge,{class:N({VPNavBarMenuGroup:!0,active:i(z)(i(t).relativePath,r.item.activeMatch,!!r.item.activeMatch)||n.value}),button:r.item.text,items:r.item.items},null,8,["class","button","items"]))}}),Kn=s=>(B("data-v-492ea56d"),s=s(),H(),s),Rn={key:0,"aria-labelledby":"main-nav-aria-label",class:"VPNavBarMenu"},qn=Kn(()=>v("span",{id:"main-nav-aria-label",class:"visually-hidden"},"Main Navigation",-1)),Wn=_({__name:"VPNavBarMenu",setup(s){const{theme:e}=L();return(t,o)=>i(e).nav?(a(),u("nav",Rn,[qn,(a(!0),u(M,null,E(i(e).nav,n=>(a(),u(M,{key:n.text},["link"in n?(a(),y(Gn,{key:0,item:n},null,8,["item"])):(a(),y(zn,{key:1,item:n},null,8,["item"]))],64))),128))])):f("",!0)}}),Jn=$(Wn,[["__scopeId","data-v-492ea56d"]]);function Yn(s){const{localeIndex:e,theme:t}=L();function o(n){var A,C,T;const r=n.split("."),l=(A=t.value.search)==null?void 0:A.options,h=l&&typeof l=="object",d=h&&((T=(C=l.locales)==null?void 0:C[e.value])==null?void 0:T.translations)||null,m=h&&l.translations||null;let V=d,b=m,P=s;const S=r.pop();for(const j of r){let G=null;const q=P==null?void 0:P[j];q&&(G=P=q);const ae=b==null?void 0:b[j];ae&&(G=b=ae);const re=V==null?void 0:V[j];re&&(G=V=re),q||(P=G),ae||(b=G),re||(V=G)}return(V==null?void 0:V[S])??(b==null?void 0:b[S])??(P==null?void 0:P[S])??""}return o}const Xn=["aria-label"],Qn={class:"DocSearch-Button-Container"},Zn=v("span",{class:"vp-icon DocSearch-Search-Icon"},null,-1),xn={class:"DocSearch-Button-Placeholder"},ea=v("span",{class:"DocSearch-Button-Keys"},[v("kbd",{class:"DocSearch-Button-Key"}),v("kbd",{class:"DocSearch-Button-Key"},"K")],-1),Pe=_({__name:"VPNavBarSearchButton",setup(s){const t=Yn({button:{buttonText:"Search",buttonAriaLabel:"Search"}});return(o,n)=>(a(),u("button",{type:"button",class:"DocSearch DocSearch-Button","aria-label":i(t)("button.buttonAriaLabel")},[v("span",Qn,[Zn,v("span",xn,w(i(t)("button.buttonText")),1)]),ea],8,Xn))}}),ta={class:"VPNavBarSearch"},sa={id:"local-search"},oa={key:1,id:"docsearch"},na=_({__name:"VPNavBarSearch",setup(s){const e=tt(()=>st(()=>import("./VPLocalSearchBox.C5YKFqyK.js"),__vite__mapDeps([0,1]))),t=()=>null,{theme:o}=L(),n=I(!1),r=I(!1);K(()=>{});function l(){n.value||(n.value=!0,setTimeout(h,16))}function h(){const b=new Event("keydown");b.key="k",b.metaKey=!0,window.dispatchEvent(b),setTimeout(()=>{document.querySelector(".DocSearch-Modal")||h()},16)}function d(b){const P=b.target,S=P.tagName;return P.isContentEditable||S==="INPUT"||S==="SELECT"||S==="TEXTAREA"}const m=I(!1);ce("k",b=>{(b.ctrlKey||b.metaKey)&&(b.preventDefault(),m.value=!0)}),ce("/",b=>{d(b)||(b.preventDefault(),m.value=!0)});const V="local";return(b,P)=>{var S;return a(),u("div",ta,[i(V)==="local"?(a(),u(M,{key:0},[m.value?(a(),y(i(e),{key:0,onClose:P[0]||(P[0]=A=>m.value=!1)})):f("",!0),v("div",sa,[k(Pe,{onClick:P[1]||(P[1]=A=>m.value=!0)})])],64)):i(V)==="algolia"?(a(),u(M,{key:1},[n.value?(a(),y(i(t),{key:0,algolia:((S=i(o).search)==null?void 0:S.options)??i(o).algolia,onVnodeBeforeMount:P[2]||(P[2]=A=>r.value=!0)},null,8,["algolia"])):f("",!0),r.value?f("",!0):(a(),u("div",oa,[k(Pe,{onClick:l})]))],64)):f("",!0)])}}}),aa=_({__name:"VPNavBarSocialLinks",setup(s){const{theme:e}=L();return(t,o)=>i(e).socialLinks?(a(),y(ye,{key:0,class:"VPNavBarSocialLinks",links:i(e).socialLinks},null,8,["links"])):f("",!0)}}),ra=$(aa,[["__scopeId","data-v-164c457f"]]),ia=["href","rel","target"],la={key:1},ca={key:2},ua=_({__name:"VPNavBarTitle",setup(s){const{site:e,theme:t}=L(),{hasSidebar:o}=U(),{currentLang:n}=X(),r=g(()=>{var d;return typeof t.value.logoLink=="string"?t.value.logoLink:(d=t.value.logoLink)==null?void 0:d.link}),l=g(()=>{var d;return typeof t.value.logoLink=="string"||(d=t.value.logoLink)==null?void 0:d.rel}),h=g(()=>{var d;return typeof t.value.logoLink=="string"||(d=t.value.logoLink)==null?void 0:d.target});return(d,m)=>(a(),u("div",{class:N(["VPNavBarTitle",{"has-sidebar":i(o)}])},[v("a",{class:"title",href:r.value??i(me)(i(n).link),rel:l.value,target:h.value},[c(d.$slots,"nav-bar-title-before",{},void 0,!0),i(t).logo?(a(),y(x,{key:0,class:"logo",image:i(t).logo},null,8,["image"])):f("",!0),i(t).siteTitle?(a(),u("span",la,w(i(t).siteTitle),1)):i(t).siteTitle===void 0?(a(),u("span",ca,w(i(e).title),1)):f("",!0),c(d.$slots,"nav-bar-title-after",{},void 0,!0)],8,ia)],2))}}),da=$(ua,[["__scopeId","data-v-28a961f9"]]),va={class:"items"},pa={class:"title"},ha=_({__name:"VPNavBarTranslations",setup(s){const{theme:e}=L(),{localeLinks:t,currentLang:o}=X({correspondingLink:!0});return(n,r)=>i(t).length&&i(o).label?(a(),y(ge,{key:0,class:"VPNavBarTranslations",icon:"vpi-languages",label:i(e).langMenuLabel||"Change language"},{default:p(()=>[v("div",va,[v("p",pa,w(i(o).label),1),(a(!0),u(M,null,E(i(t),l=>(a(),y(ne,{key:l.link,item:l},null,8,["item"]))),128))])]),_:1},8,["label"])):f("",!0)}}),fa=$(ha,[["__scopeId","data-v-c80d9ad0"]]),_a=s=>(B("data-v-40788ea0"),s=s(),H(),s),ma={class:"wrapper"},ba={class:"container"},ka={class:"title"},$a={class:"content"},ga={class:"content-body"},ya=_a(()=>v("div",{class:"divider"},[v("div",{class:"divider-line"})],-1)),Pa=_({__name:"VPNavBar",props:{isScreenOpen:{type:Boolean}},emits:["toggle-screen"],setup(s){const{y:e}=Me(),{hasSidebar:t}=U(),{frontmatter:o}=L(),n=I({});return Le(()=>{n.value={"has-sidebar":t.value,home:o.value.layout==="home",top:e.value===0}}),(r,l)=>(a(),u("div",{class:N(["VPNavBar",n.value])},[v("div",ma,[v("div",ba,[v("div",ka,[k(da,null,{"nav-bar-title-before":p(()=>[c(r.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":p(()=>[c(r.$slots,"nav-bar-title-after",{},void 0,!0)]),_:3})]),v("div",$a,[v("div",ga,[c(r.$slots,"nav-bar-content-before",{},void 0,!0),k(na,{class:"search"}),k(Jn,{class:"menu"}),k(fa,{class:"translations"}),k(Xo,{class:"appearance"}),k(ra,{class:"social-links"}),k(Cn,{class:"extra"}),c(r.$slots,"nav-bar-content-after",{},void 0,!0),k(On,{class:"hamburger",active:r.isScreenOpen,onClick:l[0]||(l[0]=h=>r.$emit("toggle-screen"))},null,8,["active"])])])])]),ya],2))}}),Sa=$(Pa,[["__scopeId","data-v-40788ea0"]]),Va={key:0,class:"VPNavScreenAppearance"},La={class:"text"},Ta=_({__name:"VPNavScreenAppearance",setup(s){const{site:e,theme:t}=L();return(o,n)=>i(e).appearance&&i(e).appearance!=="force-dark"?(a(),u("div",Va,[v("p",La,w(i(t).darkModeSwitchLabel||"Appearance"),1),k(ke)])):f("",!0)}}),wa=$(Ta,[["__scopeId","data-v-2b89f08b"]]),Ia=_({__name:"VPNavScreenMenuLink",props:{item:{}},setup(s){const e=J("close-screen");return(t,o)=>(a(),y(D,{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"]))}}),Na=$(Ia,[["__scopeId","data-v-27d04aeb"]]),Ma=_({__name:"VPNavScreenMenuGroupLink",props:{item:{}},setup(s){const e=J("close-screen");return(t,o)=>(a(),y(D,{class:"VPNavScreenMenuGroupLink",href:t.item.link,target:t.item.target,rel:t.item.rel,onClick:i(e)},{default:p(()=>[F(w(t.item.text),1)]),_:1},8,["href","target","rel","onClick"]))}}),je=$(Ma,[["__scopeId","data-v-7179dbb7"]]),Aa={class:"VPNavScreenMenuGroupSection"},Ca={key:0,class:"title"},Ba=_({__name:"VPNavScreenMenuGroupSection",props:{text:{},items:{}},setup(s){return(e,t)=>(a(),u("div",Aa,[e.text?(a(),u("p",Ca,w(e.text),1)):f("",!0),(a(!0),u(M,null,E(e.items,o=>(a(),y(je,{key:o.text,item:o},null,8,["item"]))),128))]))}}),Ha=$(Ba,[["__scopeId","data-v-4b8941ac"]]),Ea=s=>(B("data-v-c9df2649"),s=s(),H(),s),Da=["aria-controls","aria-expanded"],Fa=["innerHTML"],Oa=Ea(()=>v("span",{class:"vpi-plus button-icon"},null,-1)),Ua=["id"],ja={key:1,class:"group"},Ga=_({__name:"VPNavScreenMenuGroup",props:{text:{},items:{}},setup(s){const e=s,t=I(!1),o=g(()=>`NavScreenGroup-${e.text.replace(" ","-").toLowerCase()}`);function n(){t.value=!t.value}return(r,l)=>(a(),u("div",{class:N(["VPNavScreenMenuGroup",{open:t.value}])},[v("button",{class:"button","aria-controls":o.value,"aria-expanded":t.value,onClick:n},[v("span",{class:"button-text",innerHTML:r.text},null,8,Fa),Oa],8,Da),v("div",{id:o.value,class:"items"},[(a(!0),u(M,null,E(r.items,h=>(a(),u(M,{key:h.text},["link"in h?(a(),u("div",{key:h.text,class:"item"},[k(je,{item:h},null,8,["item"])])):(a(),u("div",ja,[k(Ha,{text:h.text,items:h.items},null,8,["text","items"])]))],64))),128))],8,Ua)],2))}}),za=$(Ga,[["__scopeId","data-v-c9df2649"]]),Ka={key:0,class:"VPNavScreenMenu"},Ra=_({__name:"VPNavScreenMenu",setup(s){const{theme:e}=L();return(t,o)=>i(e).nav?(a(),u("nav",Ka,[(a(!0),u(M,null,E(i(e).nav,n=>(a(),u(M,{key:n.text},["link"in n?(a(),y(Na,{key:0,item:n},null,8,["item"])):(a(),y(za,{key:1,text:n.text||"",items:n.items},null,8,["text","items"]))],64))),128))])):f("",!0)}}),qa=_({__name:"VPNavScreenSocialLinks",setup(s){const{theme:e}=L();return(t,o)=>i(e).socialLinks?(a(),y(ye,{key:0,class:"VPNavScreenSocialLinks",links:i(e).socialLinks},null,8,["links"])):f("",!0)}}),Ge=s=>(B("data-v-362991c2"),s=s(),H(),s),Wa=Ge(()=>v("span",{class:"vpi-languages icon lang"},null,-1)),Ja=Ge(()=>v("span",{class:"vpi-chevron-down icon chevron"},null,-1)),Ya={class:"list"},Xa=_({__name:"VPNavScreenTranslations",setup(s){const{localeLinks:e,currentLang:t}=X({correspondingLink:!0}),o=I(!1);function n(){o.value=!o.value}return(r,l)=>i(e).length&&i(t).label?(a(),u("div",{key:0,class:N(["VPNavScreenTranslations",{open:o.value}])},[v("button",{class:"title",onClick:n},[Wa,F(" "+w(i(t).label)+" ",1),Ja]),v("ul",Ya,[(a(!0),u(M,null,E(i(e),h=>(a(),u("li",{key:h.link,class:"item"},[k(D,{class:"link",href:h.link},{default:p(()=>[F(w(h.text),1)]),_:2},1032,["href"])]))),128))])],2)):f("",!0)}}),Qa=$(Xa,[["__scopeId","data-v-362991c2"]]),Za={class:"container"},xa=_({__name:"VPNavScreen",props:{open:{type:Boolean}},setup(s){const e=I(null),t=Ae(oe?document.body:null);return(o,n)=>(a(),y(pe,{name:"fade",onEnter:n[0]||(n[0]=r=>t.value=!0),onAfterLeave:n[1]||(n[1]=r=>t.value=!1)},{default:p(()=>[o.open?(a(),u("div",{key:0,class:"VPNavScreen",ref_key:"screen",ref:e,id:"VPNavScreen"},[v("div",Za,[c(o.$slots,"nav-screen-content-before",{},void 0,!0),k(Ra,{class:"menu"}),k(Qa,{class:"translations"}),k(wa,{class:"appearance"}),k(qa,{class:"social-links"}),c(o.$slots,"nav-screen-content-after",{},void 0,!0)])],512)):f("",!0)]),_:3}))}}),er=$(xa,[["__scopeId","data-v-382f42e9"]]),tr={key:0,class:"VPNav"},sr=_({__name:"VPNav",setup(s){const{isScreenOpen:e,closeScreen:t,toggleScreen:o}=Fo(),{frontmatter:n}=L(),r=g(()=>n.value.navbar!==!1);return _e("close-screen",t),ee(()=>{oe&&document.documentElement.classList.toggle("hide-nav",!r.value)}),(l,h)=>r.value?(a(),u("header",tr,[k(Sa,{"is-screen-open":i(e),onToggleScreen:i(o)},{"nav-bar-title-before":p(()=>[c(l.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":p(()=>[c(l.$slots,"nav-bar-title-after",{},void 0,!0)]),"nav-bar-content-before":p(()=>[c(l.$slots,"nav-bar-content-before",{},void 0,!0)]),"nav-bar-content-after":p(()=>[c(l.$slots,"nav-bar-content-after",{},void 0,!0)]),_:3},8,["is-screen-open","onToggleScreen"]),k(er,{open:i(e)},{"nav-screen-content-before":p(()=>[c(l.$slots,"nav-screen-content-before",{},void 0,!0)]),"nav-screen-content-after":p(()=>[c(l.$slots,"nav-screen-content-after",{},void 0,!0)]),_:3},8,["open"])])):f("",!0)}}),or=$(sr,[["__scopeId","data-v-f1e365da"]]),ze=s=>(B("data-v-2ea20db7"),s=s(),H(),s),nr=["role","tabindex"],ar=ze(()=>v("div",{class:"indicator"},null,-1)),rr=ze(()=>v("span",{class:"vpi-chevron-right caret-icon"},null,-1)),ir=[rr],lr={key:1,class:"items"},cr=_({__name:"VPSidebarItem",props:{item:{},depth:{}},setup(s){const e=s,{collapsed:t,collapsible:o,isLink:n,isActiveLink:r,hasActiveLink:l,hasChildren:h,toggle:d}=wt(g(()=>e.item)),m=g(()=>h.value?"section":"div"),V=g(()=>n.value?"a":"div"),b=g(()=>h.value?e.depth+2===7?"p":`h${e.depth+2}`:"p"),P=g(()=>n.value?void 0:"button"),S=g(()=>[[`level-${e.depth}`],{collapsible:o.value},{collapsed:t.value},{"is-link":n.value},{"is-active":r.value},{"has-active":l.value}]);function A(T){"key"in T&&T.key!=="Enter"||!e.item.link&&d()}function C(){e.item.link&&d()}return(T,j)=>{const G=R("VPSidebarItem",!0);return a(),y(W(m.value),{class:N(["VPSidebarItem",S.value])},{default:p(()=>[T.item.text?(a(),u("div",Q({key:0,class:"item",role:P.value},nt(T.item.items?{click:A,keydown:A}:{},!0),{tabindex:T.item.items&&0}),[ar,T.item.link?(a(),y(D,{key:0,tag:V.value,class:"link",href:T.item.link,rel:T.item.rel,target:T.item.target},{default:p(()=>[(a(),y(W(b.value),{class:"text",innerHTML:T.item.text},null,8,["innerHTML"]))]),_:1},8,["tag","href","rel","target"])):(a(),y(W(b.value),{key:1,class:"text",innerHTML:T.item.text},null,8,["innerHTML"])),T.item.collapsed!=null&&T.item.items&&T.item.items.length?(a(),u("div",{key:2,class:"caret",role:"button","aria-label":"toggle section",onClick:C,onKeydown:ot(C,["enter"]),tabindex:"0"},ir,32)):f("",!0)],16,nr)):f("",!0),T.item.items&&T.item.items.length?(a(),u("div",lr,[T.depth<5?(a(!0),u(M,{key:0},E(T.item.items,q=>(a(),y(G,{key:q.text,item:q,depth:T.depth+1},null,8,["item","depth"]))),128)):f("",!0)])):f("",!0)]),_:1},8,["class"])}}}),ur=$(cr,[["__scopeId","data-v-2ea20db7"]]),Ke=s=>(B("data-v-ec846e01"),s=s(),H(),s),dr=Ke(()=>v("div",{class:"curtain"},null,-1)),vr={class:"nav",id:"VPSidebarNav","aria-labelledby":"sidebar-aria-label",tabindex:"-1"},pr=Ke(()=>v("span",{class:"visually-hidden",id:"sidebar-aria-label"}," Sidebar Navigation ",-1)),hr=_({__name:"VPSidebar",props:{open:{type:Boolean}},setup(s){const{sidebarGroups:e,hasSidebar:t}=U(),o=s,n=I(null),r=Ae(oe?document.body:null);return O([o,n],()=>{var l;o.open?(r.value=!0,(l=n.value)==null||l.focus()):r.value=!1},{immediate:!0,flush:"post"}),(l,h)=>i(t)?(a(),u("aside",{key:0,class:N(["VPSidebar",{open:l.open}]),ref_key:"navEl",ref:n,onClick:h[0]||(h[0]=at(()=>{},["stop"]))},[dr,v("nav",vr,[pr,c(l.$slots,"sidebar-nav-before",{},void 0,!0),(a(!0),u(M,null,E(i(e),d=>(a(),u("div",{key:d.text,class:"group"},[k(ur,{item:d,depth:0},null,8,["item"])]))),128)),c(l.$slots,"sidebar-nav-after",{},void 0,!0)])],2)):f("",!0)}}),fr=$(hr,[["__scopeId","data-v-ec846e01"]]),_r=_({__name:"VPSkipLink",setup(s){const e=se(),t=I();O(()=>e.path,()=>t.value.focus());function o({target:n}){const r=document.getElementById(decodeURIComponent(n.hash).slice(1));if(r){const l=()=>{r.removeAttribute("tabindex"),r.removeEventListener("blur",l)};r.setAttribute("tabindex","-1"),r.addEventListener("blur",l),r.focus(),window.scrollTo(0,0)}}return(n,r)=>(a(),u(M,null,[v("span",{ref_key:"backToTop",ref:t,tabindex:"-1"},null,512),v("a",{href:"#VPContent",class:"VPSkipLink visually-hidden",onClick:o}," Skip to content ")],64))}}),mr=$(_r,[["__scopeId","data-v-c3508ec8"]]),br=_({__name:"Layout",setup(s){const{isOpen:e,open:t,close:o}=U(),n=se();O(()=>n.path,o),Tt(e,o);const{frontmatter:r}=L(),l=Ce(),h=g(()=>!!l["home-hero-image"]);return _e("hero-image-slot-exists",h),(d,m)=>{const V=R("Content");return i(r).layout!==!1?(a(),u("div",{key:0,class:N(["Layout",i(r).pageClass])},[c(d.$slots,"layout-top",{},void 0,!0),k(mr),k(vt,{class:"backdrop",show:i(e),onClick:i(o)},null,8,["show","onClick"]),k(or,null,{"nav-bar-title-before":p(()=>[c(d.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":p(()=>[c(d.$slots,"nav-bar-title-after",{},void 0,!0)]),"nav-bar-content-before":p(()=>[c(d.$slots,"nav-bar-content-before",{},void 0,!0)]),"nav-bar-content-after":p(()=>[c(d.$slots,"nav-bar-content-after",{},void 0,!0)]),"nav-screen-content-before":p(()=>[c(d.$slots,"nav-screen-content-before",{},void 0,!0)]),"nav-screen-content-after":p(()=>[c(d.$slots,"nav-screen-content-after",{},void 0,!0)]),_:3}),k(Do,{open:i(e),onOpenMenu:i(t)},null,8,["open","onOpenMenu"]),k(fr,{open:i(e)},{"sidebar-nav-before":p(()=>[c(d.$slots,"sidebar-nav-before",{},void 0,!0)]),"sidebar-nav-after":p(()=>[c(d.$slots,"sidebar-nav-after",{},void 0,!0)]),_:3},8,["open"]),k(mo,null,{"page-top":p(()=>[c(d.$slots,"page-top",{},void 0,!0)]),"page-bottom":p(()=>[c(d.$slots,"page-bottom",{},void 0,!0)]),"not-found":p(()=>[c(d.$slots,"not-found",{},void 0,!0)]),"home-hero-before":p(()=>[c(d.$slots,"home-hero-before",{},void 0,!0)]),"home-hero-info-before":p(()=>[c(d.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":p(()=>[c(d.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":p(()=>[c(d.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":p(()=>[c(d.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":p(()=>[c(d.$slots,"home-hero-image",{},void 0,!0)]),"home-hero-after":p(()=>[c(d.$slots,"home-hero-after",{},void 0,!0)]),"home-features-before":p(()=>[c(d.$slots,"home-features-before",{},void 0,!0)]),"home-features-after":p(()=>[c(d.$slots,"home-features-after",{},void 0,!0)]),"doc-footer-before":p(()=>[c(d.$slots,"doc-footer-before",{},void 0,!0)]),"doc-before":p(()=>[c(d.$slots,"doc-before",{},void 0,!0)]),"doc-after":p(()=>[c(d.$slots,"doc-after",{},void 0,!0)]),"doc-top":p(()=>[c(d.$slots,"doc-top",{},void 0,!0)]),"doc-bottom":p(()=>[c(d.$slots,"doc-bottom",{},void 0,!0)]),"aside-top":p(()=>[c(d.$slots,"aside-top",{},void 0,!0)]),"aside-bottom":p(()=>[c(d.$slots,"aside-bottom",{},void 0,!0)]),"aside-outline-before":p(()=>[c(d.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":p(()=>[c(d.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":p(()=>[c(d.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":p(()=>[c(d.$slots,"aside-ads-after",{},void 0,!0)]),_:3}),k(yo),c(d.$slots,"layout-bottom",{},void 0,!0)],2)):(a(),y(V,{key:1}))}}}),kr=$(br,[["__scopeId","data-v-a9a9e638"]]),Se={Layout:kr,enhanceApp:({app:s})=>{s.component("Badge",ct)}},$r=s=>{if(typeof document>"u")return{stabilizeScrollPosition:n=>async(...r)=>n(...r)};const e=document.documentElement;return{stabilizeScrollPosition:o=>async(...n)=>{const r=o(...n),l=s.value;if(!l)return r;const h=l.offsetTop-e.scrollTop;return await Ne(),e.scrollTop=l.offsetTop-h,r}}},Re="vitepress:tabSharedState",Y=typeof localStorage<"u"?localStorage:null,qe="vitepress:tabsSharedState",gr=()=>{const s=Y==null?void 0:Y.getItem(qe);if(s)try{return JSON.parse(s)}catch{}return{}},yr=s=>{Y&&Y.setItem(qe,JSON.stringify(s))},Pr=s=>{const e=rt({});O(()=>e.content,(t,o)=>{t&&o&&yr(t)},{deep:!0}),s.provide(Re,e)},Sr=(s,e)=>{const t=J(Re);if(!t)throw new Error("[vitepress-plugin-tabs] TabsSharedState should be injected");K(()=>{t.content||(t.content=gr())});const o=I(),n=g({get(){var d;const l=e.value,h=s.value;if(l){const m=(d=t.content)==null?void 0:d[l];if(m&&h.includes(m))return m}else{const m=o.value;if(m)return m}return h[0]},set(l){const h=e.value;h?t.content&&(t.content[h]=l):o.value=l}});return{selected:n,select:l=>{n.value=l}}};let Ve=0;const Vr=()=>(Ve++,""+Ve);function Lr(){const s=Ce();return g(()=>{var o;const t=(o=s.default)==null?void 0:o.call(s);return t?t.filter(n=>typeof n.type=="object"&&"__name"in n.type&&n.type.__name==="PluginTabsTab"&&n.props).map(n=>{var r;return(r=n.props)==null?void 0:r.label}):[]})}const We="vitepress:tabSingleState",Tr=s=>{_e(We,s)},wr=()=>{const s=J(We);if(!s)throw new Error("[vitepress-plugin-tabs] TabsSingleState should be injected");return s},Ir={class:"plugin-tabs"},Nr=["id","aria-selected","aria-controls","tabindex","onClick"],Mr=_({__name:"PluginTabs",props:{sharedStateKey:{}},setup(s){const e=s,t=Lr(),{selected:o,select:n}=Sr(t,it(e,"sharedStateKey")),r=I(),{stabilizeScrollPosition:l}=$r(r),h=l(n),d=I([]),m=b=>{var A;const P=t.value.indexOf(o.value);let S;b.key==="ArrowLeft"?S=P>=1?P-1:t.value.length-1:b.key==="ArrowRight"&&(S=P(a(),u("div",Ir,[v("div",{ref_key:"tablist",ref:r,class:"plugin-tabs--tab-list",role:"tablist",onKeydown:m},[(a(!0),u(M,null,E(i(t),S=>(a(),u("button",{id:`tab-${S}-${i(V)}`,ref_for:!0,ref_key:"buttonRefs",ref:d,key:S,role:"tab",class:"plugin-tabs--tab","aria-selected":S===i(o),"aria-controls":`panel-${S}-${i(V)}`,tabindex:S===i(o)?0:-1,onClick:()=>i(h)(S)},w(S),9,Nr))),128))],544),c(b.$slots,"default")]))}}),Ar=["id","aria-labelledby"],Cr=_({__name:"PluginTabsTab",props:{label:{}},setup(s){const{uid:e,selected:t}=wr();return(o,n)=>i(t)===o.label?(a(),u("div",{key:0,id:`panel-${o.label}-${i(e)}`,class:"plugin-tabs--content",role:"tabpanel",tabindex:"0","aria-labelledby":`tab-${o.label}-${i(e)}`},[c(o.$slots,"default",{},void 0,!0)],8,Ar)):f("",!0)}}),Br=$(Cr,[["__scopeId","data-v-9b0d03d2"]]),Hr=s=>{Pr(s),s.component("PluginTabs",Mr),s.component("PluginTabsTab",Br)},Dr={extends:Se,Layout(){return lt(Se.Layout,null,{})},enhanceApp({app:s,router:e,siteData:t}){Hr(s)}};export{Dr as R,Yn as c,L as u}; diff --git a/dev/assets/pqvracw.-VpeHhXX.png b/dev/assets/cpkzade.-VpeHhXX.png similarity index 100% rename from dev/assets/pqvracw.-VpeHhXX.png rename to dev/assets/cpkzade.-VpeHhXX.png diff --git a/dev/assets/cxuzkep.CcJX_iNn.png b/dev/assets/cxuzkep.CcJX_iNn.png new file mode 100644 index 000000000..62a45b69f Binary files /dev/null and b/dev/assets/cxuzkep.CcJX_iNn.png differ diff --git a/dev/assets/njvjoen.BwdbZIFa.png b/dev/assets/dexpuww.BwdbZIFa.png similarity index 100% rename from dev/assets/njvjoen.BwdbZIFa.png rename to dev/assets/dexpuww.BwdbZIFa.png diff --git a/dev/assets/swmzlql.BOOG5oTW.png b/dev/assets/droziru.BOOG5oTW.png similarity index 100% rename from dev/assets/swmzlql.BOOG5oTW.png rename to dev/assets/droziru.BOOG5oTW.png diff --git a/dev/assets/gmqbjqs._0R9BbFk.png b/dev/assets/dyxrfhc._0R9BbFk.png similarity index 100% rename from dev/assets/gmqbjqs._0R9BbFk.png rename to dev/assets/dyxrfhc._0R9BbFk.png diff --git a/dev/assets/eeqhtpv.0_7lBFpv.png b/dev/assets/eeqhtpv.0_7lBFpv.png new file mode 100644 index 000000000..2090afb20 Binary files /dev/null and b/dev/assets/eeqhtpv.0_7lBFpv.png differ diff --git a/dev/assets/experiments_accurate_accumulators.md.0lOa-t8Z.js b/dev/assets/experiments_accurate_accumulators.md.D2JpOeKA.js similarity index 98% rename from dev/assets/experiments_accurate_accumulators.md.0lOa-t8Z.js rename to dev/assets/experiments_accurate_accumulators.md.D2JpOeKA.js index 592ca7b0d..6d2fb4619 100644 --- a/dev/assets/experiments_accurate_accumulators.md.0lOa-t8Z.js +++ b/dev/assets/experiments_accurate_accumulators.md.D2JpOeKA.js @@ -1,4 +1,4 @@ -import{_ as s,c as i,o as a,a6 as t}from"./chunks/framework.p73Oc50P.js";const o=JSON.parse('{"title":"Accurate accumulation","description":"","frontmatter":{},"headers":[],"relativePath":"experiments/accurate_accumulators.md","filePath":"experiments/accurate_accumulators.md","lastUpdated":null}'),e={name:"experiments/accurate_accumulators.md"},n=t(`

Accurate accumulation

Accurate arithmetic is a technique which allows you to calculate using more precision than the provided numeric type.

We will use the accurate sum routines from AccurateArithmetic.jl to show the difference!

julia
import GeometryOps as GO, GeoInterface as GI
+import{_ as s,c as i,o as a,a6 as t}from"./chunks/framework.DJCAxKqx.js";const o=JSON.parse('{"title":"Accurate accumulation","description":"","frontmatter":{},"headers":[],"relativePath":"experiments/accurate_accumulators.md","filePath":"experiments/accurate_accumulators.md","lastUpdated":null}'),e={name:"experiments/accurate_accumulators.md"},n=t(`

Accurate accumulation

Accurate arithmetic is a technique which allows you to calculate using more precision than the provided numeric type.

We will use the accurate sum routines from AccurateArithmetic.jl to show the difference!

julia
import GeometryOps as GO, GeoInterface as GI
 using GeoJSON
 using AccurateArithmetic
 using NaturalEarth
diff --git a/dev/assets/experiments_accurate_accumulators.md.0lOa-t8Z.lean.js b/dev/assets/experiments_accurate_accumulators.md.D2JpOeKA.lean.js
similarity index 73%
rename from dev/assets/experiments_accurate_accumulators.md.0lOa-t8Z.lean.js
rename to dev/assets/experiments_accurate_accumulators.md.D2JpOeKA.lean.js
index 77683466a..4f2c8e43d 100644
--- a/dev/assets/experiments_accurate_accumulators.md.0lOa-t8Z.lean.js
+++ b/dev/assets/experiments_accurate_accumulators.md.D2JpOeKA.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as t}from"./chunks/framework.p73Oc50P.js";const o=JSON.parse('{"title":"Accurate accumulation","description":"","frontmatter":{},"headers":[],"relativePath":"experiments/accurate_accumulators.md","filePath":"experiments/accurate_accumulators.md","lastUpdated":null}'),e={name:"experiments/accurate_accumulators.md"},n=t("",16),l=[n];function h(p,k,d,r,c,g){return a(),i("div",null,l)}const u=s(e,[["render",h]]);export{o as __pageData,u as default};
+import{_ as s,c as i,o as a,a6 as t}from"./chunks/framework.DJCAxKqx.js";const o=JSON.parse('{"title":"Accurate accumulation","description":"","frontmatter":{},"headers":[],"relativePath":"experiments/accurate_accumulators.md","filePath":"experiments/accurate_accumulators.md","lastUpdated":null}'),e={name:"experiments/accurate_accumulators.md"},n=t("",16),l=[n];function h(p,k,d,r,c,g){return a(),i("div",null,l)}const u=s(e,[["render",h]]);export{o as __pageData,u as default};
diff --git a/dev/assets/experiments_predicates.md.BRm5FpBT.js b/dev/assets/experiments_predicates.md.C9z1tYkb.js
similarity index 99%
rename from dev/assets/experiments_predicates.md.BRm5FpBT.js
rename to dev/assets/experiments_predicates.md.C9z1tYkb.js
index 228b151dd..4596feafb 100644
--- a/dev/assets/experiments_predicates.md.BRm5FpBT.js
+++ b/dev/assets/experiments_predicates.md.C9z1tYkb.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as h}from"./chunks/framework.p73Oc50P.js";const k="/GeometryOps.jl/dev/assets/onuceqw.p5pzwDY_.png",C=JSON.parse('{"title":"Predicates","description":"","frontmatter":{},"headers":[],"relativePath":"experiments/predicates.md","filePath":"experiments/predicates.md","lastUpdated":null}'),n={name:"experiments/predicates.md"},p=h(`

Predicates

Exact vs fast predicates

Orient

julia
using CairoMakie
+import{_ as s,c as i,o as a,a6 as h}from"./chunks/framework.DJCAxKqx.js";const k="/GeometryOps.jl/dev/assets/eeqhtpv.0_7lBFpv.png",C=JSON.parse('{"title":"Predicates","description":"","frontmatter":{},"headers":[],"relativePath":"experiments/predicates.md","filePath":"experiments/predicates.md","lastUpdated":null}'),n={name:"experiments/predicates.md"},p=h(`

Predicates

Exact vs fast predicates

Orient

julia
using CairoMakie
 import GeometryOps as GO, GeoInterface as GI, LibGEOS as LG
 import ExactPredicates
 using MultiFloats
diff --git a/dev/assets/experiments_predicates.md.BRm5FpBT.lean.js b/dev/assets/experiments_predicates.md.C9z1tYkb.lean.js
similarity index 73%
rename from dev/assets/experiments_predicates.md.BRm5FpBT.lean.js
rename to dev/assets/experiments_predicates.md.C9z1tYkb.lean.js
index 080a41ad5..501a55f95 100644
--- a/dev/assets/experiments_predicates.md.BRm5FpBT.lean.js
+++ b/dev/assets/experiments_predicates.md.C9z1tYkb.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as h}from"./chunks/framework.p73Oc50P.js";const k="/GeometryOps.jl/dev/assets/onuceqw.p5pzwDY_.png",C=JSON.parse('{"title":"Predicates","description":"","frontmatter":{},"headers":[],"relativePath":"experiments/predicates.md","filePath":"experiments/predicates.md","lastUpdated":null}'),n={name:"experiments/predicates.md"},p=h("",10),l=[p];function t(E,e,r,d,g,y){return a(),i("div",null,l)}const A=s(n,[["render",t]]);export{C as __pageData,A as default};
+import{_ as s,c as i,o as a,a6 as h}from"./chunks/framework.DJCAxKqx.js";const k="/GeometryOps.jl/dev/assets/eeqhtpv.0_7lBFpv.png",C=JSON.parse('{"title":"Predicates","description":"","frontmatter":{},"headers":[],"relativePath":"experiments/predicates.md","filePath":"experiments/predicates.md","lastUpdated":null}'),n={name:"experiments/predicates.md"},p=h("",10),l=[p];function t(E,e,r,d,g,y){return a(),i("div",null,l)}const A=s(n,[["render",t]]);export{C as __pageData,A as default};
diff --git a/dev/assets/explanations_crs.md.Ul3JLcxU.js b/dev/assets/explanations_crs.md.C58USpoD.js
similarity index 83%
rename from dev/assets/explanations_crs.md.Ul3JLcxU.js
rename to dev/assets/explanations_crs.md.C58USpoD.js
index b2673ed65..7ce452ad2 100644
--- a/dev/assets/explanations_crs.md.Ul3JLcxU.js
+++ b/dev/assets/explanations_crs.md.C58USpoD.js
@@ -1 +1 @@
-import{_ as e,c as t,o as a}from"./chunks/framework.p73Oc50P.js";const _=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"explanations/crs.md","filePath":"explanations/crs.md","lastUpdated":null}'),s={name:"explanations/crs.md"};function n(r,o,c,p,i,l){return a(),t("div")}const m=e(s,[["render",n]]);export{_ as __pageData,m as default};
+import{_ as e,c as t,o as a}from"./chunks/framework.DJCAxKqx.js";const _=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"explanations/crs.md","filePath":"explanations/crs.md","lastUpdated":null}'),s={name:"explanations/crs.md"};function n(r,o,c,p,i,l){return a(),t("div")}const m=e(s,[["render",n]]);export{_ as __pageData,m as default};
diff --git a/dev/assets/explanations_crs.md.Ul3JLcxU.lean.js b/dev/assets/explanations_crs.md.C58USpoD.lean.js
similarity index 83%
rename from dev/assets/explanations_crs.md.Ul3JLcxU.lean.js
rename to dev/assets/explanations_crs.md.C58USpoD.lean.js
index b2673ed65..7ce452ad2 100644
--- a/dev/assets/explanations_crs.md.Ul3JLcxU.lean.js
+++ b/dev/assets/explanations_crs.md.C58USpoD.lean.js
@@ -1 +1 @@
-import{_ as e,c as t,o as a}from"./chunks/framework.p73Oc50P.js";const _=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"explanations/crs.md","filePath":"explanations/crs.md","lastUpdated":null}'),s={name:"explanations/crs.md"};function n(r,o,c,p,i,l){return a(),t("div")}const m=e(s,[["render",n]]);export{_ as __pageData,m as default};
+import{_ as e,c as t,o as a}from"./chunks/framework.DJCAxKqx.js";const _=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"explanations/crs.md","filePath":"explanations/crs.md","lastUpdated":null}'),s={name:"explanations/crs.md"};function n(r,o,c,p,i,l){return a(),t("div")}const m=e(s,[["render",n]]);export{_ as __pageData,m as default};
diff --git a/dev/assets/explanations_paradigms.md.BNU9BSvb.js b/dev/assets/explanations_paradigms.md.D8SW9MN_.js
similarity index 97%
rename from dev/assets/explanations_paradigms.md.BNU9BSvb.js
rename to dev/assets/explanations_paradigms.md.D8SW9MN_.js
index c7231f0e1..d5dae8293 100644
--- a/dev/assets/explanations_paradigms.md.BNU9BSvb.js
+++ b/dev/assets/explanations_paradigms.md.D8SW9MN_.js
@@ -1 +1 @@
-import{_ as e,c as a,o as t,a6 as o}from"./chunks/framework.p73Oc50P.js";const y=JSON.parse('{"title":"Paradigms","description":"","frontmatter":{},"headers":[],"relativePath":"explanations/paradigms.md","filePath":"explanations/paradigms.md","lastUpdated":null}'),i={name:"explanations/paradigms.md"},s=o('

Paradigms

GeometryOps exposes functions like apply and applyreduce, as well as the fix and prepare APIs, that represent paradigms of programming, by which we mean the ability to program in a certain way, and in so doing, fit neatly into the tools we've built without needing to re-implement the wheel.

Below, we'll describe some of the foundational paradigms of GeometryOps, and why you should care!

apply

The apply function allows you to decompose a given collection of geometries down to a certain level, operate on it, and reconstruct it back to the same nested form as the original. In general, its invocation is:

julia
apply(f, trait::Trait, geom)

Functionally, it's similar to map in the way you apply it to geometries - except that you tell it at which level it should stop, by passing a trait to it.

apply will start by decomposing the geometry, feature, featurecollection, iterable, or table that you pass to it, and stop when it encounters a geometry for which GI.trait(geom) isa Trait. This encompasses unions of traits especially, but beware that any geometry which is not explicitly handled, and hits GI.PointTrait, will cause an error.

apply is unlike map in that it returns reconstructed geometries, instead of the raw output of the function. If you want a purely map-like behaviour, like calculating the length of each linestring in your feature collection, then call GO.flatten(f, trait, geom), which will decompose each geometry to the given trait and apply f to it, returning the decomposition as a flattened vector.

applyreduce

applyreduce is like the previous map-based approach that we mentioned, except that it reduces the result of f by op. Note that applyreduce does not guarantee associativity, so it's best to have typeof(init) == returntype(op).

fix and prepare

The fix and prepare paradigms are different from apply, though they are built on top of it. They involve the use of structs as "actions", where a constructed object indicates an action that should be taken. A trait like interface prescribes the level (polygon, linestring, point, etc) at which each action should be applied.

In general, the idea here is to be able to invoke several actions efficiently and simultaneously, for example when correcting invalid geometries, or instantiating a Prepared geometry with several preparations (sorted edge lists, rtrees, monotone chains, etc.)

',14),n=[s];function r(c,d,p,l,h,u){return t(),a("div",null,n)}const g=e(i,[["render",r]]);export{y as __pageData,g as default}; +import{_ as e,c as a,o as t,a6 as o}from"./chunks/framework.DJCAxKqx.js";const y=JSON.parse('{"title":"Paradigms","description":"","frontmatter":{},"headers":[],"relativePath":"explanations/paradigms.md","filePath":"explanations/paradigms.md","lastUpdated":null}'),i={name:"explanations/paradigms.md"},s=o('

Paradigms

GeometryOps exposes functions like apply and applyreduce, as well as the fix and prepare APIs, that represent paradigms of programming, by which we mean the ability to program in a certain way, and in so doing, fit neatly into the tools we've built without needing to re-implement the wheel.

Below, we'll describe some of the foundational paradigms of GeometryOps, and why you should care!

apply

The apply function allows you to decompose a given collection of geometries down to a certain level, operate on it, and reconstruct it back to the same nested form as the original. In general, its invocation is:

julia
apply(f, trait::Trait, geom)

Functionally, it's similar to map in the way you apply it to geometries - except that you tell it at which level it should stop, by passing a trait to it.

apply will start by decomposing the geometry, feature, featurecollection, iterable, or table that you pass to it, and stop when it encounters a geometry for which GI.trait(geom) isa Trait. This encompasses unions of traits especially, but beware that any geometry which is not explicitly handled, and hits GI.PointTrait, will cause an error.

apply is unlike map in that it returns reconstructed geometries, instead of the raw output of the function. If you want a purely map-like behaviour, like calculating the length of each linestring in your feature collection, then call GO.flatten(f, trait, geom), which will decompose each geometry to the given trait and apply f to it, returning the decomposition as a flattened vector.

applyreduce

applyreduce is like the previous map-based approach that we mentioned, except that it reduces the result of f by op. Note that applyreduce does not guarantee associativity, so it's best to have typeof(init) == returntype(op).

fix and prepare

The fix and prepare paradigms are different from apply, though they are built on top of it. They involve the use of structs as "actions", where a constructed object indicates an action that should be taken. A trait like interface prescribes the level (polygon, linestring, point, etc) at which each action should be applied.

In general, the idea here is to be able to invoke several actions efficiently and simultaneously, for example when correcting invalid geometries, or instantiating a Prepared geometry with several preparations (sorted edge lists, rtrees, monotone chains, etc.)

',14),n=[s];function r(c,d,p,l,h,u){return t(),a("div",null,n)}const g=e(i,[["render",r]]);export{y as __pageData,g as default}; diff --git a/dev/assets/explanations_paradigms.md.BNU9BSvb.lean.js b/dev/assets/explanations_paradigms.md.D8SW9MN_.lean.js similarity index 70% rename from dev/assets/explanations_paradigms.md.BNU9BSvb.lean.js rename to dev/assets/explanations_paradigms.md.D8SW9MN_.lean.js index 3990b4c21..b031bc142 100644 --- a/dev/assets/explanations_paradigms.md.BNU9BSvb.lean.js +++ b/dev/assets/explanations_paradigms.md.D8SW9MN_.lean.js @@ -1 +1 @@ -import{_ as e,c as a,o as t,a6 as o}from"./chunks/framework.p73Oc50P.js";const y=JSON.parse('{"title":"Paradigms","description":"","frontmatter":{},"headers":[],"relativePath":"explanations/paradigms.md","filePath":"explanations/paradigms.md","lastUpdated":null}'),i={name:"explanations/paradigms.md"},s=o("",14),n=[s];function r(c,d,p,l,h,u){return t(),a("div",null,n)}const g=e(i,[["render",r]]);export{y as __pageData,g as default}; +import{_ as e,c as a,o as t,a6 as o}from"./chunks/framework.DJCAxKqx.js";const y=JSON.parse('{"title":"Paradigms","description":"","frontmatter":{},"headers":[],"relativePath":"explanations/paradigms.md","filePath":"explanations/paradigms.md","lastUpdated":null}'),i={name:"explanations/paradigms.md"},s=o("",14),n=[s];function r(c,d,p,l,h,u){return t(),a("div",null,n)}const g=e(i,[["render",r]]);export{y as __pageData,g as default}; diff --git a/dev/assets/explanations_peculiarities.md.cAL8_feQ.js b/dev/assets/explanations_peculiarities.md.CYDu54kk.js similarity index 96% rename from dev/assets/explanations_peculiarities.md.cAL8_feQ.js rename to dev/assets/explanations_peculiarities.md.CYDu54kk.js index 052e9f7d3..4b27e03b3 100644 --- a/dev/assets/explanations_peculiarities.md.cAL8_feQ.js +++ b/dev/assets/explanations_peculiarities.md.CYDu54kk.js @@ -1 +1 @@ -import{_ as e,c as o,o as t,a6 as a}from"./chunks/framework.p73Oc50P.js";const m=JSON.parse('{"title":"Peculiarities","description":"","frontmatter":{},"headers":[],"relativePath":"explanations/peculiarities.md","filePath":"explanations/peculiarities.md","lastUpdated":null}'),r={name:"explanations/peculiarities.md"},n=a('

Peculiarities

What does apply return and why?

apply returns the target geometries returned by f, whatever type/package they are from, but geometries, features or feature collections that wrapped the target are replaced with GeoInterace.jl wrappers with matching GeoInterface.trait to the originals. All non-geointerface iterables become Arrays. Tables.jl compatible tables are converted either back to the original type if a Tables.materializer is defined, and if not then returned as generic NamedTuple column tables (i.e., a NamedTuple of vectors).

It is recommended for consistency that f returns GeoInterface geometries unless there is a performance/conversion overhead to doing that.

Why do you want me to provide a target in set operations?

In polygon set operations like intersection, difference, and union, many different geometry types may be obtained - depending on the relationship between the polygons. For example, when performing an union on two nonintersecting polygons, one would technically have two disjoint polygons as an output.

We use the target keyword to allow the user to control which kinds of geometry they want back. For example, setting target to PolygonTrait will cause a vector of polygons to be returned (this is the only currently supported behaviour). In future, we may implement MultiPolygonTrait or GeometryCollectionTrait targets which will return a single geometry, as LibGEOS and ArchGDAL do.

This also allows for a lot more type stability - when you ask for polygons, we won't return a geometrycollection with line segments. Especially in simulation workflows, this is excellent for simplified data processing.

_True and _False (or BoolsAsTypes)

Warning

These are internals and explicitly not public API, meaning they may change at any time!

When dispatch can be controlled by the value of a boolean variable, this introduces type instability. Instead of introducing type instability, we chose to encode our boolean decision variables, like threaded and calc_extent in apply, as types. This allows the compiler to reason about what will happen, and call the correct compiled method, in a stable way without worrying about

',11),i=[n];function s(l,c,d,p,h,u){return t(),o("div",null,i)}const g=e(r,[["render",s]]);export{m as __pageData,g as default}; +import{_ as e,c as o,o as t,a6 as a}from"./chunks/framework.DJCAxKqx.js";const m=JSON.parse('{"title":"Peculiarities","description":"","frontmatter":{},"headers":[],"relativePath":"explanations/peculiarities.md","filePath":"explanations/peculiarities.md","lastUpdated":null}'),r={name:"explanations/peculiarities.md"},n=a('

Peculiarities

What does apply return and why?

apply returns the target geometries returned by f, whatever type/package they are from, but geometries, features or feature collections that wrapped the target are replaced with GeoInterace.jl wrappers with matching GeoInterface.trait to the originals. All non-geointerface iterables become Arrays. Tables.jl compatible tables are converted either back to the original type if a Tables.materializer is defined, and if not then returned as generic NamedTuple column tables (i.e., a NamedTuple of vectors).

It is recommended for consistency that f returns GeoInterface geometries unless there is a performance/conversion overhead to doing that.

Why do you want me to provide a target in set operations?

In polygon set operations like intersection, difference, and union, many different geometry types may be obtained - depending on the relationship between the polygons. For example, when performing an union on two nonintersecting polygons, one would technically have two disjoint polygons as an output.

We use the target keyword to allow the user to control which kinds of geometry they want back. For example, setting target to PolygonTrait will cause a vector of polygons to be returned (this is the only currently supported behaviour). In future, we may implement MultiPolygonTrait or GeometryCollectionTrait targets which will return a single geometry, as LibGEOS and ArchGDAL do.

This also allows for a lot more type stability - when you ask for polygons, we won't return a geometrycollection with line segments. Especially in simulation workflows, this is excellent for simplified data processing.

_True and _False (or BoolsAsTypes)

Warning

These are internals and explicitly not public API, meaning they may change at any time!

When dispatch can be controlled by the value of a boolean variable, this introduces type instability. Instead of introducing type instability, we chose to encode our boolean decision variables, like threaded and calc_extent in apply, as types. This allows the compiler to reason about what will happen, and call the correct compiled method, in a stable way without worrying about

',11),i=[n];function s(l,c,d,p,h,u){return t(),o("div",null,i)}const g=e(r,[["render",s]]);export{m as __pageData,g as default}; diff --git a/dev/assets/explanations_peculiarities.md.cAL8_feQ.lean.js b/dev/assets/explanations_peculiarities.md.CYDu54kk.lean.js similarity index 71% rename from dev/assets/explanations_peculiarities.md.cAL8_feQ.lean.js rename to dev/assets/explanations_peculiarities.md.CYDu54kk.lean.js index 7f8b69346..e3c074dfc 100644 --- a/dev/assets/explanations_peculiarities.md.cAL8_feQ.lean.js +++ b/dev/assets/explanations_peculiarities.md.CYDu54kk.lean.js @@ -1 +1 @@ -import{_ as e,c as o,o as t,a6 as a}from"./chunks/framework.p73Oc50P.js";const m=JSON.parse('{"title":"Peculiarities","description":"","frontmatter":{},"headers":[],"relativePath":"explanations/peculiarities.md","filePath":"explanations/peculiarities.md","lastUpdated":null}'),r={name:"explanations/peculiarities.md"},n=a("",11),i=[n];function s(l,c,d,p,h,u){return t(),o("div",null,i)}const g=e(r,[["render",s]]);export{m as __pageData,g as default}; +import{_ as e,c as o,o as t,a6 as a}from"./chunks/framework.DJCAxKqx.js";const m=JSON.parse('{"title":"Peculiarities","description":"","frontmatter":{},"headers":[],"relativePath":"explanations/peculiarities.md","filePath":"explanations/peculiarities.md","lastUpdated":null}'),r={name:"explanations/peculiarities.md"},n=a("",11),i=[n];function s(l,c,d,p,h,u){return t(),o("div",null,i)}const g=e(r,[["render",s]]);export{m as __pageData,g as default}; diff --git a/dev/assets/explanations_winding_order.md.Cj79LNns.js b/dev/assets/explanations_winding_order.md.CcBW0gLF.js similarity index 84% rename from dev/assets/explanations_winding_order.md.Cj79LNns.js rename to dev/assets/explanations_winding_order.md.CcBW0gLF.js index d73b4f5fd..1d4c78f0a 100644 --- a/dev/assets/explanations_winding_order.md.Cj79LNns.js +++ b/dev/assets/explanations_winding_order.md.CcBW0gLF.js @@ -1 +1 @@ -import{_ as e,c as n,o as t}from"./chunks/framework.p73Oc50P.js";const l=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"explanations/winding_order.md","filePath":"explanations/winding_order.md","lastUpdated":null}'),a={name:"explanations/winding_order.md"};function r(o,i,d,s,c,p){return t(),n("div")}const m=e(a,[["render",r]]);export{l as __pageData,m as default}; +import{_ as e,c as n,o as t}from"./chunks/framework.DJCAxKqx.js";const l=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"explanations/winding_order.md","filePath":"explanations/winding_order.md","lastUpdated":null}'),a={name:"explanations/winding_order.md"};function r(o,i,d,s,c,p){return t(),n("div")}const m=e(a,[["render",r]]);export{l as __pageData,m as default}; diff --git a/dev/assets/explanations_winding_order.md.Cj79LNns.lean.js b/dev/assets/explanations_winding_order.md.CcBW0gLF.lean.js similarity index 84% rename from dev/assets/explanations_winding_order.md.Cj79LNns.lean.js rename to dev/assets/explanations_winding_order.md.CcBW0gLF.lean.js index d73b4f5fd..1d4c78f0a 100644 --- a/dev/assets/explanations_winding_order.md.Cj79LNns.lean.js +++ b/dev/assets/explanations_winding_order.md.CcBW0gLF.lean.js @@ -1 +1 @@ -import{_ as e,c as n,o as t}from"./chunks/framework.p73Oc50P.js";const l=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"explanations/winding_order.md","filePath":"explanations/winding_order.md","lastUpdated":null}'),a={name:"explanations/winding_order.md"};function r(o,i,d,s,c,p){return t(),n("div")}const m=e(a,[["render",r]]);export{l as __pageData,m as default}; +import{_ as e,c as n,o as t}from"./chunks/framework.DJCAxKqx.js";const l=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"explanations/winding_order.md","filePath":"explanations/winding_order.md","lastUpdated":null}'),a={name:"explanations/winding_order.md"};function r(o,i,d,s,c,p){return t(),n("div")}const m=e(a,[["render",r]]);export{l as __pageData,m as default}; diff --git a/dev/assets/uaudbji.Cx40vhB3.png b/dev/assets/hbpybpu.Cx40vhB3.png similarity index 100% rename from dev/assets/uaudbji.Cx40vhB3.png rename to dev/assets/hbpybpu.Cx40vhB3.png diff --git a/dev/assets/hgmisxf.WxZOZ4eH.png b/dev/assets/hgmisxf.WxZOZ4eH.png deleted file mode 100644 index c38058e67..000000000 Binary files a/dev/assets/hgmisxf.WxZOZ4eH.png and /dev/null differ diff --git a/dev/assets/lwbkjud.Cb0_DiYE.png b/dev/assets/ifcvcfy.Cb0_DiYE.png similarity index 100% rename from dev/assets/lwbkjud.Cb0_DiYE.png rename to dev/assets/ifcvcfy.Cb0_DiYE.png diff --git a/dev/assets/index.md.BSzQiGph.js b/dev/assets/index.md.eRsZ4vQP.js similarity index 94% rename from dev/assets/index.md.BSzQiGph.js rename to dev/assets/index.md.eRsZ4vQP.js index a8bf269f4..ba45db056 100644 --- a/dev/assets/index.md.BSzQiGph.js +++ b/dev/assets/index.md.eRsZ4vQP.js @@ -1 +1 @@ -import{_ as i,c as a,o,j as e,a as t}from"./chunks/framework.p73Oc50P.js";const b=JSON.parse('{"title":"","description":"","frontmatter":{"layout":"home","hero":{"name":"GeometryOps.jl","text":"","tagline":"Blazing fast geometry operations in pure Julia","image":{"src":"/logo.png","alt":"GeometryOps"},"actions":[{"theme":"brand","text":"Introduction","link":"/introduction"},{"theme":"alt","text":"View on Github","link":"https://github.com/JuliaGeo/GeometryOps.jl"},{"theme":"alt","text":"API Reference","link":"/api"}]},"features":[{"icon":"\\"Julia","title":"Pure Julia code","details":"Fast, understandable, extensible functions","link":"/introduction"},{"icon":"","title":"Literate programming","details":"Documented source code with examples!","link":"/source/methods/clipping/cut"},{"icon":"","title":"Full integration with GeoInterface","details":"Use any GeoInterface.jl-compatible geometry","link":"https://juliageo.org/GeoInterface.jl/stable"}]},"headers":[],"relativePath":"index.md","filePath":"index.md","lastUpdated":null}'),s={name:"index.md"},n=e("p",{style:{"margin-bottom":"2cm"}},null,-1),l=e("div",{class:"vp-doc",style:{width:"80%",margin:"auto"}},[e("h1",null," What is GeometryOps.jl? "),e("p",null,"GeometryOps.jl is a package for geometric calculations on (primarily 2D) geometries."),e("p",null,[t("The driving idea behind this package is to unify all the disparate packages for geometric calculations in Julia, and make them "),e("a",{href:"https://github.com/JuliaGeo/GeoInterface.jl",target:"_blank",rel:"noreferrer"},"GeoInterface.jl"),t("-compatible. We seem to be focusing primarily on 2/2.5D geometries for now.")]),e("p",null,"Most of the usecases are driven by GIS and similar Earth data workflows, so this might be a bit specialized towards that, but methods should always be general to any coordinate space."),e("p",null,"We welcome contributions, either as pull requests or discussion on issues!")],-1),r=[n,l];function c(d,u,h,m,g,p){return o(),a("div",null,r)}const _=i(s,[["render",c]]);export{b as __pageData,_ as default}; +import{_ as i,c as a,o,j as e,a as t}from"./chunks/framework.DJCAxKqx.js";const b=JSON.parse('{"title":"","description":"","frontmatter":{"layout":"home","hero":{"name":"GeometryOps.jl","text":"","tagline":"Blazing fast geometry operations in pure Julia","image":{"src":"/logo.png","alt":"GeometryOps"},"actions":[{"theme":"brand","text":"Introduction","link":"/introduction"},{"theme":"alt","text":"View on Github","link":"https://github.com/JuliaGeo/GeometryOps.jl"},{"theme":"alt","text":"API Reference","link":"/api"}]},"features":[{"icon":"\\"Julia","title":"Pure Julia code","details":"Fast, understandable, extensible functions","link":"/introduction"},{"icon":"","title":"Literate programming","details":"Documented source code with examples!","link":"/source/methods/clipping/cut"},{"icon":"","title":"Full integration with GeoInterface","details":"Use any GeoInterface.jl-compatible geometry","link":"https://juliageo.org/GeoInterface.jl/stable"}]},"headers":[],"relativePath":"index.md","filePath":"index.md","lastUpdated":null}'),s={name:"index.md"},n=e("p",{style:{"margin-bottom":"2cm"}},null,-1),l=e("div",{class:"vp-doc",style:{width:"80%",margin:"auto"}},[e("h1",null," What is GeometryOps.jl? "),e("p",null,"GeometryOps.jl is a package for geometric calculations on (primarily 2D) geometries."),e("p",null,[t("The driving idea behind this package is to unify all the disparate packages for geometric calculations in Julia, and make them "),e("a",{href:"https://github.com/JuliaGeo/GeoInterface.jl",target:"_blank",rel:"noreferrer"},"GeoInterface.jl"),t("-compatible. We seem to be focusing primarily on 2/2.5D geometries for now.")]),e("p",null,"Most of the usecases are driven by GIS and similar Earth data workflows, so this might be a bit specialized towards that, but methods should always be general to any coordinate space."),e("p",null,"We welcome contributions, either as pull requests or discussion on issues!")],-1),r=[n,l];function c(d,u,h,m,g,p){return o(),a("div",null,r)}const _=i(s,[["render",c]]);export{b as __pageData,_ as default}; diff --git a/dev/assets/index.md.BSzQiGph.lean.js b/dev/assets/index.md.eRsZ4vQP.lean.js similarity index 94% rename from dev/assets/index.md.BSzQiGph.lean.js rename to dev/assets/index.md.eRsZ4vQP.lean.js index a8bf269f4..ba45db056 100644 --- a/dev/assets/index.md.BSzQiGph.lean.js +++ b/dev/assets/index.md.eRsZ4vQP.lean.js @@ -1 +1 @@ -import{_ as i,c as a,o,j as e,a as t}from"./chunks/framework.p73Oc50P.js";const b=JSON.parse('{"title":"","description":"","frontmatter":{"layout":"home","hero":{"name":"GeometryOps.jl","text":"","tagline":"Blazing fast geometry operations in pure Julia","image":{"src":"/logo.png","alt":"GeometryOps"},"actions":[{"theme":"brand","text":"Introduction","link":"/introduction"},{"theme":"alt","text":"View on Github","link":"https://github.com/JuliaGeo/GeometryOps.jl"},{"theme":"alt","text":"API Reference","link":"/api"}]},"features":[{"icon":"\\"Julia","title":"Pure Julia code","details":"Fast, understandable, extensible functions","link":"/introduction"},{"icon":"","title":"Literate programming","details":"Documented source code with examples!","link":"/source/methods/clipping/cut"},{"icon":"","title":"Full integration with GeoInterface","details":"Use any GeoInterface.jl-compatible geometry","link":"https://juliageo.org/GeoInterface.jl/stable"}]},"headers":[],"relativePath":"index.md","filePath":"index.md","lastUpdated":null}'),s={name:"index.md"},n=e("p",{style:{"margin-bottom":"2cm"}},null,-1),l=e("div",{class:"vp-doc",style:{width:"80%",margin:"auto"}},[e("h1",null," What is GeometryOps.jl? "),e("p",null,"GeometryOps.jl is a package for geometric calculations on (primarily 2D) geometries."),e("p",null,[t("The driving idea behind this package is to unify all the disparate packages for geometric calculations in Julia, and make them "),e("a",{href:"https://github.com/JuliaGeo/GeoInterface.jl",target:"_blank",rel:"noreferrer"},"GeoInterface.jl"),t("-compatible. We seem to be focusing primarily on 2/2.5D geometries for now.")]),e("p",null,"Most of the usecases are driven by GIS and similar Earth data workflows, so this might be a bit specialized towards that, but methods should always be general to any coordinate space."),e("p",null,"We welcome contributions, either as pull requests or discussion on issues!")],-1),r=[n,l];function c(d,u,h,m,g,p){return o(),a("div",null,r)}const _=i(s,[["render",c]]);export{b as __pageData,_ as default}; +import{_ as i,c as a,o,j as e,a as t}from"./chunks/framework.DJCAxKqx.js";const b=JSON.parse('{"title":"","description":"","frontmatter":{"layout":"home","hero":{"name":"GeometryOps.jl","text":"","tagline":"Blazing fast geometry operations in pure Julia","image":{"src":"/logo.png","alt":"GeometryOps"},"actions":[{"theme":"brand","text":"Introduction","link":"/introduction"},{"theme":"alt","text":"View on Github","link":"https://github.com/JuliaGeo/GeometryOps.jl"},{"theme":"alt","text":"API Reference","link":"/api"}]},"features":[{"icon":"\\"Julia","title":"Pure Julia code","details":"Fast, understandable, extensible functions","link":"/introduction"},{"icon":"","title":"Literate programming","details":"Documented source code with examples!","link":"/source/methods/clipping/cut"},{"icon":"","title":"Full integration with GeoInterface","details":"Use any GeoInterface.jl-compatible geometry","link":"https://juliageo.org/GeoInterface.jl/stable"}]},"headers":[],"relativePath":"index.md","filePath":"index.md","lastUpdated":null}'),s={name:"index.md"},n=e("p",{style:{"margin-bottom":"2cm"}},null,-1),l=e("div",{class:"vp-doc",style:{width:"80%",margin:"auto"}},[e("h1",null," What is GeometryOps.jl? "),e("p",null,"GeometryOps.jl is a package for geometric calculations on (primarily 2D) geometries."),e("p",null,[t("The driving idea behind this package is to unify all the disparate packages for geometric calculations in Julia, and make them "),e("a",{href:"https://github.com/JuliaGeo/GeoInterface.jl",target:"_blank",rel:"noreferrer"},"GeoInterface.jl"),t("-compatible. We seem to be focusing primarily on 2/2.5D geometries for now.")]),e("p",null,"Most of the usecases are driven by GIS and similar Earth data workflows, so this might be a bit specialized towards that, but methods should always be general to any coordinate space."),e("p",null,"We welcome contributions, either as pull requests or discussion on issues!")],-1),r=[n,l];function c(d,u,h,m,g,p){return o(),a("div",null,r)}const _=i(s,[["render",c]]);export{b as __pageData,_ as default}; diff --git a/dev/assets/introduction.md.B7eSM3MZ.js b/dev/assets/introduction.md.Cve25PKI.js similarity index 95% rename from dev/assets/introduction.md.B7eSM3MZ.js rename to dev/assets/introduction.md.Cve25PKI.js index 4f9b9b718..d17849d4a 100644 --- a/dev/assets/introduction.md.B7eSM3MZ.js +++ b/dev/assets/introduction.md.Cve25PKI.js @@ -1 +1 @@ -import{_ as e,c as a,o as t,a6 as o}from"./chunks/framework.p73Oc50P.js";const f=JSON.parse('{"title":"Introduction","description":"","frontmatter":{},"headers":[],"relativePath":"introduction.md","filePath":"introduction.md","lastUpdated":null}'),i={name:"introduction.md"},r=o('

Introduction

GeometryOps.jl is a package for geometric calculations on (primarily 2D) geometries.

The driving idea behind this package is to unify all the disparate packages for geometric calculations in Julia, and make them GeoInterface.jl-compatible. We seem to be focusing primarily on 2/2.5D geometries for now.

Most of the usecases are driven by GIS and similar Earth data workflows, so this might be a bit specialized towards that, but methods should always be general to any coordinate space.

We welcome contributions, either as pull requests or discussion on issues!

Main concepts

The apply paradigm

Note

See the Primitive Functions page for more information on this.

The apply function allows you to decompose a given collection of geometries down to a certain level, and then operate on it.

Functionally, it's similar to map in the way you apply it to geometries.

apply and applyreduce take any geometry, vector of geometries, collection of geometries, or table (like Shapefile.Table, DataFrame, or GeoTable)!

What's this GeoInterface.Wrapper thing?

Write a comment about GeoInterface.Wrapper and why it helps in type stability to guarantee a particular return type.

',13),n=[r];function c(s,p,l,d,h,m){return t(),a("div",null,n)}const g=e(i,[["render",c]]);export{f as __pageData,g as default}; +import{_ as e,c as a,o as t,a6 as o}from"./chunks/framework.DJCAxKqx.js";const f=JSON.parse('{"title":"Introduction","description":"","frontmatter":{},"headers":[],"relativePath":"introduction.md","filePath":"introduction.md","lastUpdated":null}'),i={name:"introduction.md"},r=o('

Introduction

GeometryOps.jl is a package for geometric calculations on (primarily 2D) geometries.

The driving idea behind this package is to unify all the disparate packages for geometric calculations in Julia, and make them GeoInterface.jl-compatible. We seem to be focusing primarily on 2/2.5D geometries for now.

Most of the usecases are driven by GIS and similar Earth data workflows, so this might be a bit specialized towards that, but methods should always be general to any coordinate space.

We welcome contributions, either as pull requests or discussion on issues!

Main concepts

The apply paradigm

Note

See the Primitive Functions page for more information on this.

The apply function allows you to decompose a given collection of geometries down to a certain level, and then operate on it.

Functionally, it's similar to map in the way you apply it to geometries.

apply and applyreduce take any geometry, vector of geometries, collection of geometries, or table (like Shapefile.Table, DataFrame, or GeoTable)!

What's this GeoInterface.Wrapper thing?

Write a comment about GeoInterface.Wrapper and why it helps in type stability to guarantee a particular return type.

',13),n=[r];function c(s,p,l,d,h,m){return t(),a("div",null,n)}const g=e(i,[["render",c]]);export{f as __pageData,g as default}; diff --git a/dev/assets/introduction.md.B7eSM3MZ.lean.js b/dev/assets/introduction.md.Cve25PKI.lean.js similarity index 68% rename from dev/assets/introduction.md.B7eSM3MZ.lean.js rename to dev/assets/introduction.md.Cve25PKI.lean.js index 5628b31d4..75eb1d568 100644 --- a/dev/assets/introduction.md.B7eSM3MZ.lean.js +++ b/dev/assets/introduction.md.Cve25PKI.lean.js @@ -1 +1 @@ -import{_ as e,c as a,o as t,a6 as o}from"./chunks/framework.p73Oc50P.js";const f=JSON.parse('{"title":"Introduction","description":"","frontmatter":{},"headers":[],"relativePath":"introduction.md","filePath":"introduction.md","lastUpdated":null}'),i={name:"introduction.md"},r=o("",13),n=[r];function c(s,p,l,d,h,m){return t(),a("div",null,n)}const g=e(i,[["render",c]]);export{f as __pageData,g as default}; +import{_ as e,c as a,o as t,a6 as o}from"./chunks/framework.DJCAxKqx.js";const f=JSON.parse('{"title":"Introduction","description":"","frontmatter":{},"headers":[],"relativePath":"introduction.md","filePath":"introduction.md","lastUpdated":null}'),i={name:"introduction.md"},r=o("",13),n=[r];function c(s,p,l,d,h,m){return t(),a("div",null,n)}const g=e(i,[["render",c]]);export{f as __pageData,g as default}; diff --git a/dev/assets/porvekh.C3SxJ3x-.png b/dev/assets/jcsotik.C3SxJ3x-.png similarity index 100% rename from dev/assets/porvekh.C3SxJ3x-.png rename to dev/assets/jcsotik.C3SxJ3x-.png diff --git a/dev/assets/hfeeoyc.CgiryX2p.png b/dev/assets/lnziunf.CgiryX2p.png similarity index 100% rename from dev/assets/hfeeoyc.CgiryX2p.png rename to dev/assets/lnziunf.CgiryX2p.png diff --git a/dev/assets/wnlphfa.0OJvb21A.png b/dev/assets/lxvkgam.0OJvb21A.png similarity index 100% rename from dev/assets/wnlphfa.0OJvb21A.png rename to dev/assets/lxvkgam.0OJvb21A.png diff --git a/dev/assets/cufnabn.Dig-DWOQ.png b/dev/assets/moxglxs.Dig-DWOQ.png similarity index 100% rename from dev/assets/cufnabn.Dig-DWOQ.png rename to dev/assets/moxglxs.Dig-DWOQ.png diff --git a/dev/assets/jbbdblr.Bglvb-jp.png b/dev/assets/muggled.Bglvb-jp.png similarity index 100% rename from dev/assets/jbbdblr.Bglvb-jp.png rename to dev/assets/muggled.Bglvb-jp.png diff --git a/dev/assets/jwhbpyp.B94PsR1K.png b/dev/assets/oagvrxx.B94PsR1K.png similarity index 100% rename from dev/assets/jwhbpyp.B94PsR1K.png rename to dev/assets/oagvrxx.B94PsR1K.png diff --git a/dev/assets/zitiviy.3UVIT8DR.png b/dev/assets/oenfjuu.3UVIT8DR.png similarity index 100% rename from dev/assets/zitiviy.3UVIT8DR.png rename to dev/assets/oenfjuu.3UVIT8DR.png diff --git a/dev/assets/onuceqw.p5pzwDY_.png b/dev/assets/onuceqw.p5pzwDY_.png deleted file mode 100644 index be11f9d80..000000000 Binary files a/dev/assets/onuceqw.p5pzwDY_.png and /dev/null differ diff --git a/dev/assets/qygrsbt.CLtpJ5Wb.png b/dev/assets/ourcbmb.CLtpJ5Wb.png similarity index 100% rename from dev/assets/qygrsbt.CLtpJ5Wb.png rename to dev/assets/ourcbmb.CLtpJ5Wb.png diff --git a/dev/assets/jdjtoxs.DeeQUply.png b/dev/assets/pctptur.DeeQUply.png similarity index 100% rename from dev/assets/jdjtoxs.DeeQUply.png rename to dev/assets/pctptur.DeeQUply.png diff --git a/dev/assets/pepjrxd.DVRbMsmY.png b/dev/assets/pepjrxd.DVRbMsmY.png deleted file mode 100644 index ea0ff3457..000000000 Binary files a/dev/assets/pepjrxd.DVRbMsmY.png and /dev/null differ diff --git a/dev/assets/pwlmgsx.Co3XneyV.png b/dev/assets/pwlmgsx.Co3XneyV.png deleted file mode 100644 index 238bf41ac..000000000 Binary files a/dev/assets/pwlmgsx.Co3XneyV.png and /dev/null differ diff --git a/dev/assets/pknqjqy.BaZeu6ul.png b/dev/assets/pxovduh.BaZeu6ul.png similarity index 100% rename from dev/assets/pknqjqy.BaZeu6ul.png rename to dev/assets/pxovduh.BaZeu6ul.png diff --git a/dev/assets/qevmcve.BhB4cDXE.png b/dev/assets/qevmcve.BhB4cDXE.png new file mode 100644 index 000000000..7a1b3c459 Binary files /dev/null and b/dev/assets/qevmcve.BhB4cDXE.png differ diff --git a/dev/assets/qzskghj.DUK_gcrd.png b/dev/assets/qzskghj.DUK_gcrd.png deleted file mode 100644 index 0b92f6dd2..000000000 Binary files a/dev/assets/qzskghj.DUK_gcrd.png and /dev/null differ diff --git a/dev/assets/qfcodyd.BD0hVfse.png b/dev/assets/sbsoihs.BD0hVfse.png similarity index 100% rename from dev/assets/qfcodyd.BD0hVfse.png rename to dev/assets/sbsoihs.BD0hVfse.png diff --git a/dev/assets/sgifphp.CjMfyw5e.png b/dev/assets/sgifphp.CjMfyw5e.png new file mode 100644 index 000000000..bd6d523ce Binary files /dev/null and b/dev/assets/sgifphp.CjMfyw5e.png differ diff --git a/dev/assets/source_GeometryOps.md.zU9L1-s8.js b/dev/assets/source_GeometryOps.md.Bm0ymJAW.js similarity index 99% rename from dev/assets/source_GeometryOps.md.zU9L1-s8.js rename to dev/assets/source_GeometryOps.md.Bm0ymJAW.js index cd5af3169..9bc96da4a 100644 --- a/dev/assets/source_GeometryOps.md.zU9L1-s8.js +++ b/dev/assets/source_GeometryOps.md.Bm0ymJAW.js @@ -1,4 +1,4 @@ -import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const y=JSON.parse('{"title":"GeometryOps.jl","description":"","frontmatter":{},"headers":[],"relativePath":"source/GeometryOps.md","filePath":"source/GeometryOps.md","lastUpdated":null}'),l={name:"source/GeometryOps.md"},h=n(`

GeometryOps.jl

julia
module GeometryOps
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const y=JSON.parse('{"title":"GeometryOps.jl","description":"","frontmatter":{},"headers":[],"relativePath":"source/GeometryOps.md","filePath":"source/GeometryOps.md","lastUpdated":null}'),l={name:"source/GeometryOps.md"},h=n(`

GeometryOps.jl

julia
module GeometryOps
 
 using GeoInterface
 using GeometryBasics
diff --git a/dev/assets/source_GeometryOps.md.zU9L1-s8.lean.js b/dev/assets/source_GeometryOps.md.Bm0ymJAW.lean.js
similarity index 70%
rename from dev/assets/source_GeometryOps.md.zU9L1-s8.lean.js
rename to dev/assets/source_GeometryOps.md.Bm0ymJAW.lean.js
index acbab6b77..9a5bda38c 100644
--- a/dev/assets/source_GeometryOps.md.zU9L1-s8.lean.js
+++ b/dev/assets/source_GeometryOps.md.Bm0ymJAW.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const y=JSON.parse('{"title":"GeometryOps.jl","description":"","frontmatter":{},"headers":[],"relativePath":"source/GeometryOps.md","filePath":"source/GeometryOps.md","lastUpdated":null}'),l={name:"source/GeometryOps.md"},h=n("",8),t=[h];function k(p,e,E,r,d,g){return a(),i("div",null,t)}const F=s(l,[["render",k]]);export{y as __pageData,F as default};
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const y=JSON.parse('{"title":"GeometryOps.jl","description":"","frontmatter":{},"headers":[],"relativePath":"source/GeometryOps.md","filePath":"source/GeometryOps.md","lastUpdated":null}'),l={name:"source/GeometryOps.md"},h=n("",8),t=[h];function k(p,e,E,r,d,g){return a(),i("div",null,t)}const F=s(l,[["render",k]]);export{y as __pageData,F as default};
diff --git a/dev/assets/source_methods_angles.md.DSOyzasy.js b/dev/assets/source_methods_angles.md.CJN-j8Zb.js
similarity index 99%
rename from dev/assets/source_methods_angles.md.DSOyzasy.js
rename to dev/assets/source_methods_angles.md.CJN-j8Zb.js
index fea4fa1b1..cabeea5d2 100644
--- a/dev/assets/source_methods_angles.md.DSOyzasy.js
+++ b/dev/assets/source_methods_angles.md.CJN-j8Zb.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const h="/GeometryOps.jl/dev/assets/cufnabn.Dig-DWOQ.png",o=JSON.parse('{"title":"Angles","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/angles.md","filePath":"source/methods/angles.md","lastUpdated":null}'),l={name:"source/methods/angles.md"},k=n(`

Angles

julia
export angles

What is angles?

Angles are the angles formed by a given geometries line segments, if it has line segments.

To provide an example, consider this rectangle:

julia
import GeometryOps as GO
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const h="/GeometryOps.jl/dev/assets/moxglxs.Dig-DWOQ.png",o=JSON.parse('{"title":"Angles","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/angles.md","filePath":"source/methods/angles.md","lastUpdated":null}'),l={name:"source/methods/angles.md"},k=n(`

Angles

julia
export angles

What is angles?

Angles are the angles formed by a given geometries line segments, if it has line segments.

To provide an example, consider this rectangle:

julia
import GeometryOps as GO
 import GeoInterface as GI
 using Makie, CairoMakie
 
diff --git a/dev/assets/source_methods_angles.md.DSOyzasy.lean.js b/dev/assets/source_methods_angles.md.CJN-j8Zb.lean.js
similarity index 73%
rename from dev/assets/source_methods_angles.md.DSOyzasy.lean.js
rename to dev/assets/source_methods_angles.md.CJN-j8Zb.lean.js
index 903ba80be..e292e4e5d 100644
--- a/dev/assets/source_methods_angles.md.DSOyzasy.lean.js
+++ b/dev/assets/source_methods_angles.md.CJN-j8Zb.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const h="/GeometryOps.jl/dev/assets/cufnabn.Dig-DWOQ.png",o=JSON.parse('{"title":"Angles","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/angles.md","filePath":"source/methods/angles.md","lastUpdated":null}'),l={name:"source/methods/angles.md"},k=n("",27),t=[k];function p(e,r,E,g,d,y){return a(),i("div",null,t)}const c=s(l,[["render",p]]);export{o as __pageData,c as default};
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const h="/GeometryOps.jl/dev/assets/moxglxs.Dig-DWOQ.png",o=JSON.parse('{"title":"Angles","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/angles.md","filePath":"source/methods/angles.md","lastUpdated":null}'),l={name:"source/methods/angles.md"},k=n("",27),t=[k];function p(e,r,E,g,d,y){return a(),i("div",null,t)}const c=s(l,[["render",p]]);export{o as __pageData,c as default};
diff --git a/dev/assets/source_methods_area.md.Co7T0ySf.js b/dev/assets/source_methods_area.md.DSkC2ZVp.js
similarity index 99%
rename from dev/assets/source_methods_area.md.Co7T0ySf.js
rename to dev/assets/source_methods_area.md.DSkC2ZVp.js
index bdeaa5700..effda8646 100644
--- a/dev/assets/source_methods_area.md.Co7T0ySf.js
+++ b/dev/assets/source_methods_area.md.DSkC2ZVp.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const h="/GeometryOps.jl/dev/assets/cufnabn.Dig-DWOQ.png",t="/GeometryOps.jl/dev/assets/kmoesqa.CULn5saZ.png",c=JSON.parse('{"title":"Area and signed area","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/area.md","filePath":"source/methods/area.md","lastUpdated":null}'),e={name:"source/methods/area.md"},l=n(`

Area and signed area

julia
export area, signed_area

What is area? What is signed area?

Area is the amount of space occupied by a two-dimensional figure. It is always a positive value. Signed area is simply the integral over the exterior path of a polygon, minus the sum of integrals over its interior holes. It is signed such that a clockwise path has a positive area, and a counterclockwise path has a negative area. The area is the absolute value of the signed area.

To provide an example, consider this rectangle:

julia
import GeometryOps as GO
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const h="/GeometryOps.jl/dev/assets/moxglxs.Dig-DWOQ.png",t="/GeometryOps.jl/dev/assets/taufpus.CULn5saZ.png",c=JSON.parse('{"title":"Area and signed area","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/area.md","filePath":"source/methods/area.md","lastUpdated":null}'),e={name:"source/methods/area.md"},l=n(`

Area and signed area

julia
export area, signed_area

What is area? What is signed area?

Area is the amount of space occupied by a two-dimensional figure. It is always a positive value. Signed area is simply the integral over the exterior path of a polygon, minus the sum of integrals over its interior holes. It is signed such that a clockwise path has a positive area, and a counterclockwise path has a negative area. The area is the absolute value of the signed area.

To provide an example, consider this rectangle:

julia
import GeometryOps as GO
 import GeoInterface as GI
 using Makie
 using CairoMakie
diff --git a/dev/assets/source_methods_area.md.Co7T0ySf.lean.js b/dev/assets/source_methods_area.md.DSkC2ZVp.lean.js
similarity index 64%
rename from dev/assets/source_methods_area.md.Co7T0ySf.lean.js
rename to dev/assets/source_methods_area.md.DSkC2ZVp.lean.js
index 2853ffe27..aa3576cfc 100644
--- a/dev/assets/source_methods_area.md.Co7T0ySf.lean.js
+++ b/dev/assets/source_methods_area.md.DSkC2ZVp.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const h="/GeometryOps.jl/dev/assets/cufnabn.Dig-DWOQ.png",t="/GeometryOps.jl/dev/assets/kmoesqa.CULn5saZ.png",c=JSON.parse('{"title":"Area and signed area","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/area.md","filePath":"source/methods/area.md","lastUpdated":null}'),e={name:"source/methods/area.md"},l=n("",40),p=[l];function k(r,d,g,E,o,y){return a(),i("div",null,p)}const C=s(e,[["render",k]]);export{c as __pageData,C as default};
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const h="/GeometryOps.jl/dev/assets/moxglxs.Dig-DWOQ.png",t="/GeometryOps.jl/dev/assets/taufpus.CULn5saZ.png",c=JSON.parse('{"title":"Area and signed area","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/area.md","filePath":"source/methods/area.md","lastUpdated":null}'),e={name:"source/methods/area.md"},l=n("",40),p=[l];function k(r,d,g,E,o,y){return a(),i("div",null,p)}const C=s(e,[["render",k]]);export{c as __pageData,C as default};
diff --git a/dev/assets/source_methods_barycentric.md.BPXr5wAv.js b/dev/assets/source_methods_barycentric.md.CraLUsaE.js
similarity index 99%
rename from dev/assets/source_methods_barycentric.md.BPXr5wAv.js
rename to dev/assets/source_methods_barycentric.md.CraLUsaE.js
index 1e1feb750..289c21738 100644
--- a/dev/assets/source_methods_barycentric.md.BPXr5wAv.js
+++ b/dev/assets/source_methods_barycentric.md.CraLUsaE.js
@@ -1,4 +1,4 @@
-import{_ as h,c as a,j as s,a as i,a6 as t,o as n}from"./chunks/framework.p73Oc50P.js";const L=JSON.parse('{"title":"Barycentric coordinates","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/barycentric.md","filePath":"source/methods/barycentric.md","lastUpdated":null}'),l={name:"source/methods/barycentric.md"},p=t(`

Barycentric coordinates

julia
export barycentric_coordinates, barycentric_coordinates!, barycentric_interpolate
+import{_ as h,c as a,j as s,a as i,a6 as t,o as n}from"./chunks/framework.DJCAxKqx.js";const L=JSON.parse('{"title":"Barycentric coordinates","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/barycentric.md","filePath":"source/methods/barycentric.md","lastUpdated":null}'),l={name:"source/methods/barycentric.md"},p=t(`

Barycentric coordinates

julia
export barycentric_coordinates, barycentric_coordinates!, barycentric_interpolate
 export MeanValue

Generalized barycentric coordinates are a generalization of barycentric coordinates, which are typically used in triangles, to arbitrary polygons.

They provide a way to express a point within a polygon as a weighted average of the polygon's vertices.

`,4),k={class:"MathJax",jax:"SVG",style:{direction:"ltr",position:"relative"}},e={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-0.566ex"},xmlns:"http://www.w3.org/2000/svg",width:"10.692ex",height:"2.262ex",role:"img",focusable:"false",viewBox:"0 -750 4726 1000","aria-hidden":"true"},r=t('',1),E=[r],d=s("mjx-assistive-mml",{unselectable:"on",display:"inline",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",width:"auto",overflow:"hidden"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML"},[s("mo",{stretchy:"false"},"("),s("msub",null,[s("mi",null,"λ"),s("mn",null,"1")]),s("mo",null,","),s("msub",null,[s("mi",null,"λ"),s("mn",null,"2")]),s("mo",null,","),s("msub",null,[s("mi",null,"λ"),s("mn",null,"3")]),s("mo",{stretchy:"false"},")")])],-1),g={class:"MathJax",jax:"SVG",style:{direction:"ltr",position:"relative"}},y={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-0.025ex"},xmlns:"http://www.w3.org/2000/svg",width:"1.357ex",height:"1.025ex",role:"img",focusable:"false",viewBox:"0 -442 600 453","aria-hidden":"true"},o=s("g",{stroke:"currentColor",fill:"currentColor","stroke-width":"0",transform:"scale(1,-1)"},[s("g",{"data-mml-node":"math"},[s("g",{"data-mml-node":"mi"},[s("path",{"data-c":"1D45B",d:"M21 287Q22 293 24 303T36 341T56 388T89 425T135 442Q171 442 195 424T225 390T231 369Q231 367 232 367L243 378Q304 442 382 442Q436 442 469 415T503 336T465 179T427 52Q427 26 444 26Q450 26 453 27Q482 32 505 65T540 145Q542 153 560 153Q580 153 580 145Q580 144 576 130Q568 101 554 73T508 17T439 -10Q392 -10 371 17T350 73Q350 92 386 193T423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 180T152 343Q153 348 153 366Q153 405 129 405Q91 405 66 305Q60 285 60 284Q58 278 41 278H27Q21 284 21 287Z",style:{"stroke-width":"3"}})])])],-1),F=[o],c=s("mjx-assistive-mml",{unselectable:"on",display:"inline",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",width:"auto",overflow:"hidden"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML"},[s("mi",null,"n")])],-1),C={class:"MathJax",jax:"SVG",style:{direction:"ltr",position:"relative"}},A={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-0.025ex"},xmlns:"http://www.w3.org/2000/svg",width:"1.357ex",height:"1.025ex",role:"img",focusable:"false",viewBox:"0 -442 600 453","aria-hidden":"true"},u=s("g",{stroke:"currentColor",fill:"currentColor","stroke-width":"0",transform:"scale(1,-1)"},[s("g",{"data-mml-node":"math"},[s("g",{"data-mml-node":"mi"},[s("path",{"data-c":"1D45B",d:"M21 287Q22 293 24 303T36 341T56 388T89 425T135 442Q171 442 195 424T225 390T231 369Q231 367 232 367L243 378Q304 442 382 442Q436 442 469 415T503 336T465 179T427 52Q427 26 444 26Q450 26 453 27Q482 32 505 65T540 145Q542 153 560 153Q580 153 580 145Q580 144 576 130Q568 101 554 73T508 17T439 -10Q392 -10 371 17T350 73Q350 92 386 193T423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 180T152 343Q153 348 153 366Q153 405 129 405Q91 405 66 305Q60 285 60 284Q58 278 41 278H27Q21 284 21 287Z",style:{"stroke-width":"3"}})])])],-1),D=[u],B=s("mjx-assistive-mml",{unselectable:"on",display:"inline",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",width:"auto",overflow:"hidden"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML"},[s("mi",null,"n")])],-1),T={class:"MathJax",jax:"SVG",style:{direction:"ltr",position:"relative"}},m={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-0.566ex"},xmlns:"http://www.w3.org/2000/svg",width:"14.876ex",height:"2.262ex",role:"img",focusable:"false",viewBox:"0 -750 6575.4 1000","aria-hidden":"true"},b=t('',1),Q=[b],_=s("mjx-assistive-mml",{unselectable:"on",display:"inline",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",width:"auto",overflow:"hidden"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML"},[s("mo",{stretchy:"false"},"("),s("msub",null,[s("mi",null,"λ"),s("mn",null,"1")]),s("mo",null,","),s("msub",null,[s("mi",null,"λ"),s("mn",null,"2")]),s("mo",null,","),s("mo",null,"."),s("mo",null,"."),s("mo",null,"."),s("mo",null,","),s("msub",null,[s("mi",null,"λ"),s("mi",null,"n")]),s("mo",{stretchy:"false"},")")])],-1),v=t(`

As with the triangle case, the weights sum to 1, and each is non-negative.

Example

This example was taken from this page of CGAL's documentation.

@example
using GeometryOps
 using GeometryOps.GeometryBasics
 using Makie
diff --git a/dev/assets/source_methods_barycentric.md.BPXr5wAv.lean.js b/dev/assets/source_methods_barycentric.md.CraLUsaE.lean.js
similarity index 99%
rename from dev/assets/source_methods_barycentric.md.BPXr5wAv.lean.js
rename to dev/assets/source_methods_barycentric.md.CraLUsaE.lean.js
index 8d0f23abb..0434262b7 100644
--- a/dev/assets/source_methods_barycentric.md.BPXr5wAv.lean.js
+++ b/dev/assets/source_methods_barycentric.md.CraLUsaE.lean.js
@@ -1 +1 @@
-import{_ as h,c as a,j as s,a as i,a6 as t,o as n}from"./chunks/framework.p73Oc50P.js";const L=JSON.parse('{"title":"Barycentric coordinates","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/barycentric.md","filePath":"source/methods/barycentric.md","lastUpdated":null}'),l={name:"source/methods/barycentric.md"},p=t("",4),k={class:"MathJax",jax:"SVG",style:{direction:"ltr",position:"relative"}},e={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-0.566ex"},xmlns:"http://www.w3.org/2000/svg",width:"10.692ex",height:"2.262ex",role:"img",focusable:"false",viewBox:"0 -750 4726 1000","aria-hidden":"true"},r=t("",1),E=[r],d=s("mjx-assistive-mml",{unselectable:"on",display:"inline",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",width:"auto",overflow:"hidden"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML"},[s("mo",{stretchy:"false"},"("),s("msub",null,[s("mi",null,"λ"),s("mn",null,"1")]),s("mo",null,","),s("msub",null,[s("mi",null,"λ"),s("mn",null,"2")]),s("mo",null,","),s("msub",null,[s("mi",null,"λ"),s("mn",null,"3")]),s("mo",{stretchy:"false"},")")])],-1),g={class:"MathJax",jax:"SVG",style:{direction:"ltr",position:"relative"}},y={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-0.025ex"},xmlns:"http://www.w3.org/2000/svg",width:"1.357ex",height:"1.025ex",role:"img",focusable:"false",viewBox:"0 -442 600 453","aria-hidden":"true"},o=s("g",{stroke:"currentColor",fill:"currentColor","stroke-width":"0",transform:"scale(1,-1)"},[s("g",{"data-mml-node":"math"},[s("g",{"data-mml-node":"mi"},[s("path",{"data-c":"1D45B",d:"M21 287Q22 293 24 303T36 341T56 388T89 425T135 442Q171 442 195 424T225 390T231 369Q231 367 232 367L243 378Q304 442 382 442Q436 442 469 415T503 336T465 179T427 52Q427 26 444 26Q450 26 453 27Q482 32 505 65T540 145Q542 153 560 153Q580 153 580 145Q580 144 576 130Q568 101 554 73T508 17T439 -10Q392 -10 371 17T350 73Q350 92 386 193T423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 180T152 343Q153 348 153 366Q153 405 129 405Q91 405 66 305Q60 285 60 284Q58 278 41 278H27Q21 284 21 287Z",style:{"stroke-width":"3"}})])])],-1),F=[o],c=s("mjx-assistive-mml",{unselectable:"on",display:"inline",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",width:"auto",overflow:"hidden"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML"},[s("mi",null,"n")])],-1),C={class:"MathJax",jax:"SVG",style:{direction:"ltr",position:"relative"}},A={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-0.025ex"},xmlns:"http://www.w3.org/2000/svg",width:"1.357ex",height:"1.025ex",role:"img",focusable:"false",viewBox:"0 -442 600 453","aria-hidden":"true"},u=s("g",{stroke:"currentColor",fill:"currentColor","stroke-width":"0",transform:"scale(1,-1)"},[s("g",{"data-mml-node":"math"},[s("g",{"data-mml-node":"mi"},[s("path",{"data-c":"1D45B",d:"M21 287Q22 293 24 303T36 341T56 388T89 425T135 442Q171 442 195 424T225 390T231 369Q231 367 232 367L243 378Q304 442 382 442Q436 442 469 415T503 336T465 179T427 52Q427 26 444 26Q450 26 453 27Q482 32 505 65T540 145Q542 153 560 153Q580 153 580 145Q580 144 576 130Q568 101 554 73T508 17T439 -10Q392 -10 371 17T350 73Q350 92 386 193T423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 180T152 343Q153 348 153 366Q153 405 129 405Q91 405 66 305Q60 285 60 284Q58 278 41 278H27Q21 284 21 287Z",style:{"stroke-width":"3"}})])])],-1),D=[u],B=s("mjx-assistive-mml",{unselectable:"on",display:"inline",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",width:"auto",overflow:"hidden"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML"},[s("mi",null,"n")])],-1),T={class:"MathJax",jax:"SVG",style:{direction:"ltr",position:"relative"}},m={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-0.566ex"},xmlns:"http://www.w3.org/2000/svg",width:"14.876ex",height:"2.262ex",role:"img",focusable:"false",viewBox:"0 -750 6575.4 1000","aria-hidden":"true"},b=t("",1),Q=[b],_=s("mjx-assistive-mml",{unselectable:"on",display:"inline",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",width:"auto",overflow:"hidden"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML"},[s("mo",{stretchy:"false"},"("),s("msub",null,[s("mi",null,"λ"),s("mn",null,"1")]),s("mo",null,","),s("msub",null,[s("mi",null,"λ"),s("mn",null,"2")]),s("mo",null,","),s("mo",null,"."),s("mo",null,"."),s("mo",null,"."),s("mo",null,","),s("msub",null,[s("mi",null,"λ"),s("mi",null,"n")]),s("mo",{stretchy:"false"},")")])],-1),v=t("",34);function w(f,x,V,P,M,q){return n(),a("div",null,[p,s("p",null,[i("In the case of a triangle, barycentric coordinates are a set of three numbers "),s("mjx-container",k,[(n(),a("svg",e,E)),d]),i(", each associated with a vertex of the triangle. Any point within the triangle can be expressed as a weighted average of the vertices, where the weights are the barycentric coordinates. The weights sum to 1, and each is non-negative.")]),s("p",null,[i("For a polygon with "),s("mjx-container",g,[(n(),a("svg",y,F)),c]),i(" vertices, generalized barycentric coordinates are a set of "),s("mjx-container",C,[(n(),a("svg",A,D)),B]),i(" numbers "),s("mjx-container",T,[(n(),a("svg",m,Q)),_]),i(", each associated with a vertex of the polygon. Any point within the polygon can be expressed as a weighted average of the vertices, where the weights are the generalized barycentric coordinates.")]),v])}const R=h(l,[["render",w]]);export{L as __pageData,R as default};
+import{_ as h,c as a,j as s,a as i,a6 as t,o as n}from"./chunks/framework.DJCAxKqx.js";const L=JSON.parse('{"title":"Barycentric coordinates","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/barycentric.md","filePath":"source/methods/barycentric.md","lastUpdated":null}'),l={name:"source/methods/barycentric.md"},p=t("",4),k={class:"MathJax",jax:"SVG",style:{direction:"ltr",position:"relative"}},e={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-0.566ex"},xmlns:"http://www.w3.org/2000/svg",width:"10.692ex",height:"2.262ex",role:"img",focusable:"false",viewBox:"0 -750 4726 1000","aria-hidden":"true"},r=t("",1),E=[r],d=s("mjx-assistive-mml",{unselectable:"on",display:"inline",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",width:"auto",overflow:"hidden"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML"},[s("mo",{stretchy:"false"},"("),s("msub",null,[s("mi",null,"λ"),s("mn",null,"1")]),s("mo",null,","),s("msub",null,[s("mi",null,"λ"),s("mn",null,"2")]),s("mo",null,","),s("msub",null,[s("mi",null,"λ"),s("mn",null,"3")]),s("mo",{stretchy:"false"},")")])],-1),g={class:"MathJax",jax:"SVG",style:{direction:"ltr",position:"relative"}},y={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-0.025ex"},xmlns:"http://www.w3.org/2000/svg",width:"1.357ex",height:"1.025ex",role:"img",focusable:"false",viewBox:"0 -442 600 453","aria-hidden":"true"},o=s("g",{stroke:"currentColor",fill:"currentColor","stroke-width":"0",transform:"scale(1,-1)"},[s("g",{"data-mml-node":"math"},[s("g",{"data-mml-node":"mi"},[s("path",{"data-c":"1D45B",d:"M21 287Q22 293 24 303T36 341T56 388T89 425T135 442Q171 442 195 424T225 390T231 369Q231 367 232 367L243 378Q304 442 382 442Q436 442 469 415T503 336T465 179T427 52Q427 26 444 26Q450 26 453 27Q482 32 505 65T540 145Q542 153 560 153Q580 153 580 145Q580 144 576 130Q568 101 554 73T508 17T439 -10Q392 -10 371 17T350 73Q350 92 386 193T423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 180T152 343Q153 348 153 366Q153 405 129 405Q91 405 66 305Q60 285 60 284Q58 278 41 278H27Q21 284 21 287Z",style:{"stroke-width":"3"}})])])],-1),F=[o],c=s("mjx-assistive-mml",{unselectable:"on",display:"inline",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",width:"auto",overflow:"hidden"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML"},[s("mi",null,"n")])],-1),C={class:"MathJax",jax:"SVG",style:{direction:"ltr",position:"relative"}},A={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-0.025ex"},xmlns:"http://www.w3.org/2000/svg",width:"1.357ex",height:"1.025ex",role:"img",focusable:"false",viewBox:"0 -442 600 453","aria-hidden":"true"},u=s("g",{stroke:"currentColor",fill:"currentColor","stroke-width":"0",transform:"scale(1,-1)"},[s("g",{"data-mml-node":"math"},[s("g",{"data-mml-node":"mi"},[s("path",{"data-c":"1D45B",d:"M21 287Q22 293 24 303T36 341T56 388T89 425T135 442Q171 442 195 424T225 390T231 369Q231 367 232 367L243 378Q304 442 382 442Q436 442 469 415T503 336T465 179T427 52Q427 26 444 26Q450 26 453 27Q482 32 505 65T540 145Q542 153 560 153Q580 153 580 145Q580 144 576 130Q568 101 554 73T508 17T439 -10Q392 -10 371 17T350 73Q350 92 386 193T423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 180T152 343Q153 348 153 366Q153 405 129 405Q91 405 66 305Q60 285 60 284Q58 278 41 278H27Q21 284 21 287Z",style:{"stroke-width":"3"}})])])],-1),D=[u],B=s("mjx-assistive-mml",{unselectable:"on",display:"inline",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",width:"auto",overflow:"hidden"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML"},[s("mi",null,"n")])],-1),T={class:"MathJax",jax:"SVG",style:{direction:"ltr",position:"relative"}},m={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-0.566ex"},xmlns:"http://www.w3.org/2000/svg",width:"14.876ex",height:"2.262ex",role:"img",focusable:"false",viewBox:"0 -750 6575.4 1000","aria-hidden":"true"},b=t("",1),Q=[b],_=s("mjx-assistive-mml",{unselectable:"on",display:"inline",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",width:"auto",overflow:"hidden"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML"},[s("mo",{stretchy:"false"},"("),s("msub",null,[s("mi",null,"λ"),s("mn",null,"1")]),s("mo",null,","),s("msub",null,[s("mi",null,"λ"),s("mn",null,"2")]),s("mo",null,","),s("mo",null,"."),s("mo",null,"."),s("mo",null,"."),s("mo",null,","),s("msub",null,[s("mi",null,"λ"),s("mi",null,"n")]),s("mo",{stretchy:"false"},")")])],-1),v=t("",34);function w(f,x,V,P,M,q){return n(),a("div",null,[p,s("p",null,[i("In the case of a triangle, barycentric coordinates are a set of three numbers "),s("mjx-container",k,[(n(),a("svg",e,E)),d]),i(", each associated with a vertex of the triangle. Any point within the triangle can be expressed as a weighted average of the vertices, where the weights are the barycentric coordinates. The weights sum to 1, and each is non-negative.")]),s("p",null,[i("For a polygon with "),s("mjx-container",g,[(n(),a("svg",y,F)),c]),i(" vertices, generalized barycentric coordinates are a set of "),s("mjx-container",C,[(n(),a("svg",A,D)),B]),i(" numbers "),s("mjx-container",T,[(n(),a("svg",m,Q)),_]),i(", each associated with a vertex of the polygon. Any point within the polygon can be expressed as a weighted average of the vertices, where the weights are the generalized barycentric coordinates.")]),v])}const R=h(l,[["render",w]]);export{L as __pageData,R as default};
diff --git a/dev/assets/source_methods_buffer.md.itYXrP7w.js b/dev/assets/source_methods_buffer.md.a7_Ry1-C.js
similarity index 98%
rename from dev/assets/source_methods_buffer.md.itYXrP7w.js
rename to dev/assets/source_methods_buffer.md.a7_Ry1-C.js
index 1079ec15b..cffd4c678 100644
--- a/dev/assets/source_methods_buffer.md.itYXrP7w.js
+++ b/dev/assets/source_methods_buffer.md.a7_Ry1-C.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as t}from"./chunks/framework.p73Oc50P.js";const y=JSON.parse('{"title":"Buffer","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/buffer.md","filePath":"source/methods/buffer.md","lastUpdated":null}'),n={name:"source/methods/buffer.md"},e=t(`

Buffer

Buffering a geometry means computing the region distance away from it, and returning that region as the new geometry.

As of now, we only support GEOS as the backend, meaning that LibGEOS must be loaded.

julia
function buffer(geometry, distance; kwargs...)
+import{_ as s,c as i,o as a,a6 as t}from"./chunks/framework.DJCAxKqx.js";const y=JSON.parse('{"title":"Buffer","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/buffer.md","filePath":"source/methods/buffer.md","lastUpdated":null}'),n={name:"source/methods/buffer.md"},e=t(`

Buffer

Buffering a geometry means computing the region distance away from it, and returning that region as the new geometry.

As of now, we only support GEOS as the backend, meaning that LibGEOS must be loaded.

julia
function buffer(geometry, distance; kwargs...)
     buffered = buffer(GEOS(; kwargs...), geometry, distance)
     return tuples(buffered)
 end

Below is an error handler similar to the others we have for e.g. segmentize, which checks if there is a method error for the geos backend.

Add an error hint for buffer if LibGEOS is not loaded!

julia
function _buffer_error_hinter(io, exc, argtypes, kwargs)
diff --git a/dev/assets/source_methods_buffer.md.itYXrP7w.lean.js b/dev/assets/source_methods_buffer.md.a7_Ry1-C.lean.js
similarity index 70%
rename from dev/assets/source_methods_buffer.md.itYXrP7w.lean.js
rename to dev/assets/source_methods_buffer.md.a7_Ry1-C.lean.js
index d63b0fdd0..93c2421e9 100644
--- a/dev/assets/source_methods_buffer.md.itYXrP7w.lean.js
+++ b/dev/assets/source_methods_buffer.md.a7_Ry1-C.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as t}from"./chunks/framework.p73Oc50P.js";const y=JSON.parse('{"title":"Buffer","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/buffer.md","filePath":"source/methods/buffer.md","lastUpdated":null}'),n={name:"source/methods/buffer.md"},e=t("",9),h=[e];function k(p,l,r,d,E,o){return a(),i("div",null,h)}const c=s(n,[["render",k]]);export{y as __pageData,c as default};
+import{_ as s,c as i,o as a,a6 as t}from"./chunks/framework.DJCAxKqx.js";const y=JSON.parse('{"title":"Buffer","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/buffer.md","filePath":"source/methods/buffer.md","lastUpdated":null}'),n={name:"source/methods/buffer.md"},e=t("",9),h=[e];function k(p,l,r,d,E,o){return a(),i("div",null,h)}const c=s(n,[["render",k]]);export{y as __pageData,c as default};
diff --git a/dev/assets/source_methods_centroid.md.C3qwVpon.js b/dev/assets/source_methods_centroid.md.CWo2Byua.js
similarity index 99%
rename from dev/assets/source_methods_centroid.md.C3qwVpon.js
rename to dev/assets/source_methods_centroid.md.CWo2Byua.js
index 4caa98eec..0451c5736 100644
--- a/dev/assets/source_methods_centroid.md.C3qwVpon.js
+++ b/dev/assets/source_methods_centroid.md.CWo2Byua.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const h="/GeometryOps.jl/dev/assets/qfcodyd.BD0hVfse.png",t="/GeometryOps.jl/dev/assets/gfwjkti.DHcwB147.png",F=JSON.parse('{"title":"Centroid","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/centroid.md","filePath":"source/methods/centroid.md","lastUpdated":null}'),k={name:"source/methods/centroid.md"},l=n(`

Centroid

julia
export centroid, centroid_and_length, centroid_and_area

What is the centroid?

The centroid is the geometric center of a line string or area(s). Note that the centroid does not need to be inside of a concave area.

Further note that by convention a line, or linear ring, is calculated by weighting the line segments by their length, while polygons and multipolygon centroids are calculated by weighting edge's by their 'area components'.

To provide an example, consider this concave polygon in the shape of a 'C':

julia
import GeometryOps as GO
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const h="/GeometryOps.jl/dev/assets/sbsoihs.BD0hVfse.png",t="/GeometryOps.jl/dev/assets/apmuxfk.DHcwB147.png",F=JSON.parse('{"title":"Centroid","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/centroid.md","filePath":"source/methods/centroid.md","lastUpdated":null}'),k={name:"source/methods/centroid.md"},l=n(`

Centroid

julia
export centroid, centroid_and_length, centroid_and_area

What is the centroid?

The centroid is the geometric center of a line string or area(s). Note that the centroid does not need to be inside of a concave area.

Further note that by convention a line, or linear ring, is calculated by weighting the line segments by their length, while polygons and multipolygon centroids are calculated by weighting edge's by their 'area components'.

To provide an example, consider this concave polygon in the shape of a 'C':

julia
import GeometryOps as GO
 import GeoInterface as GI
 using Makie
 using CairoMakie
diff --git a/dev/assets/source_methods_centroid.md.C3qwVpon.lean.js b/dev/assets/source_methods_centroid.md.CWo2Byua.lean.js
similarity index 64%
rename from dev/assets/source_methods_centroid.md.C3qwVpon.lean.js
rename to dev/assets/source_methods_centroid.md.CWo2Byua.lean.js
index 6099c4828..1c2ce3c95 100644
--- a/dev/assets/source_methods_centroid.md.C3qwVpon.lean.js
+++ b/dev/assets/source_methods_centroid.md.CWo2Byua.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const h="/GeometryOps.jl/dev/assets/qfcodyd.BD0hVfse.png",t="/GeometryOps.jl/dev/assets/gfwjkti.DHcwB147.png",F=JSON.parse('{"title":"Centroid","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/centroid.md","filePath":"source/methods/centroid.md","lastUpdated":null}'),k={name:"source/methods/centroid.md"},l=n("",57),p=[l];function e(r,E,d,g,y,o){return a(),i("div",null,p)}const C=s(k,[["render",e]]);export{F as __pageData,C as default};
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const h="/GeometryOps.jl/dev/assets/sbsoihs.BD0hVfse.png",t="/GeometryOps.jl/dev/assets/apmuxfk.DHcwB147.png",F=JSON.parse('{"title":"Centroid","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/centroid.md","filePath":"source/methods/centroid.md","lastUpdated":null}'),k={name:"source/methods/centroid.md"},l=n("",57),p=[l];function e(r,E,d,g,y,o){return a(),i("div",null,p)}const C=s(k,[["render",e]]);export{F as __pageData,C as default};
diff --git a/dev/assets/source_methods_clipping_clipping_processor.md.D9ySvS68.js b/dev/assets/source_methods_clipping_clipping_processor.md.BzLSDlAm.js
similarity index 99%
rename from dev/assets/source_methods_clipping_clipping_processor.md.D9ySvS68.js
rename to dev/assets/source_methods_clipping_clipping_processor.md.BzLSDlAm.js
index b56a17e92..93295f693 100644
--- a/dev/assets/source_methods_clipping_clipping_processor.md.D9ySvS68.js
+++ b/dev/assets/source_methods_clipping_clipping_processor.md.BzLSDlAm.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const o=JSON.parse('{"title":"Polygon clipping helpers","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/clipping_processor.md","filePath":"source/methods/clipping/clipping_processor.md","lastUpdated":null}'),h={name:"source/methods/clipping/clipping_processor.md"},t=n(`

Polygon clipping helpers

This file contains the shared helper functions for the polygon clipping functionalities.

This enum defines which side of an edge a point is on

julia
@enum PointEdgeSide left=1 right=2 unknown=3

Constants assigned for readability

julia
const enter, exit = true, false
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const o=JSON.parse('{"title":"Polygon clipping helpers","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/clipping_processor.md","filePath":"source/methods/clipping/clipping_processor.md","lastUpdated":null}'),h={name:"source/methods/clipping/clipping_processor.md"},t=n(`

Polygon clipping helpers

This file contains the shared helper functions for the polygon clipping functionalities.

This enum defines which side of an edge a point is on

julia
@enum PointEdgeSide left=1 right=2 unknown=3

Constants assigned for readability

julia
const enter, exit = true, false
 const crossing, bouncing = true, false
 
 #= A point can either be the start or end of an overlapping chain of points between two
diff --git a/dev/assets/source_methods_clipping_clipping_processor.md.D9ySvS68.lean.js b/dev/assets/source_methods_clipping_clipping_processor.md.BzLSDlAm.lean.js
similarity index 75%
rename from dev/assets/source_methods_clipping_clipping_processor.md.D9ySvS68.lean.js
rename to dev/assets/source_methods_clipping_clipping_processor.md.BzLSDlAm.lean.js
index 3f52ec789..3d37a3ab7 100644
--- a/dev/assets/source_methods_clipping_clipping_processor.md.D9ySvS68.lean.js
+++ b/dev/assets/source_methods_clipping_clipping_processor.md.BzLSDlAm.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const o=JSON.parse('{"title":"Polygon clipping helpers","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/clipping_processor.md","filePath":"source/methods/clipping/clipping_processor.md","lastUpdated":null}'),h={name:"source/methods/clipping/clipping_processor.md"},t=n("",169),p=[t];function l(k,e,E,r,d,g){return a(),i("div",null,p)}const c=s(h,[["render",l]]);export{o as __pageData,c as default};
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const o=JSON.parse('{"title":"Polygon clipping helpers","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/clipping_processor.md","filePath":"source/methods/clipping/clipping_processor.md","lastUpdated":null}'),h={name:"source/methods/clipping/clipping_processor.md"},t=n("",169),p=[t];function l(k,e,E,r,d,g){return a(),i("div",null,p)}const c=s(h,[["render",l]]);export{o as __pageData,c as default};
diff --git a/dev/assets/source_methods_clipping_coverage.md.CV_h3dgg.js b/dev/assets/source_methods_clipping_coverage.md.DjT_yCKK.js
similarity index 99%
rename from dev/assets/source_methods_clipping_coverage.md.CV_h3dgg.js
rename to dev/assets/source_methods_clipping_coverage.md.DjT_yCKK.js
index d03b7bde0..947fe070c 100644
--- a/dev/assets/source_methods_clipping_coverage.md.CV_h3dgg.js
+++ b/dev/assets/source_methods_clipping_coverage.md.DjT_yCKK.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const h="/GeometryOps.jl/dev/assets/lwbkjud.Cb0_DiYE.png",c=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/coverage.md","filePath":"source/methods/clipping/coverage.md","lastUpdated":null}'),l={name:"source/methods/clipping/coverage.md"},k=n(`
julia
export coverage

What is coverage?

Coverage is the amount of geometry area within a bounding box defined by the minimum and maximum x and y-coordiantes of that bounding box, or an Extent containing that information.

To provide an example, consider this rectangle:

julia
import GeometryOps as GO
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const h="/GeometryOps.jl/dev/assets/ifcvcfy.Cb0_DiYE.png",c=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/coverage.md","filePath":"source/methods/clipping/coverage.md","lastUpdated":null}'),l={name:"source/methods/clipping/coverage.md"},k=n(`
julia
export coverage

What is coverage?

Coverage is the amount of geometry area within a bounding box defined by the minimum and maximum x and y-coordiantes of that bounding box, or an Extent containing that information.

To provide an example, consider this rectangle:

julia
import GeometryOps as GO
 import GeoInterface as GI
 using Makie
 using CairoMakie
diff --git a/dev/assets/source_methods_clipping_coverage.md.CV_h3dgg.lean.js b/dev/assets/source_methods_clipping_coverage.md.DjT_yCKK.lean.js
similarity index 74%
rename from dev/assets/source_methods_clipping_coverage.md.CV_h3dgg.lean.js
rename to dev/assets/source_methods_clipping_coverage.md.DjT_yCKK.lean.js
index cd9c7c317..a82c2fc46 100644
--- a/dev/assets/source_methods_clipping_coverage.md.CV_h3dgg.lean.js
+++ b/dev/assets/source_methods_clipping_coverage.md.DjT_yCKK.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const h="/GeometryOps.jl/dev/assets/lwbkjud.Cb0_DiYE.png",c=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/coverage.md","filePath":"source/methods/clipping/coverage.md","lastUpdated":null}'),l={name:"source/methods/clipping/coverage.md"},k=n("",58),p=[k];function t(e,E,r,d,g,y){return a(),i("div",null,p)}const o=s(l,[["render",t]]);export{c as __pageData,o as default};
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const h="/GeometryOps.jl/dev/assets/ifcvcfy.Cb0_DiYE.png",c=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/coverage.md","filePath":"source/methods/clipping/coverage.md","lastUpdated":null}'),l={name:"source/methods/clipping/coverage.md"},k=n("",58),p=[k];function t(e,E,r,d,g,y){return a(),i("div",null,p)}const o=s(l,[["render",t]]);export{c as __pageData,o as default};
diff --git a/dev/assets/source_methods_clipping_cut.md.DdjJtpvQ.js b/dev/assets/source_methods_clipping_cut.md.Cr4rl-rJ.js
similarity index 99%
rename from dev/assets/source_methods_clipping_cut.md.DdjJtpvQ.js
rename to dev/assets/source_methods_clipping_cut.md.Cr4rl-rJ.js
index 2e8176eb0..f42877b0b 100644
--- a/dev/assets/source_methods_clipping_cut.md.DdjJtpvQ.js
+++ b/dev/assets/source_methods_clipping_cut.md.Cr4rl-rJ.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const h="/GeometryOps.jl/dev/assets/pqvracw.-VpeHhXX.png",c=JSON.parse('{"title":"Polygon cutting","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/cut.md","filePath":"source/methods/clipping/cut.md","lastUpdated":null}'),t={name:"source/methods/clipping/cut.md"},l=n(`

Polygon cutting

julia
export cut

What is cut?

The cut function cuts a polygon through a line segment. This is inspired by functions such as Matlab's cutpolygon function.

To provide an example, consider the following polygon and line:

julia
import GeoInterface as GI, GeometryOps as GO
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const h="/GeometryOps.jl/dev/assets/cpkzade.-VpeHhXX.png",c=JSON.parse('{"title":"Polygon cutting","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/cut.md","filePath":"source/methods/clipping/cut.md","lastUpdated":null}'),t={name:"source/methods/clipping/cut.md"},l=n(`

Polygon cutting

julia
export cut

What is cut?

The cut function cuts a polygon through a line segment. This is inspired by functions such as Matlab's cutpolygon function.

To provide an example, consider the following polygon and line:

julia
import GeoInterface as GI, GeometryOps as GO
 using CairoMakie
 using Makie
 
diff --git a/dev/assets/source_methods_clipping_cut.md.DdjJtpvQ.lean.js b/dev/assets/source_methods_clipping_cut.md.Cr4rl-rJ.lean.js
similarity index 74%
rename from dev/assets/source_methods_clipping_cut.md.DdjJtpvQ.lean.js
rename to dev/assets/source_methods_clipping_cut.md.Cr4rl-rJ.lean.js
index d986826ee..13c7938c4 100644
--- a/dev/assets/source_methods_clipping_cut.md.DdjJtpvQ.lean.js
+++ b/dev/assets/source_methods_clipping_cut.md.Cr4rl-rJ.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const h="/GeometryOps.jl/dev/assets/pqvracw.-VpeHhXX.png",c=JSON.parse('{"title":"Polygon cutting","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/cut.md","filePath":"source/methods/clipping/cut.md","lastUpdated":null}'),t={name:"source/methods/clipping/cut.md"},l=n("",34),p=[l];function k(e,r,E,d,g,y){return a(),i("div",null,p)}const F=s(t,[["render",k]]);export{c as __pageData,F as default};
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const h="/GeometryOps.jl/dev/assets/cpkzade.-VpeHhXX.png",c=JSON.parse('{"title":"Polygon cutting","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/cut.md","filePath":"source/methods/clipping/cut.md","lastUpdated":null}'),t={name:"source/methods/clipping/cut.md"},l=n("",34),p=[l];function k(e,r,E,d,g,y){return a(),i("div",null,p)}const F=s(t,[["render",k]]);export{c as __pageData,F as default};
diff --git a/dev/assets/source_methods_clipping_difference.md.C9quGnCE.js b/dev/assets/source_methods_clipping_difference.md.DKICJey0.js
similarity index 99%
rename from dev/assets/source_methods_clipping_difference.md.C9quGnCE.js
rename to dev/assets/source_methods_clipping_difference.md.DKICJey0.js
index 9ad813dce..5fe8bc64f 100644
--- a/dev/assets/source_methods_clipping_difference.md.C9quGnCE.js
+++ b/dev/assets/source_methods_clipping_difference.md.DKICJey0.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const o=JSON.parse('{"title":"Difference Polygon Clipping","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/difference.md","filePath":"source/methods/clipping/difference.md","lastUpdated":null}'),l={name:"source/methods/clipping/difference.md"},p=n(`

Difference Polygon Clipping

julia
export difference
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const o=JSON.parse('{"title":"Difference Polygon Clipping","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/difference.md","filePath":"source/methods/clipping/difference.md","lastUpdated":null}'),l={name:"source/methods/clipping/difference.md"},p=n(`

Difference Polygon Clipping

julia
export difference
 
 
 """
diff --git a/dev/assets/source_methods_clipping_difference.md.C9quGnCE.lean.js b/dev/assets/source_methods_clipping_difference.md.DKICJey0.lean.js
similarity index 73%
rename from dev/assets/source_methods_clipping_difference.md.C9quGnCE.lean.js
rename to dev/assets/source_methods_clipping_difference.md.DKICJey0.lean.js
index ac7735136..5ea678c5a 100644
--- a/dev/assets/source_methods_clipping_difference.md.C9quGnCE.lean.js
+++ b/dev/assets/source_methods_clipping_difference.md.DKICJey0.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const o=JSON.parse('{"title":"Difference Polygon Clipping","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/difference.md","filePath":"source/methods/clipping/difference.md","lastUpdated":null}'),l={name:"source/methods/clipping/difference.md"},p=n("",22),t=[p];function h(e,k,r,d,g,y){return a(),i("div",null,t)}const F=s(l,[["render",h]]);export{o as __pageData,F as default};
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const o=JSON.parse('{"title":"Difference Polygon Clipping","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/difference.md","filePath":"source/methods/clipping/difference.md","lastUpdated":null}'),l={name:"source/methods/clipping/difference.md"},p=n("",22),t=[p];function h(e,k,r,d,g,y){return a(),i("div",null,t)}const F=s(l,[["render",h]]);export{o as __pageData,F as default};
diff --git a/dev/assets/source_methods_clipping_intersection.md.Dlpra1AC.js b/dev/assets/source_methods_clipping_intersection.md.BP5gQs4H.js
similarity index 88%
rename from dev/assets/source_methods_clipping_intersection.md.Dlpra1AC.js
rename to dev/assets/source_methods_clipping_intersection.md.BP5gQs4H.js
index defe58c0b..8c656e06c 100644
--- a/dev/assets/source_methods_clipping_intersection.md.Dlpra1AC.js
+++ b/dev/assets/source_methods_clipping_intersection.md.BP5gQs4H.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const o=JSON.parse('{"title":"Geometry Intersection","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/intersection.md","filePath":"source/methods/clipping/intersection.md","lastUpdated":null}'),t={name:"source/methods/clipping/intersection.md"},h=n(`

Geometry Intersection

julia
export intersection, intersection_points
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const o=JSON.parse('{"title":"Geometry Intersection","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/intersection.md","filePath":"source/methods/clipping/intersection.md","lastUpdated":null}'),t={name:"source/methods/clipping/intersection.md"},h=n(`

Geometry Intersection

julia
export intersection, intersection_points
 
 """
     Enum LineOrientation
@@ -153,47 +153,42 @@ import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const o
 end
 
 """
-    intersection_points(
-        geom_a,
-        geom_b,
-    )::Union{
-        ::Vector{::Tuple{::Real, ::Real}},
-        ::Nothing,
-    }
+    intersection_points(geom_a, geom_b, [T::Type])
 
-Return a list of intersection points between two geometries of type GI.Point.
-If no intersection point was possible given geometry extents, returns an empty
-list.
+Return a list of intersection tuple points between two geometries. If no intersection points
+exist, returns an empty list.
+
+# Example
+
+\`\`\`jldoctest
+import GeoInterface as GI, GeometryOps as GO
+
+line1 = GI.Line([(124.584961,-12.768946), (126.738281,-17.224758)])
+line2 = GI.Line([(123.354492,-15.961329), (127.22168,-14.008696)])
+inter_points = GO.intersection_points(line1, line2)

output

julia
1-element Vector{Tuple{Float64, Float64}}:
+ (125.58375366067548, -14.83572303404496)
 """
-intersection_points(geom_a, geom_b, ::Type{T} = Float64) where T <: AbstractFloat =
-    _intersection_points(T, GI.trait(geom_a), geom_a, GI.trait(geom_b), geom_b)
+intersection_points(geom_a, geom_b, ::Type{T} = Float64) where T <: AbstractFloat =
+    _intersection_points(T, GI.trait(geom_a), geom_a, GI.trait(geom_b), geom_b)
 
 
-#= Calculates the list of intersection points between two geometries, inlcuding line
-segments, line strings, linear rings, polygons, and multipolygons. If no intersection points
-were possible given geometry extents or if none are found, return an empty list of
-GI.Points. =#
-function _intersection_points(::Type{T}, ::GI.AbstractTrait, a, ::GI.AbstractTrait, b; exact = _False()) where T

Initialize an empty list of points

julia
    result = GI.Point[]

Check if the geometries extents even overlap

julia
    Extents.intersects(GI.extent(a), GI.extent(b)) || return result

Create a list of edges from the two input geometries

julia
    edges_a, edges_b = map(sort!  to_edges, (a, b))
-    npoints_a, npoints_b  = length(edges_a), length(edges_b)
-    a_closed = npoints_a > 1 && edges_a[1][1] == edges_a[end][1]
-    b_closed = npoints_b > 1 && edges_b[1][1] == edges_b[end][1]
-    if npoints_a > 0 && npoints_b > 0

Loop over pairs of edges and add any intersection points to results

julia
        for i in eachindex(edges_a), j in eachindex(edges_b)
-            line_orient, intr1, _ = _intersection_point(T, edges_a[i], edges_b[j]; exact)

TODO: Add in degenerate intersection points when line_over

julia
            if line_orient == line_cross || line_orient == line_hinge
-                #=
-                Determine if point is on edge (all edge endpoints excluded
-                except for the last edge for an open geometry)
-                =#
-                point, (α, β) = intr1
-                on_a_edge = (!a_closed && i == npoints_a && 0 <= α <= 1) ||
-                    (0 <= α < 1)
-                on_b_edge = (!b_closed && j == npoints_b && 0 <= β <= 1) ||
-                    (0 <= β < 1)
-                if on_a_edge && on_b_edge
-                    push!(result, GI.Point(point))
-                end
-            end
+#= Calculates the list of intersection points between two geometries, inlcuding line
+segments, line strings, linear rings, polygons, and multipolygons. =#
+function _intersection_points(::Type{T}, ::GI.AbstractTrait, a, ::GI.AbstractTrait, b; exact = _True()) where T

Initialize an empty list of points

julia
    result = Tuple{T, T}[]

Check if the geometries extents even overlap

julia
    Extents.intersects(GI.extent(a), GI.extent(b)) || return result

Create a list of edges from the two input geometries

julia
    edges_a, edges_b = map(sort!  to_edges, (a, b))

Loop over pairs of edges and add any unique intersection points to results

julia
    for a_edge in edges_a, b_edge in edges_b
+        line_orient, intr1, intr2 = _intersection_point(T, a_edge, b_edge; exact)
+        line_orient == line_out && continue  # no intersection points
+        pt1, _ = intr1
+        push!(result, pt1)  # if not line_out, there is at least one intersection point
+        if line_orient == line_over # if line_over, there are two intersection points
+            pt2, _ = intr2
+            push!(result, pt2)
         end
     end
+    #= TODO: We might be able to just add unique points with checks on the α and β values
+    returned from \`_intersection_point\`, but this would be different for curves vs polygons
+    vs multipolygons depending on if the shape is closed. This then wouldn't allow using the
+    \`to_edges\` functionality.  =#
+    unique!(sort!(result))
     return result
 end
 
@@ -385,4 +380,4 @@ import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const o
         min_pt, min_dist = b2, dist
         α, β = _clamped_frac(distance(min_pt, a2, T), a_dist, eps(T)), one(T) - eps(T)
     end

Return point with smallest distance

julia
    return _tuple_point(min_pt, T), α, β
-end

Return value of x/y clamped between ϵ and 1 - ϵ

julia
_clamped_frac(x::T, y::T, ϵ = zero(T)) where T = clamp(x / y, ϵ, one(T) - ϵ)

This page was generated using Literate.jl.

`,80),l=[h];function p(k,e,E,r,d,g){return a(),i("div",null,l)}const F=s(t,[["render",p]]);export{o as __pageData,F as default}; +end

Return value of x/y clamped between ϵ and 1 - ϵ

julia
_clamped_frac(x::T, y::T, ϵ = zero(T)) where T = clamp(x / y, ϵ, one(T) - ϵ)

This page was generated using Literate.jl.

`,80),l=[h];function p(k,e,r,E,d,g){return a(),i("div",null,l)}const c=s(t,[["render",p]]);export{o as __pageData,c as default}; diff --git a/dev/assets/source_methods_clipping_intersection.md.Dlpra1AC.lean.js b/dev/assets/source_methods_clipping_intersection.md.BP5gQs4H.lean.js similarity index 52% rename from dev/assets/source_methods_clipping_intersection.md.Dlpra1AC.lean.js rename to dev/assets/source_methods_clipping_intersection.md.BP5gQs4H.lean.js index d698b7181..5bf90995a 100644 --- a/dev/assets/source_methods_clipping_intersection.md.Dlpra1AC.lean.js +++ b/dev/assets/source_methods_clipping_intersection.md.BP5gQs4H.lean.js @@ -1 +1 @@ -import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const o=JSON.parse('{"title":"Geometry Intersection","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/intersection.md","filePath":"source/methods/clipping/intersection.md","lastUpdated":null}'),t={name:"source/methods/clipping/intersection.md"},h=n("",80),l=[h];function p(k,e,E,r,d,g){return a(),i("div",null,l)}const F=s(t,[["render",p]]);export{o as __pageData,F as default}; +import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const o=JSON.parse('{"title":"Geometry Intersection","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/intersection.md","filePath":"source/methods/clipping/intersection.md","lastUpdated":null}'),t={name:"source/methods/clipping/intersection.md"},h=n("",80),l=[h];function p(k,e,r,E,d,g){return a(),i("div",null,l)}const c=s(t,[["render",p]]);export{o as __pageData,c as default}; diff --git a/dev/assets/source_methods_clipping_predicates.md.BPcz9tUr.js b/dev/assets/source_methods_clipping_predicates.md.CaEd1cqF.js similarity index 99% rename from dev/assets/source_methods_clipping_predicates.md.BPcz9tUr.js rename to dev/assets/source_methods_clipping_predicates.md.CaEd1cqF.js index b21eae3e1..9e8205fd6 100644 --- a/dev/assets/source_methods_clipping_predicates.md.BPcz9tUr.js +++ b/dev/assets/source_methods_clipping_predicates.md.CaEd1cqF.js @@ -1,4 +1,4 @@ -import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const o=JSON.parse('{"title":"If we want to inject adaptivity, we would do something like:","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/predicates.md","filePath":"source/methods/clipping/predicates.md","lastUpdated":null}'),t={name:"source/methods/clipping/predicates.md"},h=n(`
julia
module Predicates
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const o=JSON.parse('{"title":"If we want to inject adaptivity, we would do something like:","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/predicates.md","filePath":"source/methods/clipping/predicates.md","lastUpdated":null}'),t={name:"source/methods/clipping/predicates.md"},h=n(`
julia
module Predicates
     using ExactPredicates, ExactPredicates.Codegen
     import ExactPredicates: ext
     import ExactPredicates.Codegen: group!, @genpredicate
diff --git a/dev/assets/source_methods_clipping_predicates.md.BPcz9tUr.lean.js b/dev/assets/source_methods_clipping_predicates.md.CaEd1cqF.lean.js
similarity index 75%
rename from dev/assets/source_methods_clipping_predicates.md.BPcz9tUr.lean.js
rename to dev/assets/source_methods_clipping_predicates.md.CaEd1cqF.lean.js
index 86855fdd5..68aa46908 100644
--- a/dev/assets/source_methods_clipping_predicates.md.BPcz9tUr.lean.js
+++ b/dev/assets/source_methods_clipping_predicates.md.CaEd1cqF.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const o=JSON.parse('{"title":"If we want to inject adaptivity, we would do something like:","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/predicates.md","filePath":"source/methods/clipping/predicates.md","lastUpdated":null}'),t={name:"source/methods/clipping/predicates.md"},h=n("",13),e=[h];function p(l,k,r,d,E,c){return a(),i("div",null,e)}const y=s(t,[["render",p]]);export{o as __pageData,y as default};
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const o=JSON.parse('{"title":"If we want to inject adaptivity, we would do something like:","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/predicates.md","filePath":"source/methods/clipping/predicates.md","lastUpdated":null}'),t={name:"source/methods/clipping/predicates.md"},h=n("",13),e=[h];function p(l,k,r,d,E,c){return a(),i("div",null,e)}const y=s(t,[["render",p]]);export{o as __pageData,y as default};
diff --git a/dev/assets/source_methods_clipping_union.md.DXW2w0zo.js b/dev/assets/source_methods_clipping_union.md.DId4TUIp.js
similarity index 99%
rename from dev/assets/source_methods_clipping_union.md.DXW2w0zo.js
rename to dev/assets/source_methods_clipping_union.md.DId4TUIp.js
index 89d307fd6..ade993b01 100644
--- a/dev/assets/source_methods_clipping_union.md.DXW2w0zo.js
+++ b/dev/assets/source_methods_clipping_union.md.DId4TUIp.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const o=JSON.parse('{"title":"Union Polygon Clipping","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/union.md","filePath":"source/methods/clipping/union.md","lastUpdated":null}'),l={name:"source/methods/clipping/union.md"},h=n(`

Union Polygon Clipping

julia
export union
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const o=JSON.parse('{"title":"Union Polygon Clipping","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/union.md","filePath":"source/methods/clipping/union.md","lastUpdated":null}'),l={name:"source/methods/clipping/union.md"},h=n(`

Union Polygon Clipping

julia
export union
 
 """
     union(geom_a, geom_b, [::Type{T}]; target::Type, fix_multipoly = UnionIntersectingPolygons())
diff --git a/dev/assets/source_methods_clipping_union.md.DXW2w0zo.lean.js b/dev/assets/source_methods_clipping_union.md.DId4TUIp.lean.js
similarity index 72%
rename from dev/assets/source_methods_clipping_union.md.DXW2w0zo.lean.js
rename to dev/assets/source_methods_clipping_union.md.DId4TUIp.lean.js
index 27cc9b0d7..aefb352cc 100644
--- a/dev/assets/source_methods_clipping_union.md.DXW2w0zo.lean.js
+++ b/dev/assets/source_methods_clipping_union.md.DId4TUIp.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const o=JSON.parse('{"title":"Union Polygon Clipping","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/union.md","filePath":"source/methods/clipping/union.md","lastUpdated":null}'),l={name:"source/methods/clipping/union.md"},h=n("",28),p=[h];function t(k,e,r,E,g,y){return a(),i("div",null,p)}const F=s(l,[["render",t]]);export{o as __pageData,F as default};
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const o=JSON.parse('{"title":"Union Polygon Clipping","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/clipping/union.md","filePath":"source/methods/clipping/union.md","lastUpdated":null}'),l={name:"source/methods/clipping/union.md"},h=n("",28),p=[h];function t(k,e,r,E,g,y){return a(),i("div",null,p)}const F=s(l,[["render",t]]);export{o as __pageData,F as default};
diff --git a/dev/assets/source_methods_distance.md.Cb4KbNCH.js b/dev/assets/source_methods_distance.md.CmnoPimL.js
similarity index 99%
rename from dev/assets/source_methods_distance.md.Cb4KbNCH.js
rename to dev/assets/source_methods_distance.md.CmnoPimL.js
index cd8321f59..133e96bbe 100644
--- a/dev/assets/source_methods_distance.md.Cb4KbNCH.js
+++ b/dev/assets/source_methods_distance.md.CmnoPimL.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const h="/GeometryOps.jl/dev/assets/yetjmwu.DiwGEg2f.png",t="/GeometryOps.jl/dev/assets/njvjoen.BwdbZIFa.png",c=JSON.parse('{"title":"Distance and signed distance","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/distance.md","filePath":"source/methods/distance.md","lastUpdated":null}'),k={name:"source/methods/distance.md"},p=n(`

Distance and signed distance

julia
export distance, signed_distance

What is distance? What is signed distance?

Distance is the distance of a point to another geometry. This is always a positive number. If a point is inside of geometry, so on a curve or inside of a polygon, the distance will be zero. Signed distance is mainly used for polygons and multipolygons. If a point is outside of a geometry, signed distance has the same value as distance. However, points within the geometry have a negative distance representing the distance of a point to the closest boundary. Therefore, for all "non-filled" geometries, like curves, the distance will either be postitive or 0.

To provide an example, consider this rectangle:

julia
import GeometryOps as GO
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const h="/GeometryOps.jl/dev/assets/vnvqels.DiwGEg2f.png",t="/GeometryOps.jl/dev/assets/dexpuww.BwdbZIFa.png",c=JSON.parse('{"title":"Distance and signed distance","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/distance.md","filePath":"source/methods/distance.md","lastUpdated":null}'),k={name:"source/methods/distance.md"},p=n(`

Distance and signed distance

julia
export distance, signed_distance

What is distance? What is signed distance?

Distance is the distance of a point to another geometry. This is always a positive number. If a point is inside of geometry, so on a curve or inside of a polygon, the distance will be zero. Signed distance is mainly used for polygons and multipolygons. If a point is outside of a geometry, signed distance has the same value as distance. However, points within the geometry have a negative distance representing the distance of a point to the closest boundary. Therefore, for all "non-filled" geometries, like curves, the distance will either be postitive or 0.

To provide an example, consider this rectangle:

julia
import GeometryOps as GO
 import GeoInterface as GI
 using Makie
 using CairoMakie
diff --git a/dev/assets/source_methods_distance.md.Cb4KbNCH.lean.js b/dev/assets/source_methods_distance.md.CmnoPimL.lean.js
similarity index 65%
rename from dev/assets/source_methods_distance.md.Cb4KbNCH.lean.js
rename to dev/assets/source_methods_distance.md.CmnoPimL.lean.js
index f9377c1e7..70ac8cab7 100644
--- a/dev/assets/source_methods_distance.md.Cb4KbNCH.lean.js
+++ b/dev/assets/source_methods_distance.md.CmnoPimL.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const h="/GeometryOps.jl/dev/assets/yetjmwu.DiwGEg2f.png",t="/GeometryOps.jl/dev/assets/njvjoen.BwdbZIFa.png",c=JSON.parse('{"title":"Distance and signed distance","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/distance.md","filePath":"source/methods/distance.md","lastUpdated":null}'),k={name:"source/methods/distance.md"},p=n("",54),l=[p];function e(d,E,r,g,y,F){return a(),i("div",null,l)}const C=s(k,[["render",e]]);export{c as __pageData,C as default};
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const h="/GeometryOps.jl/dev/assets/vnvqels.DiwGEg2f.png",t="/GeometryOps.jl/dev/assets/dexpuww.BwdbZIFa.png",c=JSON.parse('{"title":"Distance and signed distance","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/distance.md","filePath":"source/methods/distance.md","lastUpdated":null}'),k={name:"source/methods/distance.md"},p=n("",54),l=[p];function e(d,E,r,g,y,F){return a(),i("div",null,l)}const C=s(k,[["render",e]]);export{c as __pageData,C as default};
diff --git a/dev/assets/source_methods_equals.md.B8L6TOEy.lean.js b/dev/assets/source_methods_equals.md.B8L6TOEy.lean.js
deleted file mode 100644
index be36bee93..000000000
--- a/dev/assets/source_methods_equals.md.B8L6TOEy.lean.js
+++ /dev/null
@@ -1 +0,0 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const l="/GeometryOps.jl/dev/assets/hfeeoyc.CgiryX2p.png",y=JSON.parse('{"title":"Equals","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/equals.md","filePath":"source/methods/equals.md","lastUpdated":null}'),t={name:"source/methods/equals.md"},h=n("",47),p=[h];function e(k,r,d,g,E,F){return a(),i("div",null,p)}const c=s(t,[["render",e]]);export{y as __pageData,c as default};
diff --git a/dev/assets/source_methods_equals.md.B8L6TOEy.js b/dev/assets/source_methods_equals.md.BiPoFleH.js
similarity index 99%
rename from dev/assets/source_methods_equals.md.B8L6TOEy.js
rename to dev/assets/source_methods_equals.md.BiPoFleH.js
index 700c4a7b4..92fca0b27 100644
--- a/dev/assets/source_methods_equals.md.B8L6TOEy.js
+++ b/dev/assets/source_methods_equals.md.BiPoFleH.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const l="/GeometryOps.jl/dev/assets/hfeeoyc.CgiryX2p.png",y=JSON.parse('{"title":"Equals","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/equals.md","filePath":"source/methods/equals.md","lastUpdated":null}'),t={name:"source/methods/equals.md"},h=n(`

Equals

julia
export equals

What is equals?

The equals function checks if two geometries are equal. They are equal if they share the same set of points and edges to define the same shape.

To provide an example, consider these two lines:

julia
import GeometryOps as GO
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const l="/GeometryOps.jl/dev/assets/lnziunf.CgiryX2p.png",y=JSON.parse('{"title":"Equals","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/equals.md","filePath":"source/methods/equals.md","lastUpdated":null}'),t={name:"source/methods/equals.md"},h=n(`

Equals

julia
export equals

What is equals?

The equals function checks if two geometries are equal. They are equal if they share the same set of points and edges to define the same shape.

To provide an example, consider these two lines:

julia
import GeometryOps as GO
 import GeoInterface as GI
 using Makie
 using CairoMakie
@@ -262,4 +262,4 @@ import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const l
         has_match || return false
     end
     return true
-end

This page was generated using Literate.jl.

`,47),p=[h];function e(k,r,d,g,E,F){return a(),i("div",null,p)}const c=s(t,[["render",e]]);export{y as __pageData,c as default}; +end

This page was generated using Literate.jl.

`,47),p=[h];function k(e,r,d,g,E,F){return a(),i("div",null,p)}const c=s(t,[["render",k]]);export{y as __pageData,c as default}; diff --git a/dev/assets/source_methods_equals.md.BiPoFleH.lean.js b/dev/assets/source_methods_equals.md.BiPoFleH.lean.js new file mode 100644 index 000000000..84bafd858 --- /dev/null +++ b/dev/assets/source_methods_equals.md.BiPoFleH.lean.js @@ -0,0 +1 @@ +import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const l="/GeometryOps.jl/dev/assets/lnziunf.CgiryX2p.png",y=JSON.parse('{"title":"Equals","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/equals.md","filePath":"source/methods/equals.md","lastUpdated":null}'),t={name:"source/methods/equals.md"},h=n("",47),p=[h];function k(e,r,d,g,E,F){return a(),i("div",null,p)}const c=s(t,[["render",k]]);export{y as __pageData,c as default}; diff --git a/dev/assets/source_methods_geom_relations_contains.md.Cd1msDdA.js b/dev/assets/source_methods_geom_relations_contains.md.BYT2sly9.js similarity index 98% rename from dev/assets/source_methods_geom_relations_contains.md.Cd1msDdA.js rename to dev/assets/source_methods_geom_relations_contains.md.BYT2sly9.js index 5e8f2440e..0a5a3bf0a 100644 --- a/dev/assets/source_methods_geom_relations_contains.md.Cd1msDdA.js +++ b/dev/assets/source_methods_geom_relations_contains.md.BYT2sly9.js @@ -1,4 +1,4 @@ -import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const t="/GeometryOps.jl/dev/assets/gmqbjqs._0R9BbFk.png",y=JSON.parse('{"title":"Contains","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/contains.md","filePath":"source/methods/geom_relations/contains.md","lastUpdated":null}'),e={name:"source/methods/geom_relations/contains.md"},h=n(`

Contains

julia
export contains

What is contains?

The contains function checks if a given geometry completly contains another geometry, or in other words, that the second geometry is completly within the first. This requires that the two interiors intersect and that the interior and boundary of the second geometry is not in the exterior of the first geometry.

To provide an example, consider these two lines:

julia
import GeometryOps as GO
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const t="/GeometryOps.jl/dev/assets/dyxrfhc._0R9BbFk.png",y=JSON.parse('{"title":"Contains","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/contains.md","filePath":"source/methods/geom_relations/contains.md","lastUpdated":null}'),e={name:"source/methods/geom_relations/contains.md"},h=n(`

Contains

julia
export contains

What is contains?

The contains function checks if a given geometry completly contains another geometry, or in other words, that the second geometry is completly within the first. This requires that the two interiors intersect and that the interior and boundary of the second geometry is not in the exterior of the first geometry.

To provide an example, consider these two lines:

julia
import GeometryOps as GO
 import GeoInterface as GI
 using Makie
 using CairoMakie
diff --git a/dev/assets/source_methods_geom_relations_contains.md.Cd1msDdA.lean.js b/dev/assets/source_methods_geom_relations_contains.md.BYT2sly9.lean.js
similarity index 76%
rename from dev/assets/source_methods_geom_relations_contains.md.Cd1msDdA.lean.js
rename to dev/assets/source_methods_geom_relations_contains.md.BYT2sly9.lean.js
index 2c5bacc41..c2fea3c77 100644
--- a/dev/assets/source_methods_geom_relations_contains.md.Cd1msDdA.lean.js
+++ b/dev/assets/source_methods_geom_relations_contains.md.BYT2sly9.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const t="/GeometryOps.jl/dev/assets/gmqbjqs._0R9BbFk.png",y=JSON.parse('{"title":"Contains","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/contains.md","filePath":"source/methods/geom_relations/contains.md","lastUpdated":null}'),e={name:"source/methods/geom_relations/contains.md"},h=n("",18),l=[h];function p(k,r,o,d,g,E){return a(),i("div",null,l)}const F=s(e,[["render",p]]);export{y as __pageData,F as default};
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const t="/GeometryOps.jl/dev/assets/dyxrfhc._0R9BbFk.png",y=JSON.parse('{"title":"Contains","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/contains.md","filePath":"source/methods/geom_relations/contains.md","lastUpdated":null}'),e={name:"source/methods/geom_relations/contains.md"},h=n("",18),l=[h];function p(k,r,o,d,g,E){return a(),i("div",null,l)}const F=s(e,[["render",p]]);export{y as __pageData,F as default};
diff --git a/dev/assets/source_methods_geom_relations_coveredby.md.DSYTv9At.js b/dev/assets/source_methods_geom_relations_coveredby.md.iMvqApp7.js
similarity index 99%
rename from dev/assets/source_methods_geom_relations_coveredby.md.DSYTv9At.js
rename to dev/assets/source_methods_geom_relations_coveredby.md.iMvqApp7.js
index efaccc1cf..d1f19b6ff 100644
--- a/dev/assets/source_methods_geom_relations_coveredby.md.DSYTv9At.js
+++ b/dev/assets/source_methods_geom_relations_coveredby.md.iMvqApp7.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const e="/GeometryOps.jl/dev/assets/kumlmic.DC3TvBOO.png",c=JSON.parse('{"title":"CoveredBy","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/coveredby.md","filePath":"source/methods/geom_relations/coveredby.md","lastUpdated":null}'),l={name:"source/methods/geom_relations/coveredby.md"},h=n(`

CoveredBy

julia
export coveredby

What is coveredby?

The coveredby function checks if one geometry is covered by another geometry. This is an extension of within that does not require the interiors of the two geometries to intersect, but still does require that the interior and boundary of the first geometry isn't outside of the second geometry.

To provide an example, consider this point and line:

julia
import GeometryOps as GO
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const e="/GeometryOps.jl/dev/assets/viiaqvo.DC3TvBOO.png",c=JSON.parse('{"title":"CoveredBy","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/coveredby.md","filePath":"source/methods/geom_relations/coveredby.md","lastUpdated":null}'),l={name:"source/methods/geom_relations/coveredby.md"},h=n(`

CoveredBy

julia
export coveredby

What is coveredby?

The coveredby function checks if one geometry is covered by another geometry. This is an extension of within that does not require the interiors of the two geometries to intersect, but still does require that the interior and boundary of the first geometry isn't outside of the second geometry.

To provide an example, consider this point and line:

julia
import GeometryOps as GO
 import GeoInterface as GI
 using Makie
 using CairoMakie
diff --git a/dev/assets/source_methods_geom_relations_coveredby.md.DSYTv9At.lean.js b/dev/assets/source_methods_geom_relations_coveredby.md.iMvqApp7.lean.js
similarity index 76%
rename from dev/assets/source_methods_geom_relations_coveredby.md.DSYTv9At.lean.js
rename to dev/assets/source_methods_geom_relations_coveredby.md.iMvqApp7.lean.js
index e8ffb417c..8da0e85bf 100644
--- a/dev/assets/source_methods_geom_relations_coveredby.md.DSYTv9At.lean.js
+++ b/dev/assets/source_methods_geom_relations_coveredby.md.iMvqApp7.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const e="/GeometryOps.jl/dev/assets/kumlmic.DC3TvBOO.png",c=JSON.parse('{"title":"CoveredBy","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/coveredby.md","filePath":"source/methods/geom_relations/coveredby.md","lastUpdated":null}'),l={name:"source/methods/geom_relations/coveredby.md"},h=n("",45),t=[h];function p(k,r,E,d,g,o){return a(),i("div",null,t)}const F=s(l,[["render",p]]);export{c as __pageData,F as default};
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const e="/GeometryOps.jl/dev/assets/viiaqvo.DC3TvBOO.png",c=JSON.parse('{"title":"CoveredBy","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/coveredby.md","filePath":"source/methods/geom_relations/coveredby.md","lastUpdated":null}'),l={name:"source/methods/geom_relations/coveredby.md"},h=n("",45),t=[h];function p(k,r,E,d,g,o){return a(),i("div",null,t)}const F=s(l,[["render",p]]);export{c as __pageData,F as default};
diff --git a/dev/assets/source_methods_geom_relations_covers.md.Cn9NnXbx.js b/dev/assets/source_methods_geom_relations_covers.md.Dm7M2xAO.js
similarity index 98%
rename from dev/assets/source_methods_geom_relations_covers.md.Cn9NnXbx.js
rename to dev/assets/source_methods_geom_relations_covers.md.Dm7M2xAO.js
index 6affd8d84..32442cd79 100644
--- a/dev/assets/source_methods_geom_relations_covers.md.Cn9NnXbx.js
+++ b/dev/assets/source_methods_geom_relations_covers.md.Dm7M2xAO.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as e}from"./chunks/framework.p73Oc50P.js";const n="/GeometryOps.jl/dev/assets/kumlmic.DC3TvBOO.png",y=JSON.parse('{"title":"Covers","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/covers.md","filePath":"source/methods/geom_relations/covers.md","lastUpdated":null}'),t={name:"source/methods/geom_relations/covers.md"},p=e(`

Covers

julia
export covers

What is covers?

The covers function checks if a given geometry completly covers another geometry. For this to be true, the "contained" geometry's interior and boundaries must be covered by the "covering" geometry's interior and boundaries. The interiors do not need to overlap.

To provide an example, consider these two lines:

julia
import GeometryOps as GO
+import{_ as s,c as i,o as a,a6 as e}from"./chunks/framework.DJCAxKqx.js";const n="/GeometryOps.jl/dev/assets/viiaqvo.DC3TvBOO.png",y=JSON.parse('{"title":"Covers","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/covers.md","filePath":"source/methods/geom_relations/covers.md","lastUpdated":null}'),t={name:"source/methods/geom_relations/covers.md"},p=e(`

Covers

julia
export covers

What is covers?

The covers function checks if a given geometry completly covers another geometry. For this to be true, the "contained" geometry's interior and boundaries must be covered by the "covering" geometry's interior and boundaries. The interiors do not need to overlap.

To provide an example, consider these two lines:

julia
import GeometryOps as GO
 import GeoInterface as GI
 using Makie
 using CairoMakie
diff --git a/dev/assets/source_methods_geom_relations_covers.md.Cn9NnXbx.lean.js b/dev/assets/source_methods_geom_relations_covers.md.Dm7M2xAO.lean.js
similarity index 75%
rename from dev/assets/source_methods_geom_relations_covers.md.Cn9NnXbx.lean.js
rename to dev/assets/source_methods_geom_relations_covers.md.Dm7M2xAO.lean.js
index e361043d5..a791569e2 100644
--- a/dev/assets/source_methods_geom_relations_covers.md.Cn9NnXbx.lean.js
+++ b/dev/assets/source_methods_geom_relations_covers.md.Dm7M2xAO.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as e}from"./chunks/framework.p73Oc50P.js";const n="/GeometryOps.jl/dev/assets/kumlmic.DC3TvBOO.png",y=JSON.parse('{"title":"Covers","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/covers.md","filePath":"source/methods/geom_relations/covers.md","lastUpdated":null}'),t={name:"source/methods/geom_relations/covers.md"},p=e("",17),l=[p];function h(k,r,o,d,c,g){return a(),i("div",null,l)}const u=s(t,[["render",h]]);export{y as __pageData,u as default};
+import{_ as s,c as i,o as a,a6 as e}from"./chunks/framework.DJCAxKqx.js";const n="/GeometryOps.jl/dev/assets/viiaqvo.DC3TvBOO.png",y=JSON.parse('{"title":"Covers","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/covers.md","filePath":"source/methods/geom_relations/covers.md","lastUpdated":null}'),t={name:"source/methods/geom_relations/covers.md"},p=e("",17),l=[p];function h(k,r,o,d,c,g){return a(),i("div",null,l)}const u=s(t,[["render",h]]);export{y as __pageData,u as default};
diff --git a/dev/assets/source_methods_geom_relations_crosses.md.ZWsJAfQM.js b/dev/assets/source_methods_geom_relations_crosses.md.CsL9V3Uq.js
similarity index 99%
rename from dev/assets/source_methods_geom_relations_crosses.md.ZWsJAfQM.js
rename to dev/assets/source_methods_geom_relations_crosses.md.CsL9V3Uq.js
index 64fe2b5e8..9afec5b47 100644
--- a/dev/assets/source_methods_geom_relations_crosses.md.ZWsJAfQM.js
+++ b/dev/assets/source_methods_geom_relations_crosses.md.CsL9V3Uq.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const y=JSON.parse('{"title":"Crossing checks","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/crosses.md","filePath":"source/methods/geom_relations/crosses.md","lastUpdated":null}'),l={name:"source/methods/geom_relations/crosses.md"},p=n(`

Crossing checks

julia
"""
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const y=JSON.parse('{"title":"Crossing checks","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/crosses.md","filePath":"source/methods/geom_relations/crosses.md","lastUpdated":null}'),l={name:"source/methods/geom_relations/crosses.md"},p=n(`

Crossing checks

julia
"""
      crosses(geom1, geom2)::Bool
 
 Return \`true\` if the intersection results in a geometry whose dimension is one less than
diff --git a/dev/assets/source_methods_geom_relations_crosses.md.ZWsJAfQM.lean.js b/dev/assets/source_methods_geom_relations_crosses.md.CsL9V3Uq.lean.js
similarity index 73%
rename from dev/assets/source_methods_geom_relations_crosses.md.ZWsJAfQM.lean.js
rename to dev/assets/source_methods_geom_relations_crosses.md.CsL9V3Uq.lean.js
index 8e151830a..fcf6ea7fa 100644
--- a/dev/assets/source_methods_geom_relations_crosses.md.ZWsJAfQM.lean.js
+++ b/dev/assets/source_methods_geom_relations_crosses.md.CsL9V3Uq.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const y=JSON.parse('{"title":"Crossing checks","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/crosses.md","filePath":"source/methods/geom_relations/crosses.md","lastUpdated":null}'),l={name:"source/methods/geom_relations/crosses.md"},p=n("",10),h=[p];function t(k,e,r,E,g,d){return a(),i("div",null,h)}const o=s(l,[["render",t]]);export{y as __pageData,o as default};
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const y=JSON.parse('{"title":"Crossing checks","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/crosses.md","filePath":"source/methods/geom_relations/crosses.md","lastUpdated":null}'),l={name:"source/methods/geom_relations/crosses.md"},p=n("",10),h=[p];function t(k,e,r,E,g,d){return a(),i("div",null,h)}const o=s(l,[["render",t]]);export{y as __pageData,o as default};
diff --git a/dev/assets/source_methods_geom_relations_disjoint.md.C7I0fwfX.js b/dev/assets/source_methods_geom_relations_disjoint.md.BB7Umdpw.js
similarity index 99%
rename from dev/assets/source_methods_geom_relations_disjoint.md.C7I0fwfX.js
rename to dev/assets/source_methods_geom_relations_disjoint.md.BB7Umdpw.js
index 95f6e13cd..45bf06995 100644
--- a/dev/assets/source_methods_geom_relations_disjoint.md.C7I0fwfX.js
+++ b/dev/assets/source_methods_geom_relations_disjoint.md.BB7Umdpw.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const t="/GeometryOps.jl/dev/assets/porvekh.C3SxJ3x-.png",c=JSON.parse('{"title":"Disjoint","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/disjoint.md","filePath":"source/methods/geom_relations/disjoint.md","lastUpdated":null}'),h={name:"source/methods/geom_relations/disjoint.md"},l=n(`

Disjoint

julia
export disjoint

What is disjoint?

The disjoint function checks if one geometry is outside of another geometry, without sharing any boundaries or interiors.

To provide an example, consider these two lines:

julia
import GeometryOps as GO
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const t="/GeometryOps.jl/dev/assets/jcsotik.C3SxJ3x-.png",c=JSON.parse('{"title":"Disjoint","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/disjoint.md","filePath":"source/methods/geom_relations/disjoint.md","lastUpdated":null}'),h={name:"source/methods/geom_relations/disjoint.md"},l=n(`

Disjoint

julia
export disjoint

What is disjoint?

The disjoint function checks if one geometry is outside of another geometry, without sharing any boundaries or interiors.

To provide an example, consider these two lines:

julia
import GeometryOps as GO
 import GeoInterface as GI
 using Makie
 using CairoMakie
diff --git a/dev/assets/source_methods_geom_relations_disjoint.md.C7I0fwfX.lean.js b/dev/assets/source_methods_geom_relations_disjoint.md.BB7Umdpw.lean.js
similarity index 76%
rename from dev/assets/source_methods_geom_relations_disjoint.md.C7I0fwfX.lean.js
rename to dev/assets/source_methods_geom_relations_disjoint.md.BB7Umdpw.lean.js
index eba549de0..d9409735f 100644
--- a/dev/assets/source_methods_geom_relations_disjoint.md.C7I0fwfX.lean.js
+++ b/dev/assets/source_methods_geom_relations_disjoint.md.BB7Umdpw.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const t="/GeometryOps.jl/dev/assets/porvekh.C3SxJ3x-.png",c=JSON.parse('{"title":"Disjoint","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/disjoint.md","filePath":"source/methods/geom_relations/disjoint.md","lastUpdated":null}'),h={name:"source/methods/geom_relations/disjoint.md"},l=n("",39),p=[l];function k(e,r,E,g,d,o){return a(),i("div",null,p)}const F=s(h,[["render",k]]);export{c as __pageData,F as default};
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const t="/GeometryOps.jl/dev/assets/jcsotik.C3SxJ3x-.png",c=JSON.parse('{"title":"Disjoint","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/disjoint.md","filePath":"source/methods/geom_relations/disjoint.md","lastUpdated":null}'),h={name:"source/methods/geom_relations/disjoint.md"},l=n("",39),p=[l];function k(e,r,E,g,d,o){return a(),i("div",null,p)}const F=s(h,[["render",k]]);export{c as __pageData,F as default};
diff --git a/dev/assets/source_methods_geom_relations_geom_geom_processors.md.DVnF_iJ5.js b/dev/assets/source_methods_geom_relations_geom_geom_processors.md.DPqscrha.js
similarity index 99%
rename from dev/assets/source_methods_geom_relations_geom_geom_processors.md.DVnF_iJ5.js
rename to dev/assets/source_methods_geom_relations_geom_geom_processors.md.DPqscrha.js
index 50d6f1a56..800bd0f74 100644
--- a/dev/assets/source_methods_geom_relations_geom_geom_processors.md.DVnF_iJ5.js
+++ b/dev/assets/source_methods_geom_relations_geom_geom_processors.md.DPqscrha.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const o=JSON.parse('{"title":"Line-curve interaction","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/geom_geom_processors.md","filePath":"source/methods/geom_relations/geom_geom_processors.md","lastUpdated":null}'),h={name:"source/methods/geom_relations/geom_geom_processors.md"},l=n(`

Line-curve interaction

julia
#= Code is based off of DE-9IM Standards (https://en.wikipedia.org/wiki/DE-9IM)
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const o=JSON.parse('{"title":"Line-curve interaction","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/geom_geom_processors.md","filePath":"source/methods/geom_relations/geom_geom_processors.md","lastUpdated":null}'),h={name:"source/methods/geom_relations/geom_geom_processors.md"},l=n(`

Line-curve interaction

julia
#= Code is based off of DE-9IM Standards (https://en.wikipedia.org/wiki/DE-9IM)
 and attempts a standardized solution for most of the functions.
 =#
 
diff --git a/dev/assets/source_methods_geom_relations_geom_geom_processors.md.DVnF_iJ5.lean.js b/dev/assets/source_methods_geom_relations_geom_geom_processors.md.DPqscrha.lean.js
similarity index 76%
rename from dev/assets/source_methods_geom_relations_geom_geom_processors.md.DVnF_iJ5.lean.js
rename to dev/assets/source_methods_geom_relations_geom_geom_processors.md.DPqscrha.lean.js
index 19150a523..6b57df8a1 100644
--- a/dev/assets/source_methods_geom_relations_geom_geom_processors.md.DVnF_iJ5.lean.js
+++ b/dev/assets/source_methods_geom_relations_geom_geom_processors.md.DPqscrha.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const o=JSON.parse('{"title":"Line-curve interaction","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/geom_geom_processors.md","filePath":"source/methods/geom_relations/geom_geom_processors.md","lastUpdated":null}'),h={name:"source/methods/geom_relations/geom_geom_processors.md"},l=n("",142),t=[l];function p(k,e,r,E,d,g){return a(),i("div",null,t)}const c=s(h,[["render",p]]);export{o as __pageData,c as default};
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const o=JSON.parse('{"title":"Line-curve interaction","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/geom_geom_processors.md","filePath":"source/methods/geom_relations/geom_geom_processors.md","lastUpdated":null}'),h={name:"source/methods/geom_relations/geom_geom_processors.md"},l=n("",142),t=[l];function p(k,e,r,E,d,g){return a(),i("div",null,t)}const c=s(h,[["render",p]]);export{o as __pageData,c as default};
diff --git a/dev/assets/source_methods_geom_relations_intersects.md.C_VheTU5.js b/dev/assets/source_methods_geom_relations_intersects.md.BTeIImvw.js
similarity index 98%
rename from dev/assets/source_methods_geom_relations_intersects.md.C_VheTU5.js
rename to dev/assets/source_methods_geom_relations_intersects.md.BTeIImvw.js
index d33d485bc..f3bb20d82 100644
--- a/dev/assets/source_methods_geom_relations_intersects.md.C_VheTU5.js
+++ b/dev/assets/source_methods_geom_relations_intersects.md.BTeIImvw.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as e}from"./chunks/framework.p73Oc50P.js";const n="/GeometryOps.jl/dev/assets/jdjtoxs.DeeQUply.png",y=JSON.parse('{"title":"Intersection checks","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/intersects.md","filePath":"source/methods/geom_relations/intersects.md","lastUpdated":null}'),t={name:"source/methods/geom_relations/intersects.md"},p=e(`

Intersection checks

julia
export intersects

What is intersects?

The intersects function checks if a given geometry intersects with another geometry, or in other words, the either the interiors or boundaries of the two geometries intersect.

To provide an example, consider these two lines:

julia
import GeometryOps as GO
+import{_ as s,c as i,o as a,a6 as e}from"./chunks/framework.DJCAxKqx.js";const n="/GeometryOps.jl/dev/assets/pctptur.DeeQUply.png",y=JSON.parse('{"title":"Intersection checks","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/intersects.md","filePath":"source/methods/geom_relations/intersects.md","lastUpdated":null}'),t={name:"source/methods/geom_relations/intersects.md"},p=e(`

Intersection checks

julia
export intersects

What is intersects?

The intersects function checks if a given geometry intersects with another geometry, or in other words, the either the interiors or boundaries of the two geometries intersect.

To provide an example, consider these two lines:

julia
import GeometryOps as GO
 import GeoInterface as GI
 using Makie
 using CairoMakie
diff --git a/dev/assets/source_methods_geom_relations_intersects.md.C_VheTU5.lean.js b/dev/assets/source_methods_geom_relations_intersects.md.BTeIImvw.lean.js
similarity index 76%
rename from dev/assets/source_methods_geom_relations_intersects.md.C_VheTU5.lean.js
rename to dev/assets/source_methods_geom_relations_intersects.md.BTeIImvw.lean.js
index f5092d219..a26411832 100644
--- a/dev/assets/source_methods_geom_relations_intersects.md.C_VheTU5.lean.js
+++ b/dev/assets/source_methods_geom_relations_intersects.md.BTeIImvw.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as e}from"./chunks/framework.p73Oc50P.js";const n="/GeometryOps.jl/dev/assets/jdjtoxs.DeeQUply.png",y=JSON.parse('{"title":"Intersection checks","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/intersects.md","filePath":"source/methods/geom_relations/intersects.md","lastUpdated":null}'),t={name:"source/methods/geom_relations/intersects.md"},p=e("",18),l=[p];function h(k,r,o,d,c,g){return a(),i("div",null,l)}const F=s(t,[["render",h]]);export{y as __pageData,F as default};
+import{_ as s,c as i,o as a,a6 as e}from"./chunks/framework.DJCAxKqx.js";const n="/GeometryOps.jl/dev/assets/pctptur.DeeQUply.png",y=JSON.parse('{"title":"Intersection checks","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/intersects.md","filePath":"source/methods/geom_relations/intersects.md","lastUpdated":null}'),t={name:"source/methods/geom_relations/intersects.md"},p=e("",18),l=[p];function h(k,r,o,d,c,g){return a(),i("div",null,l)}const F=s(t,[["render",h]]);export{y as __pageData,F as default};
diff --git a/dev/assets/source_methods_geom_relations_overlaps.md.BK6Ep8oV.js b/dev/assets/source_methods_geom_relations_overlaps.md.CXwX2Yh6.js
similarity index 99%
rename from dev/assets/source_methods_geom_relations_overlaps.md.BK6Ep8oV.js
rename to dev/assets/source_methods_geom_relations_overlaps.md.CXwX2Yh6.js
index 40a849eb2..7faa59e36 100644
--- a/dev/assets/source_methods_geom_relations_overlaps.md.BK6Ep8oV.js
+++ b/dev/assets/source_methods_geom_relations_overlaps.md.CXwX2Yh6.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const l="/GeometryOps.jl/dev/assets/hfeeoyc.CgiryX2p.png",y=JSON.parse('{"title":"Overlaps","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/overlaps.md","filePath":"source/methods/geom_relations/overlaps.md","lastUpdated":null}'),p={name:"source/methods/geom_relations/overlaps.md"},t=n(`

Overlaps

julia
export overlaps

What is overlaps?

The overlaps function checks if two geometries overlap. Two geometries can only overlap if they have the same dimension, and if they overlap, but one is not contained, within, or equal to the other.

Note that this means it is impossible for a single point to overlap with a single point and a line only overlaps with another line if only a section of each line is colinear.

To provide an example, consider these two lines:

julia
import GeometryOps as GO
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const l="/GeometryOps.jl/dev/assets/lnziunf.CgiryX2p.png",y=JSON.parse('{"title":"Overlaps","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/overlaps.md","filePath":"source/methods/geom_relations/overlaps.md","lastUpdated":null}'),p={name:"source/methods/geom_relations/overlaps.md"},t=n(`

Overlaps

julia
export overlaps

What is overlaps?

The overlaps function checks if two geometries overlap. Two geometries can only overlap if they have the same dimension, and if they overlap, but one is not contained, within, or equal to the other.

Note that this means it is impossible for a single point to overlap with a single point and a line only overlaps with another line if only a section of each line is colinear.

To provide an example, consider these two lines:

julia
import GeometryOps as GO
 import GeoInterface as GI
 using Makie
 using CairoMakie
@@ -209,4 +209,4 @@ import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const l
 end

Returns true if there is at least one intersection between two edges.

julia
function _line_intersects(edge_a::Edge, edge_b::Edge)
     seg_val, _, _ = _intersection_point(Float64, edge_a, edge_b; exact = _False())
     return seg_val != line_out
-end

This page was generated using Literate.jl.

`,37),e=[t];function h(k,r,d,o,g,F){return a(),i("div",null,e)}const c=s(p,[["render",h]]);export{y as __pageData,c as default}; +end

This page was generated using Literate.jl.

`,37),e=[t];function h(k,r,d,g,o,F){return a(),i("div",null,e)}const c=s(p,[["render",h]]);export{y as __pageData,c as default}; diff --git a/dev/assets/source_methods_geom_relations_overlaps.md.BK6Ep8oV.lean.js b/dev/assets/source_methods_geom_relations_overlaps.md.CXwX2Yh6.lean.js similarity index 64% rename from dev/assets/source_methods_geom_relations_overlaps.md.BK6Ep8oV.lean.js rename to dev/assets/source_methods_geom_relations_overlaps.md.CXwX2Yh6.lean.js index 4e2684ce1..f86714805 100644 --- a/dev/assets/source_methods_geom_relations_overlaps.md.BK6Ep8oV.lean.js +++ b/dev/assets/source_methods_geom_relations_overlaps.md.CXwX2Yh6.lean.js @@ -1 +1 @@ -import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const l="/GeometryOps.jl/dev/assets/hfeeoyc.CgiryX2p.png",y=JSON.parse('{"title":"Overlaps","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/overlaps.md","filePath":"source/methods/geom_relations/overlaps.md","lastUpdated":null}'),p={name:"source/methods/geom_relations/overlaps.md"},t=n("",37),e=[t];function h(k,r,d,o,g,F){return a(),i("div",null,e)}const c=s(p,[["render",h]]);export{y as __pageData,c as default}; +import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const l="/GeometryOps.jl/dev/assets/lnziunf.CgiryX2p.png",y=JSON.parse('{"title":"Overlaps","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/overlaps.md","filePath":"source/methods/geom_relations/overlaps.md","lastUpdated":null}'),p={name:"source/methods/geom_relations/overlaps.md"},t=n("",37),e=[t];function h(k,r,d,g,o,F){return a(),i("div",null,e)}const c=s(p,[["render",h]]);export{y as __pageData,c as default}; diff --git a/dev/assets/source_methods_geom_relations_touches.md.D9EtFIRn.js b/dev/assets/source_methods_geom_relations_touches.md.BWGnj7y9.js similarity index 99% rename from dev/assets/source_methods_geom_relations_touches.md.D9EtFIRn.js rename to dev/assets/source_methods_geom_relations_touches.md.BWGnj7y9.js index f3c22ae13..0ea236d24 100644 --- a/dev/assets/source_methods_geom_relations_touches.md.D9EtFIRn.js +++ b/dev/assets/source_methods_geom_relations_touches.md.BWGnj7y9.js @@ -1,4 +1,4 @@ -import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const t="/GeometryOps.jl/dev/assets/siayonr.BEFUMtlf.png",c=JSON.parse('{"title":"Touches","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/touches.md","filePath":"source/methods/geom_relations/touches.md","lastUpdated":null}'),h={name:"source/methods/geom_relations/touches.md"},l=n(`

Touches

julia
export touches

What is touches?

The touches function checks if one geometry touches another geometry. In other words, the interiors of the two geometries don't interact, but one of the geometries must have a boundary point that interacts with either the other geometies interior or boundary.

To provide an example, consider these two lines:

julia
import GeometryOps as GO
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const t="/GeometryOps.jl/dev/assets/axcfqou.BEFUMtlf.png",c=JSON.parse('{"title":"Touches","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/touches.md","filePath":"source/methods/geom_relations/touches.md","lastUpdated":null}'),h={name:"source/methods/geom_relations/touches.md"},l=n(`

Touches

julia
export touches

What is touches?

The touches function checks if one geometry touches another geometry. In other words, the interiors of the two geometries don't interact, but one of the geometries must have a boundary point that interacts with either the other geometies interior or boundary.

To provide an example, consider these two lines:

julia
import GeometryOps as GO
 import GeoInterface as GI
 using Makie
 using CairoMakie
diff --git a/dev/assets/source_methods_geom_relations_touches.md.D9EtFIRn.lean.js b/dev/assets/source_methods_geom_relations_touches.md.BWGnj7y9.lean.js
similarity index 75%
rename from dev/assets/source_methods_geom_relations_touches.md.D9EtFIRn.lean.js
rename to dev/assets/source_methods_geom_relations_touches.md.BWGnj7y9.lean.js
index 9af6301ee..b5af41b99 100644
--- a/dev/assets/source_methods_geom_relations_touches.md.D9EtFIRn.lean.js
+++ b/dev/assets/source_methods_geom_relations_touches.md.BWGnj7y9.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const t="/GeometryOps.jl/dev/assets/siayonr.BEFUMtlf.png",c=JSON.parse('{"title":"Touches","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/touches.md","filePath":"source/methods/geom_relations/touches.md","lastUpdated":null}'),h={name:"source/methods/geom_relations/touches.md"},l=n("",41),e=[l];function p(k,r,E,g,d,o){return a(),i("div",null,e)}const F=s(h,[["render",p]]);export{c as __pageData,F as default};
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const t="/GeometryOps.jl/dev/assets/axcfqou.BEFUMtlf.png",c=JSON.parse('{"title":"Touches","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/touches.md","filePath":"source/methods/geom_relations/touches.md","lastUpdated":null}'),h={name:"source/methods/geom_relations/touches.md"},l=n("",41),e=[l];function p(k,r,E,g,d,o){return a(),i("div",null,e)}const F=s(h,[["render",p]]);export{c as __pageData,F as default};
diff --git a/dev/assets/source_methods_geom_relations_within.md.CKEeW7pe.js b/dev/assets/source_methods_geom_relations_within.md.BpgG9EGU.js
similarity index 99%
rename from dev/assets/source_methods_geom_relations_within.md.CKEeW7pe.js
rename to dev/assets/source_methods_geom_relations_within.md.BpgG9EGU.js
index 46fd4dead..01ef19173 100644
--- a/dev/assets/source_methods_geom_relations_within.md.CKEeW7pe.js
+++ b/dev/assets/source_methods_geom_relations_within.md.BpgG9EGU.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const h="/GeometryOps.jl/dev/assets/gmqbjqs._0R9BbFk.png",c=JSON.parse('{"title":"Within","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/within.md","filePath":"source/methods/geom_relations/within.md","lastUpdated":null}'),t={name:"source/methods/geom_relations/within.md"},l=n(`

Within

julia
export within

What is within?

The within function checks if one geometry is inside another geometry. This requires that the two interiors intersect and that the interior and boundary of the first geometry is not in the exterior of the second geometry.

To provide an example, consider these two lines:

julia
import GeometryOps as GO
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const h="/GeometryOps.jl/dev/assets/dyxrfhc._0R9BbFk.png",c=JSON.parse('{"title":"Within","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/within.md","filePath":"source/methods/geom_relations/within.md","lastUpdated":null}'),t={name:"source/methods/geom_relations/within.md"},l=n(`

Within

julia
export within

What is within?

The within function checks if one geometry is inside another geometry. This requires that the two interiors intersect and that the interior and boundary of the first geometry is not in the exterior of the second geometry.

To provide an example, consider these two lines:

julia
import GeometryOps as GO
 import GeoInterface as GI
 using Makie
 using CairoMakie
diff --git a/dev/assets/source_methods_geom_relations_within.md.CKEeW7pe.lean.js b/dev/assets/source_methods_geom_relations_within.md.BpgG9EGU.lean.js
similarity index 75%
rename from dev/assets/source_methods_geom_relations_within.md.CKEeW7pe.lean.js
rename to dev/assets/source_methods_geom_relations_within.md.BpgG9EGU.lean.js
index 4ddc0c92a..92b9e4417 100644
--- a/dev/assets/source_methods_geom_relations_within.md.CKEeW7pe.lean.js
+++ b/dev/assets/source_methods_geom_relations_within.md.BpgG9EGU.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const h="/GeometryOps.jl/dev/assets/gmqbjqs._0R9BbFk.png",c=JSON.parse('{"title":"Within","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/within.md","filePath":"source/methods/geom_relations/within.md","lastUpdated":null}'),t={name:"source/methods/geom_relations/within.md"},l=n("",41),p=[l];function e(k,r,E,g,d,y){return a(),i("div",null,p)}const F=s(t,[["render",e]]);export{c as __pageData,F as default};
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const h="/GeometryOps.jl/dev/assets/dyxrfhc._0R9BbFk.png",c=JSON.parse('{"title":"Within","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/geom_relations/within.md","filePath":"source/methods/geom_relations/within.md","lastUpdated":null}'),t={name:"source/methods/geom_relations/within.md"},l=n("",41),p=[l];function e(k,r,E,g,d,y){return a(),i("div",null,p)}const F=s(t,[["render",e]]);export{c as __pageData,F as default};
diff --git a/dev/assets/source_methods_orientation.md.BWzBK4Gj.js b/dev/assets/source_methods_orientation.md.CzhmZXmk.js
similarity index 99%
rename from dev/assets/source_methods_orientation.md.BWzBK4Gj.js
rename to dev/assets/source_methods_orientation.md.CzhmZXmk.js
index b1316630c..298de76d9 100644
--- a/dev/assets/source_methods_orientation.md.BWzBK4Gj.js
+++ b/dev/assets/source_methods_orientation.md.CzhmZXmk.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const y=JSON.parse('{"title":"Orientation","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/orientation.md","filePath":"source/methods/orientation.md","lastUpdated":null}'),l={name:"source/methods/orientation.md"},p=n(`

Orientation

julia
export isclockwise, isconcave

isclockwise

The orientation of a geometry is whether it runs clockwise or counter-clockwise.

This is defined for linestrings, linear rings, or vectors of points.

isconcave

A polygon is concave if it has at least one interior angle greater than 180 degrees, meaning that the interior of the polygon is not a convex set.

These are all adapted from Turf.jl.

The may not necessarily be what want in the end but work for now!

julia
"""
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const y=JSON.parse('{"title":"Orientation","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/orientation.md","filePath":"source/methods/orientation.md","lastUpdated":null}'),l={name:"source/methods/orientation.md"},p=n(`

Orientation

julia
export isclockwise, isconcave

isclockwise

The orientation of a geometry is whether it runs clockwise or counter-clockwise.

This is defined for linestrings, linear rings, or vectors of points.

isconcave

A polygon is concave if it has at least one interior angle greater than 180 degrees, meaning that the interior of the polygon is not a convex set.

These are all adapted from Turf.jl.

The may not necessarily be what want in the end but work for now!

julia
"""
     isclockwise(line::Union{LineString, Vector{Position}})::Bool
 
 Take a ring and return \`true\` if the line goes clockwise, or \`false\` if the line goes
diff --git a/dev/assets/source_methods_orientation.md.BWzBK4Gj.lean.js b/dev/assets/source_methods_orientation.md.CzhmZXmk.lean.js
similarity index 71%
rename from dev/assets/source_methods_orientation.md.BWzBK4Gj.lean.js
rename to dev/assets/source_methods_orientation.md.CzhmZXmk.lean.js
index 9c09b63d1..da0285e5f 100644
--- a/dev/assets/source_methods_orientation.md.BWzBK4Gj.lean.js
+++ b/dev/assets/source_methods_orientation.md.CzhmZXmk.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const y=JSON.parse('{"title":"Orientation","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/orientation.md","filePath":"source/methods/orientation.md","lastUpdated":null}'),l={name:"source/methods/orientation.md"},p=n("",28),h=[p];function t(e,k,r,d,g,E){return a(),i("div",null,h)}const c=s(l,[["render",t]]);export{y as __pageData,c as default};
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const y=JSON.parse('{"title":"Orientation","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/orientation.md","filePath":"source/methods/orientation.md","lastUpdated":null}'),l={name:"source/methods/orientation.md"},p=n("",28),h=[p];function t(e,k,r,d,g,E){return a(),i("div",null,h)}const c=s(l,[["render",t]]);export{y as __pageData,c as default};
diff --git a/dev/assets/source_methods_polygonize.md.CPc2Ve6O.js b/dev/assets/source_methods_polygonize.md.BcZSpnGy.js
similarity index 99%
rename from dev/assets/source_methods_polygonize.md.CPc2Ve6O.js
rename to dev/assets/source_methods_polygonize.md.BcZSpnGy.js
index 4f98fe092..20aa8d2f5 100644
--- a/dev/assets/source_methods_polygonize.md.CPc2Ve6O.js
+++ b/dev/assets/source_methods_polygonize.md.BcZSpnGy.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const o=JSON.parse('{"title":"Polygonizing raster data","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/polygonize.md","filePath":"source/methods/polygonize.md","lastUpdated":null}'),h={name:"source/methods/polygonize.md"},l=n(`

Polygonizing raster data

julia
export polygonize
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const o=JSON.parse('{"title":"Polygonizing raster data","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/polygonize.md","filePath":"source/methods/polygonize.md","lastUpdated":null}'),h={name:"source/methods/polygonize.md"},l=n(`

Polygonizing raster data

julia
export polygonize
 
 #=
 The methods in this file convert a raster image into a set of polygons,
diff --git a/dev/assets/source_methods_polygonize.md.CPc2Ve6O.lean.js b/dev/assets/source_methods_polygonize.md.BcZSpnGy.lean.js
similarity index 72%
rename from dev/assets/source_methods_polygonize.md.CPc2Ve6O.lean.js
rename to dev/assets/source_methods_polygonize.md.BcZSpnGy.lean.js
index 51556381f..df633919f 100644
--- a/dev/assets/source_methods_polygonize.md.CPc2Ve6O.lean.js
+++ b/dev/assets/source_methods_polygonize.md.BcZSpnGy.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const o=JSON.parse('{"title":"Polygonizing raster data","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/polygonize.md","filePath":"source/methods/polygonize.md","lastUpdated":null}'),h={name:"source/methods/polygonize.md"},l=n("",86),p=[l];function t(k,e,d,E,r,g){return a(),i("div",null,p)}const c=s(h,[["render",t]]);export{o as __pageData,c as default};
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const o=JSON.parse('{"title":"Polygonizing raster data","description":"","frontmatter":{},"headers":[],"relativePath":"source/methods/polygonize.md","filePath":"source/methods/polygonize.md","lastUpdated":null}'),h={name:"source/methods/polygonize.md"},l=n("",86),p=[l];function t(k,e,d,E,r,g){return a(),i("div",null,p)}const c=s(h,[["render",t]]);export{o as __pageData,c as default};
diff --git a/dev/assets/source_not_implemented_yet.md.Cslwi2Lp.js b/dev/assets/source_not_implemented_yet.md.BswTCT_k.js
similarity index 94%
rename from dev/assets/source_not_implemented_yet.md.Cslwi2Lp.js
rename to dev/assets/source_not_implemented_yet.md.BswTCT_k.js
index e748ebe1a..f51299474 100644
--- a/dev/assets/source_not_implemented_yet.md.Cslwi2Lp.js
+++ b/dev/assets/source_not_implemented_yet.md.BswTCT_k.js
@@ -1,4 +1,4 @@
-import{_ as e,c as i,o as t,a6 as s}from"./chunks/framework.p73Oc50P.js";const _=JSON.parse('{"title":"Not implemented yet","description":"","frontmatter":{},"headers":[],"relativePath":"source/not_implemented_yet.md","filePath":"source/not_implemented_yet.md","lastUpdated":null}'),a={name:"source/not_implemented_yet.md"},n=s(`

Not implemented yet

All of the functions in this file are not implemented in Julia yet. Some of them may have implementations in LibGEOS which we can use via an extension, but there is no native-Julia implementation for them.

julia
function symdifference end
+import{_ as e,c as i,o as t,a6 as s}from"./chunks/framework.DJCAxKqx.js";const _=JSON.parse('{"title":"Not implemented yet","description":"","frontmatter":{},"headers":[],"relativePath":"source/not_implemented_yet.md","filePath":"source/not_implemented_yet.md","lastUpdated":null}'),a={name:"source/not_implemented_yet.md"},n=s(`

Not implemented yet

All of the functions in this file are not implemented in Julia yet. Some of them may have implementations in LibGEOS which we can use via an extension, but there is no native-Julia implementation for them.

julia
function symdifference end
 function buffer end
 function convexhull end
 function concavehull end

This page was generated using Literate.jl.

`,5),l=[n];function p(h,o,r,d,c,m){return t(),i("div",null,l)}const u=e(a,[["render",p]]);export{_ as __pageData,u as default}; diff --git a/dev/assets/source_not_implemented_yet.md.Cslwi2Lp.lean.js b/dev/assets/source_not_implemented_yet.md.BswTCT_k.lean.js similarity index 71% rename from dev/assets/source_not_implemented_yet.md.Cslwi2Lp.lean.js rename to dev/assets/source_not_implemented_yet.md.BswTCT_k.lean.js index 03f6c2736..605d8766d 100644 --- a/dev/assets/source_not_implemented_yet.md.Cslwi2Lp.lean.js +++ b/dev/assets/source_not_implemented_yet.md.BswTCT_k.lean.js @@ -1 +1 @@ -import{_ as e,c as i,o as t,a6 as s}from"./chunks/framework.p73Oc50P.js";const _=JSON.parse('{"title":"Not implemented yet","description":"","frontmatter":{},"headers":[],"relativePath":"source/not_implemented_yet.md","filePath":"source/not_implemented_yet.md","lastUpdated":null}'),a={name:"source/not_implemented_yet.md"},n=s("",5),l=[n];function p(h,o,r,d,c,m){return t(),i("div",null,l)}const u=e(a,[["render",p]]);export{_ as __pageData,u as default}; +import{_ as e,c as i,o as t,a6 as s}from"./chunks/framework.DJCAxKqx.js";const _=JSON.parse('{"title":"Not implemented yet","description":"","frontmatter":{},"headers":[],"relativePath":"source/not_implemented_yet.md","filePath":"source/not_implemented_yet.md","lastUpdated":null}'),a={name:"source/not_implemented_yet.md"},n=s("",5),l=[n];function p(h,o,r,d,c,m){return t(),i("div",null,l)}const u=e(a,[["render",p]]);export{_ as __pageData,u as default}; diff --git a/dev/assets/source_primitives.md.khq_sgVW.js b/dev/assets/source_primitives.md.B2xcVnGa.js similarity index 98% rename from dev/assets/source_primitives.md.khq_sgVW.js rename to dev/assets/source_primitives.md.B2xcVnGa.js index d18ec14b0..533ad4598 100644 --- a/dev/assets/source_primitives.md.khq_sgVW.js +++ b/dev/assets/source_primitives.md.B2xcVnGa.js @@ -1,7 +1,7 @@ -import{_ as s,c as i,o as a,a6 as t}from"./chunks/framework.p73Oc50P.js";const o=JSON.parse('{"title":"Primitive functions","description":"","frontmatter":{},"headers":[],"relativePath":"source/primitives.md","filePath":"source/primitives.md","lastUpdated":null}'),n={name:"source/primitives.md"},h=t(`

Primitive functions

julia
export apply, applyreduce, TraitTarget

This file mainly defines the apply and applyreduce functions, and some related functionality.

In general, the idea behind the apply framework is to take as input any geometry, vector of geometries, or feature collection, deconstruct it to the given trait target (any arbitrary GI.AbstractTrait or TraitTarget union thereof, like PointTrait or PolygonTrait) and perform some operation on it.

This allows for a simple and consistent framework within which users can define their own operations trivially easily, and removes a lot of the complexity involved with handling complex geometry structures.

For example, a simple way to flip the x and y coordinates of a geometry is:

julia
flipped_geom = GO.apply(GI.PointTrait(), geom) do p
+import{_ as s,c as i,o as a,a6 as t}from"./chunks/framework.DJCAxKqx.js";const o=JSON.parse('{"title":"Primitive functions","description":"","frontmatter":{},"headers":[],"relativePath":"source/primitives.md","filePath":"source/primitives.md","lastUpdated":null}'),n={name:"source/primitives.md"},h=t(`

Primitive functions

julia
export apply, applyreduce, TraitTarget

This file mainly defines the apply and applyreduce functions, and some related functionality.

In general, the idea behind the apply framework is to take as input any geometry, vector of geometries, or feature collection, deconstruct it to the given trait target (any arbitrary GI.AbstractTrait or TraitTarget union thereof, like PointTrait or PolygonTrait) and perform some operation on it.

This allows for a simple and consistent framework within which users can define their own operations trivially easily, and removes a lot of the complexity involved with handling complex geometry structures.

For example, a simple way to flip the x and y coordinates of a geometry is:

julia
flipped_geom = GO.apply(GI.PointTrait(), geom) do p
     (GI.y(p), GI.x(p))
 end

As simple as that. There's no need to implement your own decomposition because it's done for you.

Functions like flip, reproject, transform, even segmentize and simplify have been implemented using the apply framework. Similarly, centroid, area and distance have been implemented using the applyreduce framework.

Docstrings

Functions

Missing docstring.

Missing docstring for apply. Check Documenter's build log for details.

Missing docstring.

Missing docstring for applyreduce. Check Documenter's build log for details.

Missing docstring.

Missing docstring for GeometryOps.unwrap. Check Documenter's build log for details.

# GeometryOps.flattenFunction.
julia
flatten(target::Type{<:GI.AbstractTrait}, obj)
-flatten(f, target::Type{<:GI.AbstractTrait}, obj)

Lazily flatten any AbstractArray, iterator, FeatureCollectionTrait, FeatureTrait or AbstractGeometryTrait object obj, so that objects with the target trait are returned by the iterator.

If f is passed in it will be applied to the target geometries.

source


# GeometryOps.reconstructFunction.
julia
reconstruct(geom, components)

Reconstruct geom from an iterable of component objects that match its structure.

All objects in components must have the same GeoInterface.trait.

Ususally used in combination with flatten.

source


# GeometryOps.rebuildFunction.
julia
rebuild(geom, child_geoms)

Rebuild a geometry from child geometries.

By default geometries will be rebuilt as a GeoInterface.Wrappers geometry, but rebuild can have methods added to it to dispatch on geometries from other packages and specify how to rebuild them.

(Maybe it should go into GeoInterface.jl)

source


Types

Missing docstring.

Missing docstring for TraitTarget. Check Documenter's build log for details.

Implementation

julia
const THREADED_KEYWORD = "- \`threaded\`: \`true\` or \`false\`. Whether to use multithreading. Defaults to \`false\`."
+flatten(f, target::Type{<:GI.AbstractTrait}, obj)

Lazily flatten any AbstractArray, iterator, FeatureCollectionTrait, FeatureTrait or AbstractGeometryTrait object obj, so that objects with the target trait are returned by the iterator.

If f is passed in it will be applied to the target geometries.

source


# GeometryOps.reconstructFunction.
julia
reconstruct(geom, components)

Reconstruct geom from an iterable of component objects that match its structure.

All objects in components must have the same GeoInterface.trait.

Ususally used in combination with flatten.

source


# GeometryOps.rebuildFunction.
julia
rebuild(geom, child_geoms)

Rebuild a geometry from child geometries.

By default geometries will be rebuilt as a GeoInterface.Wrappers geometry, but rebuild can have methods added to it to dispatch on geometries from other packages and specify how to rebuild them.

(Maybe it should go into GeoInterface.jl)

source


Types

Missing docstring.

Missing docstring for TraitTarget. Check Documenter's build log for details.

Implementation

julia
const THREADED_KEYWORD = "- \`threaded\`: \`true\` or \`false\`. Whether to use multithreading. Defaults to \`false\`."
 const CRS_KEYWORD = "- \`crs\`: The CRS to attach to geometries. Defaults to \`nothing\`."
 const CALC_EXTENT_KEYWORD = "- \`calc_extent\`: \`true\` or \`false\`. Whether to calculate the extent. Defaults to \`false\`."
 
diff --git a/dev/assets/source_primitives.md.khq_sgVW.lean.js b/dev/assets/source_primitives.md.B2xcVnGa.lean.js
similarity index 70%
rename from dev/assets/source_primitives.md.khq_sgVW.lean.js
rename to dev/assets/source_primitives.md.B2xcVnGa.lean.js
index eafc30b90..cd3abd2e5 100644
--- a/dev/assets/source_primitives.md.khq_sgVW.lean.js
+++ b/dev/assets/source_primitives.md.B2xcVnGa.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as t}from"./chunks/framework.p73Oc50P.js";const o=JSON.parse('{"title":"Primitive functions","description":"","frontmatter":{},"headers":[],"relativePath":"source/primitives.md","filePath":"source/primitives.md","lastUpdated":null}'),n={name:"source/primitives.md"},h=t("",194),e=[h];function l(p,k,r,d,g,E){return a(),i("div",null,e)}const c=s(n,[["render",l]]);export{o as __pageData,c as default};
+import{_ as s,c as i,o as a,a6 as t}from"./chunks/framework.DJCAxKqx.js";const o=JSON.parse('{"title":"Primitive functions","description":"","frontmatter":{},"headers":[],"relativePath":"source/primitives.md","filePath":"source/primitives.md","lastUpdated":null}'),n={name:"source/primitives.md"},h=t("",194),e=[h];function l(p,k,r,d,g,E){return a(),i("div",null,e)}const c=s(n,[["render",l]]);export{o as __pageData,c as default};
diff --git a/dev/assets/source_transformations_correction_closed_ring.md.QvRNSk6T.js b/dev/assets/source_transformations_correction_closed_ring.md.DntaP39m.js
similarity index 99%
rename from dev/assets/source_transformations_correction_closed_ring.md.QvRNSk6T.js
rename to dev/assets/source_transformations_correction_closed_ring.md.DntaP39m.js
index 0868fe0a0..ef836220a 100644
--- a/dev/assets/source_transformations_correction_closed_ring.md.QvRNSk6T.js
+++ b/dev/assets/source_transformations_correction_closed_ring.md.DntaP39m.js
@@ -1,4 +1,4 @@
-import{_ as t,c as i,j as s,a,a6 as e,o as n}from"./chunks/framework.p73Oc50P.js";const Q=JSON.parse('{"title":"Closed Rings","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/correction/closed_ring.md","filePath":"source/transformations/correction/closed_ring.md","lastUpdated":null}'),l={name:"source/transformations/correction/closed_ring.md"},h=e(`

Closed Rings

julia
export ClosedRing

A closed ring is a ring that has the same start and end point. This is a requirement for a valid polygon (technically, for a valid LinearRing). This correction is used to ensure that the polygon is valid.

The reason this operates on the polygon level is that several packages are loose about whether they return LinearRings (which is correct) or LineStrings (which is incorrect) for the contents of a polygon. Therefore, we decompose manually to ensure correctness.

Example

Many polygon providers do not close their polygons, which makes them invalid according to the specification. Quite a few geometry algorithms assume that polygons are closed, and leaving them open can lead to incorrect results!

For example, the following polygon is not valid:

julia
import GeoInterface as GI
+import{_ as t,c as i,j as s,a,a6 as e,o as n}from"./chunks/framework.DJCAxKqx.js";const Q=JSON.parse('{"title":"Closed Rings","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/correction/closed_ring.md","filePath":"source/transformations/correction/closed_ring.md","lastUpdated":null}'),l={name:"source/transformations/correction/closed_ring.md"},h=e(`

Closed Rings

julia
export ClosedRing

A closed ring is a ring that has the same start and end point. This is a requirement for a valid polygon (technically, for a valid LinearRing). This correction is used to ensure that the polygon is valid.

The reason this operates on the polygon level is that several packages are loose about whether they return LinearRings (which is correct) or LineStrings (which is incorrect) for the contents of a polygon. Therefore, we decompose manually to ensure correctness.

Example

Many polygon providers do not close their polygons, which makes them invalid according to the specification. Quite a few geometry algorithms assume that polygons are closed, and leaving them open can lead to incorrect results!

For example, the following polygon is not valid:

julia
import GeoInterface as GI
 polygon = GI.Polygon([[(0, 0), (1, 0), (1, 1), (0, 1)]])
GeoInterface.Wrappers.Polygon{false, false, Vector{GeoInterface.Wrappers.LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}}, Nothing, Nothing}(GeoInterface.Wrappers.LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}[GeoInterface.Wrappers.LinearRing{false, false, Vector{Tuple{Int64, Int64}}, Nothing, Nothing}([(0, 0), (1, 0), (1, 1), (0, 1)], nothing, nothing)], nothing, nothing)

even though it will look correct when visualized, and indeed appears correct.

julia
import GeometryOps as GO
 GO.fix(polygon, corrections = [GO.ClosedRing()])
GeoInterface.Wrappers.Polygon{false, false, Vector{GeoInterface.Wrappers.LinearRing{false, false, Vector{Tuple{Float64, Float64}}, Nothing, Nothing}}, Nothing, Nothing}(GeoInterface.Wrappers.LinearRing{false, false, Vector{Tuple{Float64, Float64}}, Nothing, Nothing}[GeoInterface.Wrappers.LinearRing{false, false, Vector{Tuple{Float64, Float64}}, Nothing, Nothing}([(0.0, 0.0), (1.0, 0.0), (1.0, 1.0), (0.0, 1.0), (0.0, 0.0)], nothing, nothing)], nothing, nothing)
`,12),p={class:"MathJax",jax:"SVG",style:{direction:"ltr",position:"relative"}},k={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-0.025ex"},xmlns:"http://www.w3.org/2000/svg",width:"1.357ex",height:"1.025ex",role:"img",focusable:"false",viewBox:"0 -442 600 453","aria-hidden":"true"},r=s("g",{stroke:"currentColor",fill:"currentColor","stroke-width":"0",transform:"scale(1,-1)"},[s("g",{"data-mml-node":"math"},[s("g",{"data-mml-node":"mi"},[s("path",{"data-c":"1D45B",d:"M21 287Q22 293 24 303T36 341T56 388T89 425T135 442Q171 442 195 424T225 390T231 369Q231 367 232 367L243 378Q304 442 382 442Q436 442 469 415T503 336T465 179T427 52Q427 26 444 26Q450 26 453 27Q482 32 505 65T540 145Q542 153 560 153Q580 153 580 145Q580 144 576 130Q568 101 554 73T508 17T439 -10Q392 -10 371 17T350 73Q350 92 386 193T423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 180T152 343Q153 348 153 366Q153 405 129 405Q91 405 66 305Q60 285 60 284Q58 278 41 278H27Q21 284 21 287Z",style:{"stroke-width":"3"}})])])],-1),o=[r],d=s("mjx-assistive-mml",{unselectable:"on",display:"inline",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",width:"auto",overflow:"hidden"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML"},[s("mi",null,"n")])],-1),g={class:"MathJax",jax:"SVG",style:{direction:"ltr",position:"relative"}},c={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-0.186ex"},xmlns:"http://www.w3.org/2000/svg",width:"5.254ex",height:"1.692ex",role:"img",focusable:"false",viewBox:"0 -666 2322.4 748","aria-hidden":"true"},E=e('',1),y=[E],u=s("mjx-assistive-mml",{unselectable:"on",display:"inline",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",width:"auto",overflow:"hidden"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML"},[s("mi",null,"n"),s("mo",null,"+"),s("mn",null,"1")])],-1),F=e(`

Implementation

julia
"""
     ClosedRing() <: GeometryCorrection
diff --git a/dev/assets/source_transformations_correction_closed_ring.md.QvRNSk6T.lean.js b/dev/assets/source_transformations_correction_closed_ring.md.DntaP39m.lean.js
similarity index 97%
rename from dev/assets/source_transformations_correction_closed_ring.md.QvRNSk6T.lean.js
rename to dev/assets/source_transformations_correction_closed_ring.md.DntaP39m.lean.js
index b38502823..39eed1cc8 100644
--- a/dev/assets/source_transformations_correction_closed_ring.md.QvRNSk6T.lean.js
+++ b/dev/assets/source_transformations_correction_closed_ring.md.DntaP39m.lean.js
@@ -1 +1 @@
-import{_ as t,c as i,j as s,a,a6 as e,o as n}from"./chunks/framework.p73Oc50P.js";const Q=JSON.parse('{"title":"Closed Rings","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/correction/closed_ring.md","filePath":"source/transformations/correction/closed_ring.md","lastUpdated":null}'),l={name:"source/transformations/correction/closed_ring.md"},h=e("",12),p={class:"MathJax",jax:"SVG",style:{direction:"ltr",position:"relative"}},k={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-0.025ex"},xmlns:"http://www.w3.org/2000/svg",width:"1.357ex",height:"1.025ex",role:"img",focusable:"false",viewBox:"0 -442 600 453","aria-hidden":"true"},r=s("g",{stroke:"currentColor",fill:"currentColor","stroke-width":"0",transform:"scale(1,-1)"},[s("g",{"data-mml-node":"math"},[s("g",{"data-mml-node":"mi"},[s("path",{"data-c":"1D45B",d:"M21 287Q22 293 24 303T36 341T56 388T89 425T135 442Q171 442 195 424T225 390T231 369Q231 367 232 367L243 378Q304 442 382 442Q436 442 469 415T503 336T465 179T427 52Q427 26 444 26Q450 26 453 27Q482 32 505 65T540 145Q542 153 560 153Q580 153 580 145Q580 144 576 130Q568 101 554 73T508 17T439 -10Q392 -10 371 17T350 73Q350 92 386 193T423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 180T152 343Q153 348 153 366Q153 405 129 405Q91 405 66 305Q60 285 60 284Q58 278 41 278H27Q21 284 21 287Z",style:{"stroke-width":"3"}})])])],-1),o=[r],d=s("mjx-assistive-mml",{unselectable:"on",display:"inline",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",width:"auto",overflow:"hidden"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML"},[s("mi",null,"n")])],-1),g={class:"MathJax",jax:"SVG",style:{direction:"ltr",position:"relative"}},c={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-0.186ex"},xmlns:"http://www.w3.org/2000/svg",width:"5.254ex",height:"1.692ex",role:"img",focusable:"false",viewBox:"0 -666 2322.4 748","aria-hidden":"true"},E=e("",1),y=[E],u=s("mjx-assistive-mml",{unselectable:"on",display:"inline",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",width:"auto",overflow:"hidden"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML"},[s("mi",null,"n"),s("mo",null,"+"),s("mn",null,"1")])],-1),F=e("",12);function m(C,_,v,T,b,f){return n(),i("div",null,[h,s("p",null,[a("You can see that the last point of the ring here is equal to the first point. For a polygon with "),s("mjx-container",p,[(n(),i("svg",k,o)),d]),a(" sides, there should be "),s("mjx-container",g,[(n(),i("svg",c,y)),u]),a(" vertices.")]),F])}const A=t(l,[["render",m]]);export{Q as __pageData,A as default};
+import{_ as t,c as i,j as s,a,a6 as e,o as n}from"./chunks/framework.DJCAxKqx.js";const Q=JSON.parse('{"title":"Closed Rings","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/correction/closed_ring.md","filePath":"source/transformations/correction/closed_ring.md","lastUpdated":null}'),l={name:"source/transformations/correction/closed_ring.md"},h=e("",12),p={class:"MathJax",jax:"SVG",style:{direction:"ltr",position:"relative"}},k={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-0.025ex"},xmlns:"http://www.w3.org/2000/svg",width:"1.357ex",height:"1.025ex",role:"img",focusable:"false",viewBox:"0 -442 600 453","aria-hidden":"true"},r=s("g",{stroke:"currentColor",fill:"currentColor","stroke-width":"0",transform:"scale(1,-1)"},[s("g",{"data-mml-node":"math"},[s("g",{"data-mml-node":"mi"},[s("path",{"data-c":"1D45B",d:"M21 287Q22 293 24 303T36 341T56 388T89 425T135 442Q171 442 195 424T225 390T231 369Q231 367 232 367L243 378Q304 442 382 442Q436 442 469 415T503 336T465 179T427 52Q427 26 444 26Q450 26 453 27Q482 32 505 65T540 145Q542 153 560 153Q580 153 580 145Q580 144 576 130Q568 101 554 73T508 17T439 -10Q392 -10 371 17T350 73Q350 92 386 193T423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 180T152 343Q153 348 153 366Q153 405 129 405Q91 405 66 305Q60 285 60 284Q58 278 41 278H27Q21 284 21 287Z",style:{"stroke-width":"3"}})])])],-1),o=[r],d=s("mjx-assistive-mml",{unselectable:"on",display:"inline",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",width:"auto",overflow:"hidden"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML"},[s("mi",null,"n")])],-1),g={class:"MathJax",jax:"SVG",style:{direction:"ltr",position:"relative"}},c={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-0.186ex"},xmlns:"http://www.w3.org/2000/svg",width:"5.254ex",height:"1.692ex",role:"img",focusable:"false",viewBox:"0 -666 2322.4 748","aria-hidden":"true"},E=e("",1),y=[E],u=s("mjx-assistive-mml",{unselectable:"on",display:"inline",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",width:"auto",overflow:"hidden"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML"},[s("mi",null,"n"),s("mo",null,"+"),s("mn",null,"1")])],-1),F=e("",12);function m(C,_,v,T,b,f){return n(),i("div",null,[h,s("p",null,[a("You can see that the last point of the ring here is equal to the first point. For a polygon with "),s("mjx-container",p,[(n(),i("svg",k,o)),d]),a(" sides, there should be "),s("mjx-container",g,[(n(),i("svg",c,y)),u]),a(" vertices.")]),F])}const A=t(l,[["render",m]]);export{Q as __pageData,A as default};
diff --git a/dev/assets/source_transformations_correction_geometry_correction.md.BM3APl-H.js b/dev/assets/source_transformations_correction_geometry_correction.md.D62mIWpm.js
similarity index 70%
rename from dev/assets/source_transformations_correction_geometry_correction.md.BM3APl-H.js
rename to dev/assets/source_transformations_correction_geometry_correction.md.D62mIWpm.js
index 2ca3df986..47e7b02bf 100644
--- a/dev/assets/source_transformations_correction_geometry_correction.md.BM3APl-H.js
+++ b/dev/assets/source_transformations_correction_geometry_correction.md.D62mIWpm.js
@@ -1,4 +1,4 @@
-import{_ as i,c as s,o as e,a6 as t}from"./chunks/framework.p73Oc50P.js";const g=JSON.parse('{"title":"Geometry Corrections","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/correction/geometry_correction.md","filePath":"source/transformations/correction/geometry_correction.md","lastUpdated":null}'),a={name:"source/transformations/correction/geometry_correction.md"},n=t(`

Geometry Corrections

julia
export fix

This file simply defines the GeometryCorrection abstract type, and the interface that any GeometryCorrection must implement.

A geometry correction is a transformation that is applied to a geometry to correct it in some way.

For example, a ClosedRing correction might be applied to a Polygon to ensure that its exterior ring is closed.

Interface

All GeometryCorrections are callable structs which, when called, apply the correction to the given geometry, and return either a copy or the original geometry (if nothing needed to be corrected).

See below for the full interface specification.

# GeometryOps.GeometryCorrectionType.
julia
abstract type GeometryCorrection

This abstract type represents a geometry correction.

Interface

Any GeometryCorrection must implement two functions: * application_level(::GeometryCorrection)::AbstractGeometryTrait: This function should return the GeoInterface trait that the correction is intended to be applied to, like PointTrait or LineStringTrait or PolygonTrait. * (::GeometryCorrection)(::AbstractGeometryTrait, geometry)::(some_geometry): This function should apply the correction to the given geometry, and return a new geometry.

source


Any geometry correction must implement the interface as given above.

julia
"""
+import{_ as i,c as s,o as e,a6 as t}from"./chunks/framework.DJCAxKqx.js";const g=JSON.parse('{"title":"Geometry Corrections","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/correction/geometry_correction.md","filePath":"source/transformations/correction/geometry_correction.md","lastUpdated":null}'),a={name:"source/transformations/correction/geometry_correction.md"},n=t(`

Geometry Corrections

julia
export fix

This file simply defines the GeometryCorrection abstract type, and the interface that any GeometryCorrection must implement.

A geometry correction is a transformation that is applied to a geometry to correct it in some way.

For example, a ClosedRing correction might be applied to a Polygon to ensure that its exterior ring is closed.

Interface

All GeometryCorrections are callable structs which, when called, apply the correction to the given geometry, and return either a copy or the original geometry (if nothing needed to be corrected).

See below for the full interface specification.

# GeometryOps.GeometryCorrectionType.
julia
abstract type GeometryCorrection

This abstract type represents a geometry correction.

Interface

Any GeometryCorrection must implement two functions: * application_level(::GeometryCorrection)::AbstractGeometryTrait: This function should return the GeoInterface trait that the correction is intended to be applied to, like PointTrait or LineStringTrait or PolygonTrait. * (::GeometryCorrection)(::AbstractGeometryTrait, geometry)::(some_geometry): This function should apply the correction to the given geometry, and return a new geometry.

source


Any geometry correction must implement the interface as given above.

julia
"""
     abstract type GeometryCorrection
 
 This abstract type represents a geometry correction.
@@ -28,4 +28,4 @@ import{_ as i,c as s,o as e,a6 as t}from"./chunks/framework.p73Oc50P.js";const g
         final_geometry = apply(net_function, Trait, final_geometry; kwargs...)
     end
     return final_geometry
-end

Available corrections

# GeometryOps.ClosedRingType.
julia
ClosedRing() <: GeometryCorrection

This correction ensures that a polygon's exterior and interior rings are closed.

It can be called on any geometry correction as usual.

See also GeometryCorrection.

source


# GeometryOps.DiffIntersectingPolygonsType.
julia
DiffIntersectingPolygons() <: GeometryCorrection

This correction ensures that the polygons included in a multipolygon aren't intersecting. If any polygon's are intersecting, they will be made nonintersecting through the difference operation to create a unique set of disjoint (other than potentially connections by a single point) polygons covering the same area. See also GeometryCorrection, UnionIntersectingPolygons.

source


# GeometryOps.GeometryCorrectionType.
julia
abstract type GeometryCorrection

This abstract type represents a geometry correction.

Interface

Any GeometryCorrection must implement two functions: * application_level(::GeometryCorrection)::AbstractGeometryTrait: This function should return the GeoInterface trait that the correction is intended to be applied to, like PointTrait or LineStringTrait or PolygonTrait. * (::GeometryCorrection)(::AbstractGeometryTrait, geometry)::(some_geometry): This function should apply the correction to the given geometry, and return a new geometry.

source


# GeometryOps.UnionIntersectingPolygonsType.
julia
UnionIntersectingPolygons() <: GeometryCorrection

This correction ensures that the polygon's included in a multipolygon aren't intersecting. If any polygon's are intersecting, they will be combined through the union operation to create a unique set of disjoint (other than potentially connections by a single point) polygons covering the same area.

See also GeometryCorrection.

source



This page was generated using Literate.jl.

`,23),r=[n];function o(l,p,h,c,k,d){return e(),s("div",null,r)}const m=i(a,[["render",o]]);export{g as __pageData,m as default}; +end

Available corrections

# GeometryOps.ClosedRingType.
julia
ClosedRing() <: GeometryCorrection

This correction ensures that a polygon's exterior and interior rings are closed.

It can be called on any geometry correction as usual.

See also GeometryCorrection.

source


# GeometryOps.DiffIntersectingPolygonsType.
julia
DiffIntersectingPolygons() <: GeometryCorrection

This correction ensures that the polygons included in a multipolygon aren't intersecting. If any polygon's are intersecting, they will be made nonintersecting through the difference operation to create a unique set of disjoint (other than potentially connections by a single point) polygons covering the same area. See also GeometryCorrection, UnionIntersectingPolygons.

source


# GeometryOps.GeometryCorrectionType.
julia
abstract type GeometryCorrection

This abstract type represents a geometry correction.

Interface

Any GeometryCorrection must implement two functions: * application_level(::GeometryCorrection)::AbstractGeometryTrait: This function should return the GeoInterface trait that the correction is intended to be applied to, like PointTrait or LineStringTrait or PolygonTrait. * (::GeometryCorrection)(::AbstractGeometryTrait, geometry)::(some_geometry): This function should apply the correction to the given geometry, and return a new geometry.

source


# GeometryOps.UnionIntersectingPolygonsType.
julia
UnionIntersectingPolygons() <: GeometryCorrection

This correction ensures that the polygon's included in a multipolygon aren't intersecting. If any polygon's are intersecting, they will be combined through the union operation to create a unique set of disjoint (other than potentially connections by a single point) polygons covering the same area.

See also GeometryCorrection.

source



This page was generated using Literate.jl.

`,23),r=[n];function o(l,p,h,c,k,d){return e(),s("div",null,r)}const m=i(a,[["render",o]]);export{g as __pageData,m as default}; diff --git a/dev/assets/source_transformations_correction_geometry_correction.md.BM3APl-H.lean.js b/dev/assets/source_transformations_correction_geometry_correction.md.D62mIWpm.lean.js similarity index 76% rename from dev/assets/source_transformations_correction_geometry_correction.md.BM3APl-H.lean.js rename to dev/assets/source_transformations_correction_geometry_correction.md.D62mIWpm.lean.js index 5d726e77f..375f8f1c7 100644 --- a/dev/assets/source_transformations_correction_geometry_correction.md.BM3APl-H.lean.js +++ b/dev/assets/source_transformations_correction_geometry_correction.md.D62mIWpm.lean.js @@ -1 +1 @@ -import{_ as i,c as s,o as e,a6 as t}from"./chunks/framework.p73Oc50P.js";const g=JSON.parse('{"title":"Geometry Corrections","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/correction/geometry_correction.md","filePath":"source/transformations/correction/geometry_correction.md","lastUpdated":null}'),a={name:"source/transformations/correction/geometry_correction.md"},n=t("",23),r=[n];function o(l,p,h,c,k,d){return e(),s("div",null,r)}const m=i(a,[["render",o]]);export{g as __pageData,m as default}; +import{_ as i,c as s,o as e,a6 as t}from"./chunks/framework.DJCAxKqx.js";const g=JSON.parse('{"title":"Geometry Corrections","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/correction/geometry_correction.md","filePath":"source/transformations/correction/geometry_correction.md","lastUpdated":null}'),a={name:"source/transformations/correction/geometry_correction.md"},n=t("",23),r=[n];function o(l,p,h,c,k,d){return e(),s("div",null,r)}const m=i(a,[["render",o]]);export{g as __pageData,m as default}; diff --git a/dev/assets/source_transformations_correction_intersecting_polygons.md.D94vW1tf.js b/dev/assets/source_transformations_correction_intersecting_polygons.md.CCU9SBBm.js similarity index 99% rename from dev/assets/source_transformations_correction_intersecting_polygons.md.D94vW1tf.js rename to dev/assets/source_transformations_correction_intersecting_polygons.md.CCU9SBBm.js index 2c494fd94..a7a952ec3 100644 --- a/dev/assets/source_transformations_correction_intersecting_polygons.md.D94vW1tf.js +++ b/dev/assets/source_transformations_correction_intersecting_polygons.md.CCU9SBBm.js @@ -1,4 +1,4 @@ -import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const y=JSON.parse('{"title":"Intersecting Polygons","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/correction/intersecting_polygons.md","filePath":"source/transformations/correction/intersecting_polygons.md","lastUpdated":null}'),l={name:"source/transformations/correction/intersecting_polygons.md"},t=n(`

Intersecting Polygons

julia
export UnionIntersectingPolygons

If the sub-polygons of a multipolygon are intersecting, this makes them invalid according to specification. Each sub-polygon of a multipolygon being disjoint (other than by a single point) is a requirment for a valid multipolygon. However, different libraries may achieve this in different ways.

For example, taking the union of all sub-polygons of a multipolygon will create a new multipolygon where each sub-polygon is disjoint. This can be done with the UnionIntersectingPolygons correction.

The reason this operates on a multipolygon level is that it is easy for users to mistakenly create multipolygon's that overlap, which can then be detrimental to polygon clipping performance and even create wrong answers.

Example

Multipolygon providers may not check that the polygons making up their multipolygons do not intersect, which makes them invalid according to the specification.

For example, the following multipolygon is not valid:

julia
import GeoInterface as GI
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const y=JSON.parse('{"title":"Intersecting Polygons","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/correction/intersecting_polygons.md","filePath":"source/transformations/correction/intersecting_polygons.md","lastUpdated":null}'),l={name:"source/transformations/correction/intersecting_polygons.md"},t=n(`

Intersecting Polygons

julia
export UnionIntersectingPolygons

If the sub-polygons of a multipolygon are intersecting, this makes them invalid according to specification. Each sub-polygon of a multipolygon being disjoint (other than by a single point) is a requirment for a valid multipolygon. However, different libraries may achieve this in different ways.

For example, taking the union of all sub-polygons of a multipolygon will create a new multipolygon where each sub-polygon is disjoint. This can be done with the UnionIntersectingPolygons correction.

The reason this operates on a multipolygon level is that it is easy for users to mistakenly create multipolygon's that overlap, which can then be detrimental to polygon clipping performance and even create wrong answers.

Example

Multipolygon providers may not check that the polygons making up their multipolygons do not intersect, which makes them invalid according to the specification.

For example, the following multipolygon is not valid:

julia
import GeoInterface as GI
 polygon = GI.Polygon([[(0.0, 0.0), (3.0, 0.0), (3.0, 3.0), (0.0, 3.0), (0.0, 0.0)]])
 multipolygon = GI.MultiPolygon([polygon, polygon])
GeoInterface.Wrappers.MultiPolygon{false, false, Vector{GeoInterface.Wrappers.Polygon{false, false, Vector{GeoInterface.Wrappers.LinearRing{false, false, Vector{Tuple{Float64, Float64}}, Nothing, Nothing}}, Nothing, Nothing}}, Nothing, Nothing}(GeoInterface.Wrappers.Polygon{false, false, Vector{GeoInterface.Wrappers.LinearRing{false, false, Vector{Tuple{Float64, Float64}}, Nothing, Nothing}}, Nothing, Nothing}[GeoInterface.Wrappers.Polygon{false, false, Vector{GeoInterface.Wrappers.LinearRing{false, false, Vector{Tuple{Float64, Float64}}, Nothing, Nothing}}, Nothing, Nothing}(GeoInterface.Wrappers.LinearRing{false, false, Vector{Tuple{Float64, Float64}}, Nothing, Nothing}[GeoInterface.Wrappers.LinearRing{false, false, Vector{Tuple{Float64, Float64}}, Nothing, Nothing}([(0.0, 0.0), (3.0, 0.0), (3.0, 3.0), (0.0, 3.0), (0.0, 0.0)], nothing, nothing)], nothing, nothing), GeoInterface.Wrappers.Polygon{false, false, Vector{GeoInterface.Wrappers.LinearRing{false, false, Vector{Tuple{Float64, Float64}}, Nothing, Nothing}}, Nothing, Nothing}(GeoInterface.Wrappers.LinearRing{false, false, Vector{Tuple{Float64, Float64}}, Nothing, Nothing}[GeoInterface.Wrappers.LinearRing{false, false, Vector{Tuple{Float64, Float64}}, Nothing, Nothing}([(0.0, 0.0), (3.0, 0.0), (3.0, 3.0), (0.0, 3.0), (0.0, 0.0)], nothing, nothing)], nothing, nothing)], nothing, nothing)

given that the two sub-polygons are the exact same shape.

julia
import GeometryOps as GO
 GO.fix(multipolygon, corrections = [GO.UnionIntersectingPolygons()])
GeoInterface.Wrappers.MultiPolygon{false, false, Vector{GeoInterface.Wrappers.Polygon{false, false, Vector{GeoInterface.Wrappers.LinearRing{false, false, Vector{Tuple{Float64, Float64}}, Nothing, Nothing}}, Nothing, Nothing}}, Nothing, Nothing}(GeoInterface.Wrappers.Polygon{false, false, Vector{GeoInterface.Wrappers.LinearRing{false, false, Vector{Tuple{Float64, Float64}}, Nothing, Nothing}}, Nothing, Nothing}[GeoInterface.Wrappers.Polygon{false, false, Vector{GeoInterface.Wrappers.LinearRing{false, false, Vector{Tuple{Float64, Float64}}, Nothing, Nothing}}, Nothing, Nothing}(GeoInterface.Wrappers.LinearRing{false, false, Vector{Tuple{Float64, Float64}}, Nothing, Nothing}[GeoInterface.Wrappers.LinearRing{false, false, Vector{Tuple{Float64, Float64}}, Nothing, Nothing}([(0.0, 0.0), (3.0, 0.0), (3.0, 3.0), (0.0, 3.0), (0.0, 0.0)], nothing, nothing)], nothing, nothing)], nothing, nothing)

You can see that the the multipolygon now only contains one sub-polygon, rather than the two identical ones provided.

Implementation

julia
"""
diff --git a/dev/assets/source_transformations_correction_intersecting_polygons.md.D94vW1tf.lean.js b/dev/assets/source_transformations_correction_intersecting_polygons.md.CCU9SBBm.lean.js
similarity index 76%
rename from dev/assets/source_transformations_correction_intersecting_polygons.md.D94vW1tf.lean.js
rename to dev/assets/source_transformations_correction_intersecting_polygons.md.CCU9SBBm.lean.js
index 0f59f6280..736682914 100644
--- a/dev/assets/source_transformations_correction_intersecting_polygons.md.D94vW1tf.lean.js
+++ b/dev/assets/source_transformations_correction_intersecting_polygons.md.CCU9SBBm.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const y=JSON.parse('{"title":"Intersecting Polygons","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/correction/intersecting_polygons.md","filePath":"source/transformations/correction/intersecting_polygons.md","lastUpdated":null}'),l={name:"source/transformations/correction/intersecting_polygons.md"},t=n("",22),h=[t];function p(e,k,r,g,o,E){return a(),i("div",null,h)}const c=s(l,[["render",p]]);export{y as __pageData,c as default};
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const y=JSON.parse('{"title":"Intersecting Polygons","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/correction/intersecting_polygons.md","filePath":"source/transformations/correction/intersecting_polygons.md","lastUpdated":null}'),l={name:"source/transformations/correction/intersecting_polygons.md"},t=n("",22),h=[t];function p(e,k,r,g,o,E){return a(),i("div",null,h)}const c=s(l,[["render",p]]);export{y as __pageData,c as default};
diff --git a/dev/assets/source_transformations_extent.md.C5QeODJy.js b/dev/assets/source_transformations_extent.md.Binhj5-Q.js
similarity index 95%
rename from dev/assets/source_transformations_extent.md.C5QeODJy.js
rename to dev/assets/source_transformations_extent.md.Binhj5-Q.js
index 4ac66fbbd..10c72f4da 100644
--- a/dev/assets/source_transformations_extent.md.C5QeODJy.js
+++ b/dev/assets/source_transformations_extent.md.Binhj5-Q.js
@@ -1,4 +1,4 @@
-import{_ as s,c as e,o as a,a6 as t}from"./chunks/framework.p73Oc50P.js";const u=JSON.parse('{"title":"Extent embedding","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/extent.md","filePath":"source/transformations/extent.md","lastUpdated":null}'),n={name:"source/transformations/extent.md"},i=t(`

Extent embedding

julia
"""
+import{_ as s,c as e,o as a,a6 as t}from"./chunks/framework.DJCAxKqx.js";const u=JSON.parse('{"title":"Extent embedding","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/extent.md","filePath":"source/transformations/extent.md","lastUpdated":null}'),n={name:"source/transformations/extent.md"},i=t(`

Extent embedding

julia
"""
     embed_extent(obj)
 
 Recursively wrap the object with a GeoInterface.jl geometry,
diff --git a/dev/assets/source_transformations_extent.md.C5QeODJy.lean.js b/dev/assets/source_transformations_extent.md.Binhj5-Q.lean.js
similarity index 72%
rename from dev/assets/source_transformations_extent.md.C5QeODJy.lean.js
rename to dev/assets/source_transformations_extent.md.Binhj5-Q.lean.js
index 09b499e94..2980d387b 100644
--- a/dev/assets/source_transformations_extent.md.C5QeODJy.lean.js
+++ b/dev/assets/source_transformations_extent.md.Binhj5-Q.lean.js
@@ -1 +1 @@
-import{_ as s,c as e,o as a,a6 as t}from"./chunks/framework.p73Oc50P.js";const u=JSON.parse('{"title":"Extent embedding","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/extent.md","filePath":"source/transformations/extent.md","lastUpdated":null}'),n={name:"source/transformations/extent.md"},i=t("",6),l=[i];function p(r,h,d,o,c,k){return a(),e("div",null,l)}const m=s(n,[["render",p]]);export{u as __pageData,m as default};
+import{_ as s,c as e,o as a,a6 as t}from"./chunks/framework.DJCAxKqx.js";const u=JSON.parse('{"title":"Extent embedding","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/extent.md","filePath":"source/transformations/extent.md","lastUpdated":null}'),n={name:"source/transformations/extent.md"},i=t("",6),l=[i];function p(r,h,d,o,c,k){return a(),e("div",null,l)}const m=s(n,[["render",p]]);export{u as __pageData,m as default};
diff --git a/dev/assets/source_transformations_flip.md.DnLXdL10.js b/dev/assets/source_transformations_flip.md.nGRYw1RJ.js
similarity index 97%
rename from dev/assets/source_transformations_flip.md.DnLXdL10.js
rename to dev/assets/source_transformations_flip.md.nGRYw1RJ.js
index 2c99fa906..d63ab4259 100644
--- a/dev/assets/source_transformations_flip.md.DnLXdL10.js
+++ b/dev/assets/source_transformations_flip.md.nGRYw1RJ.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const y=JSON.parse('{"title":"Coordinate flipping","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/flip.md","filePath":"source/transformations/flip.md","lastUpdated":null}'),p={name:"source/transformations/flip.md"},t=n(`

Coordinate flipping

This is a simple example of how to use the apply functionality in a function, by flipping the x and y coordinates of a geometry.

julia
"""
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const y=JSON.parse('{"title":"Coordinate flipping","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/flip.md","filePath":"source/transformations/flip.md","lastUpdated":null}'),p={name:"source/transformations/flip.md"},t=n(`

Coordinate flipping

This is a simple example of how to use the apply functionality in a function, by flipping the x and y coordinates of a geometry.

julia
"""
     flip(obj)
 
 Swap all of the x and y coordinates in obj, otherwise
diff --git a/dev/assets/source_transformations_flip.md.DnLXdL10.lean.js b/dev/assets/source_transformations_flip.md.nGRYw1RJ.lean.js
similarity index 72%
rename from dev/assets/source_transformations_flip.md.DnLXdL10.lean.js
rename to dev/assets/source_transformations_flip.md.nGRYw1RJ.lean.js
index eacf04091..3d3b260cb 100644
--- a/dev/assets/source_transformations_flip.md.DnLXdL10.lean.js
+++ b/dev/assets/source_transformations_flip.md.nGRYw1RJ.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const y=JSON.parse('{"title":"Coordinate flipping","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/flip.md","filePath":"source/transformations/flip.md","lastUpdated":null}'),p={name:"source/transformations/flip.md"},t=n("",5),l=[t];function h(e,k,r,d,o,g){return a(),i("div",null,l)}const c=s(p,[["render",h]]);export{y as __pageData,c as default};
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const y=JSON.parse('{"title":"Coordinate flipping","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/flip.md","filePath":"source/transformations/flip.md","lastUpdated":null}'),p={name:"source/transformations/flip.md"},t=n("",5),l=[t];function h(e,k,r,d,o,g){return a(),i("div",null,l)}const c=s(p,[["render",h]]);export{y as __pageData,c as default};
diff --git a/dev/assets/source_transformations_reproject.md.ejT_ZLfU.js b/dev/assets/source_transformations_reproject.md.HOlLv8MG.js
similarity index 98%
rename from dev/assets/source_transformations_reproject.md.ejT_ZLfU.js
rename to dev/assets/source_transformations_reproject.md.HOlLv8MG.js
index 11158b954..6bec904f8 100644
--- a/dev/assets/source_transformations_reproject.md.ejT_ZLfU.js
+++ b/dev/assets/source_transformations_reproject.md.HOlLv8MG.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as e}from"./chunks/framework.p73Oc50P.js";const y=JSON.parse('{"title":"Geometry reprojection","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/reproject.md","filePath":"source/transformations/reproject.md","lastUpdated":null}'),n={name:"source/transformations/reproject.md"},t=e('

Geometry reprojection

julia
export reproject

This file is pretty simple - it simply reprojects a geometry pointwise from one CRS to another. It uses the Proj package for the transformation, but this could be moved to an extension if needed.

Note that the actual implementation is in the GeometryOpsProjExt extension module.

This works using the apply functionality.

julia
"""\n    reproject(geometry; source_crs, target_crs, transform, always_xy, time)\n    reproject(geometry, source_crs, target_crs; always_xy, time)\n    reproject(geometry, transform; always_xy, time)\n\nReproject any GeoInterface.jl compatible `geometry` from `source_crs` to `target_crs`.\n\nThe returned object will be constructed from `GeoInterface.WrapperGeometry`\ngeometries, wrapping views of a `Vector{Proj.Point{D}}`, where `D` is the dimension.\n\n!!! tip\n    The `Proj.jl` package must be loaded for this method to work,\n    since it is implemented in a package extension.\n\n# Arguments\n\n- `geometry`: Any GeoInterface.jl compatible geometries.\n- `source_crs`: the source coordinate referece system, as a GeoFormatTypes.jl object or a string.\n- `target_crs`: the target coordinate referece system, as a GeoFormatTypes.jl object or a string.\n\nIf these a passed as keywords, `transform` will take priority.\nWithout it `target_crs` is always needed, and `source_crs` is\nneeded if it is not retreivable from the geometry with `GeoInterface.crs(geometry)`.\n\n# Keywords\n\n- `always_xy`: force x, y coordinate order, `true` by default.\n    `false` will expect and return points in the crs coordinate order.\n- `time`: the time for the coordinates. `Inf` by default.\n$APPLY_KEYWORDS\n"""\nfunction reproject end

Method error handling

We also inject a method error handler, which prints a suggestion if the Proj extension is not loaded.

julia
function _reproject_error_hinter(io, exc, argtypes, kwargs)\n    if isnothing(Base.get_extension(GeometryOps, :GeometryOpsProjExt)) && exc.f == reproject\n        print(io, "\\n\\nThe `reproject` method requires the Proj.jl package to be explicitly loaded.\\n")\n        print(io, "You can do this by simply typing ")\n        printstyled(io, "using Proj"; color = :cyan, bold = true)\n        println(io, " in your REPL, \\nor otherwise loading Proj.jl via using or import.")\n    else # this is a more general error\n        nothing\n    end\nend

This page was generated using Literate.jl.

',11),p=[t];function l(r,h,o,k,d,c){return a(),i("div",null,p)}const F=s(n,[["render",l]]);export{y as __pageData,F as default}; +import{_ as s,c as i,o as a,a6 as e}from"./chunks/framework.DJCAxKqx.js";const y=JSON.parse('{"title":"Geometry reprojection","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/reproject.md","filePath":"source/transformations/reproject.md","lastUpdated":null}'),n={name:"source/transformations/reproject.md"},t=e('

Geometry reprojection

julia
export reproject

This file is pretty simple - it simply reprojects a geometry pointwise from one CRS to another. It uses the Proj package for the transformation, but this could be moved to an extension if needed.

Note that the actual implementation is in the GeometryOpsProjExt extension module.

This works using the apply functionality.

julia
"""\n    reproject(geometry; source_crs, target_crs, transform, always_xy, time)\n    reproject(geometry, source_crs, target_crs; always_xy, time)\n    reproject(geometry, transform; always_xy, time)\n\nReproject any GeoInterface.jl compatible `geometry` from `source_crs` to `target_crs`.\n\nThe returned object will be constructed from `GeoInterface.WrapperGeometry`\ngeometries, wrapping views of a `Vector{Proj.Point{D}}`, where `D` is the dimension.\n\n!!! tip\n    The `Proj.jl` package must be loaded for this method to work,\n    since it is implemented in a package extension.\n\n# Arguments\n\n- `geometry`: Any GeoInterface.jl compatible geometries.\n- `source_crs`: the source coordinate referece system, as a GeoFormatTypes.jl object or a string.\n- `target_crs`: the target coordinate referece system, as a GeoFormatTypes.jl object or a string.\n\nIf these a passed as keywords, `transform` will take priority.\nWithout it `target_crs` is always needed, and `source_crs` is\nneeded if it is not retreivable from the geometry with `GeoInterface.crs(geometry)`.\n\n# Keywords\n\n- `always_xy`: force x, y coordinate order, `true` by default.\n    `false` will expect and return points in the crs coordinate order.\n- `time`: the time for the coordinates. `Inf` by default.\n$APPLY_KEYWORDS\n"""\nfunction reproject end

Method error handling

We also inject a method error handler, which prints a suggestion if the Proj extension is not loaded.

julia
function _reproject_error_hinter(io, exc, argtypes, kwargs)\n    if isnothing(Base.get_extension(GeometryOps, :GeometryOpsProjExt)) && exc.f == reproject\n        print(io, "\\n\\nThe `reproject` method requires the Proj.jl package to be explicitly loaded.\\n")\n        print(io, "You can do this by simply typing ")\n        printstyled(io, "using Proj"; color = :cyan, bold = true)\n        println(io, " in your REPL, \\nor otherwise loading Proj.jl via using or import.")\n    else # this is a more general error\n        nothing\n    end\nend

This page was generated using Literate.jl.

',11),p=[t];function l(r,h,o,k,d,c){return a(),i("div",null,p)}const F=s(n,[["render",l]]);export{y as __pageData,F as default}; diff --git a/dev/assets/source_transformations_reproject.md.ejT_ZLfU.lean.js b/dev/assets/source_transformations_reproject.md.HOlLv8MG.lean.js similarity index 73% rename from dev/assets/source_transformations_reproject.md.ejT_ZLfU.lean.js rename to dev/assets/source_transformations_reproject.md.HOlLv8MG.lean.js index b1721fd0b..f0765f567 100644 --- a/dev/assets/source_transformations_reproject.md.ejT_ZLfU.lean.js +++ b/dev/assets/source_transformations_reproject.md.HOlLv8MG.lean.js @@ -1 +1 @@ -import{_ as s,c as i,o as a,a6 as e}from"./chunks/framework.p73Oc50P.js";const y=JSON.parse('{"title":"Geometry reprojection","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/reproject.md","filePath":"source/transformations/reproject.md","lastUpdated":null}'),n={name:"source/transformations/reproject.md"},t=e("",11),p=[t];function l(r,h,o,k,d,c){return a(),i("div",null,p)}const F=s(n,[["render",l]]);export{y as __pageData,F as default}; +import{_ as s,c as i,o as a,a6 as e}from"./chunks/framework.DJCAxKqx.js";const y=JSON.parse('{"title":"Geometry reprojection","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/reproject.md","filePath":"source/transformations/reproject.md","lastUpdated":null}'),n={name:"source/transformations/reproject.md"},t=e("",11),p=[t];function l(r,h,o,k,d,c){return a(),i("div",null,p)}const F=s(n,[["render",l]]);export{y as __pageData,F as default}; diff --git a/dev/assets/source_transformations_segmentize.md.BitY5_vv.lean.js b/dev/assets/source_transformations_segmentize.md.BitY5_vv.lean.js deleted file mode 100644 index 89dacf8fe..000000000 --- a/dev/assets/source_transformations_segmentize.md.BitY5_vv.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const h="/GeometryOps.jl/dev/assets/swmzlql.BOOG5oTW.png",t="/GeometryOps.jl/dev/assets/qzskghj.DUK_gcrd.png",c=JSON.parse('{"title":"Segmentize","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/segmentize.md","filePath":"source/transformations/segmentize.md","lastUpdated":null}'),l={name:"source/transformations/segmentize.md"},e=n("",34),k=[e];function p(r,E,d,g,y,o){return a(),i("div",null,k)}const C=s(l,[["render",p]]);export{c as __pageData,C as default}; diff --git a/dev/assets/source_transformations_segmentize.md.BitY5_vv.js b/dev/assets/source_transformations_segmentize.md.C-3cSSM9.js similarity index 99% rename from dev/assets/source_transformations_segmentize.md.BitY5_vv.js rename to dev/assets/source_transformations_segmentize.md.C-3cSSM9.js index aa0446c23..0920ce95f 100644 --- a/dev/assets/source_transformations_segmentize.md.BitY5_vv.js +++ b/dev/assets/source_transformations_segmentize.md.C-3cSSM9.js @@ -1,4 +1,4 @@ -import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const h="/GeometryOps.jl/dev/assets/swmzlql.BOOG5oTW.png",t="/GeometryOps.jl/dev/assets/qzskghj.DUK_gcrd.png",c=JSON.parse('{"title":"Segmentize","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/segmentize.md","filePath":"source/transformations/segmentize.md","lastUpdated":null}'),l={name:"source/transformations/segmentize.md"},e=n(`

Segmentize

julia
export segmentize
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const h="/GeometryOps.jl/dev/assets/droziru.BOOG5oTW.png",t="/GeometryOps.jl/dev/assets/xjpkwyk.D9MTpgpf.png",c=JSON.parse('{"title":"Segmentize","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/segmentize.md","filePath":"source/transformations/segmentize.md","lastUpdated":null}'),e={name:"source/transformations/segmentize.md"},l=n(`

Segmentize

julia
export segmentize
 export LinearSegments, GeodesicSegments

This function "segmentizes" or "densifies" a geometry by adding extra vertices to the geometry so that no segment is longer than a given distance. This is useful for plotting geometries with a limited number of vertices, or for ensuring that a geometry is not too "coarse" for a given application.

Info

We plan to add interpolated segmentization from DataInterpolations.jl in the future, which will be available to any vector of point-like objects.

For now, this function only works on 2D geometries. We will also support 3D geometries, as well as measure interpolation, in the future.

Examples

julia
import GeometryOps as GO, GeoInterface as GI
 rectangle = GI.Wrappers.Polygon([[(0.0, 50.0), (7.071, 57.07), (0, 64.14), (-7.07, 57.07), (0.0, 50.0)]])
 linear = GO.segmentize(rectangle; max_distance = 5)
@@ -151,4 +151,4 @@ import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const h
         end
     end

End the line with the original coordinate, to avoid any multiplication errors.

julia
    push!(new_coords, (x2, y2))
     return nothing
-end

Note

The _fill_linear_kernel definition for GeodesicSegments is in the GeometryOpsProjExt extension module, in the segmentize.jl file.


This page was generated using Literate.jl.

`,34),k=[e];function p(r,E,d,g,y,o){return a(),i("div",null,k)}const C=s(l,[["render",p]]);export{c as __pageData,C as default}; +end

Note

The _fill_linear_kernel definition for GeodesicSegments is in the GeometryOpsProjExt extension module, in the segmentize.jl file.


This page was generated using Literate.jl.

`,34),k=[l];function p(r,E,d,g,y,o){return a(),i("div",null,k)}const C=s(e,[["render",p]]);export{c as __pageData,C as default}; diff --git a/dev/assets/source_transformations_segmentize.md.C-3cSSM9.lean.js b/dev/assets/source_transformations_segmentize.md.C-3cSSM9.lean.js new file mode 100644 index 000000000..c70d8e1e9 --- /dev/null +++ b/dev/assets/source_transformations_segmentize.md.C-3cSSM9.lean.js @@ -0,0 +1 @@ +import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const h="/GeometryOps.jl/dev/assets/droziru.BOOG5oTW.png",t="/GeometryOps.jl/dev/assets/xjpkwyk.D9MTpgpf.png",c=JSON.parse('{"title":"Segmentize","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/segmentize.md","filePath":"source/transformations/segmentize.md","lastUpdated":null}'),e={name:"source/transformations/segmentize.md"},l=n("",34),k=[l];function p(r,E,d,g,y,o){return a(),i("div",null,k)}const C=s(e,[["render",p]]);export{c as __pageData,C as default}; diff --git a/dev/assets/source_transformations_simplify.md.DowmCtxw.js b/dev/assets/source_transformations_simplify.md.DMmXs_mt.js similarity index 99% rename from dev/assets/source_transformations_simplify.md.DowmCtxw.js rename to dev/assets/source_transformations_simplify.md.DMmXs_mt.js index f392d52a1..6b02190dc 100644 --- a/dev/assets/source_transformations_simplify.md.DowmCtxw.js +++ b/dev/assets/source_transformations_simplify.md.DMmXs_mt.js @@ -1,4 +1,4 @@ -import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const h="/GeometryOps.jl/dev/assets/jbbdblr.Bglvb-jp.png",l="/GeometryOps.jl/dev/assets/jwhbpyp.B94PsR1K.png",k="/GeometryOps.jl/dev/assets/tlonajn.CtlkiDDa.png",t="/GeometryOps.jl/dev/assets/hgmisxf.WxZOZ4eH.png",u=JSON.parse('{"title":"Geometry simplification","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/simplify.md","filePath":"source/transformations/simplify.md","lastUpdated":null}'),p={name:"source/transformations/simplify.md"},e=n(`

Geometry simplification

This file holds implementations for the RadialDistance, Douglas-Peucker, and Visvalingam-Whyatt algorithms for simplifying geometries (specifically for polygons and lines).

The GEOS extension also allows for GEOS's topology preserving simplification as well as Douglas-Peucker simplification implemented in GEOS. Call this by passing GEOS(; method = :TopologyPreserve) or GEOS(; method = :DouglasPeucker) to the algorithm.

Examples

A quick and dirty example is:

julia
using Makie, GeoInterfaceMakie
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const h="/GeometryOps.jl/dev/assets/muggled.Bglvb-jp.png",l="/GeometryOps.jl/dev/assets/oagvrxx.B94PsR1K.png",k="/GeometryOps.jl/dev/assets/qevmcve.BhB4cDXE.png",t="/GeometryOps.jl/dev/assets/uhwyanw.BBHuRSVZ.png",u=JSON.parse('{"title":"Geometry simplification","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/simplify.md","filePath":"source/transformations/simplify.md","lastUpdated":null}'),p={name:"source/transformations/simplify.md"},e=n(`

Geometry simplification

This file holds implementations for the RadialDistance, Douglas-Peucker, and Visvalingam-Whyatt algorithms for simplifying geometries (specifically for polygons and lines).

The GEOS extension also allows for GEOS's topology preserving simplification as well as Douglas-Peucker simplification implemented in GEOS. Call this by passing GEOS(; method = :TopologyPreserve) or GEOS(; method = :DouglasPeucker) to the algorithm.

Examples

A quick and dirty example is:

julia
using Makie, GeoInterfaceMakie
 import GeoInterface as GI
 import GeometryOps as GO
 
diff --git a/dev/assets/source_transformations_simplify.md.DowmCtxw.lean.js b/dev/assets/source_transformations_simplify.md.DMmXs_mt.lean.js
similarity index 53%
rename from dev/assets/source_transformations_simplify.md.DowmCtxw.lean.js
rename to dev/assets/source_transformations_simplify.md.DMmXs_mt.lean.js
index 97448004c..825d0a41f 100644
--- a/dev/assets/source_transformations_simplify.md.DowmCtxw.lean.js
+++ b/dev/assets/source_transformations_simplify.md.DMmXs_mt.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const h="/GeometryOps.jl/dev/assets/jbbdblr.Bglvb-jp.png",l="/GeometryOps.jl/dev/assets/jwhbpyp.B94PsR1K.png",k="/GeometryOps.jl/dev/assets/tlonajn.CtlkiDDa.png",t="/GeometryOps.jl/dev/assets/hgmisxf.WxZOZ4eH.png",u=JSON.parse('{"title":"Geometry simplification","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/simplify.md","filePath":"source/transformations/simplify.md","lastUpdated":null}'),p={name:"source/transformations/simplify.md"},e=n("",71),E=[e];function r(d,g,y,F,o,c){return a(),i("div",null,E)}const D=s(p,[["render",r]]);export{u as __pageData,D as default};
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const h="/GeometryOps.jl/dev/assets/muggled.Bglvb-jp.png",l="/GeometryOps.jl/dev/assets/oagvrxx.B94PsR1K.png",k="/GeometryOps.jl/dev/assets/qevmcve.BhB4cDXE.png",t="/GeometryOps.jl/dev/assets/uhwyanw.BBHuRSVZ.png",u=JSON.parse('{"title":"Geometry simplification","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/simplify.md","filePath":"source/transformations/simplify.md","lastUpdated":null}'),p={name:"source/transformations/simplify.md"},e=n("",71),E=[e];function r(d,g,y,F,o,c){return a(),i("div",null,E)}const D=s(p,[["render",r]]);export{u as __pageData,D as default};
diff --git a/dev/assets/source_transformations_transform.md.YBLq-C0d.js b/dev/assets/source_transformations_transform.md.DPAnmLjJ.js
similarity index 98%
rename from dev/assets/source_transformations_transform.md.YBLq-C0d.js
rename to dev/assets/source_transformations_transform.md.DPAnmLjJ.js
index 6900d6335..e5ea82759 100644
--- a/dev/assets/source_transformations_transform.md.YBLq-C0d.js
+++ b/dev/assets/source_transformations_transform.md.DPAnmLjJ.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const d=JSON.parse('{"title":"Pointwise transformation","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/transform.md","filePath":"source/transformations/transform.md","lastUpdated":null}'),t={name:"source/transformations/transform.md"},l=n(`

Pointwise transformation

julia
"""
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const d=JSON.parse('{"title":"Pointwise transformation","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/transform.md","filePath":"source/transformations/transform.md","lastUpdated":null}'),t={name:"source/transformations/transform.md"},l=n(`

Pointwise transformation

julia
"""
     transform(f, obj)
 
 Apply a function \`f\` to all the points in \`obj\`.
diff --git a/dev/assets/source_transformations_transform.md.YBLq-C0d.lean.js b/dev/assets/source_transformations_transform.md.DPAnmLjJ.lean.js
similarity index 73%
rename from dev/assets/source_transformations_transform.md.YBLq-C0d.lean.js
rename to dev/assets/source_transformations_transform.md.DPAnmLjJ.lean.js
index b965e3e1e..8238387da 100644
--- a/dev/assets/source_transformations_transform.md.YBLq-C0d.lean.js
+++ b/dev/assets/source_transformations_transform.md.DPAnmLjJ.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const d=JSON.parse('{"title":"Pointwise transformation","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/transform.md","filePath":"source/transformations/transform.md","lastUpdated":null}'),t={name:"source/transformations/transform.md"},l=n("",4),e=[l];function p(h,r,k,o,g,F){return a(),i("div",null,e)}const y=s(t,[["render",p]]);export{d as __pageData,y as default};
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const d=JSON.parse('{"title":"Pointwise transformation","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/transform.md","filePath":"source/transformations/transform.md","lastUpdated":null}'),t={name:"source/transformations/transform.md"},l=n("",4),e=[l];function p(h,r,k,o,g,F){return a(),i("div",null,e)}const y=s(t,[["render",p]]);export{d as __pageData,y as default};
diff --git a/dev/assets/source_transformations_tuples.md.C2uxFh5R.js b/dev/assets/source_transformations_tuples.md.Cnq1Lhn-.js
similarity index 96%
rename from dev/assets/source_transformations_tuples.md.C2uxFh5R.js
rename to dev/assets/source_transformations_tuples.md.Cnq1Lhn-.js
index 43f31fd84..8a3632004 100644
--- a/dev/assets/source_transformations_tuples.md.C2uxFh5R.js
+++ b/dev/assets/source_transformations_tuples.md.Cnq1Lhn-.js
@@ -1,4 +1,4 @@
-import{_ as s,c as a,o as n,a6 as i}from"./chunks/framework.p73Oc50P.js";const u=JSON.parse('{"title":"Tuple conversion","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/tuples.md","filePath":"source/transformations/tuples.md","lastUpdated":null}'),e={name:"source/transformations/tuples.md"},t=i(`

Tuple conversion

julia
"""
+import{_ as s,c as a,o as n,a6 as i}from"./chunks/framework.DJCAxKqx.js";const u=JSON.parse('{"title":"Tuple conversion","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/tuples.md","filePath":"source/transformations/tuples.md","lastUpdated":null}'),e={name:"source/transformations/tuples.md"},t=i(`

Tuple conversion

julia
"""
     tuples(obj)
 
 Convert all points in \`obj\` to \`Tuple\`s, wherever the are nested.
diff --git a/dev/assets/source_transformations_tuples.md.C2uxFh5R.lean.js b/dev/assets/source_transformations_tuples.md.Cnq1Lhn-.lean.js
similarity index 72%
rename from dev/assets/source_transformations_tuples.md.C2uxFh5R.lean.js
rename to dev/assets/source_transformations_tuples.md.Cnq1Lhn-.lean.js
index 4dfef8b19..67feb750b 100644
--- a/dev/assets/source_transformations_tuples.md.C2uxFh5R.lean.js
+++ b/dev/assets/source_transformations_tuples.md.Cnq1Lhn-.lean.js
@@ -1 +1 @@
-import{_ as s,c as a,o as n,a6 as i}from"./chunks/framework.p73Oc50P.js";const u=JSON.parse('{"title":"Tuple conversion","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/tuples.md","filePath":"source/transformations/tuples.md","lastUpdated":null}'),e={name:"source/transformations/tuples.md"},t=i("",6),p=[t];function l(o,r,h,c,k,d){return n(),a("div",null,p)}const g=s(e,[["render",l]]);export{u as __pageData,g as default};
+import{_ as s,c as a,o as n,a6 as i}from"./chunks/framework.DJCAxKqx.js";const u=JSON.parse('{"title":"Tuple conversion","description":"","frontmatter":{},"headers":[],"relativePath":"source/transformations/tuples.md","filePath":"source/transformations/tuples.md","lastUpdated":null}'),e={name:"source/transformations/tuples.md"},t=i("",6),p=[t];function l(o,r,h,c,k,d){return n(),a("div",null,p)}const g=s(e,[["render",l]]);export{u as __pageData,g as default};
diff --git a/dev/assets/source_types.md.alfcf5ch.js b/dev/assets/source_types.md.iAGAINF3.js
similarity index 99%
rename from dev/assets/source_types.md.alfcf5ch.js
rename to dev/assets/source_types.md.iAGAINF3.js
index 11fcdd3d4..f070fe665 100644
--- a/dev/assets/source_types.md.alfcf5ch.js
+++ b/dev/assets/source_types.md.iAGAINF3.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const y=JSON.parse('{"title":"Types","description":"","frontmatter":{},"headers":[],"relativePath":"source/types.md","filePath":"source/types.md","lastUpdated":null}'),t={name:"source/types.md"},e=n(`

Types

This file defines some fundamental types used in GeometryOps.

Warning

Unlike in other Julia packages, only some types are defined in this file, not all. This is because we define types in the files where they are used, to make it easier to understand the code.

julia
export TraitTarget, GEOS

TraitTarget

This struct holds a trait parameter or a union of trait parameters. It's essentially a way to construct unions.

julia
"""
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const y=JSON.parse('{"title":"Types","description":"","frontmatter":{},"headers":[],"relativePath":"source/types.md","filePath":"source/types.md","lastUpdated":null}'),t={name:"source/types.md"},e=n(`

Types

This file defines some fundamental types used in GeometryOps.

Warning

Unlike in other Julia packages, only some types are defined in this file, not all. This is because we define types in the files where they are used, to make it easier to understand the code.

julia
export TraitTarget, GEOS

TraitTarget

This struct holds a trait parameter or a union of trait parameters. It's essentially a way to construct unions.

julia
"""
     TraitTarget{T}
 
 This struct holds a trait parameter or a union of trait parameters.
diff --git a/dev/assets/source_types.md.alfcf5ch.lean.js b/dev/assets/source_types.md.iAGAINF3.lean.js
similarity index 68%
rename from dev/assets/source_types.md.alfcf5ch.lean.js
rename to dev/assets/source_types.md.iAGAINF3.lean.js
index 78c68b777..0031fbd76 100644
--- a/dev/assets/source_types.md.alfcf5ch.lean.js
+++ b/dev/assets/source_types.md.iAGAINF3.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const y=JSON.parse('{"title":"Types","description":"","frontmatter":{},"headers":[],"relativePath":"source/types.md","filePath":"source/types.md","lastUpdated":null}'),t={name:"source/types.md"},e=n("",27),l=[e];function p(h,k,r,d,o,g){return a(),i("div",null,l)}const E=s(t,[["render",p]]);export{y as __pageData,E as default};
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const y=JSON.parse('{"title":"Types","description":"","frontmatter":{},"headers":[],"relativePath":"source/types.md","filePath":"source/types.md","lastUpdated":null}'),t={name:"source/types.md"},e=n("",27),l=[e];function p(h,k,r,d,o,g){return a(),i("div",null,l)}const E=s(t,[["render",p]]);export{y as __pageData,E as default};
diff --git a/dev/assets/source_utils.md.Ck0b-xnP.js b/dev/assets/source_utils.md.BODgQKSD.js
similarity index 99%
rename from dev/assets/source_utils.md.Ck0b-xnP.js
rename to dev/assets/source_utils.md.BODgQKSD.js
index b5e2e9d68..e23620e11 100644
--- a/dev/assets/source_utils.md.Ck0b-xnP.js
+++ b/dev/assets/source_utils.md.BODgQKSD.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const y=JSON.parse('{"title":"Utility functions","description":"","frontmatter":{},"headers":[],"relativePath":"source/utils.md","filePath":"source/utils.md","lastUpdated":null}'),t={name:"source/utils.md"},p=n(`

Utility functions

julia
_is3d(geom)::Bool = _is3d(GI.trait(geom), geom)
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const y=JSON.parse('{"title":"Utility functions","description":"","frontmatter":{},"headers":[],"relativePath":"source/utils.md","filePath":"source/utils.md","lastUpdated":null}'),t={name:"source/utils.md"},p=n(`

Utility functions

julia
_is3d(geom)::Bool = _is3d(GI.trait(geom), geom)
 _is3d(::GI.AbstractGeometryTrait, geom)::Bool = GI.is3d(geom)
 _is3d(::GI.FeatureTrait, feature)::Bool = _is3d(GI.geometry(feature))
 _is3d(::GI.FeatureCollectionTrait, fc)::Bool = _is3d(GI.getfeature(fc, 1))
diff --git a/dev/assets/source_utils.md.Ck0b-xnP.lean.js b/dev/assets/source_utils.md.BODgQKSD.lean.js
similarity index 69%
rename from dev/assets/source_utils.md.Ck0b-xnP.lean.js
rename to dev/assets/source_utils.md.BODgQKSD.lean.js
index 3269f75d4..93b2f85cf 100644
--- a/dev/assets/source_utils.md.Ck0b-xnP.lean.js
+++ b/dev/assets/source_utils.md.BODgQKSD.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.p73Oc50P.js";const y=JSON.parse('{"title":"Utility functions","description":"","frontmatter":{},"headers":[],"relativePath":"source/utils.md","filePath":"source/utils.md","lastUpdated":null}'),t={name:"source/utils.md"},p=n("",8),l=[p];function h(k,e,r,F,g,d){return a(),i("div",null,l)}const o=s(t,[["render",h]]);export{y as __pageData,o as default};
+import{_ as s,c as i,o as a,a6 as n}from"./chunks/framework.DJCAxKqx.js";const y=JSON.parse('{"title":"Utility functions","description":"","frontmatter":{},"headers":[],"relativePath":"source/utils.md","filePath":"source/utils.md","lastUpdated":null}'),t={name:"source/utils.md"},p=n("",8),l=[p];function h(k,e,r,F,g,d){return a(),i("div",null,l)}const o=s(t,[["render",h]]);export{y as __pageData,o as default};
diff --git a/dev/assets/kmoesqa.CULn5saZ.png b/dev/assets/taufpus.CULn5saZ.png
similarity index 100%
rename from dev/assets/kmoesqa.CULn5saZ.png
rename to dev/assets/taufpus.CULn5saZ.png
diff --git a/dev/assets/adrsjis.CXhMGpE5.png b/dev/assets/tipyxle.CXhMGpE5.png
similarity index 100%
rename from dev/assets/adrsjis.CXhMGpE5.png
rename to dev/assets/tipyxle.CXhMGpE5.png
diff --git a/dev/assets/tlonajn.CtlkiDDa.png b/dev/assets/tlonajn.CtlkiDDa.png
deleted file mode 100644
index a8449570b..000000000
Binary files a/dev/assets/tlonajn.CtlkiDDa.png and /dev/null differ
diff --git a/dev/assets/tutorials_creating_geometry.md.Ba5HDinP.js b/dev/assets/tutorials_creating_geometry.md.BE1ZjpFz.js
similarity index 99%
rename from dev/assets/tutorials_creating_geometry.md.Ba5HDinP.js
rename to dev/assets/tutorials_creating_geometry.md.BE1ZjpFz.js
index 9c55d21a4..cbc3ae7ee 100644
--- a/dev/assets/tutorials_creating_geometry.md.Ba5HDinP.js
+++ b/dev/assets/tutorials_creating_geometry.md.BE1ZjpFz.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a6 as e}from"./chunks/framework.p73Oc50P.js";const t="/GeometryOps.jl/dev/assets/wmxmctt.Dz86q2IX.png",n="/GeometryOps.jl/dev/assets/uaudbji.Cx40vhB3.png",l="/GeometryOps.jl/dev/assets/wnlphfa.0OJvb21A.png",p="/GeometryOps.jl/dev/assets/pozzaaw.DaovVbE6.png",h="/GeometryOps.jl/dev/assets/pknqjqy.BaZeu6ul.png",k="/GeometryOps.jl/dev/assets/vrvtzea.DFgr-JEI.png",o="/GeometryOps.jl/dev/assets/kegeyyr.yuGUdylf.png",r="/GeometryOps.jl/dev/assets/adrsjis.CXhMGpE5.png",g="/GeometryOps.jl/dev/assets/trtpkdv.lu4jwpi-.png",d="/GeometryOps.jl/dev/assets/nnzatzr.DwqDxlAG.png",E="/GeometryOps.jl/dev/assets/qygrsbt.CLtpJ5Wb.png",D=JSON.parse('{"title":"Creating Geometry","description":"","frontmatter":{},"headers":[],"relativePath":"tutorials/creating_geometry.md","filePath":"tutorials/creating_geometry.md","lastUpdated":null}'),c={name:"tutorials/creating_geometry.md"},y=e(`

Creating Geometry

In this tutorial, we're going to:

  1. Create and plot geometries

  2. Plot geometries on a map using GeoMakie and coordinate reference system (CRS)

  3. Create geospatial geometries with coordinate reference system information

  4. Assign attributes to geospatial geometries

  5. Save geospatial geometries to common geospatial file formats

First, we load some required packages.

julia
# Geospatial packages from Julia
+import{_ as s,c as i,o as a,a6 as e}from"./chunks/framework.DJCAxKqx.js";const t="/GeometryOps.jl/dev/assets/wnobmbl.Dz86q2IX.png",n="/GeometryOps.jl/dev/assets/hbpybpu.Cx40vhB3.png",l="/GeometryOps.jl/dev/assets/lxvkgam.0OJvb21A.png",p="/GeometryOps.jl/dev/assets/ziqlvud.DaovVbE6.png",h="/GeometryOps.jl/dev/assets/pxovduh.BaZeu6ul.png",k="/GeometryOps.jl/dev/assets/yiqdqtc.DFgr-JEI.png",o="/GeometryOps.jl/dev/assets/wxoxmyy.yuGUdylf.png",r="/GeometryOps.jl/dev/assets/tipyxle.CXhMGpE5.png",g="/GeometryOps.jl/dev/assets/yodnaqb.lu4jwpi-.png",d="/GeometryOps.jl/dev/assets/bwgahdy.DwqDxlAG.png",E="/GeometryOps.jl/dev/assets/ourcbmb.CLtpJ5Wb.png",D=JSON.parse('{"title":"Creating Geometry","description":"","frontmatter":{},"headers":[],"relativePath":"tutorials/creating_geometry.md","filePath":"tutorials/creating_geometry.md","lastUpdated":null}'),c={name:"tutorials/creating_geometry.md"},y=e(`

Creating Geometry

In this tutorial, we're going to:

  1. Create and plot geometries

  2. Plot geometries on a map using GeoMakie and coordinate reference system (CRS)

  3. Create geospatial geometries with coordinate reference system information

  4. Assign attributes to geospatial geometries

  5. Save geospatial geometries to common geospatial file formats

First, we load some required packages.

julia
# Geospatial packages from Julia
 import GeoInterface as GI
 import GeometryOps as GO
 import GeoFormatTypes as GFT
@@ -48,7 +48,7 @@ import{_ as s,c as i,o as a,a6 as e}from"./chunks/framework.p73Oc50P.js";const t
 f = CoordinateTransformations.Translation(xoffset, yoffset);
 multipolygon = GO.transform(f, multipolygon);
 plot!(multipolygon)
-fig

Great, now we can make Points, MultiPoints, Lines, LineStrings, Polygons (with holes), and MultiPolygons and modify them using [CoordinateTransformations] and [GeometryOps].

Coordinate reference systems (CRS) and you

In geospatial sciences we often have data in one Coordinate Reference System (CRS) (source) and would like to display it in different (destination) CRS. GeoMakie allows us to do this by automatically projecting from source to destination CRS.

Here, our source CRS is common geographic (i.e. coordinates of latitude and longitude), WGS84.

julia
source_crs1 = GFT.EPSG(4326)
GeoFormatTypes.EPSG{1}((4326,))

Now let's pick a destination CRS for displaying our map. Here we'll pick natearth2.

julia
destination_crs = "+proj=natearth2"
"+proj=natearth2"

Let's add land area for context. First, download and open the Natural Earth global land polygons at 110 m resolution.GeoMakie ships with this particular dataset, so we will access it from there.

julia
land_path = GeoMakie.assetpath("ne_110m_land.geojson")
"/home/runner/.julia/packages/GeoMakie/bRgRN/assets/ne_110m_land.geojson"

Note

Natural Earth has lots of other datasets, and there is a Julia package that provides an interface to it called NaturalEarth.jl.

Read the land MultiPolygons as a GeoJSON.FeatureCollection.

julia
land_geo = GeoJSON.read(land_path)
FeatureCollection with 127 Features

We then need to create a figure with a GeoAxis that can handle the projection between source and destinaton CRS. For GeoMakie, source is the CRS of the input and dest is the CRS you want to visualize in.

julia
fig = Figure(size=(1000, 500));
+fig

Great, now we can make Points, MultiPoints, Lines, LineStrings, Polygons (with holes), and MultiPolygons and modify them using [CoordinateTransformations] and [GeometryOps].

Coordinate reference systems (CRS) and you

In geospatial sciences we often have data in one Coordinate Reference System (CRS) (source) and would like to display it in different (destination) CRS. GeoMakie allows us to do this by automatically projecting from source to destination CRS.

Here, our source CRS is common geographic (i.e. coordinates of latitude and longitude), WGS84.

julia
source_crs1 = GFT.EPSG(4326)
GeoFormatTypes.EPSG{1}((4326,))

Now let's pick a destination CRS for displaying our map. Here we'll pick natearth2.

julia
destination_crs = "+proj=natearth2"
"+proj=natearth2"

Let's add land area for context. First, download and open the Natural Earth global land polygons at 110 m resolution.GeoMakie ships with this particular dataset, so we will access it from there.

julia
land_path = GeoMakie.assetpath("ne_110m_land.geojson")
"/home/runner/.julia/packages/GeoMakie/y0Tfj/assets/ne_110m_land.geojson"

Note

Natural Earth has lots of other datasets, and there is a Julia package that provides an interface to it called NaturalEarth.jl.

Read the land MultiPolygons as a GeoJSON.FeatureCollection.

julia
land_geo = GeoJSON.read(land_path)
FeatureCollection with 127 Features

We then need to create a figure with a GeoAxis that can handle the projection between source and destinaton CRS. For GeoMakie, source is the CRS of the input and dest is the CRS you want to visualize in.

julia
fig = Figure(size=(1000, 500));
 ga = GeoAxis(
     fig[1, 1];
     source = source_crs1,
diff --git a/dev/assets/tutorials_creating_geometry.md.BE1ZjpFz.lean.js b/dev/assets/tutorials_creating_geometry.md.BE1ZjpFz.lean.js
new file mode 100644
index 000000000..19e8e5ffd
--- /dev/null
+++ b/dev/assets/tutorials_creating_geometry.md.BE1ZjpFz.lean.js
@@ -0,0 +1 @@
+import{_ as s,c as i,o as a,a6 as e}from"./chunks/framework.DJCAxKqx.js";const t="/GeometryOps.jl/dev/assets/wnobmbl.Dz86q2IX.png",n="/GeometryOps.jl/dev/assets/hbpybpu.Cx40vhB3.png",l="/GeometryOps.jl/dev/assets/lxvkgam.0OJvb21A.png",p="/GeometryOps.jl/dev/assets/ziqlvud.DaovVbE6.png",h="/GeometryOps.jl/dev/assets/pxovduh.BaZeu6ul.png",k="/GeometryOps.jl/dev/assets/yiqdqtc.DFgr-JEI.png",o="/GeometryOps.jl/dev/assets/wxoxmyy.yuGUdylf.png",r="/GeometryOps.jl/dev/assets/tipyxle.CXhMGpE5.png",g="/GeometryOps.jl/dev/assets/yodnaqb.lu4jwpi-.png",d="/GeometryOps.jl/dev/assets/bwgahdy.DwqDxlAG.png",E="/GeometryOps.jl/dev/assets/ourcbmb.CLtpJ5Wb.png",D=JSON.parse('{"title":"Creating Geometry","description":"","frontmatter":{},"headers":[],"relativePath":"tutorials/creating_geometry.md","filePath":"tutorials/creating_geometry.md","lastUpdated":null}'),c={name:"tutorials/creating_geometry.md"},y=e("",119),F=[y];function u(f,C,m,b,v,G){return a(),i("div",null,F)}const N=s(c,[["render",u]]);export{D as __pageData,N as default};
diff --git a/dev/assets/tutorials_creating_geometry.md.Ba5HDinP.lean.js b/dev/assets/tutorials_creating_geometry.md.Ba5HDinP.lean.js
deleted file mode 100644
index eb9645cd1..000000000
--- a/dev/assets/tutorials_creating_geometry.md.Ba5HDinP.lean.js
+++ /dev/null
@@ -1 +0,0 @@
-import{_ as s,c as i,o as a,a6 as e}from"./chunks/framework.p73Oc50P.js";const t="/GeometryOps.jl/dev/assets/wmxmctt.Dz86q2IX.png",n="/GeometryOps.jl/dev/assets/uaudbji.Cx40vhB3.png",l="/GeometryOps.jl/dev/assets/wnlphfa.0OJvb21A.png",p="/GeometryOps.jl/dev/assets/pozzaaw.DaovVbE6.png",h="/GeometryOps.jl/dev/assets/pknqjqy.BaZeu6ul.png",k="/GeometryOps.jl/dev/assets/vrvtzea.DFgr-JEI.png",o="/GeometryOps.jl/dev/assets/kegeyyr.yuGUdylf.png",r="/GeometryOps.jl/dev/assets/adrsjis.CXhMGpE5.png",g="/GeometryOps.jl/dev/assets/trtpkdv.lu4jwpi-.png",d="/GeometryOps.jl/dev/assets/nnzatzr.DwqDxlAG.png",E="/GeometryOps.jl/dev/assets/qygrsbt.CLtpJ5Wb.png",D=JSON.parse('{"title":"Creating Geometry","description":"","frontmatter":{},"headers":[],"relativePath":"tutorials/creating_geometry.md","filePath":"tutorials/creating_geometry.md","lastUpdated":null}'),c={name:"tutorials/creating_geometry.md"},y=e("",119),F=[y];function u(f,C,m,b,v,G){return a(),i("div",null,F)}const N=s(c,[["render",u]]);export{D as __pageData,N as default};
diff --git a/dev/assets/tutorials_spatial_joins.md.DF6YEnVf.js b/dev/assets/tutorials_spatial_joins.md.AcIKbo3I.js
similarity index 99%
rename from dev/assets/tutorials_spatial_joins.md.DF6YEnVf.js
rename to dev/assets/tutorials_spatial_joins.md.AcIKbo3I.js
index 95e6c0f9d..d4c813cf0 100644
--- a/dev/assets/tutorials_spatial_joins.md.DF6YEnVf.js
+++ b/dev/assets/tutorials_spatial_joins.md.AcIKbo3I.js
@@ -1,4 +1,4 @@
-import{_ as h,c as a,j as s,a as i,a6 as n,o as t}from"./chunks/framework.p73Oc50P.js";const e="/GeometryOps.jl/dev/assets/zitiviy.3UVIT8DR.png",l="/GeometryOps.jl/dev/assets/pwlmgsx.Co3XneyV.png",p="/GeometryOps.jl/dev/assets/pepjrxd.DVRbMsmY.png",B=JSON.parse('{"title":"Spatial joins","description":"","frontmatter":{},"headers":[],"relativePath":"tutorials/spatial_joins.md","filePath":"tutorials/spatial_joins.md","lastUpdated":null}'),k={name:"tutorials/spatial_joins.md"},r=s("h1",{id:"Spatial-joins",tabindex:"-1"},[i("Spatial joins "),s("a",{class:"header-anchor",href:"#Spatial-joins","aria-label":'Permalink to "Spatial joins {#Spatial-joins}"'},"​")],-1),E=s("a",{href:"https://www.geeksforgeeks.org/sql-join-set-1-inner-left-right-and-full-joins/",target:"_blank",rel:"noreferrer"},"table joins",-1),d={class:"MathJax",jax:"SVG",style:{direction:"ltr",position:"relative"}},o={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-0.566ex"},xmlns:"http://www.w3.org/2000/svg",width:"6.307ex",height:"2.262ex",role:"img",focusable:"false",viewBox:"0 -750 2787.7 1000","aria-hidden":"true"},g=n('',1),y=[g],c=s("mjx-assistive-mml",{unselectable:"on",display:"inline",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",width:"auto",overflow:"hidden"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML"},[s("mi",null,"p"),s("mo",{stretchy:"false"},"("),s("mi",null,"x"),s("mo",null,","),s("mi",null,"y"),s("mo",{stretchy:"false"},")")])],-1),F=s("code",null,"true",-1),u=s("code",null,"false",-1),m=s("a",{href:"https://en.wikipedia.org/wiki/DE-9IM",target:"_blank",rel:"noreferrer"},[s("code",null,"DE-9IM")],-1),C=n(`

Spatial joins can be done between any geometry types (from geometrycollections to points), just as geometrical predicates can be evaluated on any geometries.

In this tutorial, we will show how to perform a spatial join on first a toy dataset and then two Natural Earth datasets, to show how this can be used in the real world.

In order to perform the spatial join, we use FlexiJoins.jl to perform the join, specifically using its by_pred joining method. This allows the user to specify a predicate in the following manner:

julia
[inner/left/right/outer/...]join((table1, table1),
+import{_ as h,c as a,j as s,a as i,a6 as n,o as t}from"./chunks/framework.DJCAxKqx.js";const e="/GeometryOps.jl/dev/assets/oenfjuu.3UVIT8DR.png",l="/GeometryOps.jl/dev/assets/cxuzkep.CcJX_iNn.png",p="/GeometryOps.jl/dev/assets/sgifphp.CjMfyw5e.png",B=JSON.parse('{"title":"Spatial joins","description":"","frontmatter":{},"headers":[],"relativePath":"tutorials/spatial_joins.md","filePath":"tutorials/spatial_joins.md","lastUpdated":null}'),k={name:"tutorials/spatial_joins.md"},r=s("h1",{id:"Spatial-joins",tabindex:"-1"},[i("Spatial joins "),s("a",{class:"header-anchor",href:"#Spatial-joins","aria-label":'Permalink to "Spatial joins {#Spatial-joins}"'},"​")],-1),E=s("a",{href:"https://www.geeksforgeeks.org/sql-join-set-1-inner-left-right-and-full-joins/",target:"_blank",rel:"noreferrer"},"table joins",-1),d={class:"MathJax",jax:"SVG",style:{direction:"ltr",position:"relative"}},o={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-0.566ex"},xmlns:"http://www.w3.org/2000/svg",width:"6.307ex",height:"2.262ex",role:"img",focusable:"false",viewBox:"0 -750 2787.7 1000","aria-hidden":"true"},g=n('',1),y=[g],c=s("mjx-assistive-mml",{unselectable:"on",display:"inline",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",width:"auto",overflow:"hidden"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML"},[s("mi",null,"p"),s("mo",{stretchy:"false"},"("),s("mi",null,"x"),s("mo",null,","),s("mi",null,"y"),s("mo",{stretchy:"false"},")")])],-1),F=s("code",null,"true",-1),u=s("code",null,"false",-1),m=s("a",{href:"https://en.wikipedia.org/wiki/DE-9IM",target:"_blank",rel:"noreferrer"},[s("code",null,"DE-9IM")],-1),C=n(`

Spatial joins can be done between any geometry types (from geometrycollections to points), just as geometrical predicates can be evaluated on any geometries.

In this tutorial, we will show how to perform a spatial join on first a toy dataset and then two Natural Earth datasets, to show how this can be used in the real world.

In order to perform the spatial join, we use FlexiJoins.jl to perform the join, specifically using its by_pred joining method. This allows the user to specify a predicate in the following manner:

julia
[inner/left/right/outer/...]join((table1, table1),
     by_pred(:table1_column, predicate_function, :table2_column) # & add other conditions here
 )

We have enabled the use of all of GeometryOps' boolean comparisons here. These are:

julia
GO.contains, GO.within, GO.intersects, GO.touches, GO.crosses, GO.disjoint, GO.overlaps, GO.covers, GO.coveredby, GO.equals

Tip

Always place the dataframe with more complex geometries second, as that is the one which will be sorted into a tree.

Simple example

This example demonstrates how to perform a spatial join between two datasets: a set of polygons and a set of randomly generated points.

The polygons are represented as a DataFrame with geometries and colors, while the points are stored in a separate DataFrame.

The spatial join is performed using the contains predicate from GeometryOps, which checks if each point is contained within any of the polygons. The resulting joined DataFrame is then used to plot the points, colored according to the containing polygon.

First, we generate our data. We create two triangle polygons which, together, span the rectangle (0, 0, 1, 1), and a set of points which are randomly distributed within this rectangle.

julia
import GeoInterface as GI, GeometryOps as GO
 using FlexiJoins, DataFrames
diff --git a/dev/assets/tutorials_spatial_joins.md.DF6YEnVf.lean.js b/dev/assets/tutorials_spatial_joins.md.AcIKbo3I.lean.js
similarity index 91%
rename from dev/assets/tutorials_spatial_joins.md.DF6YEnVf.lean.js
rename to dev/assets/tutorials_spatial_joins.md.AcIKbo3I.lean.js
index e5b06da3f..0eb5bd74b 100644
--- a/dev/assets/tutorials_spatial_joins.md.DF6YEnVf.lean.js
+++ b/dev/assets/tutorials_spatial_joins.md.AcIKbo3I.lean.js
@@ -1 +1 @@
-import{_ as h,c as a,j as s,a as i,a6 as n,o as t}from"./chunks/framework.p73Oc50P.js";const e="/GeometryOps.jl/dev/assets/zitiviy.3UVIT8DR.png",l="/GeometryOps.jl/dev/assets/pwlmgsx.Co3XneyV.png",p="/GeometryOps.jl/dev/assets/pepjrxd.DVRbMsmY.png",B=JSON.parse('{"title":"Spatial joins","description":"","frontmatter":{},"headers":[],"relativePath":"tutorials/spatial_joins.md","filePath":"tutorials/spatial_joins.md","lastUpdated":null}'),k={name:"tutorials/spatial_joins.md"},r=s("h1",{id:"Spatial-joins",tabindex:"-1"},[i("Spatial joins "),s("a",{class:"header-anchor",href:"#Spatial-joins","aria-label":'Permalink to "Spatial joins {#Spatial-joins}"'},"​")],-1),E=s("a",{href:"https://www.geeksforgeeks.org/sql-join-set-1-inner-left-right-and-full-joins/",target:"_blank",rel:"noreferrer"},"table joins",-1),d={class:"MathJax",jax:"SVG",style:{direction:"ltr",position:"relative"}},o={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-0.566ex"},xmlns:"http://www.w3.org/2000/svg",width:"6.307ex",height:"2.262ex",role:"img",focusable:"false",viewBox:"0 -750 2787.7 1000","aria-hidden":"true"},g=n("",1),y=[g],c=s("mjx-assistive-mml",{unselectable:"on",display:"inline",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",width:"auto",overflow:"hidden"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML"},[s("mi",null,"p"),s("mo",{stretchy:"false"},"("),s("mi",null,"x"),s("mo",null,","),s("mi",null,"y"),s("mo",{stretchy:"false"},")")])],-1),F=s("code",null,"true",-1),u=s("code",null,"false",-1),m=s("a",{href:"https://en.wikipedia.org/wiki/DE-9IM",target:"_blank",rel:"noreferrer"},[s("code",null,"DE-9IM")],-1),C=n("",37);function T(_,b,f,D,Q,w){return t(),a("div",null,[r,s("p",null,[i("Spatial joins are "),E,i(" which are based not on equality, but on some predicate "),s("mjx-container",d,[(t(),a("svg",o,y)),c]),i(", which takes two geometries, and returns a value of either "),F,i(" or "),u,i(". For geometries, the "),m,i(" spatial relationship model is used to determine the spatial relationship between two geometries.")]),C])}const v=h(k,[["render",T]]);export{B as __pageData,v as default};
+import{_ as h,c as a,j as s,a as i,a6 as n,o as t}from"./chunks/framework.DJCAxKqx.js";const e="/GeometryOps.jl/dev/assets/oenfjuu.3UVIT8DR.png",l="/GeometryOps.jl/dev/assets/cxuzkep.CcJX_iNn.png",p="/GeometryOps.jl/dev/assets/sgifphp.CjMfyw5e.png",B=JSON.parse('{"title":"Spatial joins","description":"","frontmatter":{},"headers":[],"relativePath":"tutorials/spatial_joins.md","filePath":"tutorials/spatial_joins.md","lastUpdated":null}'),k={name:"tutorials/spatial_joins.md"},r=s("h1",{id:"Spatial-joins",tabindex:"-1"},[i("Spatial joins "),s("a",{class:"header-anchor",href:"#Spatial-joins","aria-label":'Permalink to "Spatial joins {#Spatial-joins}"'},"​")],-1),E=s("a",{href:"https://www.geeksforgeeks.org/sql-join-set-1-inner-left-right-and-full-joins/",target:"_blank",rel:"noreferrer"},"table joins",-1),d={class:"MathJax",jax:"SVG",style:{direction:"ltr",position:"relative"}},o={style:{overflow:"visible","min-height":"1px","min-width":"1px","vertical-align":"-0.566ex"},xmlns:"http://www.w3.org/2000/svg",width:"6.307ex",height:"2.262ex",role:"img",focusable:"false",viewBox:"0 -750 2787.7 1000","aria-hidden":"true"},g=n("",1),y=[g],c=s("mjx-assistive-mml",{unselectable:"on",display:"inline",style:{top:"0px",left:"0px",clip:"rect(1px, 1px, 1px, 1px)","-webkit-touch-callout":"none","-webkit-user-select":"none","-khtml-user-select":"none","-moz-user-select":"none","-ms-user-select":"none","user-select":"none",position:"absolute",padding:"1px 0px 0px 0px",border:"0px",display:"block",width:"auto",overflow:"hidden"}},[s("math",{xmlns:"http://www.w3.org/1998/Math/MathML"},[s("mi",null,"p"),s("mo",{stretchy:"false"},"("),s("mi",null,"x"),s("mo",null,","),s("mi",null,"y"),s("mo",{stretchy:"false"},")")])],-1),F=s("code",null,"true",-1),u=s("code",null,"false",-1),m=s("a",{href:"https://en.wikipedia.org/wiki/DE-9IM",target:"_blank",rel:"noreferrer"},[s("code",null,"DE-9IM")],-1),C=n("",37);function T(_,b,f,D,Q,w){return t(),a("div",null,[r,s("p",null,[i("Spatial joins are "),E,i(" which are based not on equality, but on some predicate "),s("mjx-container",d,[(t(),a("svg",o,y)),c]),i(", which takes two geometries, and returns a value of either "),F,i(" or "),u,i(". For geometries, the "),m,i(" spatial relationship model is used to determine the spatial relationship between two geometries.")]),C])}const v=h(k,[["render",T]]);export{B as __pageData,v as default};
diff --git a/dev/assets/uhwyanw.BBHuRSVZ.png b/dev/assets/uhwyanw.BBHuRSVZ.png
new file mode 100644
index 000000000..8f5529999
Binary files /dev/null and b/dev/assets/uhwyanw.BBHuRSVZ.png differ
diff --git a/dev/assets/kumlmic.DC3TvBOO.png b/dev/assets/viiaqvo.DC3TvBOO.png
similarity index 100%
rename from dev/assets/kumlmic.DC3TvBOO.png
rename to dev/assets/viiaqvo.DC3TvBOO.png
diff --git a/dev/assets/yetjmwu.DiwGEg2f.png b/dev/assets/vnvqels.DiwGEg2f.png
similarity index 100%
rename from dev/assets/yetjmwu.DiwGEg2f.png
rename to dev/assets/vnvqels.DiwGEg2f.png
diff --git a/dev/assets/wmxmctt.Dz86q2IX.png b/dev/assets/wnobmbl.Dz86q2IX.png
similarity index 100%
rename from dev/assets/wmxmctt.Dz86q2IX.png
rename to dev/assets/wnobmbl.Dz86q2IX.png
diff --git a/dev/assets/kegeyyr.yuGUdylf.png b/dev/assets/wxoxmyy.yuGUdylf.png
similarity index 100%
rename from dev/assets/kegeyyr.yuGUdylf.png
rename to dev/assets/wxoxmyy.yuGUdylf.png
diff --git a/dev/assets/xjpkwyk.D9MTpgpf.png b/dev/assets/xjpkwyk.D9MTpgpf.png
new file mode 100644
index 000000000..5f733956d
Binary files /dev/null and b/dev/assets/xjpkwyk.D9MTpgpf.png differ
diff --git a/dev/assets/vrvtzea.DFgr-JEI.png b/dev/assets/yiqdqtc.DFgr-JEI.png
similarity index 100%
rename from dev/assets/vrvtzea.DFgr-JEI.png
rename to dev/assets/yiqdqtc.DFgr-JEI.png
diff --git a/dev/assets/trtpkdv.lu4jwpi-.png b/dev/assets/yodnaqb.lu4jwpi-.png
similarity index 100%
rename from dev/assets/trtpkdv.lu4jwpi-.png
rename to dev/assets/yodnaqb.lu4jwpi-.png
diff --git a/dev/assets/pozzaaw.DaovVbE6.png b/dev/assets/ziqlvud.DaovVbE6.png
similarity index 100%
rename from dev/assets/pozzaaw.DaovVbE6.png
rename to dev/assets/ziqlvud.DaovVbE6.png
diff --git a/dev/call_notes.html b/dev/call_notes.html
index f87100724..df420438a 100644
--- a/dev/call_notes.html
+++ b/dev/call_notes.html
@@ -8,18 +8,18 @@
     
     
     
-    
+    
     
-    
-    
-    
+    
+    
+    
     
     
     
   
   
     
Skip to content

20th April, 2024

See GeometryOps#114.

  • [ ] Exact predicates can be defined for lower-level, more atomic predicates within GeometryOps.

  • [ ] Add Shewchuck's adaptive math as a stage for exact predicates.

  • [x] @skygering to write docstrings for the predicates

29th Feb, 2024

To do

  • [ ] Finish clipping degeneracies

  • [ ] Fix cross & overlap functions

  • [x] Benchmarks to show why things you couldn't concieve of in R are doable in Julia

  • [x] profile functions for exponential improvements

  • [ ] A list of projects people can work on...the beauty here is that each function is kind of self-contained so it's an undergrad level project

  • [ ] Doc improvements

    • more

    • benchmarks page

  • Methods to validate and fix geometry

    • [ ] Polygons and LinearRings:

      • [ ] self-intersection

      • [ ] holes are actually within the polygon

      • [ ] Polygon exteriors must be counterclockwise, holes clockwise.

      • [ ] length of all rings > 4

      • [ ] repeated last point

    • [ ] LineStrings: NaN/Inf points

    • [x] Fix linear rings at some point to make sure the ring is closed, i.e., points[end] == points[begin]

  • Tests

    • [x] Simplify functions

    • [x] Polygonize

    • Barycentric tests for n_vertices > 4

Done

  • Rename bools.jl to something more relevant to the actual code -> orientation.jl

  • Doc improvements:

    • organise sections
- + \ No newline at end of file diff --git a/dev/experiments/accurate_accumulators.html b/dev/experiments/accurate_accumulators.html index 84106d5f6..f611974dc 100644 --- a/dev/experiments/accurate_accumulators.html +++ b/dev/experiments/accurate_accumulators.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -24,7 +24,7 @@ using NaturalEarth all_adm0 = naturalearth("admin_0_countries", 10)
FeatureCollection with 258 Features
julia
GO.area(all_adm0)
21427.909318372607
julia
AccurateArithmetic.sum_oro(GO.area.(all_adm0.geometry))
21427.909318372607
julia
AccurateArithmetic.sum_kbn(GO.area.(all_adm0.geometry))
21427.909318372607
julia
GI.Polygon.(GO.flatten(Union{GI.LineStringTrait, GI.LinearRingTrait}, all_adm0) |> collect .|> x -> [x]) .|> GO.signed_area |> sum
-21427.90063612163
julia
GI.Polygon.(GO.flatten(Union{GI.LineStringTrait, GI.LinearRingTrait}, all_adm0) |> collect .|> x -> [x]) .|> GO.signed_area |> sum_oro
-21427.90063612163

@example accurate GI.Polygon.(GO.flatten(Union{GI.LineStringTrait, GI.LinearRingTrait}, all_adm0) |> collect .|> x -> [x]) .|> GO.signed_area |> sum_kbn ```

- + \ No newline at end of file diff --git a/dev/experiments/predicates.html b/dev/experiments/predicates.html index 3ff81483a..a30a20654 100644 --- a/dev/experiments/predicates.html +++ b/dev/experiments/predicates.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -59,7 +59,7 @@ display(fig) end resize!(fig, 1000, 450) -fig

Dashboard

julia
using WGLMakie
+fig

Dashboard

julia
using WGLMakie
 import GeometryOps as GO, GeoInterface as GI, LibGEOS as LG
 import ExactPredicates
 using MultiFloats
@@ -116,7 +116,7 @@
 
 GO.intersection(p1_m, p2_m; target = GI.PolygonTrait(), fix_multipoly = nothing)
 LG.intersection(p1_m, p2_m)

Incircle

- + \ No newline at end of file diff --git a/dev/explanations/crs.html b/dev/explanations/crs.html index f332ca44e..23d938afc 100644 --- a/dev/explanations/crs.html +++ b/dev/explanations/crs.html @@ -8,18 +8,18 @@ - + - - - + + +
Skip to content
- + \ No newline at end of file diff --git a/dev/explanations/paradigms.html b/dev/explanations/paradigms.html index 4070b964a..b4d9ece89 100644 --- a/dev/explanations/paradigms.html +++ b/dev/explanations/paradigms.html @@ -8,18 +8,18 @@ - + - - - + + +
Skip to content

Paradigms

GeometryOps exposes functions like apply and applyreduce, as well as the fix and prepare APIs, that represent paradigms of programming, by which we mean the ability to program in a certain way, and in so doing, fit neatly into the tools we've built without needing to re-implement the wheel.

Below, we'll describe some of the foundational paradigms of GeometryOps, and why you should care!

apply

The apply function allows you to decompose a given collection of geometries down to a certain level, operate on it, and reconstruct it back to the same nested form as the original. In general, its invocation is:

julia
apply(f, trait::Trait, geom)

Functionally, it's similar to map in the way you apply it to geometries - except that you tell it at which level it should stop, by passing a trait to it.

apply will start by decomposing the geometry, feature, featurecollection, iterable, or table that you pass to it, and stop when it encounters a geometry for which GI.trait(geom) isa Trait. This encompasses unions of traits especially, but beware that any geometry which is not explicitly handled, and hits GI.PointTrait, will cause an error.

apply is unlike map in that it returns reconstructed geometries, instead of the raw output of the function. If you want a purely map-like behaviour, like calculating the length of each linestring in your feature collection, then call GO.flatten(f, trait, geom), which will decompose each geometry to the given trait and apply f to it, returning the decomposition as a flattened vector.

applyreduce

applyreduce is like the previous map-based approach that we mentioned, except that it reduces the result of f by op. Note that applyreduce does not guarantee associativity, so it's best to have typeof(init) == returntype(op).

fix and prepare

The fix and prepare paradigms are different from apply, though they are built on top of it. They involve the use of structs as "actions", where a constructed object indicates an action that should be taken. A trait like interface prescribes the level (polygon, linestring, point, etc) at which each action should be applied.

In general, the idea here is to be able to invoke several actions efficiently and simultaneously, for example when correcting invalid geometries, or instantiating a Prepared geometry with several preparations (sorted edge lists, rtrees, monotone chains, etc.)

- + \ No newline at end of file diff --git a/dev/explanations/peculiarities.html b/dev/explanations/peculiarities.html index e9c80f0f0..38dd6d9d1 100644 --- a/dev/explanations/peculiarities.html +++ b/dev/explanations/peculiarities.html @@ -8,18 +8,18 @@ - + - - - + + +
Skip to content

Peculiarities

What does apply return and why?

apply returns the target geometries returned by f, whatever type/package they are from, but geometries, features or feature collections that wrapped the target are replaced with GeoInterace.jl wrappers with matching GeoInterface.trait to the originals. All non-geointerface iterables become Arrays. Tables.jl compatible tables are converted either back to the original type if a Tables.materializer is defined, and if not then returned as generic NamedTuple column tables (i.e., a NamedTuple of vectors).

It is recommended for consistency that f returns GeoInterface geometries unless there is a performance/conversion overhead to doing that.

Why do you want me to provide a target in set operations?

In polygon set operations like intersection, difference, and union, many different geometry types may be obtained - depending on the relationship between the polygons. For example, when performing an union on two nonintersecting polygons, one would technically have two disjoint polygons as an output.

We use the target keyword to allow the user to control which kinds of geometry they want back. For example, setting target to PolygonTrait will cause a vector of polygons to be returned (this is the only currently supported behaviour). In future, we may implement MultiPolygonTrait or GeometryCollectionTrait targets which will return a single geometry, as LibGEOS and ArchGDAL do.

This also allows for a lot more type stability - when you ask for polygons, we won't return a geometrycollection with line segments. Especially in simulation workflows, this is excellent for simplified data processing.

_True and _False (or BoolsAsTypes)

Warning

These are internals and explicitly not public API, meaning they may change at any time!

When dispatch can be controlled by the value of a boolean variable, this introduces type instability. Instead of introducing type instability, we chose to encode our boolean decision variables, like threaded and calc_extent in apply, as types. This allows the compiler to reason about what will happen, and call the correct compiled method, in a stable way without worrying about

- + \ No newline at end of file diff --git a/dev/explanations/winding_order.html b/dev/explanations/winding_order.html index f73c6cb14..fb41b6fd5 100644 --- a/dev/explanations/winding_order.html +++ b/dev/explanations/winding_order.html @@ -8,18 +8,18 @@ - + - - - + + +
Skip to content
- + \ No newline at end of file diff --git a/dev/hashmap.json b/dev/hashmap.json index e5b80d152..1c32288e3 100644 --- a/dev/hashmap.json +++ b/dev/hashmap.json @@ -1 +1 @@ -{"source_transformations_flip.md":"DnLXdL10","source_transformations_transform.md":"YBLq-C0d","source_transformations_tuples.md":"C2uxFh5R","tutorials_creating_geometry.md":"Ba5HDinP","source_utils.md":"Ck0b-xnP","source_types.md":"alfcf5ch","source_methods_clipping_cut.md":"DdjJtpvQ","tutorials_spatial_joins.md":"DF6YEnVf","explanations_crs.md":"Ul3JLcxU","source_methods_geom_relations_coveredby.md":"DSYTv9At","source_methods_geom_relations_covers.md":"Cn9NnXbx","source_methods_area.md":"Co7T0ySf","explanations_paradigms.md":"BNU9BSvb","index.md":"BSzQiGph","source_methods_polygonize.md":"CPc2Ve6O","explanations_winding_order.md":"Cj79LNns","api.md":"Bo_5RxuP","explanations_peculiarities.md":"cAL8_feQ","call_notes.md":"CfRnXl82","source_methods_clipping_coverage.md":"CV_h3dgg","source_transformations_reproject.md":"ejT_ZLfU","source_methods_geom_relations_within.md":"CKEeW7pe","experiments_predicates.md":"BRm5FpBT","source_methods_geom_relations_intersects.md":"C_VheTU5","source_methods_geom_relations_contains.md":"Cd1msDdA","source_methods_equals.md":"B8L6TOEy","source_transformations_segmentize.md":"BitY5_vv","source_not_implemented_yet.md":"Cslwi2Lp","experiments_accurate_accumulators.md":"0lOa-t8Z","source_geometryops.md":"zU9L1-s8","source_methods_geom_relations_crosses.md":"ZWsJAfQM","introduction.md":"B7eSM3MZ","source_methods_geom_relations_overlaps.md":"BK6Ep8oV","source_transformations_correction_closed_ring.md":"QvRNSk6T","source_methods_orientation.md":"BWzBK4Gj","source_transformations_extent.md":"C5QeODJy","source_methods_buffer.md":"itYXrP7w","source_methods_clipping_clipping_processor.md":"D9ySvS68","source_methods_geom_relations_disjoint.md":"C7I0fwfX","source_transformations_correction_intersecting_polygons.md":"D94vW1tf","source_methods_centroid.md":"C3qwVpon","source_methods_clipping_union.md":"DXW2w0zo","source_methods_geom_relations_touches.md":"D9EtFIRn","source_methods_clipping_difference.md":"C9quGnCE","source_transformations_simplify.md":"DowmCtxw","source_methods_clipping_intersection.md":"Dlpra1AC","source_primitives.md":"khq_sgVW","source_methods_clipping_predicates.md":"BPcz9tUr","source_transformations_correction_geometry_correction.md":"BM3APl-H","source_methods_barycentric.md":"BPXr5wAv","source_methods_angles.md":"DSOyzasy","source_methods_geom_relations_geom_geom_processors.md":"DVnF_iJ5","source_methods_distance.md":"Cb4KbNCH"} +{"source_methods_angles.md":"CJN-j8Zb","explanations_crs.md":"C58USpoD","introduction.md":"Cve25PKI","source_methods_clipping_predicates.md":"CaEd1cqF","explanations_paradigms.md":"D8SW9MN_","explanations_winding_order.md":"CcBW0gLF","experiments_accurate_accumulators.md":"D2JpOeKA","source_geometryops.md":"Bm0ymJAW","experiments_predicates.md":"C9z1tYkb","index.md":"eRsZ4vQP","source_methods_area.md":"DSkC2ZVp","call_notes.md":"ChgwnOQ4","explanations_peculiarities.md":"CYDu54kk","source_methods_clipping_difference.md":"DKICJey0","source_methods_clipping_intersection.md":"BP5gQs4H","source_methods_clipping_cut.md":"Cr4rl-rJ","source_methods_clipping_coverage.md":"DjT_yCKK","source_methods_barycentric.md":"CraLUsaE","source_methods_centroid.md":"CWo2Byua","source_methods_buffer.md":"a7_Ry1-C","source_methods_clipping_union.md":"DId4TUIp","source_methods_geom_relations_geom_geom_processors.md":"DPqscrha","source_methods_geom_relations_overlaps.md":"CXwX2Yh6","source_transformations_correction_closed_ring.md":"DntaP39m","source_transformations_correction_geometry_correction.md":"D62mIWpm","source_transformations_correction_intersecting_polygons.md":"CCU9SBBm","source_transformations_reproject.md":"HOlLv8MG","source_transformations_extent.md":"Binhj5-Q","source_not_implemented_yet.md":"BswTCT_k","source_transformations_segmentize.md":"C-3cSSM9","source_methods_geom_relations_crosses.md":"CsL9V3Uq","source_methods_geom_relations_within.md":"BpgG9EGU","source_primitives.md":"B2xcVnGa","source_methods_geom_relations_contains.md":"BYT2sly9","source_methods_orientation.md":"CzhmZXmk","source_methods_equals.md":"BiPoFleH","source_methods_geom_relations_coveredby.md":"iMvqApp7","source_transformations_transform.md":"DPAnmLjJ","source_transformations_tuples.md":"Cnq1Lhn-","source_types.md":"iAGAINF3","source_methods_geom_relations_touches.md":"BWGnj7y9","source_utils.md":"BODgQKSD","tutorials_spatial_joins.md":"AcIKbo3I","tutorials_creating_geometry.md":"BE1ZjpFz","source_methods_clipping_clipping_processor.md":"BzLSDlAm","source_methods_geom_relations_disjoint.md":"BB7Umdpw","source_methods_geom_relations_intersects.md":"BTeIImvw","source_methods_distance.md":"CmnoPimL","source_transformations_flip.md":"nGRYw1RJ","source_methods_geom_relations_covers.md":"Dm7M2xAO","source_methods_polygonize.md":"BcZSpnGy","source_transformations_simplify.md":"DMmXs_mt","api.md":"t9faiPJb"} diff --git a/dev/index.html b/dev/index.html index 426d0a1d2..f8f0ad1e5 100644 --- a/dev/index.html +++ b/dev/index.html @@ -8,18 +8,18 @@ - + - - - + + +
Skip to content

GeometryOps.jl

Blazing fast geometry operations in pure Julia

GeometryOps

What is GeometryOps.jl?

GeometryOps.jl is a package for geometric calculations on (primarily 2D) geometries.

The driving idea behind this package is to unify all the disparate packages for geometric calculations in Julia, and make them GeoInterface.jl-compatible. We seem to be focusing primarily on 2/2.5D geometries for now.

Most of the usecases are driven by GIS and similar Earth data workflows, so this might be a bit specialized towards that, but methods should always be general to any coordinate space.

We welcome contributions, either as pull requests or discussion on issues!

- + \ No newline at end of file diff --git a/dev/introduction.html b/dev/introduction.html index 12e1ad0e1..12f303b99 100644 --- a/dev/introduction.html +++ b/dev/introduction.html @@ -8,18 +8,18 @@ - + - - - + + +
Skip to content

Introduction

GeometryOps.jl is a package for geometric calculations on (primarily 2D) geometries.

The driving idea behind this package is to unify all the disparate packages for geometric calculations in Julia, and make them GeoInterface.jl-compatible. We seem to be focusing primarily on 2/2.5D geometries for now.

Most of the usecases are driven by GIS and similar Earth data workflows, so this might be a bit specialized towards that, but methods should always be general to any coordinate space.

We welcome contributions, either as pull requests or discussion on issues!

Main concepts

The apply paradigm

Note

See the Primitive Functions page for more information on this.

The apply function allows you to decompose a given collection of geometries down to a certain level, and then operate on it.

Functionally, it's similar to map in the way you apply it to geometries.

apply and applyreduce take any geometry, vector of geometries, collection of geometries, or table (like Shapefile.Table, DataFrame, or GeoTable)!

What's this GeoInterface.Wrapper thing?

Write a comment about GeoInterface.Wrapper and why it helps in type stability to guarantee a particular return type.

- + \ No newline at end of file diff --git a/dev/source/GeometryOps.html b/dev/source/GeometryOps.html index f3b4eabd9..4ecf0b0fe 100644 --- a/dev/source/GeometryOps.html +++ b/dev/source/GeometryOps.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -90,7 +90,7 @@ end end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/methods/angles.html b/dev/source/methods/angles.html index 413ee9af5..58be2e331 100644 --- a/dev/source/methods/angles.html +++ b/dev/source/methods/angles.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -23,7 +23,7 @@ using Makie, CairoMakie rect = GI.Polygon([[(0.0, 0.0), (0.0, 1.0), (1.0, 1.0), (1.0, 0.0), (0.0, 0.0)]]) -f, a, p = poly(collect(GI.getpoint(rect)); axis = (; aspect = DataAspect()))

This is clearly a rectangle, with angles of 90 degrees.

julia
GO.angles(rect)  # [90, 90, 90, 90]
4-element Vector{Float64}:
+f, a, p = poly(collect(GI.getpoint(rect)); axis = (; aspect = DataAspect()))

This is clearly a rectangle, with angles of 90 degrees.

julia
GO.angles(rect)  # [90, 90, 90, 90]
4-element Vector{Float64}:
  90.0
  90.0
  90.0
@@ -142,7 +142,7 @@
     angle = real(acos(val) * 180 / π)
     return angle * (cross_prod < 0 ? -1 : 1)
 end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/methods/area.html b/dev/source/methods/area.html index 120eef86a..2ab25a62a 100644 --- a/dev/source/methods/area.html +++ b/dev/source/methods/area.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -24,10 +24,10 @@ using CairoMakie rect = GI.Polygon([[(0,0), (0,1), (1,1), (1,0), (0, 0)]]) -f, a, p = poly(collect(GI.getpoint(rect)); axis = (; aspect = DataAspect()))

This is clearly a rectangle, etc. But now let's look at how the points look:

julia
lines!(
+f, a, p = poly(collect(GI.getpoint(rect)); axis = (; aspect = DataAspect()))

This is clearly a rectangle, etc. But now let's look at how the points look:

julia
lines!(
     collect(GI.getpoint(rect));
     color = 1:GI.npoint(rect), linewidth = 10.0)
-f

The points are ordered in a counterclockwise fashion, which means that the signed area is negative. If we reverse the order of the points, we get a postive area.

julia
GO.signed_area(rect)  # -1.0
-1.0

Implementation

This is the GeoInterface-compatible implementation. First, we implement a wrapper method that dispatches to the correct implementation based on the geometry trait. This is also used in the implementation, since it's a lot less work!

Note that area and signed area are zero for all points and curves, even if the curves are closed like with a linear ring. Also note that signed area really only makes sense for polygons, given with a multipolygon can have several polygons each with a different orientation and thus the absolute value of the signed area might not be the area. This is why signed area is only implemented for polygons.

Targets for applys functions

julia
const _AREA_TARGETS = TraitTarget{Union{GI.PolygonTrait,GI.AbstractCurveTrait,GI.MultiPointTrait,GI.PointTrait}}()
+f

The points are ordered in a counterclockwise fashion, which means that the signed area is negative. If we reverse the order of the points, we get a postive area.

julia
GO.signed_area(rect)  # -1.0
-1.0

Implementation

This is the GeoInterface-compatible implementation. First, we implement a wrapper method that dispatches to the correct implementation based on the geometry trait. This is also used in the implementation, since it's a lot less work!

Note that area and signed area are zero for all points and curves, even if the curves are closed like with a linear ring. Also note that signed area really only makes sense for polygons, given with a multipolygon can have several polygons each with a different orientation and thus the absolute value of the signed area might not be the area. This is why signed area is only implemented for polygons.

Targets for applys functions

julia
const _AREA_TARGETS = TraitTarget{Union{GI.PolygonTrait,GI.AbstractCurveTrait,GI.MultiPointTrait,GI.PointTrait}}()
 
 """
     area(geom, [T = Float64])::T
@@ -105,7 +105,7 @@
     area += _area_component(p1, p2)
     return T(area / 2)
 end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/methods/barycentric.html b/dev/source/methods/barycentric.html index d713f351c..bef5abb07 100644 --- a/dev/source/methods/barycentric.html +++ b/dev/source/methods/barycentric.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -433,7 +433,7 @@ struct Wachspress <: AbstractBarycentricCoordinateMethod end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/methods/buffer.html b/dev/source/methods/buffer.html index 4c548f7ff..ba015c29f 100644 --- a/dev/source/methods/buffer.html +++ b/dev/source/methods/buffer.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -29,7 +29,7 @@ println(io, " in your REPL, \nor otherwise loading LibGEOS.jl via using or import.") end end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/methods/centroid.html b/dev/source/methods/centroid.html index 6e68c0fa1..10c02ad79 100644 --- a/dev/source/methods/centroid.html +++ b/dev/source/methods/centroid.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -24,9 +24,9 @@ using CairoMakie cshape = GI.Polygon([[(0,0), (0,3), (3,3), (3,2), (1,2), (1,1), (3,1), (3,0), (0,0)]]) -f, a, p = poly(collect(GI.getpoint(cshape)); axis = (; aspect = DataAspect()))

Let's see what the centroid looks like (plotted in red):

julia
cent = GO.centroid(cshape)
+f, a, p = poly(collect(GI.getpoint(cshape)); axis = (; aspect = DataAspect()))

Let's see what the centroid looks like (plotted in red):

julia
cent = GO.centroid(cshape)
 scatter!(GI.x(cent), GI.y(cent), color = :red)
-f

Implementation

This is the GeoInterface-compatible implementation.

First, we implement a wrapper method that dispatches to the correct implementation based on the geometry trait. This is also used in the implementation, since it's a lot less work!

Note that if you call centroid on a LineString or LinearRing, the centroid_and_length function will be called due to the weighting scheme described above, while centroid_and_area is called for polygons and multipolygons. However, centroid_and_area can still be called on a LineString or LinearRing when they are closed, for example as the interior hole of a polygon.

The helper functions centroid_and_length and centroid_and_area are made availible just in case the user also needs the area or length to decrease repeat computation.

julia
"""
+f

Implementation

This is the GeoInterface-compatible implementation.

First, we implement a wrapper method that dispatches to the correct implementation based on the geometry trait. This is also used in the implementation, since it's a lot less work!

Note that if you call centroid on a LineString or LinearRing, the centroid_and_length function will be called due to the weighting scheme described above, while centroid_and_area is called for polygons and multipolygons. However, centroid_and_area can still be called on a LineString or LinearRing when they are closed, for example as the interior hole of a polygon.

The helper functions centroid_and_length and centroid_and_area are made availible just in case the user also needs the area or length to decrease repeat computation.

julia
"""
     centroid(geom, [T=Float64])::Tuple{T, T}
 
 Returns the centroid of a given line segment, linear ring, polygon, or
@@ -111,7 +111,7 @@
     y = (y1 * area1 + y2 * area2) / area
     return (x, y), area
 end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/methods/clipping/clipping_processor.html b/dev/source/methods/clipping/clipping_processor.html index cea3c2d84..2594d8691 100644 --- a/dev/source/methods/clipping/clipping_processor.html +++ b/dev/source/methods/clipping/clipping_processor.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -525,7 +525,7 @@ end return end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/methods/clipping/coverage.html b/dev/source/methods/clipping/coverage.html index f1037110f..da2ba6f24 100644 --- a/dev/source/methods/clipping/coverage.html +++ b/dev/source/methods/clipping/coverage.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -28,7 +28,7 @@ xmin, xmax, ymin, ymax = 0, 2, 0, 2 f, a, p = poly(collect(GI.getpoint(cell)); axis = (; aspect = DataAspect())) poly!(collect(GI.getpoint(rect))) -f

It is clear that half of the polygon is within the cell, so the coverage should be 1.0, half of the area of the rectangle.

julia
GO.coverage(rect, xmin, xmax, ymin, ymax)
1.0

Implementation

This is the GeoInterface-compatible implementation. First, we implement a wrapper method that dispatches to the correct implementation based on the geometry trait. This is also used in the implementation, since it's a lot less work!

Note that the coverage is zero for all points and curves, even if the curves are closed like with a linear ring.

Targets for applys functions

julia
const _COVERAGE_TARGETS = TraitTarget{Union{GI.PolygonTrait,GI.AbstractCurveTrait,GI.MultiPointTrait,GI.PointTrait}}()

Wall types for coverage

julia
const UNKNOWN, NORTH, EAST, SOUTH, WEST = 0:4
+f

It is clear that half of the polygon is within the cell, so the coverage should be 1.0, half of the area of the rectangle.

julia
GO.coverage(rect, xmin, xmax, ymin, ymax)
1.0

Implementation

This is the GeoInterface-compatible implementation. First, we implement a wrapper method that dispatches to the correct implementation based on the geometry trait. This is also used in the implementation, since it's a lot less work!

Note that the coverage is zero for all points and curves, even if the curves are closed like with a linear ring.

Targets for applys functions

julia
const _COVERAGE_TARGETS = TraitTarget{Union{GI.PolygonTrait,GI.AbstractCurveTrait,GI.MultiPointTrait,GI.PointTrait}}()

Wall types for coverage

julia
const UNKNOWN, NORTH, EAST, SOUTH, WEST = 0:4
 
 """
     coverage(geom, xmin, xmax, ymin, ymax, [T = Float64])::T
@@ -241,7 +241,7 @@
     y_wall = (wall == NORTH || wall == WEST) ? ymax : ymin
     return x1 * y_wall - x_wall * y1
 end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/methods/clipping/cut.html b/dev/source/methods/clipping/cut.html index 8cb681410..77ef0039d 100644 --- a/dev/source/methods/clipping/cut.html +++ b/dev/source/methods/clipping/cut.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -29,7 +29,7 @@ f, a, p1 = Makie.poly(collect(GI.getpoint(cut_polys[1])); color = (:blue, 0.5)) Makie.poly!(collect(GI.getpoint(cut_polys[2])); color = (:orange, 0.5)) Makie.lines!(GI.getpoint(line); color = :black) -f

Implementation

This function depends on polygon clipping helper function and is inspired by the Greiner-Hormann clipping algorithm used elsewhere in this library. The inspiration came from this Stack Overflow discussion.

julia
"""
+f

Implementation

This function depends on polygon clipping helper function and is inspired by the Greiner-Hormann clipping algorithm used elsewhere in this library. The inspiration came from this Stack Overflow discussion.

julia
"""
     cut(geom, line, [T::Type])
 
 Return given geom cut by given line as a list of geometries of the same type as the input
@@ -105,7 +105,7 @@
     end
     return return_coords
 end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/methods/clipping/difference.html b/dev/source/methods/clipping/difference.html index 27e5a2dd6..f6b4410c9 100644 --- a/dev/source/methods/clipping/difference.html +++ b/dev/source/methods/clipping/difference.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -184,7 +184,7 @@ ) return nothing end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/methods/clipping/intersection.html b/dev/source/methods/clipping/intersection.html index c228f3303..0203397b4 100644 --- a/dev/source/methods/clipping/intersection.html +++ b/dev/source/methods/clipping/intersection.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -173,47 +173,42 @@ end """ - intersection_points( - geom_a, - geom_b, - )::Union{ - ::Vector{::Tuple{::Real, ::Real}}, - ::Nothing, - } + intersection_points(geom_a, geom_b, [T::Type]) -Return a list of intersection points between two geometries of type GI.Point. -If no intersection point was possible given geometry extents, returns an empty -list. +Return a list of intersection tuple points between two geometries. If no intersection points +exist, returns an empty list. + +# Example + +```jldoctest +import GeoInterface as GI, GeometryOps as GO + +line1 = GI.Line([(124.584961,-12.768946), (126.738281,-17.224758)]) +line2 = GI.Line([(123.354492,-15.961329), (127.22168,-14.008696)]) +inter_points = GO.intersection_points(line1, line2)

output

julia
1-element Vector{Tuple{Float64, Float64}}:
+ (125.58375366067548, -14.83572303404496)
 """
-intersection_points(geom_a, geom_b, ::Type{T} = Float64) where T <: AbstractFloat =
-    _intersection_points(T, GI.trait(geom_a), geom_a, GI.trait(geom_b), geom_b)
+intersection_points(geom_a, geom_b, ::Type{T} = Float64) where T <: AbstractFloat =
+    _intersection_points(T, GI.trait(geom_a), geom_a, GI.trait(geom_b), geom_b)
 
 
-#= Calculates the list of intersection points between two geometries, inlcuding line
-segments, line strings, linear rings, polygons, and multipolygons. If no intersection points
-were possible given geometry extents or if none are found, return an empty list of
-GI.Points. =#
-function _intersection_points(::Type{T}, ::GI.AbstractTrait, a, ::GI.AbstractTrait, b; exact = _False()) where T

Initialize an empty list of points

julia
    result = GI.Point[]

Check if the geometries extents even overlap

julia
    Extents.intersects(GI.extent(a), GI.extent(b)) || return result

Create a list of edges from the two input geometries

julia
    edges_a, edges_b = map(sort!  to_edges, (a, b))
-    npoints_a, npoints_b  = length(edges_a), length(edges_b)
-    a_closed = npoints_a > 1 && edges_a[1][1] == edges_a[end][1]
-    b_closed = npoints_b > 1 && edges_b[1][1] == edges_b[end][1]
-    if npoints_a > 0 && npoints_b > 0

Loop over pairs of edges and add any intersection points to results

julia
        for i in eachindex(edges_a), j in eachindex(edges_b)
-            line_orient, intr1, _ = _intersection_point(T, edges_a[i], edges_b[j]; exact)

TODO: Add in degenerate intersection points when line_over

julia
            if line_orient == line_cross || line_orient == line_hinge
-                #=
-                Determine if point is on edge (all edge endpoints excluded
-                except for the last edge for an open geometry)
-                =#
-                point, (α, β) = intr1
-                on_a_edge = (!a_closed && i == npoints_a && 0 <= α <= 1) ||
-                    (0 <= α < 1)
-                on_b_edge = (!b_closed && j == npoints_b && 0 <= β <= 1) ||
-                    (0 <= β < 1)
-                if on_a_edge && on_b_edge
-                    push!(result, GI.Point(point))
-                end
-            end
+#= Calculates the list of intersection points between two geometries, inlcuding line
+segments, line strings, linear rings, polygons, and multipolygons. =#
+function _intersection_points(::Type{T}, ::GI.AbstractTrait, a, ::GI.AbstractTrait, b; exact = _True()) where T

Initialize an empty list of points

julia
    result = Tuple{T, T}[]

Check if the geometries extents even overlap

julia
    Extents.intersects(GI.extent(a), GI.extent(b)) || return result

Create a list of edges from the two input geometries

julia
    edges_a, edges_b = map(sort!  to_edges, (a, b))

Loop over pairs of edges and add any unique intersection points to results

julia
    for a_edge in edges_a, b_edge in edges_b
+        line_orient, intr1, intr2 = _intersection_point(T, a_edge, b_edge; exact)
+        line_orient == line_out && continue  # no intersection points
+        pt1, _ = intr1
+        push!(result, pt1)  # if not line_out, there is at least one intersection point
+        if line_orient == line_over # if line_over, there are two intersection points
+            pt2, _ = intr2
+            push!(result, pt2)
         end
     end
+    #= TODO: We might be able to just add unique points with checks on the α and β values
+    returned from `_intersection_point`, but this would be different for curves vs polygons
+    vs multipolygons depending on if the shape is closed. This then wouldn't allow using the
+    `to_edges` functionality.  =#
+    unique!(sort!(result))
     return result
 end
 
@@ -406,7 +401,7 @@
         α, β = _clamped_frac(distance(min_pt, a2, T), a_dist, eps(T)), one(T) - eps(T)
     end

Return point with smallest distance

julia
    return _tuple_point(min_pt, T), α, β
 end

Return value of x/y clamped between ϵ and 1 - ϵ

julia
_clamped_frac(x::T, y::T, ϵ = zero(T)) where T = clamp(x / y, ϵ, one(T) - ϵ)

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/methods/clipping/predicates.html b/dev/source/methods/clipping/predicates.html index 36f8cbd9b..bc3249058 100644 --- a/dev/source/methods/clipping/predicates.html +++ b/dev/source/methods/clipping/predicates.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -62,7 +62,7 @@ end import .Predicates

If we want to inject adaptivity, we would do something like:

function cross(a, b, c) # try Predicates._cross_naive(a, b, c) # check the error bound there # then try Predicates._cross_adaptive(a, b, c) # then try Predicates._cross_exact end


This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/methods/clipping/union.html b/dev/source/methods/clipping/union.html index b0a6da79c..52acff9f9 100644 --- a/dev/source/methods/clipping/union.html +++ b/dev/source/methods/clipping/union.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -268,7 +268,7 @@ throw(ArgumentError("Union between $trait_a and $trait_b with target $Target isn't implemented yet.")) return nothing end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/methods/distance.html b/dev/source/methods/distance.html index b151e9b63..904568d7f 100644 --- a/dev/source/methods/distance.html +++ b/dev/source/methods/distance.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -29,13 +29,13 @@ f, a, p = poly(collect(GI.getpoint(rect)); axis = (; aspect = DataAspect())) scatter!(GI.x(point_in), GI.y(point_in); color = :red) scatter!(GI.x(point_out), GI.y(point_out); color = :orange) -f

This is clearly a rectangle with one point inside and one point outside. The points are both an equal distance to the polygon. The distance to point_in is negative while the distance to point_out is positive.

julia
(
+f

This is clearly a rectangle with one point inside and one point outside. The points are both an equal distance to the polygon. The distance to point_in is negative while the distance to point_out is positive.

julia
(
 GO.distance(point_in, rect),  # == 0
 GO.signed_distance(point_in, rect),  # < 0
 GO.signed_distance(point_out, rect)  # > 0
 )
(0.0, -0.5, 0.5)

Consider also a heatmap of signed distances around this object:

julia
xrange = yrange = LinRange(-0.5, 1.5, 300)
 f, a, p = heatmap(xrange, yrange, GO.signed_distance.(Point2f.(xrange, yrange'), Ref(rect)); colormap = :RdBu, colorrange = (-0.75, 0.75))
-a.aspect = DataAspect(); Colorbar(f[1, 2], p, label = "Signed distance"); lines!(a, GI.convert(GO.GeometryBasics, rect)); f

Implementation

This is the GeoInterface-compatible implementation. First, we implement a wrapper method that dispatches to the correct implementation based on the geometry trait. This is also used in the implementation, since it's a lot less work!

Distance and signed distance are only implemented for points to other geometries right now. This could be extended to include distance from other geometries in the future.

The distance calculated is the Euclidean distance using the Pythagorean theorem. Also note that singed_distance only makes sense for "filled-in" shapes, like polygons, so it isn't implemented for curves.

julia
const _DISTANCE_TARGETS = TraitTarget{Union{GI.AbstractPolygonTrait,GI.LineStringTrait,GI.LinearRingTrait,GI.LineTrait,GI.PointTrait}}()
+a.aspect = DataAspect(); Colorbar(f[1, 2], p, label = "Signed distance"); lines!(a, GI.convert(GO.GeometryBasics, rect)); f

Implementation

This is the GeoInterface-compatible implementation. First, we implement a wrapper method that dispatches to the correct implementation based on the geometry trait. This is also used in the implementation, since it's a lot less work!

Distance and signed distance are only implemented for points to other geometries right now. This could be extended to include distance from other geometries in the future.

The distance calculated is the Euclidean distance using the Pythagorean theorem. Also note that singed_distance only makes sense for "filled-in" shapes, like polygons, so it isn't implemented for curves.

julia
const _DISTANCE_TARGETS = TraitTarget{Union{GI.AbstractPolygonTrait,GI.LineStringTrait,GI.LinearRingTrait,GI.LineTrait,GI.PointTrait}}()
 
 """
     distance(point, geom, ::Type{T} = Float64)::T
@@ -199,7 +199,7 @@
     end
     return min_dist
 end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/methods/equals.html b/dev/source/methods/equals.html index b91b11207..d04e12f2c 100644 --- a/dev/source/methods/equals.html +++ b/dev/source/methods/equals.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -29,7 +29,7 @@ scatter!(GI.getpoint(l1), color = :blue) lines!(GI.getpoint(l2), color = :orange) scatter!(GI.getpoint(l2), color = :orange) -f

We can see that the two lines do not share a commen set of points and edges in the plot, so they are not equal:

julia
GO.equals(l1, l2)  # returns false
false

Implementation

This is the GeoInterface-compatible implementation.

First, we implement a wrapper method that dispatches to the correct implementation based on the geometry trait. This is also used in the implementation, since it's a lot less work!

Note that while we need the same set of points and edges, they don't need to be provided in the same order for polygons. For for example, we need the same set points for two multipoints to be equal, but they don't have to be saved in the same order. The winding order also doesn't have to be the same to represent the same geometry. This requires checking every point against every other point in the two geometries we are comparing. Also, some geometries must be "closed" like polygons and linear rings. These will be assumed to be closed, even if they don't have a repeated last point explicity written in the coordinates. Additionally, geometries and multi-geometries can be equal if the multi-geometry only includes that single geometry.

julia
"""
+f

We can see that the two lines do not share a commen set of points and edges in the plot, so they are not equal:

julia
GO.equals(l1, l2)  # returns false
false

Implementation

This is the GeoInterface-compatible implementation.

First, we implement a wrapper method that dispatches to the correct implementation based on the geometry trait. This is also used in the implementation, since it's a lot less work!

Note that while we need the same set of points and edges, they don't need to be provided in the same order for polygons. For for example, we need the same set points for two multipoints to be equal, but they don't have to be saved in the same order. The winding order also doesn't have to be the same to represent the same geometry. This requires checking every point against every other point in the two geometries we are comparing. Also, some geometries must be "closed" like polygons and linear rings. These will be assumed to be closed, even if they don't have a repeated last point explicity written in the coordinates. Additionally, geometries and multi-geometries can be equal if the multi-geometry only includes that single geometry.

julia
"""
     equals(geom1, geom2)::Bool
 
 Compare two Geometries return true if they are the same geometry.
@@ -283,7 +283,7 @@
     end
     return true
 end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/methods/geom_relations/contains.html b/dev/source/methods/geom_relations/contains.html index c2fcdb874..9431eb6d4 100644 --- a/dev/source/methods/geom_relations/contains.html +++ b/dev/source/methods/geom_relations/contains.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -29,7 +29,7 @@ scatter!(GI.getpoint(l1), color = :blue) lines!(GI.getpoint(l2), color = :orange) scatter!(GI.getpoint(l2), color = :orange) -f

We can see that all of the points and edges of l2 are within l1, so l1 contains l2. However, l2 does not contain l1.

julia
GO.contains(l1, l2)  # returns true
+f

We can see that all of the points and edges of l2 are within l1, so l1 contains l2. However, l2 does not contain l1.

julia
GO.contains(l1, l2)  # returns true
 GO.contains(l2, l1)  # returns false
false

Implementation

This is the GeoInterface-compatible implementation.

Given that contains is the exact opposite of within, we simply pass the two inputs variables, swapped in order, to within.

julia
"""
     contains(g1::AbstractGeometry, g2::AbstractGeometry)::Bool
 
@@ -51,7 +51,7 @@
 ```
 """
 contains(g1, g2) = GeometryOps.within(g2, g1)

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/methods/geom_relations/coveredby.html b/dev/source/methods/geom_relations/coveredby.html index 968787d3b..d34238b53 100644 --- a/dev/source/methods/geom_relations/coveredby.html +++ b/dev/source/methods/geom_relations/coveredby.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -27,7 +27,7 @@ l1 = GI.Line([p1, (1.0, 1.0)]) f, a, p = lines(GI.getpoint(l1)) scatter!(p1, color = :red) -f

As we can see, p1 is on the endpoint of l1. This means it is not within, but it does meet the definition of coveredby.

julia
GO.coveredby(p1, l1)  # true
true

Implementation

This is the GeoInterface-compatible implementation.

First, we implement a wrapper method that dispatches to the correct implementation based on the geometry trait.

Each of these calls a method in the geom_geom_processors file. The methods in this file determine if the given geometries meet a set of criteria. For the coveredby function and arguments g1 and g2, this criteria is as follows: - points of g1 are allowed to be in the interior of g2 (either through overlap or crossing for lines) - points of g1 are allowed to be on the boundary of g2 - points of g1 are not allowed to be in the exterior of g2 - no points of g1 are required to be in the interior of g2 - no points of g1 are required to be on the boundary of g2 - no points of g1 are required to be in the exterior of g2

The code for the specific implementations is in the geom_geom_processors file.

julia
const COVEREDBY_ALLOWS = (in_allow = true, on_allow = true, out_allow = false)
+f

As we can see, p1 is on the endpoint of l1. This means it is not within, but it does meet the definition of coveredby.

julia
GO.coveredby(p1, l1)  # true
true

Implementation

This is the GeoInterface-compatible implementation.

First, we implement a wrapper method that dispatches to the correct implementation based on the geometry trait.

Each of these calls a method in the geom_geom_processors file. The methods in this file determine if the given geometries meet a set of criteria. For the coveredby function and arguments g1 and g2, this criteria is as follows: - points of g1 are allowed to be in the interior of g2 (either through overlap or crossing for lines) - points of g1 are allowed to be on the boundary of g2 - points of g1 are not allowed to be in the exterior of g2 - no points of g1 are required to be in the interior of g2 - no points of g1 are required to be on the boundary of g2 - no points of g1 are required to be in the exterior of g2

The code for the specific implementations is in the geom_geom_processors file.

julia
const COVEREDBY_ALLOWS = (in_allow = true, on_allow = true, out_allow = false)
 const COVEREDBY_CURVE_ALLOWS = (over_allow = true, cross_allow = true, on_allow = true, out_allow = false)
 const COVEREDBY_CURVE_REQUIRES = (in_require = false, on_require = false, out_require = false)
 const COVEREDBY_POLYGON_REQUIRES = (in_require = true, on_require = false, out_require = false,)
@@ -201,7 +201,7 @@
     end
     return true
 end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/methods/geom_relations/covers.html b/dev/source/methods/geom_relations/covers.html index 7654bdeb3..4b3c83e8c 100644 --- a/dev/source/methods/geom_relations/covers.html +++ b/dev/source/methods/geom_relations/covers.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -29,7 +29,7 @@ f, a, p = lines(GI.getpoint(l1)) scatter!(p1, color = :red) -f

julia
GO.covers(l1, p1)  # returns true
+f

julia
GO.covers(l1, p1)  # returns true
 GO.covers(p1, l1)  # returns false
false

Implementation

This is the GeoInterface-compatible implementation.

Given that covers is the exact opposite of coveredby, we simply pass the two inputs variables, swapped in order, to coveredby.

julia
"""
     covers(g1::AbstractGeometry, g2::AbstractGeometry)::Bool
 
@@ -51,7 +51,7 @@
 ```
 """
 covers(g1, g2)::Bool = GeometryOps.coveredby(g2, g1)

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/methods/geom_relations/crosses.html b/dev/source/methods/geom_relations/crosses.html index c9a8ff135..a79a10fbf 100644 --- a/dev/source/methods/geom_relations/crosses.html +++ b/dev/source/methods/geom_relations/crosses.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -138,7 +138,7 @@ end return false end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/methods/geom_relations/disjoint.html b/dev/source/methods/geom_relations/disjoint.html index c7b1926dc..72d698652 100644 --- a/dev/source/methods/geom_relations/disjoint.html +++ b/dev/source/methods/geom_relations/disjoint.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -29,7 +29,7 @@ scatter!(GI.getpoint(l1), color = :blue) lines!(GI.getpoint(l2), color = :orange) scatter!(GI.getpoint(l2), color = :orange) -f

We can see that none of the edges or vertices of l1 interact with l2 so they are disjoint.

julia
GO.disjoint(l1, l2)  # returns true
true

Implementation

This is the GeoInterface-compatible implementation.

First, we implement a wrapper method that dispatches to the correct implementation based on the geometry trait.

Each of these calls a method in the geom_geom_processors file. The methods in this file determine if the given geometries meet a set of criteria. For the disjoint function and arguments g1 and g2, this criteria is as follows: - points of g1 are not allowed to be in the interior of g2 - points of g1 are not allowed to be on the boundary of g2 - points of g1 are allowed to be in the exterior of g2 - no points required to be in the interior of g2 - no points of g1 are required to be on the boundary of g2 - no points of g1 are required to be in the exterior of g2

The code for the specific implementations is in the geom_geom_processors file.

julia
const DISJOINT_ALLOWS = (in_allow = false, on_allow = false, out_allow = true)
+f

We can see that none of the edges or vertices of l1 interact with l2 so they are disjoint.

julia
GO.disjoint(l1, l2)  # returns true
true

Implementation

This is the GeoInterface-compatible implementation.

First, we implement a wrapper method that dispatches to the correct implementation based on the geometry trait.

Each of these calls a method in the geom_geom_processors file. The methods in this file determine if the given geometries meet a set of criteria. For the disjoint function and arguments g1 and g2, this criteria is as follows: - points of g1 are not allowed to be in the interior of g2 - points of g1 are not allowed to be on the boundary of g2 - points of g1 are allowed to be in the exterior of g2 - no points required to be in the interior of g2 - no points of g1 are required to be on the boundary of g2 - no points of g1 are required to be in the exterior of g2

The code for the specific implementations is in the geom_geom_processors file.

julia
const DISJOINT_ALLOWS = (in_allow = false, on_allow = false, out_allow = true)
 const DISJOINT_CURVE_ALLOWS = (over_allow = false, cross_allow = false, on_allow = false, out_allow = true)
 const DISJOINT_REQUIRES = (in_require = false, on_require = false, out_require = false)
 const DISJOINT_EXACT = (exact = _False(),)
@@ -196,7 +196,7 @@
     end
     return true
 end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/methods/geom_relations/geom_geom_processors.html b/dev/source/methods/geom_relations/geom_geom_processors.html index 7721eabd5..b33ba5309 100644 --- a/dev/source/methods/geom_relations/geom_geom_processors.html +++ b/dev/source/methods/geom_relations/geom_geom_processors.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -455,7 +455,7 @@ end return skip, returnval end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/methods/geom_relations/intersects.html b/dev/source/methods/geom_relations/intersects.html index bf44518a9..899c5592a 100644 --- a/dev/source/methods/geom_relations/intersects.html +++ b/dev/source/methods/geom_relations/intersects.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -27,7 +27,7 @@ line2 = GI.Line([(123.354492,-15.961329), (127.22168,-14.008696)]) f, a, p = lines(GI.getpoint(line1)) lines!(GI.getpoint(line2)) -f

We can see that they intersect, so we expect intersects to return true, and we can visualize the intersection point in red.

julia
GO.intersects(line1, line2)  # true
true

Implementation

This is the GeoInterface-compatible implementation.

Given that intersects is the exact opposite of disjoint, we simply pass the two inputs variables, swapped in order, to disjoint.

julia
"""
+f

We can see that they intersect, so we expect intersects to return true, and we can visualize the intersection point in red.

julia
GO.intersects(line1, line2)  # true
true

Implementation

This is the GeoInterface-compatible implementation.

Given that intersects is the exact opposite of disjoint, we simply pass the two inputs variables, swapped in order, to disjoint.

julia
"""
     intersects(geom1, geom2)::Bool
 
 Return true if the interiors or boundaries of the two geometries interact.
@@ -45,7 +45,7 @@
 ```
 """
 intersects(geom1, geom2) = !disjoint(geom1, geom2)

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/methods/geom_relations/overlaps.html b/dev/source/methods/geom_relations/overlaps.html index 4c68da3e0..b00fc6d9c 100644 --- a/dev/source/methods/geom_relations/overlaps.html +++ b/dev/source/methods/geom_relations/overlaps.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -29,7 +29,7 @@ scatter!(GI.getpoint(l1), color = :blue) lines!(GI.getpoint(l2), color = :orange) scatter!(GI.getpoint(l2), color = :orange) -f

We can see that the two lines overlap in the plot:

julia
GO.overlaps(l1, l2)  # true
true

Implementation

This is the GeoInterface-compatible implementation.

First, we implement a wrapper method that dispatches to the correct implementation based on the geometry trait. This is also used in the implementation, since it's a lot less work!

Note that that since only elements of the same dimension can overlap, any two geometries with traits that are of different dimensions autmoatically can return false.

For geometries with the same trait dimension, we must make sure that they share a point, an edge, or area for points, lines, and polygons/multipolygons respectivly, without being contained.

julia
"""
+f

We can see that the two lines overlap in the plot:

julia
GO.overlaps(l1, l2)  # true
true

Implementation

This is the GeoInterface-compatible implementation.

First, we implement a wrapper method that dispatches to the correct implementation based on the geometry trait. This is also used in the implementation, since it's a lot less work!

Note that that since only elements of the same dimension can overlap, any two geometries with traits that are of different dimensions autmoatically can return false.

For geometries with the same trait dimension, we must make sure that they share a point, an edge, or area for points, lines, and polygons/multipolygons respectivly, without being contained.

julia
"""
     overlaps(geom1, geom2)::Bool
 
 Compare two Geometries of the same dimension and return true if their
@@ -230,7 +230,7 @@
     seg_val, _, _ = _intersection_point(Float64, edge_a, edge_b; exact = _False())
     return seg_val != line_out
 end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/methods/geom_relations/touches.html b/dev/source/methods/geom_relations/touches.html index 22f3d6941..f731aa016 100644 --- a/dev/source/methods/geom_relations/touches.html +++ b/dev/source/methods/geom_relations/touches.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -28,7 +28,7 @@ f, a, p = lines(GI.getpoint(l1)) lines!(GI.getpoint(l2)) -f

We can see that these two lines touch only at their endpoints.

julia
GO.touches(l1, l2)  # true
true

Implementation

This is the GeoInterface-compatible implementation.

First, we implement a wrapper method that dispatches to the correct implementation based on the geometry trait.

Each of these calls a method in the geom_geom_processors file. The methods in this file determine if the given geometries meet a set of criteria. For the touches function and arguments g1 and g2, this criteria is as follows: - points of g1 are not allowed to be in the interior of g2 - points of g1 are allowed to be on the boundary of g2 - points of g1 are allowed to be in the exterior of g2 - no points of g1 are required to be in the interior of g2 - at least one point of g1 is required to be on the boundary of g2 - no points of g1 are required to be in the exterior of g2

The code for the specific implementations is in the geom_geom_processors file.

julia
const TOUCHES_POINT_ALLOWED = (in_allow = false, on_allow = true, out_allow = false)
+f

We can see that these two lines touch only at their endpoints.

julia
GO.touches(l1, l2)  # true
true

Implementation

This is the GeoInterface-compatible implementation.

First, we implement a wrapper method that dispatches to the correct implementation based on the geometry trait.

Each of these calls a method in the geom_geom_processors file. The methods in this file determine if the given geometries meet a set of criteria. For the touches function and arguments g1 and g2, this criteria is as follows: - points of g1 are not allowed to be in the interior of g2 - points of g1 are allowed to be on the boundary of g2 - points of g1 are allowed to be in the exterior of g2 - no points of g1 are required to be in the interior of g2 - at least one point of g1 is required to be on the boundary of g2 - no points of g1 are required to be in the exterior of g2

The code for the specific implementations is in the geom_geom_processors file.

julia
const TOUCHES_POINT_ALLOWED = (in_allow = false, on_allow = true, out_allow = false)
 const TOUCHES_CURVE_ALLOWED = (over_allow = false, cross_allow = false, on_allow = true, out_allow = true)
 const TOUCHES_POLYGON_ALLOWS = (in_allow = false, on_allow = true, out_allow = true)
 const TOUCHES_REQUIRES = (in_require = false, on_require = true, out_require = false)
@@ -192,7 +192,7 @@
     end
     return true
 end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/methods/geom_relations/within.html b/dev/source/methods/geom_relations/within.html index 4f8b79113..9d269e94a 100644 --- a/dev/source/methods/geom_relations/within.html +++ b/dev/source/methods/geom_relations/within.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -29,7 +29,7 @@ scatter!(GI.getpoint(l1), color = :blue) lines!(GI.getpoint(l2), color = :orange) scatter!(GI.getpoint(l2), color = :orange) -f

We can see that all of the points and edges of l2 are within l1, so l2 is within l1, but l1 is not within l2

julia
GO.within(l1, l2)  # false
+f

We can see that all of the points and edges of l2 are within l1, so l2 is within l1, but l1 is not within l2

julia
GO.within(l1, l2)  # false
 GO.within(l2, l1)  # true
true

Implementation

This is the GeoInterface-compatible implementation.

First, we implement a wrapper method that dispatches to the correct implementation based on the geometry trait.

Each of these calls a method in the geom_geom_processors file. The methods in this file determine if the given geometries meet a set of criteria. For the within function and arguments g1 and g2, this criteria is as follows: - points of g1 are allowed to be in the interior of g2 (either through overlap or crossing for lines) - points of g1 are allowed to be on the boundary of g2 - points of g1 are not allowed to be in the exterior of g2 - at least one point of g1 is required to be in the interior of g2 - no points of g1 are required to be on the boundary of g2 - no points of g1 are required to be in the exterior of g2

The code for the specific implementations is in the geom_geom_processors file.

julia
const WITHIN_POINT_ALLOWS = (in_allow = true, on_allow = false, out_allow = false)
 const WITHIN_CURVE_ALLOWS = (over_allow = true, cross_allow = true, on_allow = true, out_allow = false)
 const WITHIN_POLYGON_ALLOWS = (in_allow = true, on_allow = true, out_allow = false)
@@ -211,7 +211,7 @@
     end
     return true
 end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/methods/orientation.html b/dev/source/methods/orientation.html index b9ee2418a..85fc4e575 100644 --- a/dev/source/methods/orientation.html +++ b/dev/source/methods/orientation.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -118,7 +118,7 @@ _isparallel(bx - ax, by - ay, dx - cx, dy - cy) _isparallel(Δx1, Δy1, Δx2, Δy2) = (Δx1 * Δy2 == Δy1 * Δx2)

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/methods/polygonize.html b/dev/source/methods/polygonize.html index 0efbc9bb1..dd801f321 100644 --- a/dev/source/methods/polygonize.html +++ b/dev/source/methods/polygonize.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -307,7 +307,7 @@ end return edges end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/not_implemented_yet.html b/dev/source/not_implemented_yet.html index 2db352732..666038d12 100644 --- a/dev/source/not_implemented_yet.html +++ b/dev/source/not_implemented_yet.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -22,7 +22,7 @@ function buffer end function convexhull end function concavehull end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/primitives.html b/dev/source/primitives.html index 210951cf7..bfdf8903e 100644 --- a/dev/source/primitives.html +++ b/dev/source/primitives.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -21,7 +21,7 @@
Skip to content

Primitive functions

julia
export apply, applyreduce, TraitTarget

This file mainly defines the apply and applyreduce functions, and some related functionality.

In general, the idea behind the apply framework is to take as input any geometry, vector of geometries, or feature collection, deconstruct it to the given trait target (any arbitrary GI.AbstractTrait or TraitTarget union thereof, like PointTrait or PolygonTrait) and perform some operation on it.

This allows for a simple and consistent framework within which users can define their own operations trivially easily, and removes a lot of the complexity involved with handling complex geometry structures.

For example, a simple way to flip the x and y coordinates of a geometry is:

julia
flipped_geom = GO.apply(GI.PointTrait(), geom) do p
     (GI.y(p), GI.x(p))
 end

As simple as that. There's no need to implement your own decomposition because it's done for you.

Functions like flip, reproject, transform, even segmentize and simplify have been implemented using the apply framework. Similarly, centroid, area and distance have been implemented using the applyreduce framework.

Docstrings

Functions

Missing docstring.

Missing docstring for apply. Check Documenter's build log for details.

Missing docstring.

Missing docstring for applyreduce. Check Documenter's build log for details.

Missing docstring.

Missing docstring for GeometryOps.unwrap. Check Documenter's build log for details.

# GeometryOps.flattenFunction.
julia
flatten(target::Type{<:GI.AbstractTrait}, obj)
-flatten(f, target::Type{<:GI.AbstractTrait}, obj)

Lazily flatten any AbstractArray, iterator, FeatureCollectionTrait, FeatureTrait or AbstractGeometryTrait object obj, so that objects with the target trait are returned by the iterator.

If f is passed in it will be applied to the target geometries.

source


# GeometryOps.reconstructFunction.
julia
reconstruct(geom, components)

Reconstruct geom from an iterable of component objects that match its structure.

All objects in components must have the same GeoInterface.trait.

Ususally used in combination with flatten.

source


# GeometryOps.rebuildFunction.
julia
rebuild(geom, child_geoms)

Rebuild a geometry from child geometries.

By default geometries will be rebuilt as a GeoInterface.Wrappers geometry, but rebuild can have methods added to it to dispatch on geometries from other packages and specify how to rebuild them.

(Maybe it should go into GeoInterface.jl)

source


Types

Missing docstring.

Missing docstring for TraitTarget. Check Documenter's build log for details.

Implementation

julia
const THREADED_KEYWORD = "- `threaded`: `true` or `false`. Whether to use multithreading. Defaults to `false`."
+flatten(f, target::Type{<:GI.AbstractTrait}, obj)

Lazily flatten any AbstractArray, iterator, FeatureCollectionTrait, FeatureTrait or AbstractGeometryTrait object obj, so that objects with the target trait are returned by the iterator.

If f is passed in it will be applied to the target geometries.

source


# GeometryOps.reconstructFunction.
julia
reconstruct(geom, components)

Reconstruct geom from an iterable of component objects that match its structure.

All objects in components must have the same GeoInterface.trait.

Ususally used in combination with flatten.

source


# GeometryOps.rebuildFunction.
julia
rebuild(geom, child_geoms)

Rebuild a geometry from child geometries.

By default geometries will be rebuilt as a GeoInterface.Wrappers geometry, but rebuild can have methods added to it to dispatch on geometries from other packages and specify how to rebuild them.

(Maybe it should go into GeoInterface.jl)

source


Types

Missing docstring.

Missing docstring for TraitTarget. Check Documenter's build log for details.

Implementation

julia
const THREADED_KEYWORD = "- `threaded`: `true` or `false`. Whether to use multithreading. Defaults to `false`."
 const CRS_KEYWORD = "- `crs`: The CRS to attach to geometries. Defaults to `nothing`."
 const CALC_EXTENT_KEYWORD = "- `calc_extent`: `true` or `false`. Whether to calculate the extent. Defaults to `false`."
 
@@ -323,7 +323,7 @@
 Base.@assume_effects :foldable function _mapreducetasks(f::F, op, taskrange, threaded::_False; init) where F
     mapreduce(f, op, taskrange; init)
 end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/transformations/correction/closed_ring.html b/dev/source/transformations/correction/closed_ring.html index cf3c3ac6b..59ae25777 100644 --- a/dev/source/transformations/correction/closed_ring.html +++ b/dev/source/transformations/correction/closed_ring.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -48,7 +48,7 @@ else

Assemble the ring as a vector

julia
        tups = tuples.(GI.getpoint(ring))

Close the ring

julia
        push!(tups, tups[1])

Return an actual ring

julia
        return GI.LinearRing(tups)
     end
 end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/transformations/correction/geometry_correction.html b/dev/source/transformations/correction/geometry_correction.html index e34f0cdd5..9b9576806 100644 --- a/dev/source/transformations/correction/geometry_correction.html +++ b/dev/source/transformations/correction/geometry_correction.html @@ -8,17 +8,17 @@ - + - - - + + + -
Skip to content

Geometry Corrections

julia
export fix

This file simply defines the GeometryCorrection abstract type, and the interface that any GeometryCorrection must implement.

A geometry correction is a transformation that is applied to a geometry to correct it in some way.

For example, a ClosedRing correction might be applied to a Polygon to ensure that its exterior ring is closed.

Interface

All GeometryCorrections are callable structs which, when called, apply the correction to the given geometry, and return either a copy or the original geometry (if nothing needed to be corrected).

See below for the full interface specification.

# GeometryOps.GeometryCorrectionType.
julia
abstract type GeometryCorrection

This abstract type represents a geometry correction.

Interface

Any GeometryCorrection must implement two functions: * application_level(::GeometryCorrection)::AbstractGeometryTrait: This function should return the GeoInterface trait that the correction is intended to be applied to, like PointTrait or LineStringTrait or PolygonTrait. * (::GeometryCorrection)(::AbstractGeometryTrait, geometry)::(some_geometry): This function should apply the correction to the given geometry, and return a new geometry.

source


Any geometry correction must implement the interface as given above.

julia
"""
+    
Skip to content

Geometry Corrections

julia
export fix

This file simply defines the GeometryCorrection abstract type, and the interface that any GeometryCorrection must implement.

A geometry correction is a transformation that is applied to a geometry to correct it in some way.

For example, a ClosedRing correction might be applied to a Polygon to ensure that its exterior ring is closed.

Interface

All GeometryCorrections are callable structs which, when called, apply the correction to the given geometry, and return either a copy or the original geometry (if nothing needed to be corrected).

See below for the full interface specification.

# GeometryOps.GeometryCorrectionType.
julia
abstract type GeometryCorrection

This abstract type represents a geometry correction.

Interface

Any GeometryCorrection must implement two functions: * application_level(::GeometryCorrection)::AbstractGeometryTrait: This function should return the GeoInterface trait that the correction is intended to be applied to, like PointTrait or LineStringTrait or PolygonTrait. * (::GeometryCorrection)(::AbstractGeometryTrait, geometry)::(some_geometry): This function should apply the correction to the given geometry, and return a new geometry.

source


Any geometry correction must implement the interface as given above.

julia
"""
     abstract type GeometryCorrection
 
 This abstract type represents a geometry correction.
@@ -48,8 +48,8 @@
         final_geometry = apply(net_function, Trait, final_geometry; kwargs...)
     end
     return final_geometry
-end

Available corrections

# GeometryOps.ClosedRingType.
julia
ClosedRing() <: GeometryCorrection

This correction ensures that a polygon's exterior and interior rings are closed.

It can be called on any geometry correction as usual.

See also GeometryCorrection.

source


# GeometryOps.DiffIntersectingPolygonsType.
julia
DiffIntersectingPolygons() <: GeometryCorrection

This correction ensures that the polygons included in a multipolygon aren't intersecting. If any polygon's are intersecting, they will be made nonintersecting through the difference operation to create a unique set of disjoint (other than potentially connections by a single point) polygons covering the same area. See also GeometryCorrection, UnionIntersectingPolygons.

source


# GeometryOps.GeometryCorrectionType.
julia
abstract type GeometryCorrection

This abstract type represents a geometry correction.

Interface

Any GeometryCorrection must implement two functions: * application_level(::GeometryCorrection)::AbstractGeometryTrait: This function should return the GeoInterface trait that the correction is intended to be applied to, like PointTrait or LineStringTrait or PolygonTrait. * (::GeometryCorrection)(::AbstractGeometryTrait, geometry)::(some_geometry): This function should apply the correction to the given geometry, and return a new geometry.

source


# GeometryOps.UnionIntersectingPolygonsType.
julia
UnionIntersectingPolygons() <: GeometryCorrection

This correction ensures that the polygon's included in a multipolygon aren't intersecting. If any polygon's are intersecting, they will be combined through the union operation to create a unique set of disjoint (other than potentially connections by a single point) polygons covering the same area.

See also GeometryCorrection.

source



This page was generated using Literate.jl.

- +end

Available corrections

# GeometryOps.ClosedRingType.
julia
ClosedRing() <: GeometryCorrection

This correction ensures that a polygon's exterior and interior rings are closed.

It can be called on any geometry correction as usual.

See also GeometryCorrection.

source


# GeometryOps.DiffIntersectingPolygonsType.
julia
DiffIntersectingPolygons() <: GeometryCorrection

This correction ensures that the polygons included in a multipolygon aren't intersecting. If any polygon's are intersecting, they will be made nonintersecting through the difference operation to create a unique set of disjoint (other than potentially connections by a single point) polygons covering the same area. See also GeometryCorrection, UnionIntersectingPolygons.

source


# GeometryOps.GeometryCorrectionType.
julia
abstract type GeometryCorrection

This abstract type represents a geometry correction.

Interface

Any GeometryCorrection must implement two functions: * application_level(::GeometryCorrection)::AbstractGeometryTrait: This function should return the GeoInterface trait that the correction is intended to be applied to, like PointTrait or LineStringTrait or PolygonTrait. * (::GeometryCorrection)(::AbstractGeometryTrait, geometry)::(some_geometry): This function should apply the correction to the given geometry, and return a new geometry.

source


# GeometryOps.UnionIntersectingPolygonsType.
julia
UnionIntersectingPolygons() <: GeometryCorrection

This correction ensures that the polygon's included in a multipolygon aren't intersecting. If any polygon's are intersecting, they will be combined through the union operation to create a unique set of disjoint (other than potentially connections by a single point) polygons covering the same area.

See also GeometryCorrection.

source



This page was generated using Literate.jl.

+ \ No newline at end of file diff --git a/dev/source/transformations/correction/intersecting_polygons.html b/dev/source/transformations/correction/intersecting_polygons.html index e76a14d4a..a5359c916 100644 --- a/dev/source/transformations/correction/intersecting_polygons.html +++ b/dev/source/transformations/correction/intersecting_polygons.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -115,7 +115,7 @@ end return diff_multipoly end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/transformations/extent.html b/dev/source/transformations/extent.html index 8f64f88c1..7fa56468e 100644 --- a/dev/source/transformations/extent.html +++ b/dev/source/transformations/extent.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -31,7 +31,7 @@ """ embed_extent(x; threaded=false, crs=nothing) = apply(identity, GI.PointTrait(), x; calc_extent=true, threaded, crs)

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/transformations/flip.html b/dev/source/transformations/flip.html index 7f5d6d23b..5405c99a3 100644 --- a/dev/source/transformations/flip.html +++ b/dev/source/transformations/flip.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -40,7 +40,7 @@ end end end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/transformations/reproject.html b/dev/source/transformations/reproject.html index c4e7ee1cd..439fe5b19 100644 --- a/dev/source/transformations/reproject.html +++ b/dev/source/transformations/reproject.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -59,7 +59,7 @@ nothing end end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/transformations/segmentize.html b/dev/source/transformations/segmentize.html index 1be7e68d1..be971b518 100644 --- a/dev/source/transformations/segmentize.html +++ b/dev/source/transformations/segmentize.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -39,7 +39,7 @@ f, a, p = poly(collect(GI.getpoint(linear)); label = "Linear", axis = (; aspect = DataAspect())) p2 = poly!(collect(GI.getpoint(geodesic)); label = "Geodesic") axislegend(a; position = :lt) -f

There are two methods available for segmentizing geometries at the moment:

Missing docstring.

Missing docstring for LinearSegments. Check Documenter's build log for details.

Missing docstring.

Missing docstring for GeodesicSegments. Check Documenter's build log for details.

Benchmark

We benchmark our method against LibGEOS's GEOSDensify method, which is a similar method for densifying geometries.

julia
using BenchmarkTools: BenchmarkGroup
+f

There are two methods available for segmentizing geometries at the moment:

Missing docstring.

Missing docstring for LinearSegments. Check Documenter's build log for details.

Missing docstring.

Missing docstring for GeodesicSegments. Check Documenter's build log for details.

Benchmark

We benchmark our method against LibGEOS's GEOSDensify method, which is a similar method for densifying geometries.

julia
using BenchmarkTools: BenchmarkGroup
 using Chairmarks: @be
 using Main: plot_trials
 using CairoMakie
@@ -77,7 +77,7 @@
 
 end
 
-plot_trials(segmentize_suite)

julia
abstract type SegmentizeMethod end
+plot_trials(segmentize_suite)

julia
abstract type SegmentizeMethod end
 """
     LinearSegments(; max_distance::Real)
 
@@ -172,7 +172,7 @@
     end

End the line with the original coordinate, to avoid any multiplication errors.

julia
    push!(new_coords, (x2, y2))
     return nothing
 end

Note

The _fill_linear_kernel definition for GeodesicSegments is in the GeometryOpsProjExt extension module, in the segmentize.jl file.


This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/transformations/simplify.html b/dev/source/transformations/simplify.html index e8ba3e6e6..2a13bc189 100644 --- a/dev/source/transformations/simplify.html +++ b/dev/source/transformations/simplify.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -29,7 +29,7 @@ f, a, p = poly(original; label = "Original") poly!(simple; label = "Simplified") axislegend(a) -f

Benchmark

We benchmark these methods against LibGEOS's simplify implementation, which uses the Douglas-Peucker algorithm.

julia
using BenchmarkTools, Chairmarks, GeoJSON, CairoMakie
+f

Benchmark

We benchmark these methods against LibGEOS's simplify implementation, which uses the Douglas-Peucker algorithm.

julia
using BenchmarkTools, Chairmarks, GeoJSON, CairoMakie
 import GeometryOps as GO, LibGEOS as LG, GeoInterface as GI
 using CoordinateTransformations
 lg_and_go(geometry) = (GI.convert(LG, geometry), GO.tuples(geometry))
@@ -41,7 +41,7 @@
 usa_poly = GI.getgeom(usa_multipoly, findmax(GO.area.(GI.getgeom(usa_multipoly)))[2]) # isolate the poly with the most area
 usa_centroid = GO.centroid(usa_poly)
 usa_reflected = GO.transform(Translation(usa_centroid...)  LinearMap(Makie.rotmatrix2d(π))  Translation((-).(usa_centroid)...), usa_poly)
-f, a, p = plot(usa_poly; label = "Original", axis = (; aspect = DataAspect()))#; plot!(usa_reflected; label = "Reflected")

This is the complex polygon we'll be benchmarking.

julia
simplify_suite = BenchmarkGroup(["Simplify"])
+f, a, p = plot(usa_poly; label = "Original", axis = (; aspect = DataAspect()))#; plot!(usa_reflected; label = "Reflected")

This is the complex polygon we'll be benchmarking.

julia
simplify_suite = BenchmarkGroup(["Simplify"])
 singlepoly_suite = BenchmarkGroup(["Polygon", "title:Polygon simplify", "subtitle:Random blob"])
 
 include(joinpath(dirname(dirname(pathof(GO))), "test", "data", "polygon_generation.jl"))
@@ -55,7 +55,7 @@
     singlepoly_suite["LibGEOS"][GI.npoint(geom)] = @be LG.simplify($geom_lg, 0.1) seconds=1
 end
 
-plot_trials(singlepoly_suite; legend_position=(1, 1, TopRight()), legend_valign = -2, legend_halign = 1.2, legend_orientation = :horizontal)

julia
multipoly_suite = BenchmarkGroup(["MultiPolygon", "title:Multipolygon simplify", "subtitle:USA multipolygon"])
+plot_trials(singlepoly_suite; legend_position=(1, 1, TopRight()), legend_valign = -2, legend_halign = 1.2, legend_orientation = :horizontal)

julia
multipoly_suite = BenchmarkGroup(["MultiPolygon", "title:Multipolygon simplify", "subtitle:USA multipolygon"])
 
 for frac in exp10.(LinRange(log10(0.3), log10(1), 6)) # TODO: this example isn't the best.  How can we get this better?
     geom = GO.simplify(usa_multipoly; ratio = frac)
@@ -74,7 +74,7 @@
     # GO-VW : $(GI.npoint( GO.simplify((GO.VisvalingamWhyatt(; tol = _tol)), geom_go)))
     println()
 end
-plot_trials(multipoly_suite)

julia
export simplify, VisvalingamWhyatt, DouglasPeucker, RadialDistance
+plot_trials(multipoly_suite)

julia
export simplify, VisvalingamWhyatt, DouglasPeucker, RadialDistance
 
 const _SIMPLIFY_TARGET = TraitTarget{Union{GI.PolygonTrait, GI.AbstractCurveTrait, GI.MultiPointTrait, GI.PointTrait}}()
 const MIN_POINTS = 3
@@ -507,7 +507,7 @@
     end
     return nothing
 end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/transformations/transform.html b/dev/source/transformations/transform.html index 7c227e74d..625be7d9a 100644 --- a/dev/source/transformations/transform.html +++ b/dev/source/transformations/transform.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -73,7 +73,7 @@ end end end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/transformations/tuples.html b/dev/source/transformations/tuples.html index 00eb4d9e4..0d51ec682 100644 --- a/dev/source/transformations/tuples.html +++ b/dev/source/transformations/tuples.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -37,7 +37,7 @@ end end end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/types.html b/dev/source/types.html index 5008840f2..99bddfb6c 100644 --- a/dev/source/types.html +++ b/dev/source/types.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -85,7 +85,7 @@ error("$(f) requires a `$(kw)` keyword argument to the `GEOS` algorithm, which was not provided.") end end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/source/utils.html b/dev/source/utils.html index 1aa4b5216..0105fdaed 100644 --- a/dev/source/utils.html +++ b/dev/source/utils.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -138,7 +138,7 @@ (x1, x2), (y1, y2) = extent.X, extent.Y return x1 ≤ GI.x(p) ≤ x2 && y1 ≤ GI.y(p) ≤ y2 end

This page was generated using Literate.jl.

- + \ No newline at end of file diff --git a/dev/tutorials/creating_geometry.html b/dev/tutorials/creating_geometry.html index 6d00c05f4..033b625b2 100644 --- a/dev/tutorials/creating_geometry.html +++ b/dev/tutorials/creating_geometry.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -28,37 +28,37 @@ import Proj # Plotting using CairoMakie -using GeoMakie

Creating and plotting geometries

Let's start by making a single Point.

julia
point = GI.Point(0, 0)
GeoInterface.Wrappers.Point{false, false, Tuple{Int64, Int64}, Nothing}((0, 0), nothing)

Now, let's plot our point.

julia
fig, ax, plt = plot(point)

Let's create a set of points, and have a bit more fun with plotting.

julia
x = [-5, 0, 5, 0];
+using GeoMakie

Creating and plotting geometries

Let's start by making a single Point.

julia
point = GI.Point(0, 0)
GeoInterface.Wrappers.Point{false, false, Tuple{Int64, Int64}, Nothing}((0, 0), nothing)

Now, let's plot our point.

julia
fig, ax, plt = plot(point)

Let's create a set of points, and have a bit more fun with plotting.

julia
x = [-5, 0, 5, 0];
 y = [0, -5, 0, 5];
 points = GI.Point.(zip(x,y));
 plot!(ax, points; marker = '✈', markersize = 30)
-fig

Points can be combined into a single MultiPoint geometry.

julia
x = [-5, -5, 5, 5];
+fig

Points can be combined into a single MultiPoint geometry.

julia
x = [-5, -5, 5, 5];
 y = [-5, 5, 5, -5];
 multipoint = GI.MultiPoint(GI.Point.(zip(x, y)));
 plot!(ax, multipoint; marker = '☁', markersize = 30)
-fig

Let's create a LineString connecting two points.

julia
p1 = GI.Point.(-5, 0);
+fig

Let's create a LineString connecting two points.

julia
p1 = GI.Point.(-5, 0);
 p2 = GI.Point.(5, 0);
 line = GI.LineString([p1,p2])
 plot!(ax, line; color = :red)
-fig

Now, let's create a line connecting multiple points (i.e. a LineString). This time we get a bit more fancy with point creation.

julia
r = 2;
+fig

Now, let's create a line connecting multiple points (i.e. a LineString). This time we get a bit more fancy with point creation.

julia
r = 2;
 k = 10;
 ϴ = 0:0.01:2pi;
 x = r .* (k + 1) .* cos.(ϴ) .- r .* cos.((k + 1) .* ϴ);
 y = r .* (k + 1) .* sin.(ϴ) .- r .* sin.((k + 1) .* ϴ);
 lines = GI.LineString(GI.Point.(zip(x,y)));
 plot!(ax, lines; linewidth = 5)
-fig

We can also create a single LinearRing trait, the building block of a polygon. A LinearRing is simply a LineString with the same beginning and endpoint, i.e., an arbitrary closed shape composed of point pairs.

A LinearRing is composed of a series of points.

julia
ring1 = GI.LinearRing(GI.getpoint(lines));
GeoInterface.Wrappers.LinearRing{false, false, Vector{GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}}, Nothing, Nothing}(GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}[GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.0, 0.0), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.010987813253244, 0.0004397316773170068), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.043805248003498, 0.0035114210915891397), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.098016055420953, 0.011814947665167774), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.172899020101585, 0.027886421973952302), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.267456684570245, 0.05416726609360478), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.380427415579764, 0.09297443860091348), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.51030066635026, 0.1464721641710074), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.655335250260467, 0.21664550952386064), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.813580405100698, 0.30527612515520186), nothing)  …  GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.866418416586406, -0.3376428491230612), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.704405820024185, -0.24279488312757858), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.55494217175954, -0.16692537029320365), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.420040147662014, -0.10832215707812454), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.30151010318639, -0.0650624499034016), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.200938172182195, -0.03503632062070827), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.119667078681967, -0.01597247419241532), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.058779893613323, -0.005465967083412071), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.019086932781654, -0.0010075412835199304), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.001115954499138, -1.4219350464667047e-5), nothing)], nothing, nothing)

Now, let's make the LinearRing into a Polygon.

julia
polygon1 = GI.Polygon([ring1]);
GeoInterface.Wrappers.Polygon{false, false, Vector{GeoInterface.Wrappers.LinearRing{false, false, Vector{GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}}, Nothing, Nothing}}, Nothing, Nothing}(GeoInterface.Wrappers.LinearRing{false, false, Vector{GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}}, Nothing, Nothing}[GeoInterface.Wrappers.LinearRing{false, false, Vector{GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}}, Nothing, Nothing}(GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}[GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.0, 0.0), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.010987813253244, 0.0004397316773170068), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.043805248003498, 0.0035114210915891397), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.098016055420953, 0.011814947665167774), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.172899020101585, 0.027886421973952302), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.267456684570245, 0.05416726609360478), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.380427415579764, 0.09297443860091348), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.51030066635026, 0.1464721641710074), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.655335250260467, 0.21664550952386064), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.813580405100698, 0.30527612515520186), nothing)  …  GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.866418416586406, -0.3376428491230612), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.704405820024185, -0.24279488312757858), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.55494217175954, -0.16692537029320365), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.420040147662014, -0.10832215707812454), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.30151010318639, -0.0650624499034016), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.200938172182195, -0.03503632062070827), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.119667078681967, -0.01597247419241532), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.058779893613323, -0.005465967083412071), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.019086932781654, -0.0010075412835199304), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.001115954499138, -1.4219350464667047e-5), nothing)], nothing, nothing)], nothing, nothing)

Now, we can use GeometryOps and CoordinateTransformations to shift polygon1 up, to avoid plotting over our earlier results. This is done through the GeometryOps.transform function.

julia
xoffset = 0.;
+fig

We can also create a single LinearRing trait, the building block of a polygon. A LinearRing is simply a LineString with the same beginning and endpoint, i.e., an arbitrary closed shape composed of point pairs.

A LinearRing is composed of a series of points.

julia
ring1 = GI.LinearRing(GI.getpoint(lines));
GeoInterface.Wrappers.LinearRing{false, false, Vector{GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}}, Nothing, Nothing}(GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}[GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.0, 0.0), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.010987813253244, 0.0004397316773170068), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.043805248003498, 0.0035114210915891397), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.098016055420953, 0.011814947665167774), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.172899020101585, 0.027886421973952302), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.267456684570245, 0.05416726609360478), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.380427415579764, 0.09297443860091348), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.51030066635026, 0.1464721641710074), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.655335250260467, 0.21664550952386064), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.813580405100698, 0.30527612515520186), nothing)  …  GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.866418416586406, -0.3376428491230612), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.704405820024185, -0.24279488312757858), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.55494217175954, -0.16692537029320365), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.420040147662014, -0.10832215707812454), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.30151010318639, -0.0650624499034016), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.200938172182195, -0.03503632062070827), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.119667078681967, -0.01597247419241532), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.058779893613323, -0.005465967083412071), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.019086932781654, -0.0010075412835199304), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.001115954499138, -1.4219350464667047e-5), nothing)], nothing, nothing)

Now, let's make the LinearRing into a Polygon.

julia
polygon1 = GI.Polygon([ring1]);
GeoInterface.Wrappers.Polygon{false, false, Vector{GeoInterface.Wrappers.LinearRing{false, false, Vector{GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}}, Nothing, Nothing}}, Nothing, Nothing}(GeoInterface.Wrappers.LinearRing{false, false, Vector{GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}}, Nothing, Nothing}[GeoInterface.Wrappers.LinearRing{false, false, Vector{GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}}, Nothing, Nothing}(GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}[GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.0, 0.0), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.010987813253244, 0.0004397316773170068), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.043805248003498, 0.0035114210915891397), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.098016055420953, 0.011814947665167774), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.172899020101585, 0.027886421973952302), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.267456684570245, 0.05416726609360478), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.380427415579764, 0.09297443860091348), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.51030066635026, 0.1464721641710074), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.655335250260467, 0.21664550952386064), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.813580405100698, 0.30527612515520186), nothing)  …  GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.866418416586406, -0.3376428491230612), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.704405820024185, -0.24279488312757858), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.55494217175954, -0.16692537029320365), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.420040147662014, -0.10832215707812454), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.30151010318639, -0.0650624499034016), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.200938172182195, -0.03503632062070827), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.119667078681967, -0.01597247419241532), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.058779893613323, -0.005465967083412071), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.019086932781654, -0.0010075412835199304), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.001115954499138, -1.4219350464667047e-5), nothing)], nothing, nothing)], nothing, nothing)

Now, we can use GeometryOps and CoordinateTransformations to shift polygon1 up, to avoid plotting over our earlier results. This is done through the GeometryOps.transform function.

julia
xoffset = 0.;
 yoffset = 50.;
 f = CoordinateTransformations.Translation(xoffset, yoffset);
 polygon1 = GO.transform(f, polygon1);
 plot!(polygon1)
-fig

Polygons can contain "holes". The first LinearRing in a polygon is the exterior, and all subsequent LinearRings are treated as holes in the leading LinearRing.

GeoInterface offers the GI.getexterior(poly) and GI.gethole(poly) methods to get the exterior ring and an iterable of holes, respectively.

julia
hole = GI.LinearRing(GI.getpoint(multipoint))
+fig

Polygons can contain "holes". The first LinearRing in a polygon is the exterior, and all subsequent LinearRings are treated as holes in the leading LinearRing.

GeoInterface offers the GI.getexterior(poly) and GI.gethole(poly) methods to get the exterior ring and an iterable of holes, respectively.

julia
hole = GI.LinearRing(GI.getpoint(multipoint))
 polygon2 = GI.Polygon([ring1, hole])
GeoInterface.Wrappers.Polygon{false, false, Vector{GeoInterface.Wrappers.LinearRing{false, false, T, Nothing, Nothing} where T}, Nothing, Nothing}(GeoInterface.Wrappers.LinearRing{false, false, T, Nothing, Nothing} where T[GeoInterface.Wrappers.LinearRing{false, false, Vector{GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}}, Nothing, Nothing}(GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}[GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.0, 0.0), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.010987813253244, 0.0004397316773170068), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.043805248003498, 0.0035114210915891397), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.098016055420953, 0.011814947665167774), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.172899020101585, 0.027886421973952302), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.267456684570245, 0.05416726609360478), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.380427415579764, 0.09297443860091348), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.51030066635026, 0.1464721641710074), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.655335250260467, 0.21664550952386064), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.813580405100698, 0.30527612515520186), nothing)  …  GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.866418416586406, -0.3376428491230612), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.704405820024185, -0.24279488312757858), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.55494217175954, -0.16692537029320365), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.420040147662014, -0.10832215707812454), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.30151010318639, -0.0650624499034016), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.200938172182195, -0.03503632062070827), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.119667078681967, -0.01597247419241532), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.058779893613323, -0.005465967083412071), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.019086932781654, -0.0010075412835199304), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Float64, Float64}, Nothing}((20.001115954499138, -1.4219350464667047e-5), nothing)], nothing, nothing), GeoInterface.Wrappers.LinearRing{false, false, Vector{GeoInterface.Wrappers.Point{false, false, Tuple{Int64, Int64}, Nothing}}, Nothing, Nothing}(GeoInterface.Wrappers.Point{false, false, Tuple{Int64, Int64}, Nothing}[GeoInterface.Wrappers.Point{false, false, Tuple{Int64, Int64}, Nothing}((-5, -5), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Int64, Int64}, Nothing}((-5, 5), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Int64, Int64}, Nothing}((5, 5), nothing), GeoInterface.Wrappers.Point{false, false, Tuple{Int64, Int64}, Nothing}((5, -5), nothing)], nothing, nothing)], nothing, nothing)

Shift polygon2 to the right, to avoid plotting over our earlier results.

julia
xoffset = 50.;
 yoffset = 0.;
 f = CoordinateTransformations.Translation(xoffset, yoffset);
 polygon2 = GO.transform(f, polygon2);
 plot!(polygon2)
-fig

Polygons can also be grouped together as a MultiPolygon.

julia
r = 5;
+fig

Polygons can also be grouped together as a MultiPolygon.

julia
r = 5;
 x = cos.(reverse(ϴ)) .* r .+ xoffset;
 y = sin.(reverse(ϴ)) .* r .+ yoffset;
 ring2 =  GI.LinearRing(GI.Point.(zip(x,y)));
@@ -68,7 +68,7 @@
 f = CoordinateTransformations.Translation(xoffset, yoffset);
 multipolygon = GO.transform(f, multipolygon);
 plot!(multipolygon)
-fig

Great, now we can make Points, MultiPoints, Lines, LineStrings, Polygons (with holes), and MultiPolygons and modify them using [CoordinateTransformations] and [GeometryOps].

Coordinate reference systems (CRS) and you

In geospatial sciences we often have data in one Coordinate Reference System (CRS) (source) and would like to display it in different (destination) CRS. GeoMakie allows us to do this by automatically projecting from source to destination CRS.

Here, our source CRS is common geographic (i.e. coordinates of latitude and longitude), WGS84.

julia
source_crs1 = GFT.EPSG(4326)
GeoFormatTypes.EPSG{1}((4326,))

Now let's pick a destination CRS for displaying our map. Here we'll pick natearth2.

julia
destination_crs = "+proj=natearth2"
"+proj=natearth2"

Let's add land area for context. First, download and open the Natural Earth global land polygons at 110 m resolution.GeoMakie ships with this particular dataset, so we will access it from there.

julia
land_path = GeoMakie.assetpath("ne_110m_land.geojson")
"/home/runner/.julia/packages/GeoMakie/bRgRN/assets/ne_110m_land.geojson"

Note

Natural Earth has lots of other datasets, and there is a Julia package that provides an interface to it called NaturalEarth.jl.

Read the land MultiPolygons as a GeoJSON.FeatureCollection.

julia
land_geo = GeoJSON.read(land_path)
FeatureCollection with 127 Features

We then need to create a figure with a GeoAxis that can handle the projection between source and destinaton CRS. For GeoMakie, source is the CRS of the input and dest is the CRS you want to visualize in.

julia
fig = Figure(size=(1000, 500));
+fig

Great, now we can make Points, MultiPoints, Lines, LineStrings, Polygons (with holes), and MultiPolygons and modify them using [CoordinateTransformations] and [GeometryOps].

Coordinate reference systems (CRS) and you

In geospatial sciences we often have data in one Coordinate Reference System (CRS) (source) and would like to display it in different (destination) CRS. GeoMakie allows us to do this by automatically projecting from source to destination CRS.

Here, our source CRS is common geographic (i.e. coordinates of latitude and longitude), WGS84.

julia
source_crs1 = GFT.EPSG(4326)
GeoFormatTypes.EPSG{1}((4326,))

Now let's pick a destination CRS for displaying our map. Here we'll pick natearth2.

julia
destination_crs = "+proj=natearth2"
"+proj=natearth2"

Let's add land area for context. First, download and open the Natural Earth global land polygons at 110 m resolution.GeoMakie ships with this particular dataset, so we will access it from there.

julia
land_path = GeoMakie.assetpath("ne_110m_land.geojson")
"/home/runner/.julia/packages/GeoMakie/y0Tfj/assets/ne_110m_land.geojson"

Note

Natural Earth has lots of other datasets, and there is a Julia package that provides an interface to it called NaturalEarth.jl.

Read the land MultiPolygons as a GeoJSON.FeatureCollection.

julia
land_geo = GeoJSON.read(land_path)
FeatureCollection with 127 Features

We then need to create a figure with a GeoAxis that can handle the projection between source and destinaton CRS. For GeoMakie, source is the CRS of the input and dest is the CRS you want to visualize in.

julia
fig = Figure(size=(1000, 500));
 ga = GeoAxis(
     fig[1, 1];
     source = source_crs1,
@@ -76,8 +76,8 @@
     xticklabelsvisible = false,
     yticklabelsvisible = false,
 );

Plot land for context.

julia
poly!(ga, land_geo, color=:black)
-fig

Now let's plot a Polygon like before, but this time with a CRS that differs from our source data

julia
plot!(multipolygon; color = :green)
-fig

But what if we want to plot geometries with a different source CRS on the same figure?

To show how to do this let's create a geometry with coordinates in UTM (Universal Transverse Mercator) zone 10N EPSG:32610.

julia
source_crs2 = GFT.EPSG(32610)
GeoFormatTypes.EPSG{1}((32610,))

Create a polygon (we're working in meters now, not latitude and longitude)

julia
r = 1000000;
+fig

Now let's plot a Polygon like before, but this time with a CRS that differs from our source data

julia
plot!(multipolygon; color = :green)
+fig

But what if we want to plot geometries with a different source CRS on the same figure?

To show how to do this let's create a geometry with coordinates in UTM (Universal Transverse Mercator) zone 10N EPSG:32610.

julia
source_crs2 = GFT.EPSG(32610)
GeoFormatTypes.EPSG{1}((32610,))

Create a polygon (we're working in meters now, not latitude and longitude)

julia
r = 1000000;
 ϴ = 0:0.01:2pi;
 x = r .* cos.(ϴ).^3 .+ 500000;
 y = r .* sin.(ϴ) .^ 3 .+5000000;
629-element Vector{Float64}:
@@ -87,7 +87,7 @@
 
  5.0e6
  5.0e6

Now create a LinearRing from Points

julia
ring3 = GI.LinearRing(Point.(zip(x, y)))
GeoInterface.Wrappers.LinearRing{false, false, Vector{Point{2, Float64}}, Nothing, Nothing}(Point{2, Float64}[[1.5e6, 5.0e6], [1.4998500087497458e6, 5.000000999950001e6], [1.4994001399837343e6, 5.000007998400139e6], [1.4986507085647392e6, 5.000026987852369e6], [1.4976022389592e6, 5.000063948817746e6], [1.4962554647802354e6, 5.000124843834609e6], [1.4946113281484335e6, 5.000215611503127e6], [1.4926709788709967e6, 5.000342160541625e6], [1.4904357734399722e6, 5.000510363870095e6], [1.4879072738504685e6, 5.0007260527263e6]  …  [1.4870405593989636e6, 4.999194331880103e6], [1.4896621210021754e6, 4.999426363321033e6], [1.491990928929295e6, 4.999609061508909e6], [1.4940253560034204e6, 4.999748243174828e6], [1.4957639801366436e6, 4.999849768598615e6], [1.497205585568957e6, 4.999919535736425e6], [1.4983491639274692e6, 4.999963474314044e6], [1.4991939151049731e6, 4.999987539891298e6], [1.4997392479570867e6, 4.999997707902938e6], [1.499984780817334e6, 4.999999967681458e6]], nothing, nothing)

Now create a Polygon from the LineRing

julia
polygon3 = GI.Polygon([ring3])
GeoInterface.Wrappers.Polygon{false, false, Vector{GeoInterface.Wrappers.LinearRing{false, false, Vector{Point{2, Float64}}, Nothing, Nothing}}, Nothing, Nothing}(GeoInterface.Wrappers.LinearRing{false, false, Vector{Point{2, Float64}}, Nothing, Nothing}[GeoInterface.Wrappers.LinearRing{false, false, Vector{Point{2, Float64}}, Nothing, Nothing}(Point{2, Float64}[[1.5e6, 5.0e6], [1.4998500087497458e6, 5.000000999950001e6], [1.4994001399837343e6, 5.000007998400139e6], [1.4986507085647392e6, 5.000026987852369e6], [1.4976022389592e6, 5.000063948817746e6], [1.4962554647802354e6, 5.000124843834609e6], [1.4946113281484335e6, 5.000215611503127e6], [1.4926709788709967e6, 5.000342160541625e6], [1.4904357734399722e6, 5.000510363870095e6], [1.4879072738504685e6, 5.0007260527263e6]  …  [1.4870405593989636e6, 4.999194331880103e6], [1.4896621210021754e6, 4.999426363321033e6], [1.491990928929295e6, 4.999609061508909e6], [1.4940253560034204e6, 4.999748243174828e6], [1.4957639801366436e6, 4.999849768598615e6], [1.497205585568957e6, 4.999919535736425e6], [1.4983491639274692e6, 4.999963474314044e6], [1.4991939151049731e6, 4.999987539891298e6], [1.4997392479570867e6, 4.999997707902938e6], [1.499984780817334e6, 4.999999967681458e6]], nothing, nothing)], nothing, nothing)

Now plot on the existing GeoAxis.

Note

The keyword argument source is used to specify the source CRS of that particular plot, when plotting on an existing GeoAxis.

julia
plot!(ga,polygon3; color=:red, source = source_crs2)
-fig

Great, we can make geometries and plot them on a map... now let's export the data to common geospatial data formats. To do this we now need to create geometries with embedded CRS information, making it a geospatial geometry. All that's needed is to include ; crs = crs as a keyword argument when constructing the geometry.

Let's do this for a new Polygon

julia
r = 3;
+fig

Great, we can make geometries and plot them on a map... now let's export the data to common geospatial data formats. To do this we now need to create geometries with embedded CRS information, making it a geospatial geometry. All that's needed is to include ; crs = crs as a keyword argument when constructing the geometry.

Let's do this for a new Polygon

julia
r = 3;
 k = 7;
 ϴ = 0:0.01:2pi;
 x = r .* (k + 1) .* cos.(ϴ) .- r .* cos.((k + 1) .* ϴ);
@@ -107,7 +107,7 @@
 GeoParquet.write(fn, df, (:geometry,))
"shapes.parquet"

Finally, if there's no Julia-native package that can write data to your desired format (e.g. .gpkg, .gml, etc), you can use GeoDataFrames. This package uses the GDAL library under the hood which supports writing to nearly all geospatial formats.

julia
import GeoDataFrames
 fn = "shapes.gpkg"
 GeoDataFrames.write(fn, df)
"shapes.gpkg"

And there we go, you can now create mapped geometries from scratch, manipulate them, plot them on a map, and save them in multiple geospatial data formats.

- + \ No newline at end of file diff --git a/dev/tutorials/spatial_joins.html b/dev/tutorials/spatial_joins.html index c4e0feadd..6b83481cd 100644 --- a/dev/tutorials/spatial_joins.html +++ b/dev/tutorials/spatial_joins.html @@ -8,11 +8,11 @@ - + - - - + + + @@ -28,14 +28,14 @@ pl = GI.Polygon([GI.LinearRing([(0, 0), (1, 0), (1, 1), (0, 0)])]) pu = GI.Polygon([GI.LinearRing([(0, 0), (0, 1), (1, 1), (0, 0)])]) poly_df = DataFrame(geometry = [pl, pu], color = [:red, :blue]) -f, a, p = poly(poly_df.geometry; color = tuple.(poly_df.color, 0.3))

Here, the upper polygon is blue, and the lower polygon is red. Keep this in mind!

Now, we generate the points.

julia
points = tuple.(rand(1000), rand(1000))
+f, a, p = poly(poly_df.geometry; color = tuple.(poly_df.color, 0.3))

Here, the upper polygon is blue, and the lower polygon is red. Keep this in mind!

Now, we generate the points.

julia
points = tuple.(rand(1000), rand(1000))
 points_df = DataFrame(geometry = points)
 scatter!(points_df.geometry)
-f

You can see that they are evenly distributed around the box. But how do we know which points are in which polygons?

We have to join the two dataframes based on which polygon (if any) each point lies within.

Now, we can perform the "spatial join" using FlexiJoins. We are performing an outer join here

julia
@time joined_df = FlexiJoins.innerjoin(
+f

You can see that they are evenly distributed around the box. But how do we know which points are in which polygons?

We have to join the two dataframes based on which polygon (if any) each point lies within.

Now, we can perform the "spatial join" using FlexiJoins. We are performing an outer join here

julia
@time joined_df = FlexiJoins.innerjoin(
     (points_df, poly_df),
     by_pred(:geometry, GO.within, :geometry)
 )
julia
scatter!(a, joined_df.geometry; color = joined_df.color)
-f

Here, you can see that the colors were assigned appropriately to the scattered points!

Real-world example

Suppose I have a list of polygons representing administrative regions (or mining sites, or what have you), and I have a list of polygons for each country. I want to find the country each region is in.

julia
import GeoInterface as GI, GeometryOps as GO
+f

Here, you can see that the colors were assigned appropriately to the scattered points!

Real-world example

Suppose I have a list of polygons representing administrative regions (or mining sites, or what have you), and I have a list of polygons for each country. I want to find the country each region is in.

julia
import GeoInterface as GI, GeometryOps as GO
 using FlexiJoins, DataFrames, GADM # GADM gives us country and sublevel geometry
 
 using CairoMakie, GeoInterfaceMakie
@@ -60,7 +60,7 @@
     ::FlexiJoins.ByPred{typeof(my_predicate_function)}, 
     datas
 ) = true

This will enable FlexiJoins to support your custom function, when it's passed to by_pred(:geometry, my_predicate_function, :geometry).

- + \ No newline at end of file