2019-01-01 19:52:23 +00:00
|
|
|
|
|
|
|
-- on est obligé de créer des tables en 3948
|
|
|
|
-- car même si les tables original sont déclarées en 3857
|
|
|
|
-- en fait les géoémtries sont en 4326
|
|
|
|
-- donc les calculs de longueur sont faux
|
|
|
|
-- au moins en créant une table en dur en 3948 on est sûr des longueurs
|
|
|
|
|
|
|
|
|
2019-01-13 16:41:56 +00:00
|
|
|
-- la table secteur gère les grands découpage de gestion
|
2019-01-19 09:46:30 +00:00
|
|
|
DROP TABLE secteur CASCADE ;
|
2019-01-13 16:41:56 +00:00
|
|
|
CREATE TABLE secteur
|
|
|
|
(
|
|
|
|
id integer,
|
|
|
|
nom_br text,
|
|
|
|
nom_fr text
|
|
|
|
);
|
|
|
|
|
|
|
|
ALTER TABLE secteur OWNER to redadeg;
|
|
|
|
|
|
|
|
-- et on insert ces données stables
|
|
|
|
TRUNCATE TABLE secteur ;
|
|
|
|
INSERT INTO secteur VALUES (1,'Karaez -> Rostren','Carhaix -> Rostrenen');
|
|
|
|
INSERT INTO secteur VALUES (2,'Rostren -> Plounevez-Moedeg','Rostrenen -> Plounevez-Moedec');
|
|
|
|
INSERT INTO secteur VALUES (3,'Plounevez-Moedeg -> Montroulez','Plounevez-Moedec -> Morlaix');
|
|
|
|
INSERT INTO secteur VALUES (4,'Montroulez -> Ar Faou','Morlaix -> Châteauneuf-du-Faou');
|
|
|
|
INSERT INTO secteur VALUES (5,'Ar Faou -> Kemperle','Châteauneuf-du-Faou -> Quimperlé');
|
|
|
|
INSERT INTO secteur VALUES (6,'Kemperle -> Redon','Quimperlé -> Redon');
|
|
|
|
INSERT INTO secteur VALUES (7,'Redon -> Soulvach','Redon -> Soulvach');
|
|
|
|
INSERT INTO secteur VALUES (8,'Soulvach -> Roazhon','Soulvach -> Rennes');
|
|
|
|
INSERT INTO secteur VALUES (9,'Roazhon -> Sant-Brieg','Rennes -> Saint-Brieuc');
|
|
|
|
INSERT INTO secteur VALUES (10,'Sant-Brieg -> Gwengamp','Saint-Brieuc -> Gwengamp');
|
|
|
|
INSERT INTO secteur VALUES (999,'test','test');
|
|
|
|
|
|
|
|
|
2019-01-19 09:46:30 +00:00
|
|
|
DROP TABLE phase_1_trace_3948 CASCADE ;
|
2019-01-01 19:52:23 +00:00
|
|
|
CREATE TABLE phase_1_trace_3948
|
|
|
|
(
|
|
|
|
ogc_fid integer,
|
2019-01-19 09:46:30 +00:00
|
|
|
name text,
|
|
|
|
secteur int,
|
2019-01-03 21:19:25 +00:00
|
|
|
ordre int,
|
|
|
|
longueur numeric,
|
2019-01-01 19:52:23 +00:00
|
|
|
the_geom geometry(LineString,3948),
|
|
|
|
CONSTRAINT phase_1_trace_3948_pkey PRIMARY KEY (ogc_fid),
|
|
|
|
CONSTRAINT enforce_geotype_the_geom CHECK (geometrytype(the_geom) = 'LINESTRING'::text),
|
|
|
|
CONSTRAINT enforce_srid_the_geom CHECK (st_srid(the_geom) = 3948)
|
|
|
|
);
|
|
|
|
|
2019-01-19 09:46:30 +00:00
|
|
|
DROP TABLE phase_1_pk_vip_3948 CASCADE ;
|
2019-01-01 19:52:23 +00:00
|
|
|
CREATE TABLE phase_1_pk_vip_3948
|
|
|
|
(
|
|
|
|
ogc_fid integer,
|
|
|
|
name text,
|
|
|
|
description text,
|
|
|
|
the_geom geometry(Point,3948),
|
|
|
|
CONSTRAINT phase_1_pk_vip_3948_pkey PRIMARY KEY (ogc_fid),
|
|
|
|
CONSTRAINT enforce_geotype_the_geom CHECK (geometrytype(the_geom) = 'POINT'::text),
|
|
|
|
CONSTRAINT enforce_srid_the_geom CHECK (st_srid(the_geom) = 3948)
|
|
|
|
);
|
|
|
|
|
|
|
|
|
2019-01-19 09:46:30 +00:00
|
|
|
-- on crée aussi une version correcte en 4326 pour export vers umap
|
|
|
|
DROP TABLE phase_1_trace_4326 ;
|
|
|
|
CREATE TABLE phase_1_trace_4326
|
|
|
|
(
|
|
|
|
ogc_fid integer,
|
|
|
|
name text, -- = section_nom
|
|
|
|
secteur_id int,
|
|
|
|
ordre int,
|
|
|
|
longueur numeric,
|
|
|
|
the_geom geometry(LineString,4326),
|
|
|
|
CONSTRAINT phase_1_trace_4326_pkey PRIMARY KEY (ogc_fid),
|
|
|
|
CONSTRAINT enforce_geotype_the_geom CHECK (geometrytype(the_geom) = 'LINESTRING'::text),
|
|
|
|
CONSTRAINT enforce_srid_the_geom CHECK (st_srid(the_geom) = 4326)
|
|
|
|
);
|
|
|
|
|
|
|
|
|
2019-01-01 19:52:23 +00:00
|
|
|
|
|
|
|
-- table des tronçons créés à partir des longs tracés
|
2019-01-19 09:46:30 +00:00
|
|
|
DROP TABLE phase_1_trace_troncons_3948 CASCADE ;
|
2019-01-01 19:52:23 +00:00
|
|
|
CREATE TABLE phase_1_trace_troncons_3948
|
|
|
|
(
|
|
|
|
uid bigint,
|
2019-01-19 09:46:30 +00:00
|
|
|
secteur int,
|
2019-01-13 16:11:59 +00:00
|
|
|
ordre bigint,
|
2019-01-01 19:52:23 +00:00
|
|
|
km bigint,
|
|
|
|
km_reel bigint,
|
|
|
|
longueur integer,
|
|
|
|
the_geom geometry(LineString,3948),
|
|
|
|
CONSTRAINT phase_1_trace_troncons_3948_pkey PRIMARY KEY (uid),
|
|
|
|
CONSTRAINT enforce_geotype_the_geom CHECK (geometrytype(the_geom) = 'LINESTRING'::text),
|
|
|
|
CONSTRAINT enforce_srid_the_geom CHECK (st_srid(the_geom) = 3948)
|
|
|
|
);
|
|
|
|
|
2019-01-13 16:11:59 +00:00
|
|
|
ALTER TABLE phase_1_trace_3948 OWNER to redadeg;
|
2019-01-19 11:15:23 +00:00
|
|
|
ALTER TABLE phase_1_trace_4326 OWNER to redadeg;
|
2019-01-13 16:11:59 +00:00
|
|
|
ALTER TABLE phase_1_pk_vip_3948 OWNER to redadeg;
|
|
|
|
ALTER TABLE phase_1_trace_troncons_3948 OWNER to redadeg;
|
|
|
|
|
2019-01-01 19:52:23 +00:00
|
|
|
-- table des PK auto en fin de tronçon
|
|
|
|
/*DROP TABLE phase_1_pk_auto_3948 ;
|
|
|
|
CREATE TABLE phase_1_pk_auto_3948
|
|
|
|
(
|
|
|
|
uid bigint,
|
|
|
|
secteur character varying(25),
|
|
|
|
km bigint,
|
|
|
|
km_reel bigint,
|
|
|
|
the_geom geometry(Point,3948),
|
|
|
|
CONSTRAINT phase_1_pk_auto_3948_pkey PRIMARY KEY (uid),
|
|
|
|
CONSTRAINT enforce_geotype_the_geom CHECK (geometrytype(the_geom) = 'POINT'::text),
|
|
|
|
CONSTRAINT enforce_srid_the_geom CHECK (st_srid(the_geom) = 3948)
|
|
|
|
);*/
|
|
|
|
|
|
|
|
-- vue des PK auto en fin de tronçon
|
2019-01-19 09:46:30 +00:00
|
|
|
DROP VIEW IF EXISTS phase_1_pk_auto_3948 ;
|
2019-01-01 19:52:23 +00:00
|
|
|
CREATE VIEW phase_1_pk_auto_3948 AS
|
|
|
|
SELECT
|
2019-01-19 09:46:30 +00:00
|
|
|
uid, secteur, ordre, km, km_reel,
|
2019-01-01 19:52:23 +00:00
|
|
|
ST_Line_Interpolate_Point(the_geom, 1)::geometry(Point, 3948) AS the_geom
|
2019-01-19 09:46:30 +00:00
|
|
|
FROM phase_1_trace_troncons_3948
|
|
|
|
ORDER BY secteur ASC, ordre ASC, km ASC ;
|
2019-01-01 19:52:23 +00:00
|
|
|
|
|
|
|
-- la même mais en 4326 pour export
|
2019-01-19 09:46:30 +00:00
|
|
|
DROP VIEW IF EXISTS phase_1_pk_auto_4326 ;
|
2019-01-01 19:52:23 +00:00
|
|
|
CREATE VIEW phase_1_pk_auto_4326 AS
|
|
|
|
SELECT
|
2019-01-19 09:46:30 +00:00
|
|
|
uid, secteur, ordre, km, km_reel,
|
|
|
|
ST_Transform(the_geom,4326)::geometry(Point, 4326) AS the_geom
|
|
|
|
FROM phase_1_pk_auto_3948
|
|
|
|
ORDER BY secteur ASC, ordre ASC, km ASC ;
|
|
|
|
|
2019-01-13 16:11:59 +00:00
|
|
|
ALTER TABLE phase_1_pk_auto_3948 OWNER to redadeg;
|
|
|
|
ALTER TABLE phase_1_pk_auto_4326 OWNER to redadeg;
|
2019-01-01 19:52:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
|