Changes between Version 87 and Version 88 of CookBook join ROE_CCM


Ignore:
Timestamp:
May 6, 2010 5:36:10 PM (15 years ago)
Author:
cedric
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CookBook join ROE_CCM

    v87 v88  
    225225With geobs2010.roe_ccm_300, there are two dams (in violet in the East) which are projected in the CCM layer but aren't in France :[[BR]] 
    226226ref_id =21164  an ref_id=49967 
     227 
     228the table is used in the loaddb method of BaseEdaCCMriversegmentsROE 
     229{{{ 
     230SELECT sum(height) AS c_height,sum(score) AS c_score,sum(nbdams) AS nbdams,r.gid AS gid  
     231FROM geobs2010.roe_ccm_300 j RIGHT JOIN ccm21.riversegments r  
     232ON r.gid=j.gid where wso_id in (select wso_id from france.wso where area='France')  
     233  GROUP BY r.gid ORDER BY r.gid ; 
     234}}}