Changes between Initial Version and Version 1 of CLC Analysis


Ignore:
Timestamp:
May 27, 2010 3:50:58 PM (15 years ago)
Author:
celine
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CLC Analysis

    v1 v1  
     1back to first page [..] 
     2back to ["Corine Land Cover"] 
     3back to ["CLC download and load"] 
     4 
     5 * select the first character in code_00 with substring(code_00 from 1 for 1) 
     6{{{ 
     7select * from CLC.clc00_v2_europe where substring(code_00 from 1 for 1)='1'; 
     8}}} 
     9 
     10{{{ 
     11select substring(code_00 from 1 for 1) as code, sum(ST_Area(the_geom)) from clc.clc00_v2_europe group by substring(code_00 from 1 for 1); 
     12}}}