Version 9 (modified by celine, 15 years ago) (diff) |
---|
back to first page ..
Unité de Gestion Anguille UGA2010_L93
Limites des Unités de Gestion Anguille relatives au Plan de Gestion Anguille de la France
version : 23/02/2010
Projection initiale RGF93_Lambert_93 --> transformation en ETRS 1989 LAEA
UGA : couche réalisée à partir de la couche des COGEPOMI (zones hydro BD Carthage 2008 fusionnées selon les limites définies dans le décret amphialin n°94-157 du 16 février. Pour les contours du pays, ce qui dépassait de la limite administrative BD Carto 2007 a été découpé.) Couche des COGEPOMI à partir de laquelle on a étendu les limites avales des unités selon le plan de gestion anguilles. Par ailleurs, suite à l'approbation du PGA en février 2010, le bassin Rhin Meuse a été scindé en deux (selon les zones hydrographiques Rhin et Meuse de la BD Carthage 2009)
10 UGA
Gid | Libelle | Surface (km²) |
1 | Loire | 127901.2 |
2 | Garonne | 97269.3 |
3 | Adour | 20230.1 |
4 | Artois-Picardie | 20022.4 |
5 | Rhône-Méditerranée | 120835.6 |
6 | Corse | 8755.7 |
7 | Seine Normandie | 94516.7 |
8 | Bretagne | 30574 |
9 | Rhin | 23570.7 |
10 | Meuse | 7813 |
Correspondance UGA-CCM
drop table if exists uga2010.wso; CREATE TABLE uga2010.wso ( id serial PRIMARY KEY, wso_id integer, uga varchar(25) ) --Loire insert into uga2010.wso(wso_id) select distinct on (wso_id) wso_id from ccm21.riversegments r join (SELECT ST_Union(f.the_geom) as singlegeom FROM uga2010.uga As f where gid='1') as sub ON ST_Intersects(sub.singlegeom,r.the_geom); UPDATE uga2010.wso set uga='Loire' where uga IS NULL --40 sea nodes --Garonne insert into uga2010.wso(wso_id) select distinct on (wso_id) wso_id from ccm21.riversegments r join (SELECT ST_Union(f.the_geom) as singlegeom FROM uga2010.uga As f where gid='2') as sub ON ST_Intersects(sub.singlegeom,r.the_geom); UPDATE uga2010.wso set uga='Garonne' where uga IS NULL --60 sea nodes --Adour insert into uga2010.wso(wso_id) select distinct on (wso_id) wso_id from ccm21.riversegments r join (SELECT ST_Union(f.the_geom) as singlegeom FROM uga2010.uga As f where gid='3') as sub ON ST_Intersects(sub.singlegeom,r.the_geom); UPDATE uga2010.wso set uga='Adour' where uga IS NULL --19 sea nodes --Artois-Picardie insert into uga2010.wso(wso_id) select distinct on (wso_id) wso_id from ccm21.riversegments r join (SELECT ST_Union(f.the_geom) as singlegeom FROM uga2010.uga As f where gid='4') as sub ON ST_Intersects(sub.singlegeom,r.the_geom); UPDATE uga2010.wso set uga='ArtoisPicardie' where uga IS NULL --40 sea nodes --Rhône-M‚diterranée insert into uga2010.wso(wso_id) select distinct on (wso_id) wso_id from ccm21.riversegments r join (SELECT ST_Union(f.the_geom) as singlegeom FROM uga2010.uga As f where gid='5') as sub ON ST_Intersects(sub.singlegeom,r.the_geom); UPDATE uga2010.wso set uga='RhoneMediterranee' where uga IS NULL --40 sea nodes --Corse insert into uga2010.wso(wso_id) select distinct on (wso_id) wso_id from ccm21.riversegments r join (SELECT ST_Union(f.the_geom) as singlegeom FROM uga2010.uga As f where gid='6') as sub ON ST_Intersects(sub.singlegeom,r.the_geom); UPDATE uga2010.wso set uga='Corse' where uga IS NULL --40 sea nodes --Seine-Normandie insert into uga2010.wso(wso_id) select distinct on (wso_id) wso_id from ccm21.riversegments r join (SELECT ST_Union(f.the_geom) as singlegeom FROM uga2010.uga As f where gid='7') as sub ON ST_Intersects(sub.singlegeom,r.the_geom); UPDATE uga2010.wso set uga='Seine-Normandie' where uga IS NULL --40 sea nodes --Bretagne insert into uga2010.wso(wso_id) select distinct on (wso_id) wso_id from ccm21.riversegments r join (SELECT ST_Union(f.the_geom) as singlegeom FROM uga2010.uga As f where gid='8') as sub ON ST_Intersects(sub.singlegeom,r.the_geom); UPDATE uga2010.wso set uga='Bretagne' where uga IS NULL --40 sea nodes --Rhin insert into uga2010.wso(wso_id) select distinct on (wso_id) wso_id from ccm21.riversegments r join (SELECT ST_Union(f.the_geom) as singlegeom FROM uga2010.uga As f where gid='9') as sub ON ST_Intersects(sub.singlegeom,r.the_geom); UPDATE uga2010.wso set uga='Rhin' where uga IS NULL --40 sea nodes --Meuse insert into uga2010.wso(wso_id) select distinct on (wso_id) wso_id from ccm21.riversegments r join (SELECT ST_Union(f.the_geom) as singlegeom FROM uga2010.uga As f where gid='10') as sub ON ST_Intersects(sub.singlegeom,r.the_geom); UPDATE uga2010.wso set uga='Meuse' where uga IS NULL --40 sea nodes