From: Sandro Santilli Date: Tue, 16 Mar 2010 13:14:46 +0000 (+0000) Subject: Document ST_Split X-Git-Tag: 2.0.0alpha1~3102 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eb5740ade386f26d01da55e58aeb9023e7280fc6;p=postgis Document ST_Split git-svn-id: http://svn.osgeo.org/postgis/trunk@5440 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/doc/reference_processing.xml b/doc/reference_processing.xml index d3091531f..e1d735904 100644 --- a/doc/reference_processing.xml +++ b/doc/reference_processing.xml @@ -1863,4 +1863,41 @@ MULTILINESTRING((3 4,4 5),(1 2,3 4)) + + + + ST_Split + Returns a collection of geometries resulting by splitting a geometry. + + + + + + geometry ST_Split + input geometry blade geometry + + + + + + Description + +The function supports splitting a line by point, a line by line, a polygon by line. The returned geometry is always a collection. + + + +Think of this function as the opposite of ST_Union. +Theoretically applying ST_Union to the elements of the returned collection +should always yeld the original geometry. + + +Availability: 2.0.0 + + + + + See Also + + +