From 9be061d2152cebadd0213a7856d2a9ead03c70be Mon Sep 17 00:00:00 2001 From: Denis Rouzaud Date: Tue, 20 Feb 2024 14:50:24 +0100 Subject: [PATCH] fix rect/verso + small project improvements fixes #200 --- datamodel/app/vw_sign_symbol.py | 30 +- datamodel/demo_data/azimut_content.sql | 19 - datamodel/demo_data/frame_content.sql | 29 - datamodel/demo_data/sign_content.sql | 34 - datamodel/demo_data/support_content.sql | 15 - datamodel/demo_data/vl_user_sign_content.sql | 1 - project/signalo.qgs | 12706 +++++++++-------- 7 files changed, 6369 insertions(+), 6465 deletions(-) diff --git a/datamodel/app/vw_sign_symbol.py b/datamodel/app/vw_sign_symbol.py index e4615a1f..1cb8adbe 100644 --- a/datamodel/app/vw_sign_symbol.py +++ b/datamodel/app/vw_sign_symbol.py @@ -163,7 +163,6 @@ def vw_sign_symbol(srid: int, pg_service: str = None): , azimut AS _azimut_rectified , offset_x AS _azimut_offset_x_rectified , offset_y AS _azimut_offset_y_rectified - , frame_anchor AS _frame_anchor_rectified , natural_direction_or_left AS _natural_direction_or_left_rectified , false::bool AS _verso , ROW_NUMBER () OVER ( PARTITION BY support_id, azimut ORDER BY frame_rank, sign_rank ) AS _rank @@ -178,7 +177,6 @@ def vw_sign_symbol(srid: int, pg_service: str = None): , azimut AS _azimut_rectified , offset_x AS _azimut_offset_x_rectified , offset_y AS _azimut_offset_y_rectified - , frame_anchor AS _frame_anchor_rectified , natural_direction_or_left AS _natural_direction_or_left_rectified , false::bool AS _verso , ROW_NUMBER () OVER ( PARTITION BY support_id, azimut, frame_anchor ORDER BY frame_rank, sign_rank ) AS _rank @@ -193,11 +191,6 @@ def vw_sign_symbol(srid: int, pg_service: str = None): , jt.azimut+180 AS _azimut_rectified , COALESCE(az.offset_x, 0) AS _azimut_offset_x_rectified , COALESCE(az.offset_y, 0) AS _azimut_offset_y_rectified - , CASE - WHEN frame_anchor = 'LEFT'::signalo_db.anchor THEN 'RIGHT'::signalo_db.anchor - WHEN frame_anchor = 'RIGHT'::signalo_db.anchor THEN 'LEFT'::signalo_db.anchor - ELSE 'CENTER'::signalo_db.anchor - END AS _frame_anchor_rectified , NOT natural_direction_or_left AS _natural_direction_or_left_rectified , true::bool AS _verso , 1000 + ROW_NUMBER () OVER ( PARTITION BY support_id, jt.azimut ORDER BY frame_rank, sign_rank ) AS _rank @@ -213,11 +206,6 @@ def vw_sign_symbol(srid: int, pg_service: str = None): , jt.azimut+180 AS _azimut_rectified , COALESCE(az.offset_x, 0) AS _azimut_offset_x_rectified , COALESCE(az.offset_y, 0) AS _azimut_offset_y_rectified - , CASE - WHEN frame_anchor = 'LEFT'::signalo_db.anchor THEN 'RIGHT'::signalo_db.anchor - WHEN frame_anchor = 'RIGHT'::signalo_db.anchor THEN 'LEFT'::signalo_db.anchor - ELSE 'CENTER'::signalo_db.anchor - END AS _frame_anchor_rectified , NOT natural_direction_or_left AS _natural_direction_or_left_rectified , true::bool AS _verso , 1000 + ROW_NUMBER () OVER ( PARTITION BY support_id, jt.azimut, frame_anchor ORDER BY frame_rank, sign_rank ) AS _rank @@ -255,14 +243,14 @@ def vw_sign_symbol(srid: int, pg_service: str = None): ordered_shifted_signs_grouped_by_anchor AS ( SELECT ordered_signs_grouped_by_anchor.* - , ROW_NUMBER () OVER ( PARTITION BY support_id, _azimut_rectified, _frame_anchor_rectified ORDER BY _rank ) AS _final_rank - , COALESCE(SUM( _symbol_height ) OVER ( PARTITION BY support_id, _azimut_rectified, _frame_anchor_rectified ROWS BETWEEN UNBOUNDED PRECEDING AND 1 PRECEDING ), 0) AS _symbol_shift - , COALESCE(SUM( _symbol_height ) OVER ( PARTITION BY support_id, _azimut_rectified, _frame_anchor_rectified), 0) AS _group_height - , MAX(_symbol_width) OVER ( PARTITION BY support_id, _azimut_rectified, _frame_anchor_rectified ) AS _group_width - , NULLIF(FIRST_VALUE(id) OVER (PARTITION BY support_id, _azimut_rectified, _frame_anchor_rectified, frame_rank ROWS BETWEEN 1 PRECEDING AND CURRENT ROW ), id) AS _previous_sign_in_frame - , NULLIF(LAST_VALUE(id) OVER ( PARTITION BY support_id, _azimut_rectified, _frame_anchor_rectified, frame_rank ROWS BETWEEN CURRENT ROW AND 1 FOLLOWING ), id) AS _next_sign_in_frame - , NULLIF(FIRST_VALUE(frame_id) OVER ( PARTITION BY support_id, _azimut_rectified, _frame_anchor_rectified ROWS BETWEEN 1 PRECEDING AND CURRENT ROW ), frame_id) AS _previous_frame - , NULLIF(LAST_VALUE(frame_id) OVER ( PARTITION BY support_id, _azimut_rectified, _frame_anchor_rectified ROWS BETWEEN CURRENT ROW AND 1 FOLLOWING ), frame_id) AS _next_frame + , ROW_NUMBER () OVER ( PARTITION BY support_id, _azimut_rectified, frame_anchor ORDER BY _rank ) AS _final_rank + , COALESCE(SUM( _symbol_height ) OVER ( PARTITION BY support_id, _azimut_rectified, frame_anchor ROWS BETWEEN UNBOUNDED PRECEDING AND 1 PRECEDING ), 0) AS _symbol_shift + , COALESCE(SUM( _symbol_height ) OVER ( PARTITION BY support_id, _azimut_rectified, frame_anchor), 0) AS _group_height + , MAX(_symbol_width) OVER ( PARTITION BY support_id, _azimut_rectified, frame_anchor ) AS _group_width + , NULLIF(FIRST_VALUE(id) OVER (PARTITION BY support_id, _azimut_rectified, frame_anchor, frame_rank ROWS BETWEEN 1 PRECEDING AND CURRENT ROW ), id) AS _previous_sign_in_frame + , NULLIF(LAST_VALUE(id) OVER ( PARTITION BY support_id, _azimut_rectified, frame_anchor, frame_rank ROWS BETWEEN CURRENT ROW AND 1 FOLLOWING ), id) AS _next_sign_in_frame + , NULLIF(FIRST_VALUE(frame_id) OVER ( PARTITION BY support_id, _azimut_rectified, frame_anchor ROWS BETWEEN 1 PRECEDING AND CURRENT ROW ), frame_id) AS _previous_frame + , NULLIF(LAST_VALUE(frame_id) OVER ( PARTITION BY support_id, _azimut_rectified, frame_anchor ROWS BETWEEN CURRENT ROW AND 1 FOLLOWING ), frame_id) AS _next_frame FROM ordered_signs_grouped_by_anchor ), @@ -282,7 +270,7 @@ def vw_sign_symbol(srid: int, pg_service: str = None): , uv.* , _symbol_height + MAX(_symbol_shift) OVER ( PARTITION BY uv.support_id, azimut, _verso ) AS _max_shift_for_azimut , CASE - WHEN directional_sign IS TRUE AND (_frame_anchor_rectified, _natural_direction_or_left_rectified) IN ( + WHEN directional_sign IS TRUE AND (frame_anchor, _natural_direction_or_left_rectified) IN ( ('LEFT', TRUE), ('CENTER', FALSE), ('RIGHT', FALSE) diff --git a/datamodel/demo_data/azimut_content.sql b/datamodel/demo_data/azimut_content.sql index fff5edff..e69de29b 100644 --- a/datamodel/demo_data/azimut_content.sql +++ b/datamodel/demo_data/azimut_content.sql @@ -1,19 +0,0 @@ -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y) VALUES ('00000000-0000-0000-aaaa-000000000201', '00000000-0000-0000-0000-000000000002', 227, NULL, NULL, NULL, '2023-02-22 08:31:37.740141', NULL, '2023-02-22 08:31:37.740141', NULL, false, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y) VALUES ('00000000-0000-0000-aaaa-000000000202', '00000000-0000-0000-0000-000000000002', 345, NULL, NULL, NULL, '2023-02-22 08:31:37.741532', NULL, '2023-02-22 08:31:37.741532', NULL, false, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y) VALUES ('00000000-0000-bbbb-0000-0000000000a1', '00000000-0000-0000-0000-0000000000a1', 110, NULL, NULL, NULL, '2023-02-22 08:31:37.799163', NULL, '2023-11-14 08:33:39.706', 'Rouzaud Denis', false, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y) VALUES ('0d8fb844-ec63-43fb-a0e5-cd35a0c62565', '82f3002b-ebdf-4621-9a19-951639fc18bd', 200, NULL, NULL, NULL, '2023-09-06 09:22:19.287', 'Denis Rouzaud', '2023-11-14 05:56:42.155', 'Rouzaud Denis', false, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y) VALUES ('0e2cd688-3984-46b5-9f70-e052305e2cac', 'f5054922-95a7-4f12-8374-0a57e105327c', 290, NULL, NULL, NULL, '2023-02-22 10:06:58.155', 'Denis Rouzaud', '2023-09-07 09:35:52.676', 'Denis Rouzaud', false, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y) VALUES ('1193f576-089a-11eb-8b8b-0242ac110002', '814da66a-0894-11eb-99f5-0242ac110002', 0, NULL, NULL, NULL, '2023-02-22 08:31:37.751308', NULL, '2023-02-22 08:31:37.751308', NULL, false, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y) VALUES ('38d32a6b-2145-4ac7-b890-7459d67cd167', '94ff73df-fc80-4319-b2b9-7aa06ca4f806', 90, NULL, NULL, NULL, '2024-01-30 10:16:21.373', 'Rouzaud Denis', '2024-01-30 10:54:23.077', 'Rouzaud Denis', false, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y) VALUES ('55ffc93c-fd0f-4c67-8fe7-da217124a793', 'bbdb5d1e-4973-4900-8838-889357a60e65', 180, NULL, NULL, NULL, '2023-09-06 09:22:19.287', 'Denis Rouzaud', '2023-11-24 10:43:42.024', 'Rouzaud Denis', false, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y) VALUES ('779ffe5a-2538-41ed-8abe-79e6825a1b56', '3dbc19a5-b7bf-4acd-94d0-ba4b0b17ddc0', 180, NULL, NULL, NULL, '2024-01-30 10:16:21.373', 'Rouzaud Denis', '2024-01-30 10:54:13.024', 'Rouzaud Denis', false, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y) VALUES ('7fd7b4cc-24b7-4b3c-acbe-a9633337fb82', '20f47695-aefa-43b1-854f-a770fa0f79e0', 30, NULL, NULL, NULL, '2024-02-13 09:39:33.382', 'Rouzaud Denis', '2024-02-13 09:49:16.387', 'Rouzaud Denis', false, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y) VALUES ('83fb8a3a-0899-11eb-8b8b-0242ac110002', '814da66a-0894-11eb-99f5-0242ac110002', 200, NULL, NULL, NULL, '2023-02-22 08:31:37.777955', NULL, '2023-02-22 08:31:37.777955', NULL, false, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y) VALUES ('9dcc763a-1af7-4fb8-9e32-085f74a3ef77', 'a3921fbd-8a89-4d82-b3b8-7a24a16f4df4', 280, NULL, NULL, NULL, '2023-09-07 09:36:47.07', 'Denis Rouzaud', '2023-09-07 09:39:36.121', 'Denis Rouzaud', false, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y) VALUES ('b3fd2055-2ab4-4da8-9dbc-a3aeba311fe7', 'f17d39cc-bac3-4134-9b9c-ea14e228d4b4', 290, NULL, NULL, NULL, '2023-08-31 16:15:55.608', 'Denis Rouzaud', '2023-11-14 08:33:25.694', 'Rouzaud Denis', false, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y) VALUES ('bbb63098-ee04-4a0d-963d-4df18af5fa7a', '70104932-54ff-4668-90b0-6946352d5544', 20, NULL, NULL, NULL, '2023-09-06 09:22:19.287', 'Denis Rouzaud', '2023-09-07 09:17:46.397', 'Denis Rouzaud', false, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y) VALUES ('d8a1e45b-7f4c-4c71-a12a-3a2df6d42045', 'bbdb5d1e-4973-4900-8838-889357a60e65', 90, NULL, NULL, NULL, '2023-11-08 13:29:08.086', 'Rouzaud Denis', '2023-11-24 10:42:49.654', 'Rouzaud Denis', false, 1, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y) VALUES ('dd9e3482-089b-11eb-8b8b-0242ac110002', '2e988298-0897-11eb-8771-0242ac110002', 200, NULL, NULL, NULL, '2023-02-22 08:31:37.79742', NULL, '2023-02-22 08:31:37.79742', NULL, false, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y) VALUES ('e136f7a0-5913-48bb-8893-1b4b0705f238', '4478bbcc-0236-46ee-b284-4c586e6af8a9', 190, NULL, NULL, NULL, '2023-06-21 08:36:19.92', 'Denis Rouzaud', '2023-09-07 09:46:09.378', 'Denis Rouzaud', false, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y) VALUES ('e3999392-ea54-4848-87cb-9440a552d35b', '82f3002b-ebdf-4621-9a19-951639fc18bd', 290, NULL, NULL, NULL, '2023-09-06 09:21:06.167', 'Denis Rouzaud', '2023-11-14 05:57:01.141', 'Rouzaud Denis', false, 0, 0); -INSERT INTO signalo_db.azimut (id, fk_support, azimut, usr_azimut_1, usr_azimut_2, usr_azimut_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, offset_x, offset_y) VALUES ('f05176ff-87e6-40e5-aae6-e58ff8e76dc6', 'c13a9809-b862-4237-a67f-bb34897d90b5', 30, NULL, NULL, NULL, '2024-02-13 09:39:33.382', 'Rouzaud Denis', '2024-02-13 09:39:33.383', 'Rouzaud Denis', false, 0, 0); diff --git a/datamodel/demo_data/frame_content.sql b/datamodel/demo_data/frame_content.sql index c4c5e008..e69de29b 100644 --- a/datamodel/demo_data/frame_content.sql +++ b/datamodel/demo_data/frame_content.sql @@ -1,29 +0,0 @@ -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('00000000-0000-0000-ffff-000000020101', '00000000-0000-0000-aaaa-000000000201', 1, 1, 1, true, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.086453', NULL, '2023-02-22 08:31:38.086453', NULL, false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('00000000-0000-0000-ffff-000000020201', '00000000-0000-0000-aaaa-000000000202', 1, 1, 1, true, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.088071', NULL, '2023-02-22 08:31:38.088071', NULL, false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('00000000-0000-0000-ffff-000000020202', '00000000-0000-0000-aaaa-000000000202', 2, 1, 1, true, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.089553', NULL, '2023-02-22 08:31:38.089553', NULL, false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('00000000-0000-0000-ffff-000000020203', '00000000-0000-0000-aaaa-000000000202', 3, 1, 1, true, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.091047', NULL, '2023-02-22 08:31:38.091047', NULL, false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('00000000-0000-0000-ffff-000000020204', '00000000-0000-0000-aaaa-000000000202', 4, 1, 1, true, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.092504', NULL, '2023-02-22 08:31:38.092504', NULL, false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('00000000-0000-ffff-0000-0000000000a1', '00000000-0000-bbbb-0000-0000000000a1', 1, 2, 2, false, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.189512', NULL, '2023-09-06 09:16:18.777', 'Denis Rouzaud', false, 'RIGHT'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('00000000-0000-ffff-0000-0000000000a2', '00000000-0000-bbbb-0000-0000000000a1', 2, 2, 2, false, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.189512', NULL, '2023-09-06 09:16:27.768', 'Denis Rouzaud', false, 'LEFT'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('055369c1-e422-4851-aa90-690e4a526335', 'bbb63098-ee04-4a0d-963d-4df18af5fa7a', 2, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:23:15.419', 'Denis Rouzaud', '2023-09-06 09:27:48.632', 'Denis Rouzaud', false, 'LEFT'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('0cac19f6-db18-4354-9901-1bbc53a41e01', 'e3999392-ea54-4848-87cb-9440a552d35b', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:21:07.758', 'Denis Rouzaud', '2023-09-07 09:20:13.349', 'Denis Rouzaud', false, 'RIGHT'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('0e2decbd-06fa-459e-80af-a13a54e67e52', '0d8fb844-ec63-43fb-a0e5-cd35a0c62565', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:22:23.311', 'Denis Rouzaud', '2023-09-06 09:22:23.311', 'Denis Rouzaud', false, 'RIGHT'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('19d4cf98-0927-11eb-b4e5-0242ac110002', 'dd9e3482-089b-11eb-8b8b-0242ac110002', 1, 10, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.098692', NULL, '2023-02-22 08:31:38.098692', NULL, false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('1d945e23-3ba7-4a34-b3df-c9ac17b9827e', '0d8fb844-ec63-43fb-a0e5-cd35a0c62565', 2, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:23:15.419', 'Denis Rouzaud', '2023-09-06 09:23:15.419', 'Denis Rouzaud', false, 'LEFT'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('348fc524-cc99-41c4-8780-2f7e4d2ff919', 'e136f7a0-5913-48bb-8893-1b4b0705f238', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-21 08:36:24.53', 'Denis Rouzaud', '2023-06-21 08:36:24.53', 'Denis Rouzaud', false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('3c7fe8c4-d4bf-481c-9bb6-cfbe89c5c103', '9dcc763a-1af7-4fb8-9e32-085f74a3ef77', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-07 09:36:54.427', 'Denis Rouzaud', '2023-09-07 09:36:54.427', 'Denis Rouzaud', false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('5a42808a-9610-4a2e-b207-fd34c8211baa', '9dcc763a-1af7-4fb8-9e32-085f74a3ef77', 2, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-07 09:39:40.71', 'Denis Rouzaud', '2023-09-07 09:39:40.71', 'Denis Rouzaud', false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('5e197b05-07db-4143-9c1c-2f7ffab1b378', '7fd7b4cc-24b7-4b3c-acbe-a9633337fb82', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-13 09:39:43.681', 'Rouzaud Denis', '2024-02-13 09:49:16.396', 'Rouzaud Denis', false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('642de2ea-089c-11eb-b19a-0242ac110002', 'dd9e3482-089b-11eb-8b8b-0242ac110002', 2, 3, 11, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.118357', NULL, '2023-02-22 08:31:38.118357', NULL, false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('68cb0b0b-2082-49cc-bf6d-b106c861dada', '9dcc763a-1af7-4fb8-9e32-085f74a3ef77', 3, NULL, NULL, true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-07 09:42:33.329', 'Denis Rouzaud', '2023-09-07 09:42:33.329', 'Denis Rouzaud', false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('75f4bf9f-5f5e-4362-a4ce-fb29bb8c0123', 'b3fd2055-2ab4-4da8-9dbc-a3aeba311fe7', 2, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-31 16:19:50.073', 'Denis Rouzaud', '2023-08-31 16:19:50.074', 'Denis Rouzaud', false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('79bf0ed6-b98e-4aab-af05-885612053033', '779ffe5a-2538-41ed-8abe-79e6825a1b56', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-01-30 10:16:30.856', 'Rouzaud Denis', '2024-01-30 10:18:06.917', 'Rouzaud Denis', false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('a088c423-b088-4306-8b7f-a3b1151682ec', '55ffc93c-fd0f-4c67-8fe7-da217124a793', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:22:23.311', 'Denis Rouzaud', '2023-11-08 13:28:04.949', 'Rouzaud Denis', false, 'RIGHT'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('a49c33b0-0926-11eb-b4e5-0242ac110002', 'dd9e3482-089b-11eb-8b8b-0242ac110002', 3, 12, 2, false, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.152963', NULL, '2023-02-22 08:31:38.152963', NULL, false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('a899745b-f562-47ca-9175-ef2e19ac18de', 'b3fd2055-2ab4-4da8-9dbc-a3aeba311fe7', 1, NULL, NULL, true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-31 16:16:15.957', 'Denis Rouzaud', '2023-08-31 16:20:57.428', 'Denis Rouzaud', false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('b703bf1e-7260-453c-8838-06d94880422d', 'f05176ff-87e6-40e5-aae6-e58ff8e76dc6', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-13 09:39:43.681', 'Rouzaud Denis', '2024-02-13 09:39:43.681', 'Rouzaud Denis', false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('bc6eb427-308e-4ff2-a94a-c1a2be2fc5af', '0e2cd688-3984-46b5-9f70-e052305e2cac', 1, 10, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-22 10:07:20.883', 'Denis Rouzaud', '2023-02-22 10:07:20.883', 'Denis Rouzaud', false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('c167ced0-efb2-4874-9816-1707f3b6ffec', 'd8a1e45b-7f4c-4c71-a12a-3a2df6d42045', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-08 13:29:16.487', 'Rouzaud Denis', '2023-11-08 13:31:10.687', 'Rouzaud Denis', false, 'LEFT'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('da131ba0-42ed-4a60-a13d-ac35cea9edc5', 'bbb63098-ee04-4a0d-963d-4df18af5fa7a', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:22:23.311', 'Denis Rouzaud', '2023-09-06 09:27:48.611', 'Denis Rouzaud', false, 'RIGHT'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('de543457-a30a-4a5c-b470-6cffb7df792c', '38d32a6b-2145-4ac7-b890-7459d67cd167', 1, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-01-30 10:16:30.856', 'Rouzaud Denis', '2024-01-30 10:16:30.856', 'Rouzaud Denis', false, 'CENTER'); -INSERT INTO signalo_db.frame (id, fk_azimut, rank, fk_frame_type, fk_frame_fixing_type, double_sided, fk_status, fk_provider, comment, picture, dimension_1, dimension_2, usr_frame_1, usr_frame_2, usr_frame_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, anchor) VALUES ('fdc08784-e5a6-4b0a-a299-2cc3e67a0079', '55ffc93c-fd0f-4c67-8fe7-da217124a793', 2, NULL, NULL, false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:23:15.419', 'Denis Rouzaud', '2023-11-08 13:28:04.973', 'Rouzaud Denis', false, 'LEFT'); diff --git a/datamodel/demo_data/sign_content.sql b/datamodel/demo_data/sign_content.sql index 3d0bc10f..e69de29b 100644 --- a/datamodel/demo_data/sign_content.sql +++ b/datamodel/demo_data/sign_content.sql @@ -1,34 +0,0 @@ -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000002010101', '00000000-0000-0000-ffff-000000020101', 1, false, 11, '1.01', NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.374179', NULL, '2023-02-22 08:31:38.374179', NULL, false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000002020101', '00000000-0000-0000-ffff-000000020201', 1, false, 11, '4.52', NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.375723', NULL, '2023-02-22 08:31:38.375723', NULL, false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000002020201', '00000000-0000-0000-ffff-000000020202', 1, false, 11, '1.03', NULL, NULL, NULL, '811a5b2a-0894-11eb-adef-0242ac110002', NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.381531', NULL, '2023-02-22 08:31:38.381531', NULL, false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000002020202', '00000000-0000-0000-ffff-000000020202', 2, false, 11, '1.14', NULL, NULL, NULL, '811a5b2a-0894-11eb-adef-0242ac110002', NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.383483', NULL, '2023-02-22 08:31:38.383483', NULL, false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000002020203', '00000000-0000-0000-ffff-000000020202', 3, false, 11, '1.14', NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.385582', NULL, '2023-02-22 08:31:38.385582', NULL, false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000002020301', '00000000-0000-0000-ffff-000000020203', 1, false, 11, '1.25a', NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.387403', NULL, '2023-02-22 08:31:38.387403', NULL, false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000002020401', '00000000-0000-0000-ffff-000000020204', 1, false, 11, '1.30', NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.389932', NULL, '2023-02-22 08:31:38.389932', NULL, false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000012020201', '00000000-0000-0000-ffff-000000020202', 1, false, 11, '1.30', NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.392028', NULL, '2023-02-22 08:31:38.392028', NULL, false, NULL, true, 'VERSO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000012020202', '00000000-0000-0000-ffff-000000020202', 2, false, 11, '1.30', NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.398225', NULL, '2023-02-22 08:31:38.398225', NULL, false, NULL, true, 'VERSO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('00000000-0000-0000-eeee-000012020203', '00000000-0000-0000-ffff-000000020203', 1, false, 11, '1.30', NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.400285', NULL, '2023-02-22 08:31:38.400285', NULL, false, NULL, true, 'VERSO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('0c1c7b4e-4c86-11ee-b83f-0242ac110002', '0cac19f6-db18-4354-9901-1bbc53a41e01', 1, false, 11, '4.46.1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Gare', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:21:20.73', 'Denis Rouzaud', '2023-09-07 09:23:46.313', 'Denis Rouzaud', false, NULL, false, 'RECTO-VERSO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('19d4da92-0927-11eb-b4e5-0242ac110002', '19d4cf98-0927-11eb-b4e5-0242ac110002', 3, false, 11, '2.59.5', NULL, NULL, NULL, '811a5b2a-0894-11eb-adef-0242ac110002', NULL, NULL, 2, NULL, '2020-10-08', NULL, NULL, NULL, NULL, NULL, 11, NULL, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.423203', NULL, '2023-02-22 08:31:38.423203', NULL, false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('34e71990-4d52-11ee-b7d3-0242ac110002', '68cb0b0b-2082-49cc-bf6d-b106c861dada', 1, false, 11, '2.59.1-NP', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-07 09:42:47.934', 'Denis Rouzaud', '2023-09-07 09:42:47.934', 'Denis Rouzaud', false, NULL, true, 'RECTO-VERSO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('3a04c71e-4c86-11ee-a7f4-0242ac110002', '0e2decbd-06fa-459e-80af-a13a54e67e52', 1, false, 11, '4.32-1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Genève', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:22:32.096', 'Denis Rouzaud', '2023-11-14 05:57:39.572', 'Rouzaud Denis', false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('440440ae-7e32-11ee-bbd5-0242ac110002', 'a088c423-b088-4306-8b7f-a3b1151682ec', 1, false, 11, '4.32-1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Vevey', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:22:32.096', 'Denis Rouzaud', '2023-11-08 13:28:04.958', 'Rouzaud Denis', false, NULL, true, 'RECTO-VERSO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('4406af6a-7e32-11ee-bbd5-0242ac110002', 'fdc08784-e5a6-4b0a-a299-2cc3e67a0079', 1, false, 11, '4.32-1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Genève', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:23:21.671', 'Denis Rouzaud', '2023-11-08 13:28:04.979', 'Rouzaud Denis', false, NULL, true, 'RECTO-VERSO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('4d82377c-4c86-11ee-a7f4-0242ac110002', '1d945e23-3ba7-4a34-b3df-c9ac17b9827e', 1, false, 11, '4.32-1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Vevey', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:23:21.671', 'Denis Rouzaud', '2023-11-14 05:57:47.721', 'Rouzaud Denis', false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('54e7a8a2-bf50-11ee-a144-0242ac110002', 'de543457-a30a-4a5c-b470-6cffb7df792c', 1, false, 13, NULL, NULL, 11, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2024-01-30 10:16:35.661', 'Rouzaud Denis', '2024-01-30 10:16:35.662', 'Rouzaud Denis', false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('642e4438-089c-11eb-b19a-0242ac110002', '642de2ea-089c-11eb-b19a-0242ac110002', 1, false, 11, '1.05', NULL, NULL, NULL, '811a5b2a-0894-11eb-adef-0242ac110002', NULL, 2, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 11, 3, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.509558', NULL, '2023-02-22 08:31:38.509558', NULL, false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('7358585e-b290-11ed-839a-0242ac110002', 'bc6eb427-308e-4ff2-a94a-c1a2be2fc5af', 1, false, 14, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Rue des cygneaux', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 10:07:35.455', 'Denis Rouzaud', '2023-02-22 10:07:35.455', 'Denis Rouzaud', false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('7a8a60ae-bf50-11ee-9efd-0242ac110002', '79bf0ed6-b98e-4aab-af05-885612053033', 1, false, 13, NULL, NULL, 12, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, false, true, NULL, NULL, NULL, NULL, NULL, '2024-01-30 10:16:35.661', 'Rouzaud Denis', '2024-01-30 10:18:28.622', 'Rouzaud Denis', false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('815f840e-4809-11ee-b1dc-0242ac110002', '75f4bf9f-5f5e-4362-a4ce-fb29bb8c0123', 1, false, 11, '2.32', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-08-31 16:19:54.172', 'Denis Rouzaud', '2023-08-31 16:20:35.183', 'Denis Rouzaud', false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('8caeb2f2-ca4b-11ee-9e6e-0242ac110002', 'b703bf1e-7260-453c-8838-06d94880422d', 1, false, 11, '4.49', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'OPENGIS.ch', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2024-02-13 09:40:14.608', 'Rouzaud Denis', '2024-02-13 09:40:50.916', 'Rouzaud Denis', false, NULL, true, 'RECTO-VERSO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('8ed40678-7e32-11ee-9c43-0242ac110002', 'c167ced0-efb2-4874-9816-1707f3b6ffec', 1, false, 11, '4.49', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'OPENGIS.ch', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-11-08 13:29:18.774', 'Rouzaud Denis', '2023-11-08 13:29:18.774', 'Rouzaud Denis', false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('9e8acdb6-4d51-11ee-b653-0242ac110002', '3c7fe8c4-d4bf-481c-9bb6-cfbe89c5c103', 1, false, 11, '4.33-1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Gare', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-07 09:37:43.359', 'Denis Rouzaud', '2023-09-07 09:42:22.182', 'Denis Rouzaud', false, NULL, true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('a49cc906-0926-11eb-b4e5-0242ac110002', 'a49c33b0-0926-11eb-b4e5-0242ac110002', 2, false, 11, '2.04', NULL, NULL, NULL, '811a5b2a-0894-11eb-adef-0242ac110002', NULL, 10, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 11, 1, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-02-22 08:31:38.639681', NULL, '2023-02-22 08:31:38.639681', NULL, false, NULL, true, 'VERSO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('a7e54358-47db-11ee-9048-0242ac110002', '00000000-0000-ffff-0000-0000000000a1', 1, false, 11, '2.02', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-06-21 08:36:32.694', 'Denis Rouzaud', '2023-06-21 08:36:32.694', 'Denis Rouzaud', false, '9929c77f-dce4-43ef-85fc-7a4bf7fa4bb1', true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('a7e57314-47db-11ee-9048-0242ac110002', '00000000-0000-ffff-0000-0000000000a2', 1, false, 11, '2.34', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-06-21 08:36:32.694', 'Denis Rouzaud', '2023-09-06 09:16:27.792', 'Denis Rouzaud', false, '9929c77f-dce4-43ef-85fc-7a4bf7fa4bb1', true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('c4dc6ec0-ca4c-11ee-a556-0242ac110002', '5e197b05-07db-4143-9c1c-2f7ffab1b378', 1, false, 11, '4.49', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'OPENGIS.ch', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2024-02-13 09:40:14.608', 'Rouzaud Denis', '2024-02-13 09:49:40.714', 'Rouzaud Denis', false, NULL, false, 'RECTO-VERSO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('cc39549e-4d51-11ee-a186-0242ac110002', '5a42808a-9610-4a2e-b207-fd34c8211baa', 1, false, 11, '4.32-1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Berne', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-07 09:39:58.865', 'Denis Rouzaud', '2023-09-07 09:39:58.865', 'Denis Rouzaud', false, NULL, false, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('e16ac422-4c86-11ee-86b3-0242ac110002', 'da131ba0-42ed-4a60-a13d-ac35cea9edc5', 1, false, 11, '4.32-1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Genève', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:22:32.096', 'Denis Rouzaud', '2023-09-06 09:28:28.812', 'Denis Rouzaud', false, NULL, true, 'RECTO-VERSO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('e16da8f4-4c86-11ee-86b3-0242ac110002', '055369c1-e422-4851-aa90-690e4a526335', 1, false, 11, '4.32-1', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'Vevey', NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-09-06 09:23:21.671', 'Denis Rouzaud', '2023-09-06 09:28:34.368', 'Denis Rouzaud', false, NULL, true, 'RECTO-VERSO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('feb33b9c-0ffd-11ee-9ceb-0242ac110002', '348fc524-cc99-41c4-8780-2f7e4d2ff919', 1, false, 15, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-06-21 08:36:32.694', 'Denis Rouzaud', '2023-06-21 08:36:32.694', 'Denis Rouzaud', false, '9929c77f-dce4-43ef-85fc-7a4bf7fa4bb1', true, 'RECTO'); -INSERT INTO signalo_db.sign (id, fk_frame, rank, complex, fk_sign_type, fk_official_sign, fk_marker_type, fk_mirror_shape, fk_parent, fk_owner, fk_provider, fk_durability, fk_status, installation_date, manufacturing_date, case_id, case_decision, inscription_1, inscription_2, inscription_3, fk_coating, fk_lighting, comment, picture, mirror_protruding, mirror_red_frame, dimension_1, dimension_2, usr_sign_1, usr_sign_2, usr_sign_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, fk_user_sign, natural_direction_or_left, hanging_mode) VALUES ('ffac3240-4808-11ee-967c-0242ac110002', 'a899745b-f562-47ca-9175-ef2e19ac18de', 1, false, 11, '2.59.3', NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, false, false, NULL, NULL, NULL, NULL, NULL, '2023-08-31 16:16:23.516', 'Denis Rouzaud', '2023-08-31 16:38:07.493', 'Denis Rouzaud', false, NULL, true, 'RECTO-VERSO'); diff --git a/datamodel/demo_data/support_content.sql b/datamodel/demo_data/support_content.sql index 87f4259b..e69de29b 100644 --- a/datamodel/demo_data/support_content.sql +++ b/datamodel/demo_data/support_content.sql @@ -1,15 +0,0 @@ -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('00000000-0000-0000-0000-000000000002', NULL, 3, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, '010100002008080000D7A370BDE85D434185EB513800963141', NULL, NULL, NULL, '2023-02-22 08:31:37.390486', NULL, '2023-02-22 08:31:37.390486', NULL, false, false, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('00000000-0000-0000-0000-0000000000a1', NULL, 17, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0101000020080800000B5CF94FA75C43411230DACDD6953141', NULL, NULL, NULL, NULL, 'Denis Rouzaud', '2023-09-07 09:43:52.317', 'Denis Rouzaud', false, true, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('20f47695-aefa-43b1-854f-a770fa0f79e0', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '010100002008080000D9A8A420D05B4341BC03DE38B6953141', NULL, NULL, NULL, '2024-02-13 09:39:08.691', 'Rouzaud Denis', '2024-02-13 09:49:16.356', 'Rouzaud Denis', false, true, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('2e988298-0897-11eb-8771-0242ac110002', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '010100002008080000C5E07FA4E65B43412E137A1C3E973141', NULL, NULL, NULL, '2023-02-22 08:31:37.401948', NULL, '2023-02-22 08:31:37.401948', NULL, false, false, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('3dbc19a5-b7bf-4acd-94d0-ba4b0b17ddc0', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '010100002008080000695437F02D5C43411DC707E6DE953141', NULL, NULL, NULL, '2024-01-30 10:16:13.613', 'Rouzaud Denis', '2024-01-30 10:54:03.024', 'Rouzaud Denis', false, true, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('4478bbcc-0236-46ee-b284-4c586e6af8a9', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '010100002008080000252FE84F125C43415140D9C4CA953141', NULL, NULL, NULL, '2023-06-21 08:36:14.555', 'Denis Rouzaud', '2023-09-07 09:45:41.314', 'Denis Rouzaud', false, false, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('70104932-54ff-4668-90b0-6946352d5544', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '010100002008080000D787DBE9695C434106D2DA8FF1953141', NULL, NULL, NULL, '2023-09-06 09:16:42.169', 'Denis Rouzaud', '2023-09-07 09:17:22.807', 'Denis Rouzaud', false, true, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('814da66a-0894-11eb-99f5-0242ac110002', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, '01010000200808000000000000CA5D4341CDCCCCCC4D963141', NULL, NULL, NULL, '2023-02-22 08:31:37.40358', NULL, '2023-02-22 08:31:37.40358', NULL, false, false, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('82f3002b-ebdf-4621-9a19-951639fc18bd', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '01010000200808000065EF178C215C4341FEE7169213963141', NULL, NULL, NULL, '2023-09-06 09:16:42.169', 'Denis Rouzaud', '2023-09-07 09:18:20.141', 'Denis Rouzaud', false, true, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('94ff73df-fc80-4319-b2b9-7aa06ca4f806', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0101000020080800006E4ACFC2155C4341C63A7B2BEB953141', NULL, NULL, NULL, '2024-01-30 10:16:13.613', 'Rouzaud Denis', '2024-01-30 10:53:57.824', 'Rouzaud Denis', false, true, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('a3921fbd-8a89-4d82-b3b8-7a24a16f4df4', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0101000020080800004CFA6D0A0F5C4341DBDFED42AE953141', NULL, NULL, NULL, '2023-09-07 09:36:39.163', 'Denis Rouzaud', '2023-09-07 09:36:39.164', 'Denis Rouzaud', false, false, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('bbdb5d1e-4973-4900-8838-889357a60e65', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '01010000200808000085E0E8F7D25B43413587DEC00D963141', NULL, NULL, NULL, '2023-09-06 09:16:42.169', 'Denis Rouzaud', '2023-11-08 13:28:41.075', 'Rouzaud Denis', false, true, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('c13a9809-b862-4237-a67f-bb34897d90b5', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0101000020080800004A2D01EBD05B43416811D66B9B953141', NULL, NULL, NULL, '2024-02-13 09:39:08.691', 'Rouzaud Denis', '2024-02-13 09:39:08.691', 'Rouzaud Denis', false, true, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('f17d39cc-bac3-4134-9b9c-ea14e228d4b4', NULL, 17, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0101000020080800004D41C2489A5C4341AB33A3FADD953141', NULL, NULL, NULL, '2023-08-31 16:15:34.605', 'Denis Rouzaud', '2023-09-07 09:43:49.619', 'Denis Rouzaud', false, true, NULL); -INSERT INTO signalo_db.support (id, address, fk_support_type, fk_owner, fk_provider, fk_support_base_type, road_segment, height, height_free_under_signal, date_install, date_last_stability_check, fk_status, comment, picture, geometry, usr_support_1, usr_support_2, usr_support_3, _inserted_date, _inserted_user, _last_modified_date, _last_modified_user, _edited, group_by_anchor, picture_2) VALUES ('f5054922-95a7-4f12-8374-0a57e105327c', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0101000020080800009B2406BA925C434100FF7F0FA4953141', NULL, NULL, NULL, '2023-02-22 10:06:43.92', 'Denis Rouzaud', '2023-09-07 09:35:26.796', 'Denis Rouzaud', false, false, NULL); diff --git a/datamodel/demo_data/vl_user_sign_content.sql b/datamodel/demo_data/vl_user_sign_content.sql index 84f03c90..e69de29b 100644 --- a/datamodel/demo_data/vl_user_sign_content.sql +++ b/datamodel/demo_data/vl_user_sign_content.sql @@ -1 +0,0 @@ -INSERT INTO signalo_db.vl_user_sign (id, active, value_de, value_fr, value_it, value_ro, description_de, description_fr, description_it, description_ro, img_de, img_fr, img_it, img_ro, img_height, img_width, no_dynamic_inscription, default_inscription1, default_inscription2, default_inscription3, default_inscription4, directional_sign, img_de_right, img_fr_right, img_it_right, img_ro_right) VALUES ('9929c77f-dce4-43ef-85fc-7a4bf7fa4bb1', true, 'composite', 'composite', 'composite', 'composite', NULL, NULL, NULL, NULL, 'test-composite.svg', 'test-composite.svg', 'test-composite.svg', 'test-composite.svg', 206, 92, 0, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL); diff --git a/project/signalo.qgs b/project/signalo.qgs index e046b7dc..e595015e 100644 --- a/project/signalo.qgs +++ b/project/signalo.qgs @@ -1,5 +1,5 @@ - + Signalo - Demo @@ -21,141 +21,141 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -171,39 +171,39 @@ vw_azimut_edit_b7acca0e_e618_4f1d_8de3_08e2eb5bf359 - + - - - - + + + + - + - + - + - + - + - + meters - 2537436.38012321479618549 - 1152375.42529165861196816 - 2537837.94246990419924259 - 1152714.69399227690882981 + 2537235.76567045506089926 + 1152270.93723695911467075 + 2538147.71886785794049501 + 1152869.88366723340004683 0 @@ -224,140 +224,140 @@ - + - + - + - + - + - - + + - + - - + + - + - + - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + Annotations_12d93f67_97ee_4956_a1a1_ce69a09e6c74 @@ -408,7 +408,7 @@ - + 2419995.7488073636777699 1027366.07117159117478877 @@ -485,91 +485,91 @@ - + - + - - - + - - - + - + None @@ -609,13 +609,13 @@ - + resamplingFilter 0 - + -20037508.34278924390673637 -20037508.34278924763202667 @@ -693,91 +693,91 @@ - + - + - - - + - - - + - + None @@ -817,13 +817,13 @@ - + resamplingFilter 0 - + 2419995.7488073636777699 1027366.07117159117478877 @@ -900,91 +900,91 @@ - + - + - - - + - - - + - + None @@ -1024,13 +1024,13 @@ - + resamplingFilter 0 - + azimut_f5e94397_ee15_4ae1_95b8_af8a412676b3 service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."azimut" @@ -1083,7 +1083,7 @@ - + @@ -1108,138 +1108,138 @@ 1 0 - + - + - + - - - + - - - + - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + - + - + - + coating_7ea56753_207f_4981_84ef_635958fc4808 service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_coating" @@ -1699,138 +1713,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - + - - + - + - + - + - + - + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - + - + @@ -1957,7 +1971,7 @@ def my_form_open(dialog, layer, feature): - + durability_a4cef524_85b2_4913_84a1_926afcce6000 service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_durability" @@ -2018,138 +2032,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - + - - + - + - + - + - + - + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - + - + @@ -2276,7 +2290,7 @@ def my_form_open(dialog, layer, feature): - + frame_b99392c7_2b01_4b3a_bde4_f003e2b838e4 service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."frame" @@ -2329,7 +2343,7 @@ def my_form_open(dialog, layer, feature): - + @@ -2354,138 +2368,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - - + - + - + - + - + - + - + - + - + - + - + - + - - + - + - + - + - + - + - + - + - + - + - + @@ -2820,102 +2834,102 @@ def my_form_open(dialog, layer, feature): - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - + - + - + frame_fixing_type_63843528_0c72_40f3_957a_7147d1820e7c service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_frame_fixing_type" @@ -3198,138 +3212,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - + - - + - + - + - + - + - + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - + - + @@ -3456,7 +3470,7 @@ def my_form_open(dialog, layer, feature): - + frame_type_497d77ea_a95f_41cd_8c09_df811ac9635d service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_frame_type" @@ -3517,138 +3531,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - + - - + - + - + - + - + - + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - + - + @@ -3775,7 +3789,7 @@ def my_form_open(dialog, layer, feature): - + lighting_c690da23_6bac_4bb9_ae77_84d1c461a41c service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_lighting" @@ -3836,138 +3850,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - + - - + - + - + - + - + - + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - + - + - + marker_type_92d19509_ce38_40d9_bac4_eecb4dff3273 service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='0' table="signalo_db"."vl_marker_type" @@ -4154,7 +4168,7 @@ def my_form_open(dialog, layer, feature): - + @@ -4179,138 +4193,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - + - + - + - + - + - + - + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - + - + - + mirror_shape_96db4de4_ebf8_43e1_8365_5c16d28719bc service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='0' table="signalo_db"."vl_mirror_shape" @@ -4541,7 +4555,7 @@ def my_form_open(dialog, layer, feature): - + @@ -4566,138 +4580,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - - + - + - + - + - + - + - + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - + - + - + official_sign_02419ef5_80b5_48e3_869b_58a12167b0ae service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_official_sign" @@ -4935,7 +4949,7 @@ def my_form_open(dialog, layer, feature): - + @@ -4960,138 +4974,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + owner_4e532508_fa34_406c_8846_8f8306ca74ee service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_owner" @@ -5630,7 +5644,7 @@ def my_form_open(dialog, layer, feature): - + @@ -5655,138 +5669,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - + - + - + provider_4ab3ab90_0529_498a_8d27_4debfbbe453a service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='0' table="signalo_db"."vl_provider" @@ -6093,7 +6107,7 @@ def my_form_open(dialog, layer, feature): - + @@ -6118,138 +6132,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - + - + - + sign_2499f9bd_24a2_4384_b329_dc522a94c545 service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."sign" @@ -6553,7 +6567,7 @@ def my_form_open(dialog, layer, feature): - + @@ -6564,8 +6578,8 @@ def my_form_open(dialog, layer, feature): postgres - - + + @@ -6581,138 +6595,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + sign_type_922b284e_5fef_4464_826e_755cf776cac5 service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_sign_type" @@ -8738,138 +8752,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - + - - + - + - + - + - + - + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - + - + - + status_5f245030_6519_4c89_8eb9_987e8fac9a4d service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_status" @@ -9066,138 +9080,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - + - - + - + - + - + - + - + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - + - + @@ -9324,7 +9338,7 @@ def my_form_open(dialog, layer, feature): - + 2537376.25502501102164388 1152411.42123516835272312 @@ -9389,7 +9403,7 @@ def my_form_open(dialog, layer, feature): - + @@ -9403,8 +9417,8 @@ def my_form_open(dialog, layer, feature): - - + + @@ -9417,181 +9431,181 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - + - + - - - @@ -9618,54 +9632,54 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - + - + @@ -9673,491 +9687,491 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + - + - + - + - + - + - + - + - + - + - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - + - + - + support_base_type_fe9c67db_d588_4092_adef_496e922cfa4c service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_support_base_type" @@ -10488,138 +10502,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - + - - + - + - + - + - + - + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - + - + @@ -10746,7 +10760,7 @@ def my_form_open(dialog, layer, feature): - + support_type_d8e8fb77_0ce7_4d23_bb9e_c12c12d412bf service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_support_type" @@ -10799,7 +10813,7 @@ def my_form_open(dialog, layer, feature): - + @@ -10824,138 +10838,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - + - + - + - + - + - + - + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - + - + - + vl_user_sign_c625b1d7_23e8_4c2b_a4d4_e027a23ebe9b service='pg_signalo' sslmode=disable key='id' checkPrimaryKeyUnicity='1' table="signalo_db"."vl_user_sign" @@ -11181,7 +11195,7 @@ def my_form_open(dialog, layer, feature): - + @@ -11206,138 +11220,138 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + 2537376.25502501102164388 1152411.42123516835272312 @@ -11839,7 +11853,7 @@ def my_form_open(dialog, layer, feature): - vw_azimut_edit + Outil Azimut PROJCRS["CH1903+ / LV95",BASEGEOGCRS["CH1903+",DATUM["CH1903+",ELLIPSOID["Bessel 1841",6377397.155,299.1528128,LENGTHUNIT["metre",1]]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433]],ID["EPSG",4150]],CONVERSION["Swiss Oblique Mercator 1995",METHOD["Hotine Oblique Mercator (variant B)",ID["EPSG",9815]],PARAMETER["Latitude of projection centre",46.9524055555556,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8811]],PARAMETER["Longitude of projection centre",7.43958333333333,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8812]],PARAMETER["Azimuth of initial line",90,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8813]],PARAMETER["Angle from Rectified to Skew Grid",90,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8814]],PARAMETER["Scale factor on initial line",1,SCALEUNIT["unity",1],ID["EPSG",8815]],PARAMETER["Easting at projection centre",2600000,LENGTHUNIT["metre",1],ID["EPSG",8816]],PARAMETER["Northing at projection centre",1200000,LENGTHUNIT["metre",1],ID["EPSG",8817]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1]],USAGE[SCOPE["Cadastre, engineering survey, topographic mapping (large and medium scale)."],AREA["Liechtenstein; Switzerland."],BBOX[45.82,5.96,47.81,10.49]],ID["EPSG",2056]] @@ -11886,7 +11900,7 @@ def my_form_open(dialog, layer, feature): - + @@ -11911,211 +11925,211 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - + - + - - 0 0 1 - - - - + + + + - + - + @@ -12191,23 +12205,23 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - - - + + + - + - + 2537376.25502501102164388 1152411.42123516835272312 @@ -12356,224 +12370,224 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - + - - + + - + - - - + - - 0 0 1 - + - - + - + - - + + - - + + - - + + - - + + - + - + - + 2537376.25502501102164388 1152411.42123516835272312 @@ -12731,7 +12745,7 @@ def my_form_open(dialog, layer, feature): - + @@ -12742,22 +12756,22 @@ def my_form_open(dialog, layer, feature): postgres - + - + - + - + @@ -12767,8 +12781,8 @@ def my_form_open(dialog, layer, feature): - + @@ -12783,280 +12797,280 @@ def my_form_open(dialog, layer, feature): 1 0 - + - + - + - - - + - - - + - - - + - + - + - - - - - - - @@ -13065,140 +13079,140 @@ def my_form_open(dialog, layer, feature): - + - - - - + + + + - + - + - + - + - - - + + + - + - @@ -13206,54 +13220,54 @@ def my_form_open(dialog, layer, feature): 0 0 1 - - - - + + + + - + - + @@ -13261,1155 +13275,1155 @@ def my_form_open(dialog, layer, feature): - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - +