-
Notifications
You must be signed in to change notification settings - Fork 1
/
extraction_all_zones.html
10820 lines (10820 loc) · 640 KB
/
extraction_all_zones.html
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
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html>
<head>
<link rel="stylesheet" href="great.css" type="text/css">
<title>Extraction terms</title>
</head>
<BODY>
<H1 style="text-align:center;text-decoration: underline;margin-top:40px"> THESAURUS (500 TERMES) </H1>
<UL style="margin-top:100px">
<DIV>
<LI id="0"><P style="font-size: 100%">
<B><A href="#">construction</A> :: </B>[ 1219221 contexts, frequency rank : 1 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>secteur, bâtiment, zone, cas, règlement, voie, condition, terrain, implantation, aménagement, hauteur, disposition, espace, façade, installation, stationnement, ensemble, sol, urbanisme, activité, eau, élément.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>bâtiment, mazet, habitation, hausse, UHA, légalement, régularisation, nouveau, surélévation, extension.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>implantation, déconstruction, installation, existant, extension, bâtiment, fonctionnement, reconstruction, habitation, emprise.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>construction installation, implantation construction, construction rapport, construction usage, hauteur construction.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>construction existant, maximal construction.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>construction doivent.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="1"><P style="font-size: 100%">
<B><A href="#">voie</A> :: </B>[ 417130 contexts, frequency rank : 2 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>implantation, aménagement, terrain, cas, construction, accès, condition, hauteur, règlement, bâtiment, zone, secteur, extension, disposition, espace, mètre, stationnement, façade, emprise, projet, urbanisme, habitation, ensemble, limite, sol, opération, installation, alignement, équipement, voirie.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>route, automobile, voirie, publique, carrossable, circulation, priver, chemin, accès, chausser.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>publique, priver, circulation, automobile, accès, alignement, voirie, desserte, dessert, automobiliste.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>alignement voie, accès voie, voie emprise, rapport voie.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>voie publique.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>voie ouvertes.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="2"><P style="font-size: 100%">
<B><A href="#">sol</A> :: </B>[ 414072 contexts, frequency rank : 3 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>terrain, voie, condition, règlement, cas, urbanisme, hauteur, zone, construction, bâtiment, mètre, eau, secteur.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>NAG, AUS, AUP, occupation, prochain, NAZ, rappel, AUL, AUF, AUJ.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>occupation, section, utilisation, inoccupation, sous-section, sous-sol, exhaussement, affouillement, interdit, néol.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>occupation sol, emprise sol, sol construction, exhaussement sol, utilisation sol.</P></LI>
<LI><P style="font-size: 100%"><B>ADJ :: </B></P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>sol interdites, sol soumises.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="3"><P style="font-size: 100%">
<B><A href="#">eau</A> :: </B>[ 400871 contexts, frequency rank : 4 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>terrain, réseau, règlement, zone, cas, sol, construction, secteur.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>réseau, gravitaire, recueil, afflux, via, engorgement, carburer, rejet, drainage, inversement.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>pluvial, user, réseau, évacuation, assainissement, raccorder, potable, domestique, alimentation, rejet.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>assainissement eau, réseau eau, alimentation eau, cour eau, évacuation eau, distribution eau, écoulement eau.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>eau potable, eau pluvial.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>eau usées.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="4"><P style="font-size: 100%">
<B><A href="#">terrain</A> :: </B>[ 341570 contexts, frequency rank : 5 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>voie, condition, zone, aménagement, implantation, espace, construction, stationnement, cas, secteur, règlement, habitation, sol, bâtiment, extension, installation, accès, hauteur, projet, ensemble, urbanisme, emprise, disposition, opération, eau, équipement, mètre, activité, règle, parcelle.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>parcelle, parceller, sommairement, tènement, propriété, horizontalité, foncier, partiellement, lot, survenir.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>constructible, superficie, assiette, voirie, projeter, opération, priver, construction, publique, lorsque.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>terrain camping, terrain assiette, desserte terrain.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>minimal terrain, caractéristique terrain, terrain naturel.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>terrain doit, terrain doivent.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="5"><P style="font-size: 100%">
<B><A href="#">réseau</A> :: </B>[ 306185 contexts, frequency rank : 6 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>voirie, équipement, assainissement, eau, installation, opération, ouvrage, desserte, travail, réalisation, dispositif.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>électricité, eau, radiodiffusion, télécommunication, assainissement, télédiffusion, user, seau, numérique, attente.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>assainissement, raccordement, électricité, eau, raccorder, distribution, user, branchement, alimentation, potable.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>réseau assainissement, réseau eau, desserte réseau, absence réseau.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>pluvial réseau, réseau public, réseau collectif.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>raccordée réseau.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="6"><P style="font-size: 100%">
<B><A href="#">bâtiment</A> :: </B>[ 305973 contexts, frequency rank : 7 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>construction, secteur, cas, façade, zone, règlement, voie, condition, extension, aménagement, habitation, implantation, terrain, espace, hauteur, ensemble, élément, disposition, urbanisme, stationnement, installation, projet, sol, activité, matériau, aspect, mur, commune, mètre.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>construction, dépendance, volume, surélévation, extension, bâtisse, bâtir, accoler, identique, rénovation.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>extension, existant, construction, préexistant, agrandissement, reconstruction, surélévation, prolongement, exister, préexister.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>point bâtiment, bâtiment point, bâtiment usage.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>bâtiment principal, bâtiment agricole, bâtiment existant, bâtiment annexe, extérieur bâtiment.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>bâtiment existant, bâtiment ouvrages.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="7"><P style="font-size: 100%">
<B><A href="#">installation</A> :: </B>[ 288697 contexts, frequency rank : 8 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>condition, aménagement, équipement, stationnement, habitation, extension, activité, implantation, accès, occupation, terrain, travail, ouvrage, règlement, disposition, cas, opération, projet, espace, emprise, construction, zone, bâtiment, secteur, voie, réalisation, logement, règle, réseau, urbanisme.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>alphabétique, fonctionnement, mazet, activité, équipement, strictement, usage, réseau, collectif, exploitation.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>nécessaire, fonctionnement, construction, collectif, nécessairement, service, public, équipement, condition, conditionnement.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>installation aménagement, construction installation, travail installation, installation travail.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>installation nouveau, installation technique, installation nécessaire.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>installation doit, installation classées.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="8"><P style="font-size: 100%">
<B><A href="#">hauteur</A> :: </B>[ 272394 contexts, frequency rank : 9 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>implantation, cas, mètre, voie, emprise, stationnement, aspect, disposition, façade, construction, condition, règlement, extension, clôture, bâtiment, terrain, secteur, espace, aménagement, zone, habitation, ensemble, accès, mur, sol, règle, limite, élément, alignement.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>faîtage, mètre, sablière, acrotère, être, absoudre, faîtier, profondeur, nacelle, métrer.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>maximal, excéder, dépasser, maximum, absoudre, faîtage, mètre, maxima, mesurer, acrotère.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>hauteur construction, moitié hauteur, construction hauteur.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>hauteur supérieur, hauteur total, hauteur maximum, hauteur maximal.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>réglementé hauteur.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="9"><P style="font-size: 100%">
<B><A href="#">urbanisme</A> :: </B>[ 272370 contexts, frequency rank : 10 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>règlement, aménagement, disposition, implantation, zone, projet, voie, réglement, habitation, terrain, stationnement, cas, extension, bâtiment, condition, sol, ensemble, environnement, règle, travail, modification, opération, accès, installation, construction, secteur, titre, commune, activité, espace.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>pénal, art, vertu, patrimoine, ape, minier, dudit, civil, SIVU, EME.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>plan, règlement, commune, commun, codification, local, réglement, titre, code, application.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>urbanisme art, autorisation urbanisme, urbanisme règlement, règlement urbanisme, urbanisme réglement, urbanisme disposition, urbanisme pièce.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>local urbanisme, urbanisme commun.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>code urbanisme.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="10"><P style="font-size: 100%">
<B><A href="#">zone</A> :: </B>[ 259082 contexts, frequency rank : 11 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>secteur, construction, règlement, bâtiment, aménagement, terrain, cas, espace, disposition, voie, implantation, condition, extension, urbanisme, stationnement, ensemble, hauteur, installation, activité, sol, projet, eau, section, commune, façade, site, occupation.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>zoner, secteur, urbaniser, indice, NZH, hameau, centralité, ahi, chapitre, appellation.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>zoner, urbaniser, chapitre, secteur, vocation, urbanisation, équipée, applicable, indice, urbanisables.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%"><B>NOUNS :: </B></P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>zone agricole, applicable zone, zone naturel, zone urbain.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>zone correspond, zone zone.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="11"><P style="font-size: 100%">
<B><A href="#">disposition</A> :: </B>[ 256093 contexts, frequency rank : 12 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>règlement, implantation, cas, aménagement, condition, zone, règle, stationnement, voie, hauteur, extension, construction, urbanisme, secteur, espace, projet, installation, accès, terrain, commune, bâtiment, habitation, ensemble, modification, équipement, emprise, aspect, section, façade, réglement.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>règle, prescription, régler, régie, principe, impôt, norme, réglementation, stipulation, demeurant.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>prédisposition, règlement, règle, présent, applique, réglementation, applicable, application, réglementaire, réglementairement.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>titre disposition.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>disposition particulier, disposition réglementaire, disposition présent, disposition général, disposition applicable.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>disposition code, chapitre disposition, disposition appliquent.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="12"><P style="font-size: 100%">
<B><A href="#">condition</A> :: </B>[ 244359 contexts, frequency rank : 13 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>aménagement, installation, cas, implantation, extension, disposition, terrain, règlement, voie, habitation, stationnement, construction, secteur, projet, bâtiment, espace, accès, activité, zone, hauteur, emprise, équipement, travail, règle, ensemble, sol, urbanisme, opération, modification, occupation.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>réserve, règle, utilisation, ci-après, mesure, serf, prescription, gardiennage, norme, suggestion.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>conditionnement, utilisation, admettre, inoccupation, occupation, installation, réserve, particulier, destination, conditionner.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>section condition, condition occupation, condition desserte.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>condition particulier.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>privées condition, soumises condition, condition répondant.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="13"><P style="font-size: 100%">
<B><A href="#">règlement</A> :: </B>[ 236785 contexts, frequency rank : 14 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>construction, zone, disposition, secteur, urbanisme, cas, aménagement, implantation, condition, bâtiment, voie, terrain, stationnement, hauteur, ensemble, extension, espace, projet, installation, façade, habitation, réglement, sol, commune, règle, accès, mètre, activité, modification, eau.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>réglement, drôme, gig, métaphore, réglé, RGLT, ferrière, temple, VIV, révision.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>réglement, plaire, disposition, commun, urbanisme, modification, codification, approuver, plan, commune.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>règlement urbanisme, urbanisme règlement.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>commun règlement, présent règlement, règlement littéral, règlement graphique.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>règlement plu, plu règlement, règlement écrit, règlement zone.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="14"><P style="font-size: 100%">
<B><A href="#">stationnement</A> :: </B>[ 228312 contexts, frequency rank : 15 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>implantation, installation, aménagement, accès, condition, hauteur, terrain, espace, disposition, habitation, voie, cas, règlement, extension, emprise, clôture, équipement, projet, opération, aire, zone, urbanisme, mètre, bâtiment, construction, aspect, ensemble, modification, secteur, activité.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>vélomoteur, motocyclette, autocar, dégagement, bicyclette, banaliser, jeu, visiteur, motoriser, manœuvrer.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>aire, véhiculer, besoin, stationner, dehors, véhicule, place, emplacement, placement, obligation.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>stationnement logement, place stationnement, stationnement caravane, stationnement véhicule, aire stationnement, stationnement stationnement.</P></LI>
<LI><P style="font-size: 100%"><B>ADJ :: </B></P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>stationnement surface, stationnement véhicules, place stationnement, stationnement doivent.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="15"><P style="font-size: 100%">
<B><A href="#">occupation</A> :: </B>[ 227122 contexts, frequency rank : 16 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>installation, section, implantation, accès, condition, équipement, emprise, activité, zone, travail, secteur, desserte, habitat.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>inoccupation, rappel, pondération, expressément, biotope, modérateur, sol, utilisation, AUF, polyvalence.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>inoccupation, utilisation, section, sol, sous-section, condition, sectionnement, sectorisation, soumettre, rappel.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>occupation utilisation, occupation sol, coefficient occupation, nature occupation, condition occupation, sol occupation.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>maximal occupation.</P></LI>
<LI><P style="font-size: 100%"><B>VERBS :: </B></P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="16"><P style="font-size: 100%">
<B><A href="#">implantation</A> :: </B>[ 221175 contexts, frequency rank : 17 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>emprise, extension, hauteur, aménagement, accès, disposition, stationnement, voie, condition, cas, règlement, terrain, espace, construction, zone, installation, projet, règle, secteur, bâtiment, habitation, urbanisme, équipement, mètre, aspect, limite, ensemble, occupation, modification, opération.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>implanter, emprise, recul, rapport, mazet, contiguïté, retraire, prospect, limite, rapprochement.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>rapport, implanter, construction, emprise, alignement, retraire, recul, limite, séparatif, propriété.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>mètre implantation, règle implantation, implantation rapport, implantation construction, objet implantation.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>séparatif implantation, implantation différent, publique implantation.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>réglementé implantation, zone implantation.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="17"><P style="font-size: 100%">
<B><A href="#">aménagement</A> :: </B>[ 220741 contexts, frequency rank : 18 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>condition, implantation, installation, extension, équipement, projet, voie, règlement, disposition, zone, stationnement, terrain, opération, espace, habitation, accès, activité, secteur, ensemble, cas, urbanisme, construction, travail, bâtiment, réalisation, commune, modification, emprise, règle, hauteur.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>poursuite, déménagement, viabilisation, confortation, coudre, réaménagement, démarrage, ménagement, efforcer, remembrement.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>ré-aménagement, déménagement, réaménagement, ménagement, réalisation, opération, viabilisation, programmation, conditionnement, recréation.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>opération aménagement, aménagement ensemble, orientation aménagement, construction aménagement, installation aménagement.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>aménagement nécessaire, pluvial aménagement.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>aménagement réalisés.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="18"><P style="font-size: 100%">
<B><A href="#">cas</A> :: </B>[ 217722 contexts, frequency rank : 19 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>construction, condition, règlement, bâtiment, disposition, implantation, voie, secteur, zone, hauteur, aménagement, terrain, stationnement, extension, façade, espace, projet, installation, urbanisme, mètre, habitation, ensemble, sol, élément, accès, règle, équipement, opération, travail, eau.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>lorsque, dérogation, lorsqu, solution, rang, imposé, cependant, raisonnablement, toutefois, indication.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>imposé, toutefois, pouvoir, lorsque, impossible, impossibilité, sauf, exister, dûment, exceptionnellement.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>cas construction, cas extension, cas réseau, réseau cas, cas impossibilité.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>cas suivant.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>cas échéant.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="19"><P style="font-size: 100%">
<B><A href="#">secteur</A> :: </B>[ 216969 contexts, frequency rank : 20 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>construction, zone, règlement, bâtiment, cas, condition, aménagement, voie, terrain, espace, implantation, disposition, hauteur, installation, stationnement, urbanisme, activité, ensemble, sol, section, façade, eau, site, occupation, commune.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>zone, zoner, UCA, UDB, UBA, UBB, NCA, UBR, hameau, UBC.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>zone, sous-secteur, UCC, UCA, UXA, zoner, UBI, UBR, NDA, vocation.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>secteur construction, secteur commune, secteur hauteur, secteur secteur.</P></LI>
<LI><P style="font-size: 100%"><B>ADJ :: </B></P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>zone secteur, secteur concernés, secteur soumis, comprend secteur.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="20"><P style="font-size: 100%">
<B><A href="#">accès</A> :: </B>[ 204075 contexts, frequency rank : 21 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>implantation, emprise, voie, stationnement, aménagement, installation, condition, voirie, desserte, équipement, extension, terrain, opération, habitation, espace, disposition, occupation, mètre, règle, logement, hauteur, cas, modification, limite, réalisation, projet, activité, règlement, urbanisme, ensemble.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>déboucher, bouclage, circulation, carrossable, accéder, trafic, priver, cycliste, moindre, voie.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>voirie, desserte, priver, voie, circulation, desservir, moindre, dessert, publique, enclavé.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>accès voie, sol accès, accès voirie, voirie accès, accès configuration.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>publique accès.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>privées accès, accès doivent, avoir accès.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="21"><P style="font-size: 100%">
<B><A href="#">rapport</A> :: </B>[ 203660 contexts, frequency rank : 22 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>mètre, règle, limite, minimum, niveau, alignement, recul, volume.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>emprise, polygone, far, néant, mini, implantation, implanter, perpendiculairement, limite, min.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>implantation, emprise, implanter, limite, séparatif, retrait, recul, distancer, alignement, retraire.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>minimum rapport, implantation rapport, rapport alignement, construction rapport, mètre rapport, rapport terrain, rapport voie, rapport limite.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>rapport autre.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>rapport axe.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="22"><P style="font-size: 100%">
<B><A href="#">mètre</A> :: </B>[ 202909 contexts, frequency rank : 23 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>hauteur, minimum, voie, implantation, emprise, limite, cas, stationnement, habitation, accès, terrain, alignement, règlement, rapport, règle, façade, sol, niveau, bâtiment, mur.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>métrer, profondeur, être, hauteur, retraire, distance, chausser, rang, moitié, limite.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>limite, hauteur, égal, minimum, distance, inférieur, excéder, séparatif, implanter, moins.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>mètre égout, minimum mètre, mètre rapport, mètre hauteur, mètre minimum.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>égal mètre, inférieur mètre, minimal mètre.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>excéder mètre.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="23"><P style="font-size: 100%">
<B><A href="#">limite</A> :: </B>[ 193120 contexts, frequency rank : 24 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>emprise, alignement, extension, mètre, implantation, voie, habitation, règle, accès, niveau, hauteur, minimum, clôture, recul, parcelle, surface, rapport, mur, modification, ouvrage, logement, propriété, voirie.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>limiter, alignement, retraire, mètre, retrait, distance, librement, distancer, jouxter, contiguïté.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>séparatif, distancer, implanter, rapport, jouxter, retrait, distance, retraire, mètre, limiter.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>rapport limite, point limite, limite emprise.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>proche limite, limite séparatif, limite parcellaire.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>implantées limite.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="24"><P style="font-size: 100%">
<B><A href="#">utilisation</A> :: </B>[ 178324 contexts, frequency rank : 25 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>couverture, usage, couleur, type, traitement, emploi.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>mode, efficient, expressément, interdit, type, occupation, précaire, rappel, coefficient, condition.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>occupation, inoccupation, condition, section, interdit, sol, soumettre, sous-section, sectorisation, mentionner.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>utilisation matériau, utilisation énergie, occupation utilisation, utilisation engin, circulation utilisation, utilisation sol.</P></LI>
<LI><P style="font-size: 100%"><B>ADJ :: </B></P></LI>
<LI><P style="font-size: 100%"><B>VERBS :: </B></P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="25"><P style="font-size: 100%">
<B><A href="#">espace</A> :: </B>[ 174413 contexts, frequency rank : 26 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>terrain, zone, implantation, aménagement, stationnement, condition, voie, secteur, cas, disposition, bâtiment, extension, emprise, construction, règlement, ensemble, accès, équipement, hauteur, installation, projet, habitation, opération, activité, élément, section, aire, commune, site, urbanisme.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>espacer, domaine, aire, poche, air, carmin, plateau, kaki, colline, écran.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>espacer, vert, libre, plantation, espacement, aire, planter, planté, boisé, jeu.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>plantation espace, réalisation espace.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>espace boisé, espace libre, espace naturel, espace public, espace vert.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>espace boises.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="26"><P style="font-size: 100%">
<B><A href="#">emprise</A> :: </B>[ 173240 contexts, frequency rank : 27 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>implantation, accès, extension, hauteur, limite, condition, voie, stationnement, espace, mètre, aménagement, terrain, alignement, habitation, règle, voirie, desserte, logement, installation, disposition, minimum, opération, équipement, modification, occupation, recul, projet, section, superficie, réalisation.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>rapport, mètre, implantation, alignement, propriété, hauteur, métrer, sableux, néant, réhydratation.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>rapport, implantation, réglementer, construction, propriété, implanter, superficie, limiter, emprisonnement, distance.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>sol emprise, emprise sol, emprise voie, voie emprise.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>faible emprise, emprise publique.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>réglementé emprise, limite emprise.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="27"><P style="font-size: 100%">
<B><A href="#">usage</A> :: </B>[ 166707 contexts, frequency rank : 28 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>équipement, logement, destination, habitat, exploitation, exception, service, aire, nature, fonction, utilisation, établissement.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>léger, destination, groupe, destiner, réaffecter, excrétas, vocation, destinée, abriter, groupement.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>habitation, activité, artisanal, entrepôt, industriel, bureau, artisanat, destination, exploitation, commercial.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>bâtiment usage, installation usage, construction usage, usage activité, usage habitation.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>usage agricole.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>adaptées usage.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="28"><P style="font-size: 100%">
<B><A href="#">habitation</A> :: </B>[ 158754 contexts, frequency rank : 29 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>extension, logement, installation, condition, aménagement, équipement, stationnement, activité, terrain, bâtiment, implantation, ensemble, projet, voie, habitat, accès, urbanisme, opération, emprise, cas, limite, règlement, disposition, règle, hauteur, mètre, façade, travail, espace, minimum.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>habitat, bureau, construction, artisanat, professionnel, logement, entrepôt, dépendance, commerce, familial.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>usage, activité, construction, logement, relogement, exploitation, destination, extension, hébergement, habitat.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>bâtiment habitation, destination habitation, construction habitation, habitation activité, groupe habitation, usage habitation.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>habitation existant, annexe habitation, habitation léger.</P></LI>
<LI><P style="font-size: 100%"><B>VERBS :: </B></P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="29"><P style="font-size: 100%">
<B><A href="#">matériau</A> :: </B>[ 154591 contexts, frequency rank : 30 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>façade, aspect, toiture, élément, clôture, couleur, mur, bâtiment, ouverture, couverture, volume, pente.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>coloration, chaumer, bardage, tôle, texturer, polychromie, inachever, papier, bardeau, rondin.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>employé, emploi, employer, couleur, couverture, traditionnel, enduire, briller, aspect, bardage.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>matériau aspect, utilisation matériau, matériau couverture, emploi matériau, imitation matériau, aspect matériau, matériau couleur.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>autre matériau.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>matériau utilisés, matériau destinés.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="30"><P style="font-size: 100%">
<B><A href="#">extension</A> :: </B>[ 148057 contexts, frequency rank : 31 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>implantation, aménagement, habitation, condition, emprise, installation, équipement, voie, projet, bâtiment, disposition, cas, hauteur, terrain, stationnement, zone, modification, accès, règlement, espace, ensemble, règle, limite, opération, activité, travail, clôture, urbanisme, création, réalisation.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>agrandissement, réhabilitation, rénovation, réfection, surélévation, transformation, restauration, réaffectation, reconstruction, existant.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>existant, bâtiment, agrandissement, surélévation, réhabilitation, reconstruction, réfection, construction, rénovation, préexistant.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>extension construction, extension bâtiment, cas extension, aménagement extension.</P></LI>
<LI><P style="font-size: 100%"><B>ADJ :: </B></P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>extension mesurée.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="31"><P style="font-size: 100%">
<B><A href="#">façade</A> :: </B>[ 145755 contexts, frequency rank : 32 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>bâtiment, hauteur, mur, matériau, voie, cas, élément, construction, toiture, clôture, ensemble, ouverture, règlement, habitation, aspect, disposition, volume, mètre, zone, couleur, secteur.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>pignon, verticalité, travée, aligner, soubassement, dito, linteau, fenêtre, épiderme, ampère.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>pigner, pignon, toiturer, soigner, harmonie, maçonnerie, dissymétrie, aveugle, aveugler, verticalité.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>façade construction, hauteur façade, façade bâtiment, couleur façade.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>façade principal.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>façade doivent, façade rue.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="32"><P style="font-size: 100%">
<B><A href="#">activité</A> :: </B>[ 145320 contexts, frequency rank : 33 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>aménagement, équipement, installation, habitation, condition, extension, logement, zone, opération, espace, stationnement, accès, terrain, règlement, occupation, projet, secteur, exploitation, construction, bâtiment, urbanisme, travail, site, habitat.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>exploitation, entrepôt, artisanal, artisanat, vocation, élevage, artisan, viticole, commerce, dancing.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>artisanal, agricole, exploitation, vocation, économique, commercialisation, artisan, industriel, usage, habitation.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>usage activité, habitation activité.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>activité économique, activité artisanal, activité industriel, nécessaire activité, activité agricole.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>activité doit.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="33"><P style="font-size: 100%">
<B><A href="#">assainissement</A> :: </B>[ 145019 contexts, frequency rank : 34 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>réseau, desserte, voirie, vigueur, superficie, autorisation, service, dispositif, établissement.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>adduction, assainir, évacuation, limoger, réseau, collecteur, rejet, rattachement, raccordement, collecter.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>assainir, réseau, user, raccorder, raccordement, réglementation, autonome, vigueur, alimentation, collectif.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>réseau assainissement, assainissement eau, dispositif assainissement.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>potable assainissement, assainissement collectif, collectif assainissement, assainissement autonome, assainissement individuel, public assainissement.</P></LI>
<LI><P style="font-size: 100%"><B>VERBS :: </B></P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="34"><P style="font-size: 100%">
<B><A href="#">service</A> :: </B>[ 143613 contexts, frequency rank : 35 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>équipement, logement, établissement, usage, bureau, assainissement.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>équipement, coopération, administration, vice, intercommunal, ouvrager, organe, organisme, confier, profession.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>fonctionnement, nécessaire, collectif, public, équipement, intérêt, installation, ouvrage, vice, nécessairement.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>fonctionnement service, bureau service, service équipement, service intérêt.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>service compétent, service public, nécessaire service.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>commerces service.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="35"><P style="font-size: 100%">
<B><A href="#">intérêt</A> :: </B>[ 135962 contexts, frequency rank : 36 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>patrimoine, préservation, développement.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>équipement, fonctionnement, composteur, impôt, allure, socioculturel, semi, envoyer, ordre, anneau.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>service, fonctionnement, équipement, nécessaire, ouvrager, ouvrage, général, ouvragé, public, collectif.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>intérêt lieu, équipement intérêt, intérêt sécurité, caractère intérêt.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>intérêt architectural, intérêt public, intérêt collectif, public intérêt, intérêt général.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>limité intérêt.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="36"><P style="font-size: 100%">
<B><A href="#">aspect</A> :: </B>[ 131648 contexts, frequency rank : 37 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>hauteur, implantation, clôture, matériau, stationnement, façade, disposition, règle, toiture, couleur, mur, élément, bâtiment, ouverture, couverture, pente, volume.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>parement, style, menuiserie, coulis, duire, isolant, amenage, volumétrie, isolation, boiserie.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>extérieur, aspecter, leur, architecturer, généralité, avoisinant, abord, matériau, harmonier, volumétrie.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>matériau aspect, unité aspect, dimension aspect, construction aspect, aspect matériau, aspect construction.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>aspect général, aspect extérieur, aspect similaire.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>présenter aspect.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="37"><P style="font-size: 100%">
<B><A href="#">nature</A> :: </B>[ 121059 contexts, frequency rank : 38 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>destination, environnement, fonction, exploitation, usage, qualité.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>stabilité, susceptible, atypique, interdit, TURE, mode, proportionner, incertitude, inoccupation, condition.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>utilisation, caractère, conservation, situation, caractérisation, configuration, incompatible, mode, occupation, inoccupation.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>nature sol, section nature, nature occupation, nature importance, fonction nature, nature intensité.</P></LI>
<LI><P style="font-size: 100%"><B>ADJ :: </B></P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>modifier nature, nature porter.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="38"><P style="font-size: 100%">
<B><A href="#">travail</A> :: </B>[ 120636 contexts, frequency rank : 39 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>aménagement, projet, condition, installation, opération, extension, équipement, ouvrage, habitation, réalisation, règle, urbanisme, modification, cas, ensemble, activité, logement, environnement, occupation, réseau, réglement.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>spécialiste, remaniement, ossement, monnayer, envoi, consolidation, dispenser, irréversible, poterie, rejoindre.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>excavation, affouillement, déclaration, exécution, exhaussement, consolidation, travailleur, travailler, préparation, démolition.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>travail objet, travail construction, ouvrage travail, construction travail, travail effet, travail installation, installation travail.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>travail divers.</P></LI>
<LI><P style="font-size: 100%"><B>VERBS :: </B></P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="39"><P style="font-size: 100%">
<B><A href="#">opération</A> :: </B>[ 114404 contexts, frequency rank : 40 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>projet, aménagement, logement, extension, règle, travail, réalisation, accès, stationnement, équipement, habitation, implantation, installation, terrain, condition, voirie, voie, emprise, activité, modification, espace, ensemble, minimum, urbanisme, réseau, cas, desserte, plantation, site.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>projet, programme, programmer, lot, cohérent, prévoyant, lotissement, concerter, aménageur, dimensionner.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>opérationnel, aménagement, lotissement, ré-aménagement, réalisation, déménagement, viabilisation, projet, opérateur, programmer.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>opération ensemble, opération terrain, opération aménagement.</P></LI>
<LI><P style="font-size: 100%"><B>ADJ :: </B></P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>supportent opération, adaptés opération, opération aménagés.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="40"><P style="font-size: 100%">
<B><A href="#">équipement</A> :: </B>[ 113712 contexts, frequency rank : 41 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>installation, aménagement, extension, activité, habitation, accès, condition, implantation, logement, stationnement, opération, espace, travail, ouvrage, disposition, projet, terrain, occupation, voie, réseau, emprise, service, règle, réalisation, ensemble, usage, cas, habitat, aire.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>service, intérêt, ouvrage, mouillage, fonctionnement, soc, éducatif, scolaire, ouvrager, transformateur.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>fonctionnement, service, nécessaire, infrastructure, collectif, intérêt, installation, public, éducation, sectionnement.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>équipement infrastructure, installation équipement, réalisation équipement, équipement intérêt.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>équipement technique, équipement collectif, équipement public, équipement nécessaire, nécessaire équipement.</P></LI>
<LI><P style="font-size: 100%"><B>VERBS :: </B></P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="41"><P style="font-size: 100%">
<B><A href="#">réserve</A> :: </B>[ 111529 contexts, frequency rank : 42 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>mesure, vigueur, terme.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>serf, condition, plafond, forme, pression, responsabilité, intitulé, sablière, seing, caver.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>sous, condition, admettre, autoriser, réservation, conditionnement, respect, justification, compromettre, reconditionnement.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>réserve accès, réserve disposition, réserve respect, réserve observation, réserve prescription.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>réserve bon.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>réserve respecter.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="42"><P style="font-size: 100%">
<B><A href="#">règle</A> :: </B>[ 108146 contexts, frequency rank : 43 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>disposition, implantation, projet, extension, opération, condition, emprise, aménagement, habitation, modification, limite, accès, prescription, hauteur, urbanisme, travail, équipement, règlement, cas, installation, terrain, aspect, ensemble, clôture, rapport, application, mètre, minimum.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>disposition, régler, prescription, principe, norme, régie, ratio, normer, paragraphe, réglementation.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>régler, disposition, paragraphe, présent, appliquer, applique, excepter, prospect, énoncer, appliqué.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>règle implantation.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>règle particulier, règle général.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>règle applique, règle édictées, respecter règle, respectant règle, fixé règle, règle appliquent.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="43"><P style="font-size: 100%">
<B><A href="#">ensemble</A> :: </B>[ 99963 contexts, frequency rank : 44 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>aménagement, habitation, règlement, extension, bâtiment, projet, voie, espace, terrain, implantation, façade, zone, condition, cas, disposition, élément, hauteur, urbanisme, stationnement, opération, construction, site, accès, règle, équipement, clôture, commune, secteur, travail.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>global, totalité, reste, grouper, coup, interne, sembler, consistance, concerter, anticipation.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>cohérent, opération, opérationnel, globalité, projet, composition, programmation, concerter, concomitamment, programmer.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>ensemble construction, aménagement ensemble, opération ensemble, ensemble territoire, ensemble zone.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>ensemble immeuble, immeuble ensemble.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>ensemble zone, ensemble bâti.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="44"><P style="font-size: 100%">
<B><A href="#">projet</A> :: </B>[ 99382 contexts, frequency rank : 45 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>aménagement, opération, condition, implantation, projet, extension, travail, règle, habitation, urbanisme, voie, cas, ensemble, disposition, règlement, terrain, stationnement, modification, installation, réalisation, environnement, équipement, espace, site, zone, accès, bâtiment, commune, emprise, activité.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>opération, programme, conception, programmer, argumenter, vocabulaire, démarche, opportunité, démarcher, créancier.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>opération, projeter, globalité, déménagement, proposition, aménagement, résolument, ration, ré-aménagement, imposition.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>assiette projet, réalisation projet, projet construction, projet aménagement.</P></LI>
<LI><P style="font-size: 100%">
<B>ADJ :: </B>projet architectural.</P></LI>
<LI><P style="font-size: 100%">
<B>VERBS :: </B>projet devra, projet doit, projet peut.</P></LI>
</UL>
</DIV>
</DIV>
<DIV>
<LI id="45"><P style="font-size: 100%">
<B><A href="#">alignement</A> :: </B>[ 92946 contexts, frequency rank : 46 ]</P></LI>
<DIV style="width: 600px; padding-top:10px; padding-bottom:10px;border: 3px solid #A0A0A0;background: #FFFFFF;">
<B style="text-decoration: underline;padding-left:15px;">RELATED WORDS</B><UL>
<LI><P style="font-size: 100%">
<B>JACCARD :: </B>limite, emprise, voie, recul, mètre, hauteur, minimum, clôture, plantation, mur, rapport, parcelle, niveau, voirie, ouverture.</P></LI>
<LI><P style="font-size: 100%">
<B>WORD2VEC :: </B>retraire, retrait, recul, axer, bordure, mitoyenneté, élargir, limite, axe, bordurer.</P></LI>
<LI><P style="font-size: 100%">
<B>FASTTEXT :: </B>retrait, retraire, recul, implanter, implantation, rapport, limite, élargir, voie, reculer.</P></LI>
</UL>
<B style="text-decoration: underline;padding-left:15px;">EXPRESSIONS</B><UL>
<LI><P style="font-size: 100%">
<B>NOUNS :: </B>alignement voie, mètre alignement, rapport alignement.</P></LI>
<LI><P style="font-size: 100%">