You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/transformations/simplify.jl
+18-19Lines changed: 18 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -14,18 +14,18 @@ RadialDistance
14
14
15
15
## What is Geometry Simplification?
16
16
17
-
Geometry simplification reduces the number of points in a geometry while preserving its essential shape.
18
-
This is usually done by specifying some tolerance.
17
+
Geometry simplification reduces the number of points in a geometry while preserving its essential shape.
18
+
This is usually done by specifying some tolerance.
19
19
20
-
GeometryOps provides three simplification algorithms: [`VisvalingamWhyatt`](@ref), [`DouglasPeucker`](@ref),
21
-
and [`RadialDistance`](@ref), listed in order of decreasing quality but increasing performance.
20
+
GeometryOps provides three simplification algorithms: [`VisvalingamWhyatt`](@ref), [`DouglasPeucker`](@ref),
21
+
and [`RadialDistance`](@ref), listed in order of decreasing quality but increasing performance.
22
22
23
23
The default algorithm is [`DouglasPeucker`](@ref), which is also available through the GEOS extension.
24
24
25
25
In GeometryOps' algorithms, you can specify
26
26
`tol`, `number` of points, or `ratio` of points after simplification to points in the input geometry.
27
27
28
-
The GEOS extension (activated by loading [LibGEOS.jl](https://github.com/JuliaGeo/LibGEOS.jl)) also allows for GEOS's topology preserving simplification
28
+
The GEOS extension (activated by loading [LibGEOS.jl](https://github.com/JuliaGeo/LibGEOS.jl)) also allows for GEOS's topology preserving simplification
29
29
as well as Douglas-Peucker simplification implemented in GEOS. Call this by
0 commit comments