]> granicus.if.org Git - postgis/commitdiff
Add remaining linear referencing functions
authorRegina Obe <lr@pcorp.us>
Wed, 29 Oct 2008 17:37:14 +0000 (17:37 +0000)
committerRegina Obe <lr@pcorp.us>
Wed, 29 Oct 2008 17:37:14 +0000 (17:37 +0000)
git-svn-id: http://svn.osgeo.org/postgis/branches/1.3@3211 b70326c6-7e19-0410-871a-916f4a2858ee

postgis_comments.sql

index a210b8529bedf6ff575c985ac219cd2abca1e01c..6b155a984d1e92fe173b82e25359ebb4f88c5019 100644 (file)
@@ -38,7 +38,7 @@ COMMENT ON FUNCTION PostGIS_Scripts_Released() IS 'Returns the version number of
 COMMENT ON FUNCTION PostGIS_Uses_Stats() IS 'Returns TRUE if STATS usage has been enabled.';\r
                        \r
 COMMENT ON FUNCTION PostGIS_Version() IS 'Returns PostGIS version number and compile-time options.';\r
-                       \r
+                                       \r
 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.';\r
                        \r
 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';\r
@@ -338,8 +338,14 @@ COMMENT ON FUNCTION ST_Union(geometry) IS 'args: g1 - Returns a geometry that re
                        \r
 COMMENT ON FUNCTION ST_Line_Interpolate_Point(geometry , float ) IS 'args: a_linestring, a_fraction - Returns a point interpolated along a line. Second argument is a float8 between 0 and 1 representing fraction of total length of linestring the point has to be located.';\r
                        \r
+COMMENT ON FUNCTION ST_Line_Locate_Point(geometry , geometry ) IS 'args: a_linestring, a_point - Returns a float between 0 and 1 representing the location of the closest point on LineString to the given Point, as a fraction of total 2d line length.';\r
+                       \r
 COMMENT ON FUNCTION ST_Line_Substring(geometry , float , float ) IS 'args: a_linestring, startfraction, endfraction - Return a linestring being a substring of the input one starting and ending at the given fractions of total 2d length. Second and third arguments are float8 values between 0 and 1.';\r
                        \r
+COMMENT ON FUNCTION ST_Locate_Along_Measure(geometry , float ) IS 'args: ageom_with_measure, a_measure - Return a derived geometry collection value with elements that match the specified measure. Polygonal elements are not supported.';\r
+                       \r
+COMMENT ON FUNCTION ST_Locate_Between_Measures(geometry , float , float ) IS 'args: geomA, measure_start, measure_end - Return a derived geometry collection value with elements that match the specified range of measures inclusively. Polygonal elements are not supported.';\r
+                       \r
 COMMENT ON FUNCTION ST_Expand(geometry , 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 FUNCTION ST_Expand(box2d , float) IS 'args: g1, units_to_expand - Returns bounding box expanded in all directions from the bounding box of the input geometry';\r