Changes between Version 50 and Version 51 of BDCarthage2011 into eda2.0_RHT


Ignore:
Timestamp:
Feb 28, 2012 5:55:35 PM (13 years ago)
Author:
celine
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BDCarthage2011 into eda2.0_RHT

    v50 v51  
    279279create table rht.proj3 as ( 
    280280select r.id_drain, id_bdcarth, id_bdcarth as idbdc, bdc.the_geom from rht.rhtvs2 r inner join rht.proj1 p on r.id_drain=p.id_drain join bd_carthage2011.troncon_hydrographique bdc  
    281 on st_intersects(bdc.the_geom,p.the_geom)); ----176730 ms 
     281on st_intersects(bdc.the_geom,p.the_geom) where nature !='Aqueduc, conduite forcée' and num_superp !=1); ----176730 ms 
    282282comment on table rht.proj3 is 'Selection des id_bdcarthage à l''intérieur du buffer de 150m (proj1)'; 
    283283 
     
    286286create table rht.proj4 as ( 
    287287select r.id_drain, id_bdcarth, id_bdcarth as idbdc, bdc.the_geom from rht.rhtvs2 r inner join rht.proj2 p on r.id_drain=p.id_drain join bd_carthage2011.troncon_hydrographique bdc  
    288 on st_intersects(bdc.the_geom,p.the_geom)); 
     288on st_intersects(bdc.the_geom,p.the_geom) where nature !='Aqueduc, conduite forcée' and num_superp !=1); 
    289289comment on table rht.proj4 is 'Selection des id_bdcarthage à l''extérieur du buffer de 150m (proj2) qui intersect avec st_exteriorring'; 
    290290