[postgis-commits] svn - r3365 - trunk/doc

postgis-commits at postgis.refractions.net postgis-commits at postgis.refractions.net
Fri Dec 5 11:39:34 PST 2008


Author: robe
Date: 2008-12-05 11:39:33 -0800 (Fri, 05 Dec 2008)
New Revision: 3365

Modified:
   trunk/doc/reference_new.xml
Log:
revise example

Modified: trunk/doc/reference_new.xml
===================================================================
--- trunk/doc/reference_new.xml	2008-12-05 19:31:28 UTC (rev 3364)
+++ trunk/doc/reference_new.xml	2008-12-05 19:39:33 UTC (rev 3365)
@@ -9040,10 +9040,10 @@
 	  <refsection>
 		<title>Examples</title>
 		<programlisting>
---Find all lines that intersect and not touches a poly (interior intersects)
+--Find all compounds that intersect and not touch a poly (interior intersects)
 SELECT l.* , b.name As poly_name
 FROM polys As b 
-	INNER JOIN lines As l 
+	INNER JOIN compounds As l 
 	ON (p.the_geom &amp;&amp; b.the_geom 
 	AND ST_Relate(l.the_geom, b.the_geom,'T********'));
 



More information about the postgis-commits mailing list