Class ST_LineIntersector
- java.lang.Object
-
- org.h2gis.api.AbstractFunction
-
- org.h2gis.api.DeterministicScalarFunction
-
- org.h2gis.functions.spatial.split.ST_LineIntersector
-
- All Implemented Interfaces:
org.h2gis.api.Function,org.h2gis.api.ScalarFunction
public class ST_LineIntersector extends org.h2gis.api.DeterministicScalarFunctionLineIntersector is used to split an input geometry (LineString or MultiLineString) by a set of geometries.- Author:
- Erwan Bocher
-
-
Constructor Summary
Constructors Constructor Description ST_LineIntersector()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static voidaddGeometryToSegments(org.locationtech.jts.geom.Geometry geometry, int flag, ArrayList<org.locationtech.jts.noding.SegmentString> segments)Convert the a geometry as a list of segments and mark it with a flagStringgetJavaStaticMethod()static ArrayList<org.locationtech.jts.noding.SegmentString>getSegments(org.locationtech.jts.geom.Geometry inputLines, org.locationtech.jts.geom.Geometry clipper)Convert the input geometries as a list of segments and mark them with a flag to identify input and output geometries.static org.locationtech.jts.geom.GeometrylineIntersector(org.locationtech.jts.geom.Geometry inputLines, org.locationtech.jts.geom.Geometry clipper)Split a lineal geometry by a another geometry-
Methods inherited from class org.h2gis.api.AbstractFunction
addProperty, getProperty, removeProperty
-
-
-
-
Method Detail
-
getJavaStaticMethod
public String getJavaStaticMethod()
-
lineIntersector
public static org.locationtech.jts.geom.Geometry lineIntersector(org.locationtech.jts.geom.Geometry inputLines, org.locationtech.jts.geom.Geometry clipper) throws IllegalArgumentException, SQLExceptionSplit a lineal geometry by a another geometry- Parameters:
inputLines-clipper-- Returns:
- Throws:
SQLExceptionIllegalArgumentException
-
getSegments
public static ArrayList<org.locationtech.jts.noding.SegmentString> getSegments(org.locationtech.jts.geom.Geometry inputLines, org.locationtech.jts.geom.Geometry clipper)
Convert the input geometries as a list of segments and mark them with a flag to identify input and output geometries.- Parameters:
inputLines-clipper-- Returns:
-
addGeometryToSegments
public static void addGeometryToSegments(org.locationtech.jts.geom.Geometry geometry, int flag, ArrayList<org.locationtech.jts.noding.SegmentString> segments)Convert the a geometry as a list of segments and mark it with a flag- Parameters:
geometry-flag-segments-
-
-