Changes between Version 71 and Version 72 of Ireland clc


Ignore:
Timestamp:
May 17, 2012 9:04:36 PM (13 years ago)
Author:
cedric
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Ireland clc

    v71 v72  
    639639al --verbose eda2 
    640640}}} 
     641The gid's are needed to work the ccm21.upstream(_gid) function. Here is how we integrate them in the table 
     642{{{ 
     643#!sql 
     644alter table clc.surf_area_ireland_final add column gid integer; 
     645alter table clc.surf_area_ireland_final add constraint c_uk_gid unique(gid); 
     646update clc.surf_area_ireland_final set gid=riversegments.gid 
     647from ccm21.riversegments where riversegments.wso1_id=surf_area_ireland_final.wso1_id; --9064 
     648 
     649select count(*) from clc.surf_area_ireland_final; --10035 
     650}}}