Changes between Version 17 and Version 18 of Cookbook CCM21_France
- Timestamp:
- Jul 1, 2010 11:38:32 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Cookbook CCM21_France
v17 v18 12 12 join (SELECT ST_Union(f.the_geom) as singlegeom 13 13 FROM france.departement As f) as sub 14 ON ST_ Contains(sub.singlegeom,r.the_geom);14 ON ST_Intersects(sub.singlegeom,r.the_geom); 15 15 */ 16 16 -- we try to get the vector of seaoutlets that are within the geographical area … … 32 32 join (SELECT ST_Union(f.the_geom) as singlegeom 33 33 FROM france.departement As f) as sub 34 ON ST_ Contains(sub.singlegeom,r.the_geom); --170703 lines34 ON ST_Intersects(sub.singlegeom,r.the_geom); --170828 lignes (avec st_contains 170703 lines) 35 35 36 36 UPDATE france.wso set area='France' where area IS NULL