From eb9dbceafb35e9f495fc8ca88d26030e6d554748 Mon Sep 17 00:00:00 2001 From: Paul Ramsey Date: Mon, 18 Aug 2003 20:08:21 +0000 Subject: [PATCH] Removed illegal characters from the file. git-svn-id: http://svn.osgeo.org/postgis/trunk@294 b70326c6-7e19-0410-871a-916f4a2858ee --- doc/postgis.xml | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/doc/postgis.xml b/doc/postgis.xml index cf1c32e51..f4033eaba 100644 --- a/doc/postgis.xml +++ b/doc/postgis.xml @@ -1706,6 +1706,7 @@ if( geom.getType() = Geometry.POLYGON ) the database without converting it to a string representation. OGC SPEC s2.1.1.1 - also see asBinary(<geometry>,'XDR') and asBinary(<geometry>,'NDR') + @@ -1759,7 +1760,7 @@ representational geometry primitives as discussed in the OGC SPEC, section 3.12. equals(geometry) - Returns 1 (TRUE) if this Geometry is ‘spatially equal’ to + Returns 1 (TRUE) if this Geometry is "spatially equal" to anotherGeometry. Use this for a 'better' answer than '='. equals ('LINESTRING(0 0, 10 10)','LINESTRING(0 0, 5 5, 10 10)') is true. Performed by the GEOS module @@ -1770,18 +1771,18 @@ anotherGeometry. Use this for a 'better' answer than '='. equals ('LINESTRING( disjoint(geometry,geometry) - Returns 1 (TRUE) if this Geometry is ‘spatially disjoint’ from anotherGeometry. + Returns 1 (TRUE) if this Geometry is "spatially disjoint" from anotherGeometry. Performed by the GEOS module Do not call with a GeometryCollection as an argument - NOTE: this is the "allowable" version that returns a boolean, not an integer. - OGC SPEC s2.1.1.1 //s2.1.13.3 - a.Relate(b, ‘FF*FF****’) + NOTE: this is the "allowable" version that returns a boolean, not an integer. + OGC SPEC s2.1.1.1 //s2.1.13.3 - a.Relate(b, 'FF*FF****') intersects(geometry,geometry) - Returns 1 (TRUE) if this Geometry ‘spatially intersects’ anotherGeometry. + Returns 1 (TRUE) if this Geometry "spatially intersects" anotherGeometry. Performed by the GEOS module Do not call with a GeometryCollection as an argument @@ -1792,7 +1793,7 @@ anotherGeometry. Use this for a 'better' answer than '='. equals ('LINESTRING( touches(geometry,geometry) - Returns 1 (TRUE) if this Geometry ‘spatially touches’ anotherGeometry. + Returns 1 (TRUE) if this Geometry "spatially touches" anotherGeometry. Performed by the GEOS module Do not call with a GeometryCollection as an argument @@ -1803,29 +1804,29 @@ anotherGeometry. Use this for a 'better' answer than '='. equals ('LINESTRING( crosses(geometry,geometry) - Returns 1 (TRUE) if this Geometry ‘spatially crosses’ anotherGeometry. + Returns 1 (TRUE) if this Geometry "spatially crosses" anotherGeometry. Performed by the GEOS module Do not call with a GeometryCollection as an argument NOTE: this is the "allowable" version that returns a boolean, not an integer. - OGC SPEC s2.1.1.1 // s2.1.13.3 - a.Relate(b, ‘T*T******’) + OGC SPEC s2.1.1.1 // s2.1.13.3 - a.Relate(b, 'T*T******') within(geometry,geometry) - Returns 1 (TRUE) if this Geometry is ‘spatially within’ anotherGeometry. + Returns 1 (TRUE) if this Geometry is "spatially within" anotherGeometry. Performed by the GEOS module Do not call with a GeometryCollection as an argument NOTE: this is the "allowable" version that returns a boolean, not an integer. - OGC SPEC s2.1.1.1 // s2.1.13.3 - a.Relate(b, ‘T*F**F***’) + OGC SPEC s2.1.1.1 // s2.1.13.3 - a.Relate(b, 'T*F**F***') overlaps(geometry,geometry) - Returns 1 (TRUE) if this Geometry is ‘spatially overlapping’ anotherGeometry. + Returns 1 (TRUE) if this Geometry is "spatially overlapping" anotherGeometry. Performed by the GEOS module Do not call with a GeometryCollection as an argument @@ -1836,7 +1837,7 @@ anotherGeometry. Use this for a 'better' answer than '='. equals ('LINESTRING( contains(geometry,geometry) - Returns 1 (TRUE) if this Geometry is ‘spatially contains’ anotherGeometry. + Returns 1 (TRUE) if this Geometry is "spatially contains" anotherGeometry. Performed by the GEOS module Do not call with a GeometryCollection as an argument @@ -1847,7 +1848,7 @@ anotherGeometry. Use this for a 'better' answer than '='. equals ('LINESTRING( intersects(geometry,geometry) - Returns 1 (TRUE) if this Geometry is ‘spatially intersects’ anotherGeometry. + Returns 1 (TRUE) if this Geometry is "spatially intersects" anotherGeometry. Performed by the GEOS module Do not call with a GeometryCollection as an argument @@ -2216,7 +2217,7 @@ is simple (does not pass through the same point more than once). area(geometry) Returns the area of the geometry if it is a polygon or - multi-polygon. (same as area2() + multi-polygon. (same as area2(<polygon|multipolygon>) -- 2.50.1