[postgis-commits] svn - r3292 - branches/1.3
postgis-commits at postgis.refractions.net
postgis-commits at postgis.refractions.net
Fri Nov 14 15:56:16 PST 2008
Author: robe
Date: 2008-11-14 15:56:16 -0800 (Fri, 14 Nov 2008)
New Revision: 3292
Modified:
branches/1.3/postgis_comments.sql
Log:
makebbox constructors and ST_LineFromMultiPoint
Modified: branches/1.3/postgis_comments.sql
===================================================================
--- branches/1.3/postgis_comments.sql 2008-11-14 23:46:05 UTC (rev 3291)
+++ branches/1.3/postgis_comments.sql 2008-11-14 23:56:16 UTC (rev 3292)
@@ -38,7 +38,7 @@
COMMENT ON FUNCTION PostGIS_Uses_Stats() IS 'Returns TRUE if STATS usage has been enabled.';
COMMENT ON FUNCTION PostGIS_Version() IS 'Returns PostGIS version number and compile-time options.';
-
+
COMMENT ON FUNCTION Probe_Geometry_Columns() IS 'Scans all tables with PostGIS geometry constraints and adds them to the geometry_columns table if they are not there.';
COMMENT ON FUNCTION UpdateGeometrySRID(varchar , varchar , integer ) IS 'args: table_name, column_name, srid - Updates the SRID of all features in a geometry column, geometry_columns metadata and srid table constraint';
@@ -63,6 +63,12 @@
COMMENT ON FUNCTION ST_GeomFromText(text , integer ) IS 'args: WKT, srid - Return a specified ST_Geometry value from Well-Known Text representation (WKT).';
+COMMENT ON FUNCTION ST_LineFromMultiPoint(geometry ) IS 'args: aMultiPoint - Creates a LineString from a MultiPoint geometry.';
+
+COMMENT ON FUNCTION ST_MakeBox2D(geometry , geometry ) IS 'args: pointLowLeft, pointUpRight - Creates a BOX2D defined by the given point geometries.';
+
+COMMENT ON FUNCTION ST_MakeBox3D(geometry , geometry ) IS 'args: point3DLowLeftBottom, point3DUpRightTop - Creates a BOX3D defined by the given 3d point geometries.';
+
COMMENT ON AGGREGATE ST_MakeLine(geometry) IS 'args: pointfield - Creates a Linestring from point geometries.';
COMMENT ON FUNCTION ST_MakeLine(geometry, geometry) IS 'args: point1, point2 - Creates a Linestring from point geometries.';
More information about the postgis-commits
mailing list