Class Union
- java.lang.Object
-
- eu.europa.ec.eurostat.jgiscotools.algo.base.Union
-
public class Union extends Object
Efficient union of polygons.- Author:
- julien Perret (from GeOxygene project http://sourceforge.net/projects/oxygene-project/)
-
-
Constructor Summary
Constructors Constructor Description Union()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static org.locationtech.jts.geom.Geometry
getCascadedPolygonUnion(Collection<org.locationtech.jts.geom.Geometry> polys)
static <T extends org.locationtech.jts.geom.Geometry>
org.locationtech.jts.geom.GeometrygetLineUnion(Collection<T> geoms)
static org.locationtech.jts.geom.Geometry
getPolygonUnion(Collection<org.locationtech.jts.geom.Geometry> geoms)
static org.locationtech.jts.geom.LineString
getUnionAsLineString(Collection<org.locationtech.jts.geom.Geometry> geoms)
static org.locationtech.jts.geom.Geometry
polygonsUnionAll(Collection<org.locationtech.jts.geom.Geometry> polys)
-
-
-
Method Detail
-
getLineUnion
public static <T extends org.locationtech.jts.geom.Geometry> org.locationtech.jts.geom.Geometry getLineUnion(Collection<T> geoms)
-
getPolygonUnion
public static org.locationtech.jts.geom.Geometry getPolygonUnion(Collection<org.locationtech.jts.geom.Geometry> geoms)
-
getCascadedPolygonUnion
public static org.locationtech.jts.geom.Geometry getCascadedPolygonUnion(Collection<org.locationtech.jts.geom.Geometry> polys)
-
getUnionAsLineString
public static org.locationtech.jts.geom.LineString getUnionAsLineString(Collection<org.locationtech.jts.geom.Geometry> geoms)
-
polygonsUnionAll
public static org.locationtech.jts.geom.Geometry polygonsUnionAll(Collection<org.locationtech.jts.geom.Geometry> polys)
-
-