Changes between Version 2 and Version 3 of Cookbook CCM21_France
- Timestamp:
- May 4, 2010 4:15:24 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Cookbook CCM21_France
v2 v3 1 1 this is ticket: #49 2 2 {{{ 3 /*boolean ST_Contains(geometry geomA, geometry geomB); 4 Description 5 Geometry A contains Geometry B 6 */ 7 8 3 9 SELECT count (*) from ccm21.riversegments r 4 10 join (SELECT ST_Union(f.the_geom) as singlegeom 5 11 FROM france.departement As f) as sub 6 ON ST_ DWithin(sub.singlegeom, r.the_geom, 300);12 ON ST_Contains(sub.singlegeom,r.the_geom); 7 13 }}}