From: Sandro Santilli Date: Thu, 15 Sep 2005 14:54:20 +0000 (+0000) Subject: Fixed X(),Y() and Z() functions description X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4287931b94eb8968345be892475fce8b3f5614fc;p=postgis Fixed X(),Y() and Z() functions description git-svn-id: http://svn.osgeo.org/postgis/branches/pgis_1_0@1919 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/doc/postgis.xml b/doc/postgis.xml index da7dc088f..3cdd2f4c9 100644 --- a/doc/postgis.xml +++ b/doc/postgis.xml @@ -3508,9 +3508,8 @@ dimension X(geometry) - Find and return the X coordinate of the first point in the - geometry. Return NULL if there is no point in the - geometry. + Return the X coordinate of the point, or NULL + if the geometry is not a point. @@ -3518,9 +3517,8 @@ dimension Y(geometry) - Find and return the Y coordinate of the first point in the - geometry. Return NULL if there is no point in the - geometry. + Return the Y coordinate of the point, or NULL + if the geometry is not a point. @@ -3528,9 +3526,8 @@ dimension Z(geometry) - Find and return the Z coordinate of the first point in the - geometry. Return NULL if there is no point in the - geometry. + Return the Z coordinate of the point, or NULL + if the geometry is not a point.