Uses of Interface
org.locationtech.jts.operation.union.UnionStrategy
-
Packages that use UnionStrategy Package Description org.locationtech.jts.operation.union Classes to perform efficient unioning of collections of geometries. -
-
Uses of UnionStrategy in org.locationtech.jts.operation.union
Methods in org.locationtech.jts.operation.union with parameters of type UnionStrategy Modifier and Type Method Description void
UnaryUnionOp. setUnionFunction(UnionStrategy unionFun)
static Geometry
CascadedPolygonUnion. union(java.util.Collection polys, UnionStrategy unionFun)
static Geometry
OverlapUnion. union(Geometry g0, Geometry g1, UnionStrategy unionFun)
Deprecated.Union a pair of geometries, using the more performant overlap union algorithm if possible.Constructors in org.locationtech.jts.operation.union with parameters of type UnionStrategy Constructor Description CascadedPolygonUnion(java.util.Collection polys, UnionStrategy unionFun)
Creates a new instance to union the given collection ofGeometry
s.OverlapUnion(Geometry g0, Geometry g1, UnionStrategy unionFun)
Deprecated.
-