1 |
fraynaud |
3 |
-- initialisation du SIG postgres postgis |
2 |
|
|
-- 25 Mai 2010 |
3 |
|
|
|
4 |
|
|
-- attention executer script creant les tables de metadonness - geometry_colums et spatial_ref_sys |
5 |
|
|
-- creation de colonnes geometriques |
6 |
|
|
-- srid 27563 lambert sud |
7 |
fraynaud |
40 |
-- srid 2154 lambert 93 |
8 |
|
|
|
9 |
fraynaud |
241 |
SELECT AddGeometryColumn ( 'public', 'dossier', 'geom', 2154 , 'POINT', 2 ); |
10 |
fraynaud |
134 |
|
11 |
fraynaud |
241 |
SELECT AddGeometryColumn ( 'public', 'parcelle', 'geom', 2154 , 'POLYGON', 2 ); |
12 |
|
|
SELECT AddGeometryColumn ( 'public', 'parcelle_lot', 'geom', 2154 , 'POLYGON', 2 ); |
13 |
|
|
SELECT AddGeometryColumn ( 'public', 'pos', 'geom', 2154 , 'POLYGON', 2 ); |
14 |
|
|
SELECT AddGeometryColumn ( 'public', 'servitude_surfacique', 'geom', 2154 , 'POLYGON', 2 ); |
15 |
|
|
SELECT AddGeometryColumn ( 'public', 'servitude_ligne', 'geom', 2154 , 'LINESTRING', 2 ); |
16 |
|
|
SELECT AddGeometryColumn ( 'public', 'servitude_point', 'geom', 2154 , 'POINT', 2 ); |