Changes between Version 4 and Version 5 of CookBook join Corine Land Cover-RHT


Ignore:
Timestamp:
May 25, 2012 1:20:53 PM (13 years ago)
Author:
celine
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CookBook join Corine Land Cover-RHT

    v4 v5  
    164164USING btree (reach_number); 
    165165}}} 
     166 
     167{{{ 
     168#!sql 
     169SELECT AddGeometryColumn ( 'clc2000','area_clc','the_geom',3035,'MULTILINESTRING',2); 
     170update clc2000.area_clc set the_geom=rhtvs2.the_geom from rht.rhtvs2 
     171 where rhtvs2.id_drain=area_clc.reach_number;  
     172 
     173SELECT AddGeometryColumn ( 'clc2000','uparea_clc','the_geom',3035,'MULTILINESTRING',2); 
     174update clc2000.uparea_clc set the_geom=rhtvs2.the_geom from rht.rhtvs2 
     175 where rhtvs2.id_drain=uparea_clc.reach_number;  
     176}}}