Changes between Version 17 and Version 18 of Cookbook CCM21_France


Ignore:
Timestamp:
Jul 1, 2010 11:38:32 AM (15 years ago)
Author:
celine
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Cookbook CCM21_France

    v17 v18  
    1212join (SELECT ST_Union(f.the_geom) as singlegeom 
    1313    FROM france.departement As f) as sub 
    14 ON ST_Contains(sub.singlegeom,r.the_geom);  
     14ON ST_Intersects(sub.singlegeom,r.the_geom);  
    1515*/ 
    1616 -- we try to get the vector of seaoutlets that are within the geographical area 
     
    3232join (SELECT ST_Union(f.the_geom) as singlegeom 
    3333    FROM france.departement As f) as sub 
    34 ON ST_Contains(sub.singlegeom,r.the_geom); --170703 lines 
     34ON ST_Intersects(sub.singlegeom,r.the_geom); --170828 lignes   (avec st_contains 170703 lines) 
    3535 
    3636UPDATE france.wso set area='France' where area IS NULL