From: Regina Obe Date: Sun, 16 Aug 2009 04:41:57 +0000 (+0000) Subject: update ST_buffer (include buffer style in refpuprose so shows in postgresql function... X-Git-Tag: 1.5.0b1~564 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=30dc32a73ff63837931cf263d0876bfcbed10e1e;p=postgis update ST_buffer (include buffer style in refpuprose so shows in postgresql function descrip), update refpurpose of hausdorf and include useful links for more details git-svn-id: http://svn.osgeo.org/postgis/trunk@4406 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/doc/reference.xml b/doc/reference.xml index c6a750fe0..49de46554 100644 --- a/doc/reference.xml +++ b/doc/reference.xml @@ -9837,7 +9837,8 @@ SELECT ST_Disjoint('POINT(0 0)'::geometry, 'LINESTRING ( 0 0, 0 2 )'::geometry); ST_HausdorffDistance - Returns the Hausdorff distance between two geometries. + Returns the Hausdorff distance between two geometries. Basically a measure of how similar or dissimilar 2 geometries are. Units are in the units of the spatial + reference system of the geometries. @@ -9870,7 +9871,8 @@ SELECT ST_Disjoint('POINT(0 0)'::geometry, 'LINESTRING ( 0 0, 0 2 )'::geometry); Description Implements algorithm for computing a distance metric which can be thought of as the "Discrete Hausdorff Distance". -This is the Hausdorff distance restricted to discrete points for one of the geometries. +This is the Hausdorff distance restricted to discrete points for one of the geometries. Wikipedia article on Hausdorff distance + Martin Davis note on how Hausdorff Distance calculation was used to prove correctness of the CascadePolygonUnion approach. When densifyFrac is specified, this function performs a segment densification before computing the discrete hausdorff distance. The densifyFrac parameter sets the fraction by which to densify each segment. Each segment will be split into a number of equal-length subsegments, whose fraction of the total length is closest to the given fraction. @@ -11551,7 +11553,7 @@ SELECT ST_Buffer(ST_GeomFromText('POINT(50 50)'), 20) As smallc, Returns a geometry that represents all points whose distance from this Geometry is less than or equal to distance. Calculations are in the Spatial Reference System of this Geometry. Introduced in 1.5 support for - different end cap and mitre settings to control shape. + different end cap and mitre settings to control shape. buffer_style options: quad_segs=#,endcap=round|flat|square,join=round|mitre|bevel,mitre_limit=#.#