From: Regina Obe Date: Thu, 11 Dec 2008 19:38:50 +0000 (+0000) Subject: Fix typo in geometry test X-Git-Tag: 1.4.0b1~438 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2ad7cef7cb8ef5588980c0c3dccf4dfc800238c0;p=postgis Fix typo in geometry test git-svn-id: http://svn.osgeo.org/postgis/trunk@3381 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/doc/xsl/postgis_gardentest.sql.xsl b/doc/xsl/postgis_gardentest.sql.xsl index dcefc7ab4..11d1b4a34 100644 --- a/doc/xsl/postgis_gardentest.sql.xsl +++ b/doc/xsl/postgis_gardentest.sql.xsl @@ -18,13 +18,13 @@ SELECT (); - - + SELECT ST_AsEWKT((the_geom)), ST_AsEWKT((ST_Multi(the_geom))) @@ -33,14 +33,14 @@ (ST_Multi(the_geom)) - FROM (SELECT ST_Point(i,j) As the_geom + FROM (SELECT ST_SetSRID(ST_Point(i,j),4326) As the_geom FROM generate_series(-60,50,5) As i CROSS JOIN generate_series(40,70, 5) j) As foo; - + SELECT ST_AsEWKT((the_geom)), ST_AsEWKT((ST_Multi(the_geom))) @@ -49,7 +49,7 @@ SELECT ST_AsEWKT((the_geom)), (ST_Multi(the_geom)) - FROM (SELECT ST_MakeLine(ST_Point(i,j),ST_Point(j,i)) As the_geom + FROM (SELECT ST_MakeLine(ST_SetSRID(ST_Point(i,j),4326),ST_SetSRID(ST_Point(j,i),4326)) As the_geom FROM generate_series(-60,50,5) As i CROSS JOIN generate_series(40,70, 5) j) As foo; @@ -57,7 +57,7 @@ SELECT ST_AsEWKT((the_geom)), - + SELECT ST_AsEWKT((the_geom)), ST_AsEWKT((ST_Multi(the_geom))) @@ -66,11 +66,11 @@ SELECT ST_AsEWKT((the_geom)), (ST_Multi(the_geom)) - FROM (SELECT ST_Buffer(ST_Point(i,j), j) As the_geom + FROM (SELECT ST_Buffer(ST_SetSRID(ST_Point(i,j),4326), j) As the_geom FROM generate_series(-60,50,5) As i CROSS JOIN generate_series(40,70, 5) j) As foo; - +