Changes between Version 33 and Version 34 of model building


Ignore:
Timestamp:
May 21, 2010 10:04:22 PM (15 years ago)
Author:
cedric
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • model building

    v33 v34  
    1717I have to check that this does not suppress any lines.... 
    1818 
    19  
     19#!html 
     20<h1 style="color: green">Getting other variables from the ccm</h1> 
     21}}}  
     22{{{ 
     23#!sql 
     24select r.gid, 
     25r.wso1_id, 
     26r.wso_id, 
     27rvr_id, 
     28fromnode, 
     29tonode, 
     30r.strahler, 
     31pfafstette, 
     32length, 
     33cum_len, 
     34drain_km2, 
     35alt_gradie, 
     36cum_len_sea, 
     37c_height, 
     38c_score, 
     39nbdams, 
     40cs_height, 
     41cs_nbdams, 
     42cs_score, 
     43winter, 
     44summer, 
     45c.strahler as strahlermax, 
     46c.area_km2, 
     47elev_mean, 
     48slope_mean, 
     49rain_mean, 
     50temp_mean, 
     51name, 
     52area_cd 
     53 from ccm21.riversegments r 
     54left join ccm21.catchments c on r.wso1_id=c.wso1_id 
     55left join ccm21.seaoutlets s on s.wso_id=r.wso_id 
     56where r.wso_id in (select wso_id from france.wso where area='France') 
     57}}}