Changes between Version 3 and Version 4 of Noeuds mer RHT


Ignore:
Timestamp:
Oct 19, 2011 6:15:35 PM (14 years ago)
Author:
cedric
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TabularUnified Noeuds mer RHT

    v3 v4  
    99where id_drain in (select id_drain from rht.noeudmer where noeudmer); --1083 
    1010}}} 
     11Identification des différentes zones, manche, Bretagne, Méditerranée, Golfe de Gascogne, Est France, Pyrénnées, pb topologie centre France. 
     12{{{ 
     13alter table rht.noeudmer add column zonegeo character varying(30); 
     14update rht.noeudmer_polygon set location='pb topologie centre france' where location is null; 
     15update rht.noeudmer n set zonegeo=location from( 
     16Select location,id_drain from rht.noeudmer_polygon p 
     17join  rht.noeudmer n on st_intersects(p.the_geom,n.the_geom)) s 
     18where s.id_drain=n.id_drain; -- 1114 
     19update rht.noeudmer set zonegeo='Golfe de Gascogne' where zonegeo='Biscaye'; 
     20select * from rht.noeudmer where zonegeo is null; -- zero lignes 
     21}}}