]> granicus.if.org Git - postgis/commitdiff
for consistency make example be same as what is used to generate the image.
authorRegina Obe <lr@pcorp.us>
Tue, 26 May 2009 16:26:26 +0000 (16:26 +0000)
committerRegina Obe <lr@pcorp.us>
Tue, 26 May 2009 16:26:26 +0000 (16:26 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@4102 b70326c6-7e19-0410-871a-916f4a2858ee

doc/reference.xml

index 976ac608c4b2984e71dcdc4cef1ea66947f945b8..4c858d612c2be1be82fb2256edd836c5ffba9b9b 100644 (file)
@@ -11425,8 +11425,10 @@ SELECT ST_Within(smallc,smallc) As smallinsmall,
        ST_Within(ST_Union(smallc, bigc), bigc) as unioninbig,
        ST_Within(bigc, ST_Union(smallc, bigc)) as biginunion,
        ST_Equals(bigc, ST_Union(smallc, bigc)) as bigisunion
-FROM (SELECT ST_Buffer(ST_GeomFromText('POINT(1 2)'), 10) As smallc,
-       ST_Buffer(ST_GeomFromText('POINT(1 2)'), 20) As bigc) As foo;
+FROM 
+(
+SELECT ST_Buffer(ST_GeomFromText('POINT(50 50)'), 50) As smallc,
+       ST_Buffer(ST_GeomFromText('POINT(50 50)'), 100) As bigc) As foo;
 --Result
  smallinsmall | smallinbig | biginsmall | unioninbig | biginunion | bigisunion
 --------------+------------+------------+------------+------------+------------