[postgis-commits] svn - r3248 - branches/1.3
postgis-commits at postgis.refractions.net
postgis-commits at postgis.refractions.net
Tue Nov 4 12:08:24 PST 2008
Author: robe
Date: 2008-11-04 12:08:24 -0800 (Tue, 04 Nov 2008)
New Revision: 3248
Modified:
branches/1.3/postgis_comments.sql
Log:
missing protos
Modified: branches/1.3/postgis_comments.sql
===================================================================
--- branches/1.3/postgis_comments.sql 2008-11-04 20:05:59 UTC (rev 3247)
+++ branches/1.3/postgis_comments.sql 2008-11-04 20:08:24 UTC (rev 3248)
@@ -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';
@@ -266,6 +266,8 @@
COMMENT ON FUNCTION ST_Equals(geometry , geometry ) IS 'args: A, B - Returns true if the given geometries represent the same geometry. Directionality is ignored.';
+COMMENT ON FUNCTION ST_HasArc(geometry ) IS 'args: geomA - Returns true if a geometry or geometry collection contains a circular string';
+
COMMENT ON FUNCTION ST_Intersects(geometry, geometry) IS 'args: A, B - Returns TRUE if the Geometries "spatially intersect" - (share any portion of space) and FALSE if they dont (they are Disjoint).';
COMMENT ON FUNCTION ST_Length(geometry ) IS 'args: a_2dlinestring - Returns the 2d length of the geometry if it is a linestring or multilinestring.';
@@ -314,8 +316,10 @@
COMMENT ON FUNCTION ST_ConvexHull(geometry ) IS 'args: geomA - The convex hull of a geometry represents the minimum closed geometry that encloses all geometries within the set.';
-COMMENT ON FUNCTION ST_CurveToLine(geometry ) IS 'args: geomCircularString - Converts a CIRCULARSTRING to a LINESTRING';
+COMMENT ON FUNCTION ST_CurveToLine(geometry ) IS 'args: curveGeom - Converts a CIRCULARSTRING/CURVEDPOLYGON to a LINESTRING/POLYGON';
+COMMENT ON FUNCTION ST_CurveToLine(int ) IS 'args: segments_per_qtr_circle - Converts a CIRCULARSTRING/CURVEDPOLYGON to a LINESTRING/POLYGON';
+
COMMENT ON FUNCTION ST_Difference(geometry , geometry ) IS 'args: geomA, geomB - Returns a geometry that represents that part of geometry A that does not intersect with geometry B.';
COMMENT ON FUNCTION ST_Dump(geometry ) IS 'args: g1 - Returns a set of geometry_dump (geom,path) rows, that make up a geometry g1.';
More information about the postgis-commits
mailing list