Changes between Version 10 and Version 11 of Limites administratives Europe


Ignore:
Timestamp:
Jul 20, 2010 4:49:39 PM (15 years ago)
Author:
celine
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Limites administratives Europe

    v10 v11  
    6464     ) 
    6565 
     66----France 
    6667    insert into europe.wso(wso_id)  
    6768    select distinct on (wso_id)  wso_id from ccm21.riversegments r 
     
    7475select * from ccm21.riversegments where wso_id in (select wso_id from europe.wso where area='France')--170734 lines (with france.departement 170703 lines) 
    7576 
     77----Germany 
     78    insert into europe.wso(wso_id)  
     79    select distinct on (wso_id)  wso_id from ccm21.riversegments r 
     80    join (SELECT ST_Union(f.the_geom) as singlegeom 
     81        FROM europe.limiteeurope As f where gid='12') as sub 
     82    ON ST_Intersects(sub.singlegeom,r.the_geom); 
     83 
     84    UPDATE europe.wso set area='Germany' where area IS NULL 
     85 
     86----Spain (+Gibraltar) 
     87    insert into europe.wso(wso_id)  
     88    select distinct on (wso_id)  wso_id from ccm21.riversegments r 
     89    join (SELECT ST_Union(f.the_geom) as singlegeom 
     90        FROM europe.limiteeurope As f where gid='37' or gid='13') as sub 
     91    ON ST_Intersects(sub.singlegeom,r.the_geom); 
     92 
     93    UPDATE europe.wso set area='Spain' where area IS NULL 
     94 
     95----Italy (+ 
     96 
    7697CREATE INDEX europe_wso_id 
    7798  ON france.wso