secteur_id / secteur_nom / section_nom
This commit is contained in:
parent
77ce00ebae
commit
b2b2d19049
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
|
|
||||||
-- la table secteur gère les grands découpage de gestion
|
-- la table secteur gère les grands découpage de gestion
|
||||||
DROP TABLE secteur CASCADE ;
|
DROP TABLE IF EXISTS secteur CASCADE ;
|
||||||
CREATE TABLE secteur
|
CREATE TABLE secteur
|
||||||
(
|
(
|
||||||
id integer,
|
id integer,
|
||||||
|
@ -32,12 +32,12 @@ INSERT INTO secteur VALUES (10,'Sant-Brieg -> Gwengamp','Saint-Brieuc -> Gwengam
|
||||||
INSERT INTO secteur VALUES (999,'test','test');
|
INSERT INTO secteur VALUES (999,'test','test');
|
||||||
|
|
||||||
|
|
||||||
DROP TABLE phase_1_trace_3948 CASCADE ;
|
DROP TABLE IF EXISTS phase_1_trace_3948 CASCADE ;
|
||||||
CREATE TABLE phase_1_trace_3948
|
CREATE TABLE phase_1_trace_3948
|
||||||
(
|
(
|
||||||
ogc_fid integer,
|
ogc_fid integer,
|
||||||
name text,
|
secteur_id int,
|
||||||
secteur int,
|
section_nom text,
|
||||||
ordre int,
|
ordre int,
|
||||||
longueur numeric,
|
longueur numeric,
|
||||||
the_geom geometry(LineString,3948),
|
the_geom geometry(LineString,3948),
|
||||||
|
@ -46,7 +46,7 @@ CREATE TABLE phase_1_trace_3948
|
||||||
CONSTRAINT enforce_srid_the_geom CHECK (st_srid(the_geom) = 3948)
|
CONSTRAINT enforce_srid_the_geom CHECK (st_srid(the_geom) = 3948)
|
||||||
);
|
);
|
||||||
|
|
||||||
DROP TABLE phase_1_pk_vip_3948 CASCADE ;
|
DROP TABLE IF EXISTS phase_1_pk_vip_3948 CASCADE ;
|
||||||
CREATE TABLE phase_1_pk_vip_3948
|
CREATE TABLE phase_1_pk_vip_3948
|
||||||
(
|
(
|
||||||
ogc_fid integer,
|
ogc_fid integer,
|
||||||
|
@ -61,11 +61,12 @@ CREATE TABLE phase_1_pk_vip_3948
|
||||||
|
|
||||||
|
|
||||||
-- table des tronçons créés à partir des longs tracés
|
-- table des tronçons créés à partir des longs tracés
|
||||||
DROP TABLE phase_1_trace_troncons_3948 CASCADE ;
|
DROP TABLE IF EXISTS phase_1_trace_troncons_3948 CASCADE ;
|
||||||
CREATE TABLE phase_1_trace_troncons_3948
|
CREATE TABLE phase_1_trace_troncons_3948
|
||||||
(
|
(
|
||||||
uid bigint,
|
uid bigint,
|
||||||
secteur int,
|
secteur_id int,
|
||||||
|
section_nom text,
|
||||||
ordre bigint,
|
ordre bigint,
|
||||||
km bigint,
|
km bigint,
|
||||||
km_reel bigint,
|
km_reel bigint,
|
||||||
|
@ -94,24 +95,43 @@ CREATE TABLE phase_1_pk_auto_3948
|
||||||
CONSTRAINT enforce_srid_the_geom CHECK (st_srid(the_geom) = 3948)
|
CONSTRAINT enforce_srid_the_geom CHECK (st_srid(the_geom) = 3948)
|
||||||
);*/
|
);*/
|
||||||
|
|
||||||
|
|
||||||
|
-- vue plus complète des tronçons
|
||||||
|
DROP VIEW IF EXISTS v_phase_1_trace_troncons_3948 CASCADE ;
|
||||||
|
CREATE VIEW v_phase_1_trace_troncons_3948 AS
|
||||||
|
SELECT
|
||||||
|
a.uid,
|
||||||
|
b.nom_br AS secteur_nom_br, b.nom_fr AS secteur_nom_fr, b.id AS secteur_id,
|
||||||
|
a.section_nom,
|
||||||
|
a.ordre, a.km, a.km_reel, a.longueur, a.the_geom
|
||||||
|
FROM phase_1_trace_troncons_3948 a JOIN secteur b ON a.secteur_id = b.id
|
||||||
|
ORDER BY secteur_id ASC, ordre ASC, km ASC ;
|
||||||
|
|
||||||
|
|
||||||
-- vue des PK auto en fin de tronçon
|
-- vue des PK auto en fin de tronçon
|
||||||
DROP VIEW IF EXISTS phase_1_pk_auto_3948 ;
|
DROP VIEW IF EXISTS phase_1_pk_auto_3948 CASCADE ;
|
||||||
CREATE VIEW phase_1_pk_auto_3948 AS
|
CREATE VIEW phase_1_pk_auto_3948 AS
|
||||||
SELECT
|
SELECT
|
||||||
uid, secteur, ordre, km, km_reel,
|
a.uid,
|
||||||
|
b.nom_br AS secteur_nom_br, b.nom_fr AS secteur_nom_fr, b.id AS secteur_id,
|
||||||
|
a.section_nom,
|
||||||
|
a.ordre, a.km, a.km_reel, a.longueur,
|
||||||
ST_Line_Interpolate_Point(the_geom, 1)::geometry(Point, 3948) AS the_geom
|
ST_Line_Interpolate_Point(the_geom, 1)::geometry(Point, 3948) AS the_geom
|
||||||
FROM phase_1_trace_troncons_3948
|
FROM phase_1_trace_troncons_3948 a JOIN secteur b ON a.secteur_id = b.id
|
||||||
ORDER BY secteur ASC, ordre ASC, km ASC ;
|
ORDER BY secteur_id ASC, ordre ASC, km ASC ;
|
||||||
|
|
||||||
-- la même mais en 4326 pour export
|
-- la même mais en 4326 pour export
|
||||||
DROP VIEW IF EXISTS phase_1_pk_auto_4326 ;
|
DROP VIEW IF EXISTS phase_1_pk_auto_4326 CASCADE ;
|
||||||
CREATE VIEW phase_1_pk_auto_4326 AS
|
CREATE VIEW phase_1_pk_auto_4326 AS
|
||||||
SELECT
|
SELECT
|
||||||
uid, secteur, ordre, km, km_reel,
|
uid,
|
||||||
|
secteur_nom_br, secteur_nom_fr, secteur_id,
|
||||||
|
section_nom,
|
||||||
|
ordre, km, km_reel, longueur,
|
||||||
ST_Transform(the_geom,4326)::geometry(Point, 4326) AS the_geom
|
ST_Transform(the_geom,4326)::geometry(Point, 4326) AS the_geom
|
||||||
FROM phase_1_pk_auto_3948
|
FROM phase_1_pk_auto_3948 ;
|
||||||
ORDER BY secteur ASC, ordre ASC, km ASC ;
|
|
||||||
|
|
||||||
|
ALTER TABLE v_phase_1_trace_troncons_3948 OWNER to redadeg;
|
||||||
ALTER TABLE phase_1_pk_auto_3948 OWNER to redadeg;
|
ALTER TABLE phase_1_pk_auto_3948 OWNER to redadeg;
|
||||||
ALTER TABLE phase_1_pk_auto_4326 OWNER to redadeg;
|
ALTER TABLE phase_1_pk_auto_4326 OWNER to redadeg;
|
||||||
|
|
||||||
|
|
|
@ -3,8 +3,9 @@
|
||||||
TRUNCATE phase_1_trace_3948 ;
|
TRUNCATE phase_1_trace_3948 ;
|
||||||
INSERT INTO phase_1_trace_3948
|
INSERT INTO phase_1_trace_3948
|
||||||
SELECT
|
SELECT
|
||||||
ogc_fid, name,
|
ogc_fid,
|
||||||
secteur::int,
|
secteur::int, -- secteur_id
|
||||||
|
name::text, -- section_nom
|
||||||
ordre::int,
|
ordre::int,
|
||||||
0,
|
0,
|
||||||
ST_Transform(the_geom,3948) AS the_geom
|
ST_Transform(the_geom,3948) AS the_geom
|
||||||
|
@ -29,7 +30,8 @@ TRUNCATE phase_1_trace_troncons_3948 ;
|
||||||
INSERT INTO phase_1_trace_troncons_3948
|
INSERT INTO phase_1_trace_troncons_3948
|
||||||
SELECT
|
SELECT
|
||||||
row_number() over() as uid,
|
row_number() over() as uid,
|
||||||
secteur,
|
secteur_id,
|
||||||
|
section_nom,
|
||||||
ordre,
|
ordre,
|
||||||
NULL AS km,
|
NULL AS km,
|
||||||
NULL AS km_reel,
|
NULL AS km_reel,
|
||||||
|
@ -42,17 +44,18 @@ INSERT INTO phase_1_trace_troncons_3948
|
||||||
FROM
|
FROM
|
||||||
(SELECT
|
(SELECT
|
||||||
ogc_fid,
|
ogc_fid,
|
||||||
secteur,
|
secteur_id,
|
||||||
|
section_nom,
|
||||||
ordre,
|
ordre,
|
||||||
ST_LineMerge(the_geom)::geometry(LineString,3948) AS the_geom,
|
ST_LineMerge(the_geom)::geometry(LineString,3948) AS the_geom,
|
||||||
ST_Length(the_geom) As length
|
ST_Length(the_geom) As length
|
||||||
FROM phase_1_trace_3948
|
FROM phase_1_trace_3948
|
||||||
-- ce tri est le plus important
|
-- ce tri est le plus important
|
||||||
ORDER BY secteur ASC, ordre ASC
|
ORDER BY secteur_id ASC, ordre ASC
|
||||||
) AS t
|
) AS t
|
||||||
CROSS JOIN generate_series(0,10000) AS n
|
CROSS JOIN generate_series(0,10000) AS n
|
||||||
WHERE n*1000.00/length < 1
|
WHERE n*1000.00/length < 1
|
||||||
ORDER BY t.secteur ASC, t.ordre ASC ;
|
ORDER BY t.secteur_id ASC, t.ordre ASC ;
|
||||||
|
|
||||||
-- mise à jour des attributs
|
-- mise à jour des attributs
|
||||||
UPDATE phase_1_trace_troncons_3948
|
UPDATE phase_1_trace_troncons_3948
|
||||||
|
|
Loading…
Reference in a new issue