]> granicus.if.org Git - postgis/commitdiff
st_segmentize and st_linemerge
authorRegina Obe <lr@pcorp.us>
Wed, 15 Oct 2008 13:39:46 +0000 (13:39 +0000)
committerRegina Obe <lr@pcorp.us>
Wed, 15 Oct 2008 13:39:46 +0000 (13:39 +0000)
git-svn-id: http://svn.osgeo.org/postgis/branches/1.3@3111 b70326c6-7e19-0410-871a-916f4a2858ee

postgis_comments.sql

index 76d3914b131b6e78192294b35e7a54248906e674..f4d5475c2a1103b49b9a17f0c3ad75a9644dabd0 100644 (file)
@@ -1,3 +1,4 @@
+\r
 COMMENT ON FUNCTION AddGeometryColumn(varchar , varchar , integer , varchar , integer ) IS 'args: table_name, column_name, srid, type, dimension - Adds a geometry column to an existing table of attributes.';\r
                        \r
 COMMENT ON FUNCTION AddGeometryColumn(varchar , varchar , varchar , integer , varchar , integer ) IS 'args: schema_name, table_name, column_name, srid, type, dimension - Adds a geometry column to an existing table of attributes.';\r
@@ -110,12 +111,16 @@ COMMENT ON FUNCTION ST_AddPoint(geometry, geometry) IS 'args: linestring, point
                        \r
 COMMENT ON FUNCTION ST_AddPoint(geometry, geometry, integer) IS 'args: linestring, point, position - Adds a point to a LineString before point <position> (0-based index).';\r
                        \r
+COMMENT ON FUNCTION ST_LineMerge(geometry ) IS 'args: amultilinestring - Returns a (set of) LineString(s) formed by sewing together a MULTILINESTRING.';\r
+                       \r
 COMMENT ON FUNCTION ST_Multi(geometry ) IS 'args: g1 - Returns the geometry as a MULTI* geometry. If the geometry is already a MULTI*, it is returned unchanged.';\r
                        \r
 COMMENT ON FUNCTION ST_RemovePoint(geometry, integer) IS 'args: linestring, offset - Removes point from a linestring. Offset is 0-based.';\r
                        \r
 COMMENT ON FUNCTION ST_Reverse(geometry ) IS 'args: g1 - Returns the geometry with vertex order reversed.';\r
                        \r
+COMMENT ON FUNCTION ST_Segmentize(geometry , float ) IS 'args: geomA, max_length - Return a modified geometry having no segment longer than the given distance. Distance computation is performed in 2d only.';\r
+                       \r
 COMMENT ON FUNCTION ST_SetPoint(geometry, integer, geometry) IS 'args: linestring, zerobasedposition, point - Replace point N of linestring with given point. Index is 0-based.';\r
                        \r
 COMMENT ON FUNCTION ST_SetSRID(geometry , integer ) IS 'args: geom, srid - Sets the SRID on a geometry to a particular integer value.';\r
@@ -238,4 +243,5 @@ COMMENT ON FUNCTION ST_Expand(box2d , float) IS 'args: g1, units_to_expand - Ret
                        \r
 COMMENT ON FUNCTION ST_Expand(box3d , float) IS 'args: g1, units_to_expand - Returns bounding box expanded in all directions from the bounding box of the input geometry';\r
                        \r
-COMMENT ON AGGREGATE ST_Extent(geometry) IS 'args: geomfield - an aggregate function that returns the bounding box that bounds rows of geometries.';                   
\ No newline at end of file
+COMMENT ON AGGREGATE ST_Extent(geometry) IS 'args: geomfield - an aggregate function that returns the bounding box that bounds rows of geometries.';\r
+                       
\ No newline at end of file