-
Notifications
You must be signed in to change notification settings - Fork 1
/
avap_10_squelette.sql
873 lines (726 loc) · 37.1 KB
/
avap_10_squelette.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
/*AVAP V1.0*/
/*Creation du squelette de la structure des données (tables, séquences, triggers,...) */
/*avap_10_SQUELETTE.sql */
/*PostGIS*/
/*GeoCompiegnois - http://geo.compiegnois.fr/ */
/*Auteur : Grégory Bodet */
/*
SOMMAIRE :
- DROP
- SEQUENCES
- DOMAINES DE VALEUR
- CLASSES OBJETS
- CONTRAINTES
*/
-- ###############################################################################################################################
-- ### ###
-- ### DROP ###
-- ### ###
-- ###############################################################################################################################
-- VUE
DROP VIEW IF EXISTS x_apps.xapps_an_vmr_sup_ac4;
-- CLASSES
DROP TABLE IF EXISTS m_urbanisme_reg.geo_sup_ac4_assiette_sup_s;
DROP TABLE IF EXISTS m_urbanisme_reg.geo_sup_ac4_generateur_sup_s;
DROP TABLE IF EXISTS m_urbanisme_reg.geo_sup_ac4_avap_airedevue;
DROP TABLE IF EXISTS m_urbanisme_reg.geo_sup_ac4_avap_alignarbre;
DROP TABLE IF EXISTS m_urbanisme_reg.geo_sup_ac4_avap_cloture;
DROP TABLE IF EXISTS m_urbanisme_reg.geo_sup_ac4_avap_espacepaysager;
DROP TABLE IF EXISTS m_urbanisme_reg.geo_sup_ac4_avap_forti;
DROP TABLE IF EXISTS m_urbanisme_reg.geo_sup_ac4_avap_peri;
DROP TABLE IF EXISTS m_urbanisme_reg.geo_sup_ac4_avap_protect;
DROP TABLE IF EXISTS m_urbanisme_reg.geo_sup_ac4_avap_ptdevue;
DROP TABLE IF EXISTS m_urbanisme_reg.geo_sup_ac4_avap_ptpatrimoine;
DROP TABLE IF EXISTS m_urbanisme_reg.geo_sup_ac4_avap_secteur;
DROP TABLE IF EXISTS m_urbanisme_reg.geo_sup_ac4_avap_urbainpatri;
DROP TABLE IF EXISTS m_urbanisme_reg.geo_sup_ac4_avap_vestige;
DROP TABLE IF EXISTS m_urbanisme_reg.an_sup_ac4_avap_media;
DROP TABLE IF EXISTS m_urbanisme_reg.an_sup_ac4_geo_protect;
DROP TABLE IF EXISTS m_urbanisme_reg.geo_sup_ac1_d_avap_l;
DROP TABLE IF EXISTS m_urbanisme_reg.geo_sup_ac1_d_avap_p;
DROP TABLE IF EXISTS m_urbanisme_reg.geo_sup_ac1_d_avap_s;
-- DOMAINES DE VALEUR
DROP TABLE IF EXISTS m_urbanisme_reg.lt_avap_cloture CASCADE;
DROP TABLE IF EXISTS m_urbanisme_reg.lt_avap_protec CASCADE;
DROP TABLE IF EXISTS m_urbanisme_reg.lt_avap_ptpatri CASCADE;
--SEQUENCES
/*
DROP SEQUENCE m_urbanisme_reg.an_sup_ac4_avap_media_gid_seq;
;
*/
-- ###############################################################################################################################
-- ### ###
-- ### SEQUENCE ###
-- ### ###
-- ###############################################################################################################################
--############################################################ an_sup_ac4_avap_media_gid_seq ##################################################
-- SEQUENCE: m_urbanisme_reg.an_sup_ac4_avap_media_gid_seq
-- DROP SEQUENCE m_urbanisme_reg.an_sup_ac4_avap_media_gid_seq;
/*
CREATE SEQUENCE m_urbanisme_reg.an_sup_ac4_avap_media_gid_seq
INCREMENT 1
START 1
MINVALUE 1
MAXVALUE 9223372036854775807
CACHE 1;
COMMENT ON SEQUENCE m_urbanisme_reg.an_sup_ac4_avap_media_gid_seq
IS 'Séquence unique pour les médias intégrés pour l''AVAP de Compiègne approuvée en 2020';
*/
-- ###############################################################################################################################
-- ### ###
-- ### DOMAINES DE VALEURS ###
-- ### ###
-- ###############################################################################################################################
--############################################################ lt_avap_cloture ##################################################
-- Table: m_urbanisme_reg.lt_avap_cloture
-- DROP TABLE m_urbanisme_reg.lt_avap_cloture;
CREATE TABLE m_urbanisme_reg.lt_avap_cloture
(
code character varying(2) COLLATE pg_catalog."default" NOT NULL,
valeur character varying(30) COLLATE pg_catalog."default",
CONSTRAINT lt_avap_cloture_pkey PRIMARY KEY (code)
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
COMMENT ON TABLE m_urbanisme_reg.lt_avap_cloture
IS 'Liste de valeurs de l''attribut type de la table geo_sup_ac4_avap_cloture';
INSERT INTO m_economie.lt_immo_tbien(code, valeur)
VALUES
('10','Clôture haute en pierre'),
('20','Mur + grille');
COMMENT ON TABLE m_economie.lt_immo_tbien
IS 'Code permettant de décrire le type de cloture';
COMMENT ON COLUMN m_economie.lt_immo_tbien.code IS 'Code du type de cloture';
COMMENT ON COLUMN m_economie.lt_immo_tbien.valeur IS 'Valeur du type de cloture';
--############################################################ lt_avap_protec ##################################################
-- Table: m_urbanisme_reg.lt_avap_protec
-- DROP TABLE m_urbanisme_reg.lt_avap_protec;
CREATE TABLE m_urbanisme_reg.lt_avap_protec
(
code character varying(2) COLLATE pg_catalog."default" NOT NULL,
valeur character varying(50) COLLATE pg_catalog."default",
CONSTRAINT lt_avap_protec_pkey PRIMARY KEY (code)
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
COMMENT ON TABLE m_urbanisme_reg.lt_avap_protec
IS 'Liste de valeurs de l''attribut protec de la table geo_sup_ac4_avap_protec';
INSERT INTO m_economie.lt_avap_protec(code, valeur)
VALUES
('10','Protégé (au titre des M.H.)'),
('20','Immeuble remarquable'),
('30','Immeuble d''intérêt'),
('40','Immeuble d''accompagnement'),
('50','Immeuble à insérer'),
('60','Sans qualification');
COMMENT ON TABLE m_economie.lt_avap_protec
IS 'Code permettant de décrire le type de protection des bâtiments';
COMMENT ON COLUMN m_economie.lt_avap_protec.code IS 'Code du type de protection';
COMMENT ON COLUMN m_economie.lt_avap_protec.valeur IS 'Valeur du type de protection';
--############################################################ lt_avap_ptpatri ##################################################
-- Table: m_urbanisme_reg.lt_avap_ptpatri
-- DROP TABLE m_urbanisme_reg.lt_avap_ptpatri;
CREATE TABLE m_urbanisme_reg.lt_avap_ptpatri
(
code character varying(2) COLLATE pg_catalog."default" NOT NULL,
valeur character varying(30) COLLATE pg_catalog."default",
CONSTRAINT lt_avap_ptpatri_pkey PRIMARY KEY (code)
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
COMMENT ON TABLE m_urbanisme_reg.lt_avap_ptpatri
IS 'Liste de valeurs de l''attribut type de la table geo_sup_ac4_avap_ptpatrimoine';
INSERT INTO m_economie.lt_avap_ptpatri(code, valeur)
VALUES
('00','Non renseigné'),
('10','Pierre Sculptée isolée'),
('20','Ouvrage en pierres assemblées'),
('21','Ouvrage de couverture'),
('30','Lucarne'),
('40','Bois : porte et portail'),
('50','Métal : garde-corps'),
('51','Métal : portail de clôture'),
('60','Puits'),
('70','Croix, calvaire'),
('80','Verrière, marquise'),
('99','Autre');
COMMENT ON TABLE m_economie.lt_avap_ptpatri
IS 'Code permettant de décrire le type de petit patrimoine';
COMMENT ON COLUMN m_economie.lt_avap_ptpatri.code IS 'Code du type de petit patrimoine';
COMMENT ON COLUMN m_economie.lt_avap_ptpatri.valeur IS 'Valeur du type de petit patrimoine';
-- ###############################################################################################################################
-- ### ###
-- ### CLASSES OBJETS ###
-- ### ###
-- ###############################################################################################################################
--################################################################# geo_sup_ac4_generateur_sup_s #######################################################
-- Table: m_urbanisme_reg.geo_sup_ac4_generateur_sup_s
-- DROP TABLE m_urbanisme_reg.geo_sup_ac4_generateur_sup_s;
CREATE TABLE m_urbanisme_reg.geo_sup_ac4_generateur_sup_s
(
idass character varying(200) COLLATE pg_catalog."default" NOT NULL,
idgen character varying(200) COLLATE pg_catalog."default",
nomass character varying(200) COLLATE pg_catalog."default",
typeass character varying(200) COLLATE pg_catalog."default",
modegeoass character varying(200) COLLATE pg_catalog."default",
paramcalc character varying(200) COLLATE pg_catalog."default",
srcgeoass character varying(200) COLLATE pg_catalog."default",
datesrcass character varying(200) COLLATE pg_catalog."default",
geom geometry(Geometry,2154),
CONSTRAINT geo_sup_ac4_generateur_sup_s_pkey PRIMARY KEY (idass)
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
COMMENT ON TABLE m_urbanisme_reg.geo_sup_ac4_generateur_sup_s
IS 'Générateur de la servitude AC4 au format CNIG';
--################################################################# geo_sup_ac4_assiette_sup_s #######################################################
-- Table: m_urbanisme_reg.geo_sup_ac4_assiette_sup_s
-- DROP TABLE m_urbanisme_reg.geo_sup_ac4_assiette_sup_s;
CREATE TABLE m_urbanisme_reg.geo_sup_ac4_assiette_sup_s
(
idgen character varying(200) COLLATE pg_catalog."default" NOT NULL,
idsup character varying(200) COLLATE pg_catalog."default",
nomgen character varying(200) COLLATE pg_catalog."default",
typegen character varying(200) COLLATE pg_catalog."default",
modegenere character varying(200) COLLATE pg_catalog."default",
srcgeogen character varying(200) COLLATE pg_catalog."default",
datesrcgen character varying(200) COLLATE pg_catalog."default",
refbdext character varying(200) COLLATE pg_catalog."default",
idbdext character varying(200) COLLATE pg_catalog."default",
geom geometry(Geometry,2154),
CONSTRAINT geo_sup_ac4_assiette_sup_s_pkey PRIMARY KEY (idgen)
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
COMMENT ON TABLE m_urbanisme_reg.geo_sup_ac4_assiette_sup_s
IS 'Assiette de la SUP AC4 au standard CNIG';
--################################################################# geo_sup_ac4_avap_airedevue #######################################################
-- Table: m_urbanisme_reg.geo_sup_ac4_avap_airedevue
-- DROP TABLE m_urbanisme_reg.geo_sup_ac4_avap_airedevue;
CREATE TABLE m_urbanisme_reg.geo_sup_ac4_avap_airedevue
(
gid text COLLATE pg_catalog."default" NOT NULL,
insee character varying(5) COLLATE pg_catalog."default",
datappro character varying(8) COLLATE pg_catalog."default",
nomreg character varying(254) COLLATE pg_catalog."default",
urlreg character varying(254) COLLATE pg_catalog."default",
sup_ha double precision,
geom geometry(MultiPolygon,2154),
CONSTRAINT geo_sup_ac4_avap_airedevue_pkey PRIMARY KEY (gid)
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
COMMENT ON TABLE m_urbanisme_reg.geo_sup_ac4_avap_airedevue
IS 'Table géographique contenant l''emprise des aires de vue de l''AVAP approuvé par le Conseil Municipal de Compiègne le 6 mars 2020';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_airedevue.gid
IS 'Identifiant interne';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_airedevue.insee
IS 'Code insee de la commune';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_airedevue.datappro
IS 'Date d''approbation de l''AVAP';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_airedevue.nomreg
IS 'Nom du règlement (titre 2)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_airedevue.urlreg
IS 'URL du règlement (titre 2)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_airedevue.sup_ha
IS 'Surface en ha';
--################################################################# geo_sup_ac4_avap_alignarbre #######################################################
-- Table: m_urbanisme_reg.geo_sup_ac4_avap_alignarbre
-- DROP TABLE m_urbanisme_reg.geo_sup_ac4_avap_alignarbre;
CREATE TABLE m_urbanisme_reg.geo_sup_ac4_avap_alignarbre
(
gid text COLLATE pg_catalog."default" NOT NULL,
insee character varying(5) COLLATE pg_catalog."default",
essence character varying(50) COLLATE pg_catalog."default",
nomreg character varying(254) COLLATE pg_catalog."default",
urlreg character varying(254) COLLATE pg_catalog."default",
long_m integer,
geom geometry(MultiLineString,2154),
CONSTRAINT geo_sup_ac4_avap_alignarbre_pkey PRIMARY KEY (gid)
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
GRANT ALL ON TABLE m_urbanisme_reg.geo_sup_ac4_avap_alignarbre TO create_sig;
COMMENT ON TABLE m_urbanisme_reg.geo_sup_ac4_avap_alignarbre
IS 'Table géographique contenant les alignements d''arbres de l''AVAP approuvé par le Conseil Municipal de Compiègne le 6 mars 2020';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_alignarbre.gid
IS 'Identifiant interne';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_alignarbre.insee
IS 'Code insee de la commune';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_alignarbre.essence
IS 'Libelle de l''essence de l''arbre';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_alignarbre.nomreg
IS 'Nom du règlement (titre 2)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_alignarbre.urlreg
IS 'URL du règlement (titre 2)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_alignarbre.long_m
IS 'Linéaire en mètre';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_alignarbre.geom
IS 'Géométrie de l''objet';
--################################################################# geo_sup_ac4_avap_cloture #######################################################
-- Table: m_urbanisme_reg.geo_sup_ac4_avap_cloture
-- DROP TABLE m_urbanisme_reg.geo_sup_ac4_avap_cloture;
CREATE TABLE m_urbanisme_reg.geo_sup_ac4_avap_cloture
(
gid text COLLATE pg_catalog."default" NOT NULL,
insee character varying(5) COLLATE pg_catalog."default",
type character varying(2) COLLATE pg_catalog."default",
nomreg character varying(254) COLLATE pg_catalog."default",
urlreg character varying(254) COLLATE pg_catalog."default",
long_m integer,
geom geometry(MultiLineString,2154),
CONSTRAINT geo_sup_ac4_avap_cloture_pkey PRIMARY KEY (gid),
CONSTRAINT geo_sup_ac4_avap_cloture_fkey FOREIGN KEY (type)
REFERENCES m_urbanisme_reg.lt_avap_cloture (code) MATCH SIMPLE
ON UPDATE NO ACTION
ON DELETE NO ACTION
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
COMMENT ON TABLE m_urbanisme_reg.geo_sup_ac4_avap_cloture
IS 'Table géographique contenant les clôtures identifiées de l''AVAP approuvé par le Conseil Municipal de Compiègne le 6 mars 2020';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_cloture.gid
IS 'Identifiant interne';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_cloture.insee
IS 'Code insee de la commune';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_cloture.type
IS 'Type de clôture (clé étrangère sur la liste de valeurs lt_avap_cloture)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_cloture.nomreg
IS 'Nom du règlement (titre 2)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_cloture.urlreg
IS 'URL du règlement (titre 2)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_cloture.long_m
IS 'Linéaire en mètre';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_cloture.geom
IS 'Géométrie de l''objet';
--################################################################# geo_sup_ac4_avap_espacepaysager #######################################################
-- Table: m_urbanisme_reg.geo_sup_ac4_avap_espacepaysager
-- DROP TABLE m_urbanisme_reg.geo_sup_ac4_avap_espacepaysager;
CREATE TABLE m_urbanisme_reg.geo_sup_ac4_avap_espacepaysager
(
gid text COLLATE pg_catalog."default" NOT NULL,
insee character varying(5) COLLATE pg_catalog."default",
libelle character varying(50) COLLATE pg_catalog."default",
datappro character varying(8) COLLATE pg_catalog."default",
nomreg character varying(254) COLLATE pg_catalog."default",
urlreg character varying(254) COLLATE pg_catalog."default",
sup_ha double precision,
geom geometry(MultiPolygon,2154),
CONSTRAINT geo_sup_ac4_avap_espacepaysager_pkey PRIMARY KEY (gid)
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
COMMENT ON TABLE m_urbanisme_reg.geo_sup_ac4_avap_espacepaysager
IS 'Table géographique contenant les espaces paysagers de l''AVAP approuvé par le Conseil Municipal de Compiègne le 6 mars 2020';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_espacepaysager.gid
IS 'Identifiant interne';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_espacepaysager.insee
IS 'Code insee de la commune';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_espacepaysager.libelle
IS 'Libellé de l''espace';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_espacepaysager.datappro
IS 'Date d''approbation de l''AVAP';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_espacepaysager.nomreg
IS 'Nom du règlement (titre 2)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_espacepaysager.urlreg
IS 'URL du règlement (titre 2)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_espacepaysager.sup_ha
IS 'Surface en hectare';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_espacepaysager.geom
IS 'Géométrie de l''objet';
--################################################################# geo_sup_ac4_avap_forti #######################################################
-- Table: m_urbanisme_reg.geo_sup_ac4_avap_forti
-- DROP TABLE m_urbanisme_reg.geo_sup_ac4_avap_forti;
CREATE TABLE m_urbanisme_reg.geo_sup_ac4_avap_forti
(
gid text COLLATE pg_catalog."default" NOT NULL,
insee character varying(5) COLLATE pg_catalog."default",
nomreg character varying(254) COLLATE pg_catalog."default",
urlreg character varying(254) COLLATE pg_catalog."default",
geom geometry(MultiPolygon,2154),
CONSTRAINT geo_sup_ac4_avap_forti_pkey PRIMARY KEY (gid)
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
COMMENT ON TABLE m_urbanisme_reg.geo_sup_ac4_avap_forti
IS 'Table géographique contenant les zonages archéologiques des fortifications de l''AVAP approuvé par le Conseil Municipal de Compiègne le 6 mars 2020';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_forti.gid
IS 'Identifiant interne';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_forti.insee
IS 'Code insee de la commune';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_forti.nomreg
IS 'Nom du règlement (titre 3)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_forti.urlreg
IS 'URL du règlement (titre 3)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_forti.geom
IS 'Géométrie de l''objet';
--################################################################# geo_sup_ac4_avap_peri #######################################################
-- Table: m_urbanisme_reg.geo_sup_ac4_avap_peri
-- DROP TABLE m_urbanisme_reg.geo_sup_ac4_avap_peri;
CREATE TABLE m_urbanisme_reg.geo_sup_ac4_avap_peri
(
gid text COLLATE pg_catalog."default" NOT NULL,
insee character varying(5) COLLATE pg_catalog."default",
datappro character varying(8) COLLATE pg_catalog."default",
nomplan character varying(254) COLLATE pg_catalog."default",
urlplan character varying(254) COLLATE pg_catalog."default",
nomreg1 character varying(254) COLLATE pg_catalog."default",
urlreg1 character varying(254) COLLATE pg_catalog."default",
nomreg2 character varying(254) COLLATE pg_catalog."default",
urlreg2 character varying(254) COLLATE pg_catalog."default",
nomreg3 character varying(254) COLLATE pg_catalog."default",
urlreg3 character varying(254) COLLATE pg_catalog."default",
urlpe character varying(254) COLLATE pg_catalog."default",
sup_ha double precision,
geom geometry(MultiPolygon,2154),
CONSTRAINT geo_sup_ac4_avap_peri_pkey PRIMARY KEY (gid)
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
COMMENT ON TABLE m_urbanisme_reg.geo_sup_ac4_avap_peri
IS 'Table géographique contenant le périmètre de l''AVAP approuvé par le Conseil Municipal de Compiègne le 6 mars 2020';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_peri.gid
IS 'Identifiant unique à l''ARC';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_peri.insee
IS 'Code insee de la commune';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_peri.datappro
IS 'Date d''approbation de l''AVAP';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_peri.nomplan
IS 'Nom du fichier contenant le plan global';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_peri.urlplan
IS 'URL du fichier contenant le plan global';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_peri.nomreg1
IS 'Nom du règlement (titre 1)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_peri.urlreg1
IS 'URL du règlement (titre 1)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_peri.nomreg2
IS 'Nom du règlement (titre 2)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_peri.urlreg2
IS 'URL du règlement (titre 2)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_peri.nomreg3
IS 'Nom du règlement (titre 3)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_peri.urlreg3
IS 'URL du règlement (titre 3)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_peri.urlpe
IS 'Lien d''accès à l''archive zip comprenant l''ensemble des pièces';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_peri.sup_ha
IS 'Surface en hectare';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_peri.geom
IS 'Géométrie des objets';
--################################################################# geo_sup_ac4_avap_protect #######################################################
-- Table: m_urbanisme_reg.geo_sup_ac4_avap_protect
-- DROP TABLE m_urbanisme_reg.geo_sup_ac4_avap_protect;
CREATE TABLE m_urbanisme_reg.geo_sup_ac4_avap_protect
(
gid text COLLATE pg_catalog."default" NOT NULL,
insee character varying(5) COLLATE pg_catalog."default",
datappro character varying(8) COLLATE pg_catalog."default",
protec character varying(2) COLLATE pg_catalog."default",
demol boolean,
hauteur character varying(15) COLLATE pg_catalog."default",
src_geom character varying(2) COLLATE pg_catalog."default",
src_date integer,
nomplan character varying(254) COLLATE pg_catalog."default",
urlplan character varying(254) COLLATE pg_catalog."default",
nomreg character varying(254) COLLATE pg_catalog."default",
urlreg character varying(254) COLLATE pg_catalog."default",
geom geometry(MultiPolygon,2154),
observ character varying(2000) COLLATE pg_catalog."default",
geom1 geometry(MultiPolygon,2154),
CONSTRAINT geo_sup_ac4_avap_protect_pkey PRIMARY KEY (gid),
CONSTRAINT geo_sup_ac4_avap_protect_protec_fkey FOREIGN KEY (protec)
REFERENCES m_urbanisme_reg.lt_avap_protec (code) MATCH SIMPLE
ON UPDATE NO ACTION
ON DELETE NO ACTION,
CONSTRAINT geo_sup_ac4_avap_protect_srcgeom_fkey FOREIGN KEY (src_geom)
REFERENCES r_objet.lt_src_geom (code) MATCH SIMPLE
ON UPDATE NO ACTION
ON DELETE NO ACTION
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
COMMENT ON TABLE m_urbanisme_reg.geo_sup_ac4_avap_protect
IS 'Table géographique contenant les bâtiments protégés au titre de l''AVAP approuvé par le Conseil Municipal de Compiègne le 6 mars 2020';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_protect.gid
IS 'Identifiant unique';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_protect.insee
IS 'Code insee de la commune';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_protect.datappro
IS 'Date d''approbation de l''AVAP';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_protect.protec
IS 'Niveau de protection des bâtiments';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_protect.demol
IS 'Information si le bâtiment a été démolit (attention info de la ZPPAUP, pas mise à jour par le prestataire de l''AVAP';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_protect.hauteur
IS 'Hauteur du bâtiment';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_protect.src_geom
IS 'Référentiel de saisie utilisé';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_protect.src_date
IS 'Source du Référentiel de saisie utilisé';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_protect.nomplan
IS 'Nom du fichier contenant le plan global';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_protect.urlplan
IS 'URL du fichier contenant le plan global';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_protect.nomreg
IS 'Nom du règlement (titre 2)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_protect.urlreg
IS 'URL du règlement (titre 2)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_protect.geom
IS 'Géométrie des objets';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_protect.observ
IS 'Observations diverses concernant l''objet';
--################################################################# geo_sup_ac4_avap_ptdevue #######################################################
-- Table: m_urbanisme_reg.geo_sup_ac4_avap_ptdevue
-- DROP TABLE m_urbanisme_reg.geo_sup_ac4_avap_ptdevue;
CREATE TABLE m_urbanisme_reg.geo_sup_ac4_avap_ptdevue
(
gid text COLLATE pg_catalog."default" NOT NULL,
insee character varying(5) COLLATE pg_catalog."default",
datappro character varying(8) COLLATE pg_catalog."default",
nomreg character varying(254) COLLATE pg_catalog."default",
urlreg character varying(254) COLLATE pg_catalog."default",
angle integer,
geom geometry(Point,2154),
CONSTRAINT geo_sup_ac4_avap_ptdevue_pkey PRIMARY KEY (gid)
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
COMMENT ON TABLE m_urbanisme_reg.geo_sup_ac4_avap_ptdevue
IS 'Table géographique contenant les points de vue (extrait des données aires de vue reçu du prestataire) de l''AVAP approuvé par le Conseil Municipal de Compiègne le 6 mars 2020';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_ptdevue.gid
IS 'Identifiant interne';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_ptdevue.insee
IS 'Code insee de la commune';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_ptdevue.datappro
IS 'Date d''approbation de l''AVAP';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_ptdevue.nomreg
IS 'Nom du règlement (titre 2)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_ptdevue.urlreg
IS 'URL du règlement (titre 2)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_ptdevue.angle
IS 'Angle de rotation de l''objet';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_ptdevue.geom
IS 'Géométrie de l''objet';
--################################################################# geo_sup_ac4_avap_ptpatrimoine #######################################################
-- Table: m_urbanisme_reg.geo_sup_ac4_avap_ptpatrimoine
-- DROP TABLE m_urbanisme_reg.geo_sup_ac4_avap_ptpatrimoine;
CREATE TABLE m_urbanisme_reg.geo_sup_ac4_avap_ptpatrimoine
(
gid text COLLATE pg_catalog."default" NOT NULL,
insee character varying(5) COLLATE pg_catalog."default",
type character varying(2) COLLATE pg_catalog."default",
libelle character varying(254) COLLATE pg_catalog."default",
nomreg character varying(254) COLLATE pg_catalog."default",
urlreg character varying(254) COLLATE pg_catalog."default",
geom geometry(Point,2154),
observ character varying(2000) COLLATE pg_catalog."default",
CONSTRAINT geo_sup_ac4_avap_ptpatrimoine_pkey PRIMARY KEY (gid),
CONSTRAINT geo_sup_ac4_avap_ptpatrimoine_fkey FOREIGN KEY (type)
REFERENCES m_urbanisme_reg.lt_avap_ptpatri (code) MATCH SIMPLE
ON UPDATE NO ACTION
ON DELETE NO ACTION
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
COMMENT ON TABLE m_urbanisme_reg.geo_sup_ac4_avap_ptpatrimoine
IS 'Table géographique contenant le petit patrimoine identifiés pour l''AVAP approuvé par le Conseil Municipal de Compiègne le 6 mars 2020';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_ptpatrimoine.gid
IS 'Identifiant interne';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_ptpatrimoine.insee
IS 'Code insee de la commune';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_ptpatrimoine.type
IS 'Type de patrimoine (clé étrangère sur la liste de valeurs lt_avap_ptpatri)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_ptpatrimoine.libelle
IS 'Détail des patrimoines pour un type = 11 (multiples ou divers)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_ptpatrimoine.nomreg
IS 'Nom du règlement (titre 2)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_ptpatrimoine.urlreg
IS 'URL du règlement (titre 2)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_ptpatrimoine.geom
IS 'Géométrie des objets';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_ptpatrimoine.observ
IS 'Observations diverses concernant l''''objet';
--################################################################# geo_sup_ac4_avap_secteur #######################################################
-- Table: m_urbanisme_reg.geo_sup_ac4_avap_secteur
-- DROP TABLE m_urbanisme_reg.geo_sup_ac4_avap_secteur;
CREATE TABLE m_urbanisme_reg.geo_sup_ac4_avap_secteur
(
gid text COLLATE pg_catalog."default" NOT NULL,
insee character varying(5) COLLATE pg_catalog."default",
datappro character varying(8) COLLATE pg_catalog."default",
libelle character varying(3) COLLATE pg_catalog."default",
nomplan character varying(254) COLLATE pg_catalog."default",
urlplan character varying(254) COLLATE pg_catalog."default",
nomreg character varying(254) COLLATE pg_catalog."default",
urlreg character varying(254) COLLATE pg_catalog."default",
sup_ha double precision,
geom geometry(MultiPolygon,2154),
CONSTRAINT geo_sup_ac4_avap_secteur_pkey PRIMARY KEY (gid)
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
COMMENT ON TABLE m_urbanisme_reg.geo_sup_ac4_avap_secteur
IS 'Table géographique contenant les secteurs du périmètre de l''AVAP approuvé par le Conseil Municipal de Compiègne le 6 mars 2020';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_secteur.gid
IS 'Identifiant unique';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_secteur.insee
IS 'Code insee de la commune';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_secteur.datappro
IS 'Date d''approbation de l''AVAP';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_secteur.libelle
IS 'Libellé du secteur';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_secteur.nomplan
IS 'Nom du fichier contenant le plan global';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_secteur.urlplan
IS 'URL du fichier contenant le plan global';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_secteur.nomreg
IS 'Nom du règlement (titre 3)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_secteur.urlreg
IS 'URL du règlement (titre 3)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_secteur.sup_ha
IS 'Surface en hectare';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_secteur.geom
IS 'Géométrie des objets';
--################################################################# geo_sup_ac4_avap_urbainpatri #######################################################
-- Table: m_urbanisme_reg.geo_sup_ac4_avap_urbainpatri
-- DROP TABLE m_urbanisme_reg.geo_sup_ac4_avap_urbainpatri;
CREATE TABLE m_urbanisme_reg.geo_sup_ac4_avap_urbainpatri
(
gid text COLLATE pg_catalog."default" NOT NULL,
insee character varying(5) COLLATE pg_catalog."default",
datappro character varying(8) COLLATE pg_catalog."default",
nomreg character varying(254) COLLATE pg_catalog."default",
urlreg character varying(254) COLLATE pg_catalog."default",
sup_ha double precision,
geom geometry(MultiPolygon,2154),
CONSTRAINT geo_sup_ac4_avap_urbainpatri_pkey PRIMARY KEY (gid)
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
COMMENT ON TABLE m_urbanisme_reg.geo_sup_ac4_avap_urbainpatri
IS 'Table géographique contenant l''urbain patrimonial identifiés pour l''AVAP approuvé par le Conseil Municipal de Compiègne le 6 mars 2020';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_urbainpatri.gid
IS 'Identifiant interne';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_urbainpatri.insee
IS 'Code insee de la commune';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_urbainpatri.datappro
IS 'Date d''approbation de l''AVAP';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_urbainpatri.nomreg
IS 'Nom du règlement (titre 2)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_urbainpatri.urlreg
IS 'URL du règlement (titre 2)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_urbainpatri.sup_ha
IS 'Surface en hectare';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_urbainpatri.geom
IS 'Géométrie des objets';
--################################################################# geo_sup_ac4_avap_vestige #######################################################
-- Table: m_urbanisme_reg.geo_sup_ac4_avap_vestige
-- DROP TABLE m_urbanisme_reg.geo_sup_ac4_avap_vestige;
CREATE TABLE m_urbanisme_reg.geo_sup_ac4_avap_vestige
(
gid text COLLATE pg_catalog."default" NOT NULL,
insee character varying(5) COLLATE pg_catalog."default",
nomreg character varying(254) COLLATE pg_catalog."default",
urlreg character varying(254) COLLATE pg_catalog."default",
long_m integer,
geom geometry(MultiLineString,2154),
CONSTRAINT geo_sup_ac4_avap_vestige_pkey PRIMARY KEY (gid)
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
COMMENT ON TABLE m_urbanisme_reg.geo_sup_ac4_avap_vestige
IS 'Table géographique contenant les vestiges et enceintes identifiés pour l''AVAP approuvé par le Conseil Municipal de Compiègne le 6 mars 2020';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_vestige.gid
IS 'Identifiant interne';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_vestige.insee
IS 'Code insee de la commune';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_vestige.nomreg
IS 'Nom du règlement (titre 2)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_vestige.urlreg
IS 'URL du règlement (titre 2)';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_vestige.long_m
IS 'Linéaire en mètre';
COMMENT ON COLUMN m_urbanisme_reg.geo_sup_ac4_avap_vestige.geom
IS 'Géométrie des objets';
--################################################################# geo_sup_ac1_d_avap_l #######################################################
-- Table: m_urbanisme_reg.geo_sup_ac1_d_avap_l
-- DROP TABLE m_urbanisme_reg.geo_sup_ac1_d_avap_l;
CREATE TABLE m_urbanisme_reg.geo_sup_ac1_d_avap_l
(
id integer NOT NULL,
geom geometry(MultiLineString,2154),
CONSTRAINT geo_sup_ac1_d_avap_l_pkey PRIMARY KEY (id)
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
COMMENT ON TABLE m_urbanisme_reg.geo_sup_ac1_d_avap_l
IS 'table servant à représenter les éléments classés ou inscrits au titre des MH de type linéaire dans le flux AVAP';
--################################################################# geo_sup_ac1_d_avap_p #######################################################
-- Table: m_urbanisme_reg.geo_sup_ac1_d_avap_p
-- DROP TABLE m_urbanisme_reg.geo_sup_ac1_d_avap_p;
CREATE TABLE m_urbanisme_reg.geo_sup_ac1_d_avap_p
(
id integer NOT NULL,
geom geometry(MultiPoint,2154),
CONSTRAINT geo_sup_ac1_d_avap_p_pkey PRIMARY KEY (id)
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
COMMENT ON TABLE m_urbanisme_reg.geo_sup_ac1_d_avap_p
IS 'table servant à représenter les éléments classés ou inscrits au titre des MH de type ponctuel dans le flux AVAP';
--################################################################# geo_sup_ac1_d_avap_s #######################################################
-- Table: m_urbanisme_reg.geo_sup_ac1_d_avap_s
-- DROP TABLE m_urbanisme_reg.geo_sup_ac1_d_avap_s;
CREATE TABLE m_urbanisme_reg.geo_sup_ac1_d_avap_s
(
id integer NOT NULL,
type character varying(20) COLLATE pg_catalog."default",
geom geometry(MultiPolygon,2154),
idmedia character varying(10) COLLATE pg_catalog."default",
CONSTRAINT geo_sup_ac1_d_avap_s_pkey PRIMARY KEY (id)
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
COMMENT ON TABLE m_urbanisme_reg.geo_sup_ac1_d_avap_s
IS 'table servant à représenter les éléments classés ou inscrits au titre des MH de type surfacique dans le flux AVAP';
;