Changes between Version 10 and Version 11 of Cookbook CCM21_France


Ignore:
Timestamp:
May 27, 2010 4:39:20 PM (15 years ago)
Author:
cedric
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Cookbook CCM21_France

    v10 v11  
    4646 
    4747[[Image(source:data/Docs/trac/riversegmentsfrance.jpg)]]  
     48{{{ 
     49#!sql 
     50-- pour des essais sélection de la Bretagne 
     51insert into france.wso(wso_id)  
     52select distinct on (wso_id)  wso_id from ccm21.riversegments r 
     53join (SELECT the_geom 
     54    FROM france.region where code_reg='53') as sub 
     55ON ST_Contains(sub.the_geom,r.the_geom); --170703 lines 
     56 
     57UPDATE france.wso set area='Bretagne' where area IS NULL 
     58}}}