forked from Geonovum/brt-next-cv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvv-bd-brtnext-20230526.html
More file actions
5147 lines (5053 loc) · 168 KB
/
Copy pathvv-bd-brtnext-20230526.html
File metadata and controls
5147 lines (5053 loc) · 168 KB
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
<!DOCTYPE html><html lang="nl"><head><meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"><meta charset="utf-8"><meta name="generator" content="ReSpec 24.5.2"><style>/* --- ISSUES/NOTES --- */
.issue-label {
text-transform: initial;
}
.warning > p:first-child { margin-top: 0 }
.warning {
padding: .5em;
border-left-width: .5em;
border-left-style: solid;
}
span.warning { padding: .1em .5em .15em; }
.issue.closed span.issue-number {
text-decoration: line-through;
}
.warning {
border-color: #f11;
border-width: .2em;
border-style: solid;
background: #fbe9e9;
}
.warning-title:before{
content: "⚠"; /*U+26A0 WARNING SIGN*/
font-size: 3em;
float: left;
height: 100%;
padding-right: .3em;
vertical-align: top;
margin-top: -0.5em;
}
li.task-list-item {
list-style: none;
}
input.task-list-item-checkbox {
margin: 0 0.35em 0.25em -1.6em;
vertical-align: middle;
}
.issue a.respec-gh-label {
padding: 5px;
margin: 0 2px 0 2px;
font-size: 10px;
text-transform: none;
text-decoration: none;
font-weight: bold;
border-radius: 4px;
position: relative;
bottom: 2px;
border: none;
}
.issue a.respec-label-dark {
color: #fff;
background-color: #000;
}
.issue a.respec-label-light {
color: #000;
background-color: #fff;
}
</style>
<meta content="text/html; charset=utf-8" http-equiv="content-type">
<title>Wijzigingsvoorstel BRT.Next</title>
<link rel="stylesheet" type="text/css" href="./media/style.css">
<link rel="shortcut icon" type="image/x-icon" href="https://tools.geostandaarden.nl/respec/style/logos/Geonovum.ico">
<style id="respec-mainstyle">/*****************************************************************
* ReSpec 3 CSS
* Robin Berjon - http://berjon.com/
*****************************************************************/
/* Override code highlighter background */
.hljs {
background: transparent !important;
}
/* --- INLINES --- */
h1 abbr,
h2 abbr,
h3 abbr,
h4 abbr,
h5 abbr,
h6 abbr,
a abbr {
border: none;
}
dfn {
font-weight: bold;
}
a.internalDFN {
color: inherit;
border-bottom: 1px solid #99c;
text-decoration: none;
}
a.externalDFN {
color: inherit;
border-bottom: 1px dotted #ccc;
text-decoration: none;
}
a.bibref {
text-decoration: none;
}
#references :target {
background: #eaf3ff;
}
cite .bibref {
font-style: normal;
}
code {
color: #c83500;
}
th code {
color: inherit;
}
/* --- TOC --- */
.toc a,
.tof a {
text-decoration: none;
}
a .secno,
a .figno {
color: #000;
}
ul.tof,
ol.tof {
list-style: none outside none;
}
.caption {
margin-top: 0.5em;
font-style: italic;
}
/* --- TABLE --- */
table.simple {
border-spacing: 0;
border-collapse: collapse;
border-bottom: 3px solid #005a9c;
}
.simple th {
background: #005a9c;
color: #fff;
padding: 3px 5px;
text-align: left;
}
.simple th[scope="row"] {
background: inherit;
color: inherit;
border-top: 1px solid #ddd;
}
.simple td {
padding: 3px 10px;
border-top: 1px solid #ddd;
}
.simple tr:nth-child(even) {
background: #f0f6ff;
}
/* --- DL --- */
.section dd>p:first-child {
margin-top: 0;
}
.section dd>p:last-child {
margin-bottom: 0;
}
.section dd {
margin-bottom: 1em;
}
.section dl.attrs dd,
.section dl.eldef dd {
margin-bottom: 0;
}
#issue-summary>ul,
.respec-dfn-list {
column-count: 2;
}
#issue-summary li,
.respec-dfn-list li {
list-style: none;
}
details.respec-tests-details {
margin-left: 1em;
display: inline-block;
vertical-align: top;
}
details.respec-tests-details>* {
padding-right: 2em;
}
details.respec-tests-details[open] {
z-index: 999999;
position: absolute;
border: thin solid #cad3e2;
border-radius: 0.3em;
background-color: white;
padding-bottom: 0.5em;
}
details.respec-tests-details[open]>summary {
border-bottom: thin solid #cad3e2;
padding-left: 1em;
margin-bottom: 1em;
line-height: 2em;
}
details.respec-tests-details>ul {
width: 100%;
margin-top: -0.3em;
}
details.respec-tests-details>li {
padding-left: 1em;
}
a[href].self-link:hover {
opacity: 1;
text-decoration: none;
background-color: transparent;
}
h2,
h3,
h4,
h5,
h6 {
position: relative;
}
aside.example .marker > a.self-link {
color: inherit;
}
h2>a.self-link,
h3>a.self-link,
h4>a.self-link,
h5>a.self-link,
h6>a.self-link {
border: none;
color: inherit;
font-size: 83%;
height: 2em;
left: -1.6em;
opacity: .5;
position: absolute;
text-align: center;
text-decoration: none;
top: 0;
transition: opacity .2s;
width: 2em;
}
h2>a.self-link::before,
h3>a.self-link::before,
h4>a.self-link::before,
h5>a.self-link::before,
h6>a.self-link::before {
content: "§";
display: block;
}
@media (max-width: 767px) {
dd {
margin-left: 0;
}
/* Don't position self-link in headings off-screen */
h2>a.self-link,
h3>a.self-link,
h4>a.self-link,
h5>a.self-link,
h6>a.self-link {
left: auto;
top: auto;
}
}
@media print {
.removeOnSave {
display: none;
}
}
</style><link rel="stylesheet" href="https://tools.geostandaarden.nl/respec/style/GN-VV.css"><link rel="shortcut icon" type="image/x-icon" href="https://tools.geostandaarden.nl/respec/style/logos/Geonovum.ico"><style>/*
github.com style (c) Vasily Polovnyov <vast@whiteants.net>
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
color: #333;
background: #f8f8f8;
}
.hljs-comment,
.hljs-quote {
color: #998;
font-style: italic;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-subst {
color: #333;
font-weight: bold;
}
.hljs-number,
.hljs-literal,
.hljs-variable,
.hljs-template-variable,
.hljs-tag .hljs-attr {
color: #008080;
}
.hljs-string,
.hljs-doctag {
color: #d14;
}
.hljs-title,
.hljs-section,
.hljs-selector-id {
color: #900;
font-weight: bold;
}
.hljs-subst {
font-weight: normal;
}
.hljs-type,
.hljs-class .hljs-title {
color: #458;
font-weight: bold;
}
.hljs-tag,
.hljs-name,
.hljs-attribute {
color: #000080;
font-weight: normal;
}
.hljs-regexp,
.hljs-link {
color: #009926;
}
.hljs-symbol,
.hljs-bullet {
color: #990073;
}
.hljs-built_in,
.hljs-builtin-name {
color: #0086b3;
}
.hljs-meta {
color: #999;
font-weight: bold;
}
.hljs-deletion {
background: #fdd;
}
.hljs-addition {
background: #dfd;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}
</style><script id="initialUserConfig" type="application/json">{
"specStatus": "GN-VV",
"specType": "BD",
"format": "markdown",
"github": "https://github.com/geonovum/brt-next-cv",
"issueBase": "https://github.com/geonovum/brt-cv/issues",
"edDraftURI": "https://github/geonovum/brt-next-cv",
"editors": [
{
"name": "Geonovum",
"company": "Geonovum",
"companyURL": "https://www.geonovum.nl"
}
],
"authors": [
{
"name": "Geonovum",
"company": "Geonovum",
"companyURL": "https://www.geonovum.nl"
},
{
"name": "Kadaster",
"company": "Kadaster",
"companyURL": "https://www.kadaster.nl/zakelijk/registraties/basisregistraties/brt"
}
],
"shortName": "brtnext",
"pubDomain": "brtnext",
"licence": "cc-by",
"localBiblio": {},
"postProcess": [
null
],
"previousPublishDate": "2023-01-01",
"previousMaturity": "GN-CV",
"emailComments": "brt@geonovum.nl",
"maxTocLevel": 2,
"logos": [
{
"src": "https://tools.geostandaarden.nl/respec/style/logos/Geonovum.svg",
"href": "https://www.geonovum.nl/",
"alt": "Geonovum",
"width": 132,
"height": 67,
"id": "logo_geonovum"
},
{
"src": "https://github.com/kadaster/imbrt/blob/master/docs/images/logo.jpeg?raw=true",
"alt": "Kadaster",
"id": "logo_kadaster",
"height": 122,
"width": 146,
"url": "https://www.kadaster.nl/zakelijk/registraties/basisregistraties/brt"
}
],
"publishISODate": "2023-05-26T00:00:00.000Z",
"generatedSubtitle": "Versie ter vaststelling 26 mei 2023"
}</script><meta name="description" content="Reacties op dit wijzigingsvoorstel kunt u tot en met 4 december 2022 indienen via het reactieformulier: https://fd10.formdesk.com/geonovum/brtnext."><script type="application/ld+json">{
"@context": [
"http://schema.org",
{
"@vocab": "http://schema.org/",
"@language": "nl",
"foaf": "http://xmlns.com/foaf/0.1/",
"datePublished": {
"@type": "http://www.w3.org/2001/XMLSchema#date"
},
"inLanguage": {
"@language": null
},
"isBasedOn": {
"@type": "@id"
},
"license": {
"@type": "@id"
}
}
],
"id": "https://docs.geostandaarden.nl/brtnext/vv-bd-brtnext-20230526/",
"type": [
"TechArticle"
],
"name": "Wijzigingsvoorstel BRT.Next",
"inLanguage": "nl",
"license": "https://creativecommons.org/licenses/by/4.0/legalcode",
"datePublished": "2023-05-26",
"copyrightHolder": {
"name": "Geonovum",
"url": "https://www.geonovum.nl/"
},
"discussionUrl": "https://github.com/geonovum/brt-cv/issues",
"alternativeHeadline": "",
"isBasedOn": "https://docs.geostandaarden.nl/brtnext/cv-bd-brtnext-20230101/",
"description": "Reacties op dit wijzigingsvoorstel kunt u tot en met 4 december 2022 indienen via het reactieformulier: https://fd10.formdesk.com/geonovum/brtnext.",
"editor": [
{
"type": "Person",
"name": "Geonovum",
"worksFor": {
"name": "Geonovum",
"url": "https://www.geonovum.nl"
}
}
],
"contributor": [
{
"type": "Person",
"name": "Geonovum",
"worksFor": {
"name": "Geonovum",
"url": "https://www.geonovum.nl"
}
},
{
"type": "Person",
"name": "Kadaster",
"worksFor": {
"name": "Kadaster",
"url": "https://www.kadaster.nl/zakelijk/registraties/basisregistraties/brt"
}
}
],
"citation": []
}</script></head>
<body class="h-entry"><div class="head">
<a href="" class="logo"><img id="logo_geonovum" alt="Geonovum" width="132" height="67" src="https://tools.geostandaarden.nl/respec/style/logos/Geonovum.svg"></a><a href="https://www.kadaster.nl/zakelijk/registraties/basisregistraties/brt" class="logo"><img id="logo_kadaster" alt="Kadaster" width="146" height="122" src="https://github.com/kadaster/imbrt/blob/master/docs/images/logo.jpeg?raw=true"></a>
<h1 class="title p-name" id="title">Wijzigingsvoorstel BRT.Next</h1>
<h2>Geonovum Beheerdocumentatie<br>
Versie ter vaststelling <time class="dt-published" datetime="2023-05-26">26 mei 2023</time></h2>
<dl>
<dt>Deze versie:</dt><dd><a class="u-url" href="https://docs.geostandaarden.nl/brtnext/vv-bd-brtnext-20230526/">https://docs.geostandaarden.nl/brtnext/vv-bd-brtnext-20230526/</a></dd><dt>Laatst gepubliceerde versie:</dt><dd><a href="https://docs.geostandaarden.nl/brtnext/">https://docs.geostandaarden.nl/brtnext/</a></dd>
<dt>Vorige versie:</dt><dd><a href="https://docs.geostandaarden.nl/brtnext/cv-bd-brtnext-20230123/">https://docs.geostandaarden.nl/brtnext/cv-bd-brtnext-20230123/</a></dd>
<dt>Laatste werkversie:</dt><dd><a href="https://github/geonovum/brt-next-cv">https://github/geonovum/brt-next-cv</a></dd>
<dt>Redacteur:</dt>
<dd class="p-author h-card vcard"><span class="p-name fn">Geonovum</span>, <a class="p-org org h-org h-card" href="https://www.geonovum.nl">Geonovum</a></dd>
<dt>Auteurs:</dt><dd class="p-author h-card vcard"><span class="p-name fn">Geonovum</span>, <a class="p-org org h-org h-card" href="https://www.geonovum.nl">Geonovum</a></dd><dd class="p-author h-card vcard"><span class="p-name fn">Kadaster</span>, <a class="p-org org h-org h-card" href="https://www.kadaster.nl/zakelijk/registraties/basisregistraties/brt">Kadaster</a></dd>
<dt>Doe mee:</dt><dd>
<a href="https://github.com/geonovum/brt-next-cv/">GitHub geonovum/brt-next-cv</a>
</dd><dd>
<a href="https://github.com/geonovum/brt-next-cv/issues/">Dien een melding in</a>
</dd><dd>
<a href="https://github.com/geonovum/brt-next-cv/commits/">Revisiehistorie</a>
</dd><dd>
<a href="https://github.com/geonovum/brt-next-cv/pulls/">Pull requests</a>
</dd>
</dl>
<dl>
<dt>Rechtenbeleid:</dt>
<dd>
<div class="copyright" style="margin: 0.25em 0;">
<abbr title="Creative Commons Attribution 4.0 International Public License">
<a href="https://creativecommons.org/licenses/by/4.0/legalcode"><img width="115" height="40" src="https://tools.geostandaarden.nl/respec/style/logos/cc-by.svg" alt="Creative Commons Attribution 4.0 International Public License"></a>
</abbr>
<div style="display:inline-block; vertical-align:top">
<p style="font-size: small;">Creative Commons Attribution 4.0 International Public License<br>(CC-BY)</p>
</div>
</div>
</dd>
</dl>
<hr title="Separator for header">
</div><section id="abstract" style="display: none" class="introductory"><h2>Samenvatting</h2><pre><code aria-busy="false" class="hljs javascript">Dit is de consultatieversie van het wijzigingsvoorstel voor de nieuwe BRT: BRT.Next. Dit <span class="hljs-built_in">document</span> heeft als doel om de wijzigingen <span class="hljs-keyword">in</span> de TOP10NL onder het werkveld te consulteren.</code></pre><p>Reacties op dit wijzigingsvoorstel kunt u tot en met 4 december 2022 indienen via het reactieformulier: <a href="https://fd10.formdesk.com/geonovum/brtnext" target="_blank">https://fd10.formdesk.com/geonovum/brtnext</a>.</p></section><section id="sotd" class="introductory"><h2>Status van dit document</h2><p>
<em>Deze paragraaf beschrijft de status van dit document ten tijde van publicatie. Het is mogelijk dat er actuelere versies van dit document bestaan. Een lijst van Geonovum publicaties en de laatste gepubliceerde versie van dit document zijn te vinden op <a href="https://www.geonovum.nl/geo-standaarden/alle-standaarden">https://www.geonovum.nl/geo-standaarden/alle-standaarden</a>.</em>
</p><p>
Dit is een definitief concept van de nieuwe versie van de beheerdocumentatie. Wijzigingen naar aanleiding van consultaties zijn doorgevoerd.
</p></section><nav id="toc"><h2 class="introductory" id="inhoudsopgave">Inhoudsopgave</h2><ol class="toc"><li class="tocline"><a class="tocxref" href="#inleiding"><span class="secno">1. </span>Inleiding</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#wijzigingsvoorstel-brt-next"><span class="secno">1.1 </span>Wijzigingsvoorstel BRT.Next</a></li><li class="tocline"><a class="tocxref" href="#leeswijzer"><span class="secno">1.2 </span>Leeswijzer</a></li></ol></li><li class="tocline"><a class="tocxref" href="#weg"><span class="secno">2. </span>Weg</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#overzicht"><span class="secno">2.1 </span>Overzicht</a></li><li class="tocline"><a class="tocxref" href="#wijzigen-attributen"><span class="secno">2.2 </span>Wijzigen attributen</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#wijzigen-attribuutwaarden"><span class="secno">2.3 </span>Wijzigen attribuutwaarden</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#vervallen-attributen"><span class="secno">2.4 </span>Vervallen attributen</a></li><li class="tocline"><a class="tocxref" href="#vervallen-attribuutwaarden"><span class="secno">2.5 </span>Vervallen attribuutwaarden</a></li><li class="tocline"><a class="tocxref" href="#toevoegen-attributen"><span class="secno">2.6 </span>Toevoegen attributen</a></li><li class="tocline"><a class="tocxref" href="#toevoegen-attribuutwaarden"><span class="secno">2.7 </span>Toevoegen attribuutwaarden</a></li></ol></li><li class="tocline"><a class="tocxref" href="#spoor"><span class="secno">3. </span>Spoor</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#overzicht-0"><span class="secno">3.1 </span>Overzicht</a></li><li class="tocline"><a class="tocxref" href="#wijzigen-attributen-0"><span class="secno">3.2 </span>Wijzigen attributen</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#wijzigen-attribuutwaarden-0"><span class="secno">3.3 </span>Wijzigen attribuutwaarden</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#vervallen-attributen-0"><span class="secno">3.4 </span>Vervallen attributen</a></li><li class="tocline"><a class="tocxref" href="#vervallen-attribuutwaarden-0"><span class="secno">3.5 </span>Vervallen attribuutwaarden</a></li><li class="tocline"><a class="tocxref" href="#toevoegen-attributen-0"><span class="secno">3.6 </span>Toevoegen attributen</a></li><li class="tocline"><a class="tocxref" href="#toevoegen-attribuutwaarden-0"><span class="secno">3.7 </span>Toevoegen attribuutwaarden</a></li></ol></li><li class="tocline"><a class="tocxref" href="#water"><span class="secno">4. </span>Water</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#overzicht-1"><span class="secno">4.1 </span>Overzicht</a></li><li class="tocline"><a class="tocxref" href="#wijzigen-attributen-1"><span class="secno">4.2 </span>Wijzigen attributen</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#wijzigen-attribuutwaarden-1"><span class="secno">4.3 </span>Wijzigen attribuutwaarden</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#vervallen-attributen-1"><span class="secno">4.4 </span>Vervallen attributen</a></li><li class="tocline"><a class="tocxref" href="#vervallen-attribuutwaarden-1"><span class="secno">4.5 </span>Vervallen attribuutwaarden</a></li><li class="tocline"><a class="tocxref" href="#toevoegen-attributen-1"><span class="secno">4.6 </span>Toevoegen attributen</a></li><li class="tocline"><a class="tocxref" href="#toevoegen-attribuutwaarden-1"><span class="secno">4.7 </span>Toevoegen attribuutwaarden</a></li></ol></li><li class="tocline"><a class="tocxref" href="#terrein"><span class="secno">5. </span>Terrein</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#overzicht-2"><span class="secno">5.1 </span>Overzicht</a></li><li class="tocline"><a class="tocxref" href="#wijzigen-attributen-2"><span class="secno">5.2 </span>Wijzigen attributen</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#wijzigen-attribuutwaarden-2"><span class="secno">5.3 </span>Wijzigen attribuutwaarden</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#vervallen-attributen-2"><span class="secno">5.4 </span>Vervallen attributen</a></li><li class="tocline"><a class="tocxref" href="#vervallen-attribuutwaarden-2"><span class="secno">5.5 </span>Vervallen attribuutwaarden</a></li><li class="tocline"><a class="tocxref" href="#toevoegen-attributen-2"><span class="secno">5.6 </span>Toevoegen attributen</a></li><li class="tocline"><a class="tocxref" href="#toevoegen-attribuutwaarden-2"><span class="secno">5.7 </span>Toevoegen attribuutwaarden</a></li></ol></li><li class="tocline"><a class="tocxref" href="#gebouw"><span class="secno">6. </span>Gebouw</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#overzicht-3"><span class="secno">6.1 </span>Overzicht</a></li><li class="tocline"><a class="tocxref" href="#wijzigen-attributen-3"><span class="secno">6.2 </span>Wijzigen attributen</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#wijzigen-attribuutwaarden-3"><span class="secno">6.3 </span>Wijzigen attribuutwaarden</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#geometrietype"><span class="secno">6.4 </span>Geometrietype</a></li><li class="tocline"><a class="tocxref" href="#vervallen-attributen-3"><span class="secno">6.5 </span>Vervallen attributen</a></li><li class="tocline"><a class="tocxref" href="#vervallen-attribuutwaarden-3"><span class="secno">6.6 </span>Vervallen attribuutwaarden</a></li><li class="tocline"><a class="tocxref" href="#toevoegen-attributen-3"><span class="secno">6.7 </span>Toevoegen attributen</a></li><li class="tocline"><a class="tocxref" href="#toevoegen-attribuutwaarden-3"><span class="secno">6.8 </span>Toevoegen attribuutwaarden</a></li></ol></li><li class="tocline"><a class="tocxref" href="#inrichtingselement"><span class="secno">7. </span>Inrichtingselement</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#overzicht-4"><span class="secno">7.1 </span>Overzicht</a></li><li class="tocline"><a class="tocxref" href="#wijzigen-attributen-4"><span class="secno">7.2 </span>Wijzigen attributen</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#wijzigen-attribuutwaarden-4"><span class="secno">7.3 </span>Wijzigen attribuutwaarden</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#vervallen-attributen-4"><span class="secno">7.4 </span>Vervallen attributen</a></li><li class="tocline"><a class="tocxref" href="#vervallen-attribuutwaarden-4"><span class="secno">7.5 </span>Vervallen attribuutwaarden</a></li><li class="tocline"><a class="tocxref" href="#toevoegen-attributen-4"><span class="secno">7.6 </span>Toevoegen attributen</a></li><li class="tocline"><a class="tocxref" href="#toevoegen-attribuutwaarden-4"><span class="secno">7.7 </span>Toevoegen attribuutwaarden</a></li></ol></li><li class="tocline"><a class="tocxref" href="#relief"><span class="secno">8. </span>Relief</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#overzicht-5"><span class="secno">8.1 </span>Overzicht</a></li><li class="tocline"><a class="tocxref" href="#wijzigen-attributen-5"><span class="secno">8.2 </span>Wijzigen attributen</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#wijzigen-attribuutwaarden-5"><span class="secno">8.3 </span>Wijzigen attribuutwaarden</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#vervallen-attributen-5"><span class="secno">8.4 </span>Vervallen attributen</a></li><li class="tocline"><a class="tocxref" href="#vervallen-attribuutwaarden-5"><span class="secno">8.5 </span>Vervallen attribuutwaarden</a></li><li class="tocline"><a class="tocxref" href="#toevoegen-attributen-5"><span class="secno">8.6 </span>Toevoegen attributen</a></li><li class="tocline"><a class="tocxref" href="#toevoegen-attribuutwaarden-5"><span class="secno">8.7 </span>Toevoegen attribuutwaarden</a></li></ol></li><li class="tocline"><a class="tocxref" href="#hoogte"><span class="secno">9. </span>Hoogte</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#overzicht-6"><span class="secno">9.1 </span>Overzicht</a></li><li class="tocline"><a class="tocxref" href="#wijzigen-attributen-6"><span class="secno">9.2 </span>Wijzigen attributen</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#wijzigen-attribuutwaarden-6"><span class="secno">9.3 </span>Wijzigen attribuutwaarden</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#vervallen-attributen-6"><span class="secno">9.4 </span>Vervallen attributen</a></li><li class="tocline"><a class="tocxref" href="#vervallen-attribuutwaarden-6"><span class="secno">9.5 </span>Vervallen attribuutwaarden</a></li><li class="tocline"><a class="tocxref" href="#toevoegen-attributen-6"><span class="secno">9.6 </span>Toevoegen attributen</a></li><li class="tocline"><a class="tocxref" href="#toevoegen-attribuutwaarden-6"><span class="secno">9.7 </span>Toevoegen attribuutwaarden</a></li></ol></li><li class="tocline"><a class="tocxref" href="#registratief-gebied"><span class="secno">10. </span>Registratief gebied</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#overzicht-7"><span class="secno">10.1 </span>Overzicht</a></li><li class="tocline"><a class="tocxref" href="#wijzigen-attributen-7"><span class="secno">10.2 </span>Wijzigen attributen</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#wijzigen-attribuutwaarden-7"><span class="secno">10.3 </span>Wijzigen attribuutwaarden</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#vervallen-attributen-7"><span class="secno">10.4 </span>Vervallen attributen</a></li><li class="tocline"><a class="tocxref" href="#vervallen-attribuutwaarden-7"><span class="secno">10.5 </span>Vervallen attribuutwaarden</a></li><li class="tocline"><a class="tocxref" href="#toevoegen-attributen-7"><span class="secno">10.6 </span>Toevoegen attributen</a></li><li class="tocline"><a class="tocxref" href="#toevoegen-attribuutwaarden-7"><span class="secno">10.7 </span>Toevoegen attribuutwaarden</a></li></ol></li><li class="tocline"><a class="tocxref" href="#geografisch-gebied"><span class="secno">11. </span>Geografisch gebied</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#overzicht-8"><span class="secno">11.1 </span>Overzicht</a></li><li class="tocline"><a class="tocxref" href="#wijzigen-attributen-8"><span class="secno">11.2 </span>Wijzigen attributen</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#wijzigen-attribuutwaarden-8"><span class="secno">11.3 </span>Wijzigen attribuutwaarden</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#vervallen-attributen-8"><span class="secno">11.4 </span>Vervallen attributen</a></li><li class="tocline"><a class="tocxref" href="#vervallen-attribuutwaarden-8"><span class="secno">11.5 </span>Vervallen attribuutwaarden</a></li><li class="tocline"><a class="tocxref" href="#toevoegen-attributen-8"><span class="secno">11.6 </span>Toevoegen attributen</a></li><li class="tocline"><a class="tocxref" href="#toevoegen-attribuutwaarden-8"><span class="secno">11.7 </span>Toevoegen attribuutwaarden</a></li></ol></li><li class="tocline"><a class="tocxref" href="#plaats"><span class="secno">12. </span>Plaats</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#overzicht-9"><span class="secno">12.1 </span>Overzicht</a></li><li class="tocline"><a class="tocxref" href="#wijzigen-attributen-9"><span class="secno">12.2 </span>Wijzigen attributen</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#wijzigen-attribuutwaarden-9"><span class="secno">12.3 </span>Wijzigen attribuutwaarden</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#vervallen-attributen-9"><span class="secno">12.4 </span>Vervallen attributen</a></li><li class="tocline"><a class="tocxref" href="#vervallen-attribuutwaarden-9"><span class="secno">12.5 </span>Vervallen attribuutwaarden</a></li><li class="tocline"><a class="tocxref" href="#toevoegen-attributen-9"><span class="secno">12.6 </span>Toevoegen attributen</a></li><li class="tocline"><a class="tocxref" href="#toevoegen-attribuutwaarden-9"><span class="secno">12.7 </span>Toevoegen attribuutwaarden</a></li></ol></li><li class="tocline"><a class="tocxref" href="#functioneel-gebied"><span class="secno">13. </span>Functioneel gebied</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#overzicht-10"><span class="secno">13.1 </span>Overzicht</a></li><li class="tocline"><a class="tocxref" href="#wijzigen-attributen-10"><span class="secno">13.2 </span>Wijzigen attributen</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#wijzigen-attribuutwaarden-10"><span class="secno">13.3 </span>Wijzigen attribuutwaarden</a><ol class="toc"></ol></li><li class="tocline"><a class="tocxref" href="#vervallen-attributen-10"><span class="secno">13.4 </span>Vervallen attributen</a></li><li class="tocline"><a class="tocxref" href="#vervallen-attribuutwaarden-10"><span class="secno">13.5 </span>Vervallen attribuutwaarden</a></li><li class="tocline"><a class="tocxref" href="#toevoegen-attributen-10"><span class="secno">13.6 </span>Toevoegen attributen</a></li><li class="tocline"><a class="tocxref" href="#toevoegen-attribuutwaarden-10"><span class="secno">13.7 </span>Toevoegen attribuutwaarden</a></li></ol></li><li class="tocline"><a class="tocxref" href="#plantopografie"><span class="secno">14. </span>Plantopografie</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#overzicht-11"><span class="secno">14.1 </span>Overzicht</a></li><li class="tocline"><a class="tocxref" href="#vervallen-attributen-11"><span class="secno">14.2 </span>Vervallen attributen</a></li></ol></li><li class="tocline"><a class="tocxref" href="#bijlage-wijzigingen-t-o-v-consultatieversie-23-januari-2022"><span class="secno">15. </span>Bijlage: Wijzigingen t.o.v. consultatieversie 23 januari 2022</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#inleiding-0"><span class="secno">15.1 </span>Inleiding</a></li><li class="tocline"><a class="tocxref" href="#weg-0"><span class="secno">15.2 </span>Weg</a></li><li class="tocline"><a class="tocxref" href="#spoor-0"><span class="secno">15.3 </span>Spoor</a></li><li class="tocline"><a class="tocxref" href="#water-0"><span class="secno">15.4 </span>Water</a></li><li class="tocline"><a class="tocxref" href="#terrein-0"><span class="secno">15.5 </span>Terrein</a></li><li class="tocline"><a class="tocxref" href="#gebouw-0"><span class="secno">15.6 </span>Gebouw</a></li><li class="tocline"><a class="tocxref" href="#inrichtingselement-0"><span class="secno">15.7 </span>Inrichtingselement</a></li><li class="tocline"><a class="tocxref" href="#relief-0"><span class="secno">15.8 </span>Relief</a></li><li class="tocline"><a class="tocxref" href="#hoogte-0"><span class="secno">15.9 </span>Hoogte</a></li><li class="tocline"><a class="tocxref" href="#registratief-gebied-0"><span class="secno">15.10 </span>Registratief gebied</a></li><li class="tocline"><a class="tocxref" href="#geografisch-gebied-0"><span class="secno">15.11 </span>Geografisch gebied</a></li><li class="tocline"><a class="tocxref" href="#plaats-0"><span class="secno">15.12 </span>Plaats</a></li><li class="tocline"><a class="tocxref" href="#functioneel-gebied-0"><span class="secno">15.13 </span>Functioneel gebied</a></li><li class="tocline"><a class="tocxref" href="#plantopografie-0"><span class="secno">15.14 </span>Plantopografie</a></li></ol></li></ol></nav><section data-format="markdown" id="inleiding"><!--OddPage--><h2 id="x1-inleiding"><span class="secno">1. </span>Inleiding</h2><p>In opdracht van het ministerie van BZK werkt het Kadaster aan een
doorontwikkeling van de BRT. Deze “BRT.Next” zal zijn gebaseerd op de BGT, de
BAG, andere bestaande bronnen en eigen inwinning. De BRT.Next wordt in
samenwerking met DiS-Geo ontwikkeld, waarbij afstemming wordt gezocht met de
landelijke Samenhangende Objectenregistratie. Het productieproces van de diverse
(toekomstige) producten wordt geoptimaliseerd door gebruik te maken van
algoritmes voor automatische objectvorming en generalisatie.</p><p>Er zijn gebruikerssessies gehouden waarin de bevindingen tijdens de ontwerpfase
van de nieuwe BRT.Next met gebruikers gedeeld zijn. Ook was er de mogelijkheid
om een reactie te geven op een eerste opzet van het nieuwe datamodel voor
BRT.Next.</p><p>De ervaringen uit deze gebruikerssessies en consultatie zijn de afgelopen
periode gebruikt bij het samenstellen van een nieuw informatiemodel voor
BRT.Next. Het is belangrijk om te beseffen dat de datamodellen van de BAG en de
BGT hiervoor het uitgangspunt zijn. Daar waar mogelijk is de inhoud daarvan 1 op
1 overgenomen. Daarnaast is ieder object en iedere eigenschap uit het
informatiemodel van TOP10NL geanalyseerd, vergeleken met de andere
basisregistraties en vanuit meerdere aspecten bekeken. Is het bijvoorbeeld
topografie, cartografie of informatie, wat is het gebruik en het bijhoud-proces
van dit object of deze eigenschap. Op basis van deze analyse is voor ieder
object en iedere eigenschap één van onderstaande keuzes gemaakt in het nieuwe
informatiemodel:</p><ul>
<li><p>Harmoniseren vanwege andere registratie (BGT, BAG, “SOR”, …)</p>
</li>
<li><p>Behouden in BRT.Next</p>
</li>
<li><p>Op een andere manier opnemen in BRT.Next</p>
</li>
<li><p>Vervallen, want werd (nog) niet bijgehouden in de BRT</p>
</li>
<li><p>Vervallen, want niet (meer) relevant voor de nieuwe BRT.Next-producten (bv.
niet op kaart)</p>
</li>
<li><p>Vervallen, want niet passend bij BRT.Next</p>
</li>
<li><p>Toegevoegd aan BRT.Next</p>
</li>
</ul><section id="wijzigingsvoorstel-brt-next"><h3 id="x1-1-wijzigingsvoorstel-brt-next"><span class="secno">1.1 </span>Wijzigingsvoorstel BRT.Next</h3><p>In drie consultaties heeft het Kadaster het nieuwe informatiemodel voorgelegd
aan de gebruikers van de BRT. Dit wijzigingsvoorstel is het resultaat van de
drie consultaties. Deze versie wordt met het ministerie van BZK besproken en
vervolgens vastgesteld als “BRT.Next Informatiemodel versie 1.0”.</p><p>Deze versie van het informatiemodel BRT.Next is gemaakt voor het BRT.Next
product op schaal 1:10.000 en beschrijft welke objecten en eigenschappen er
vastgelegd worden in BRT.Next. Algemene objectkenmerken, zoals de identificatie,
attributen voor de levensloop van een object en visualisatiecode, zijn nu nog
niet opgenomen in deze consultatie. Voor deze attributen wil het Kadaster zo
veel mogelijk aansluiten bij de standaarden en bij TOP10NL.</p><p>Het informatiemodel kan tijdens het realiseren van het product nog licht
aangepast worden doordat op dit moment het hele proces nog niet bekend is. Als
voorbeeld is het generalisatieproces van o.a. de BGT en BAG op schaal 1:1.000
naar de BRT.Next op schaal 1:10.000 nog niet ontwikkeld. Hierover zal het
Kadaster u blijven informeren.</p><p>In dit wijzigingsvoorstel worden alle wijzigingen beschreven van de huidige
TOP10NL (WAS) naar de nieuwe BRT.Next (WORDT).</p><p>Al uw vragen of opmerkingen over het wijzigingsvoorstel van BRT.Next stelt u per
email aan
<a href="file:///C:%5CUsers%5CA.deBoer%5CAppData%5CLocal%5CMicrosoft%5CWindows%5CINetCache%5CContent.Outlook%5CM7F255CS%5Cbrt@kadaster.nl">brt@kadaster.nl</a>.</p></section><section id="leeswijzer"><h3 id="x1-2-leeswijzer"><span class="secno">1.2 </span>Leeswijzer</h3><p>De voorgestelde wijzigingen in de BRT.Next t.o.v. TOP10NL zijn in dit document
gemarkeerd: <del>tekst met deze opmaak</del> komt te vervallen, <strong>tekst met deze
opmaak</strong> wordt toegevoegd.</p><p>In de desktopversie van het wijzigingsvoorstel wordt een schakelknop in het
venster rechts onderin getoond, waarmee u de wijzigingen aan (zichtbaar) of uit
(verborgen) kunt zetten.</p><p>De wijzigingen worden in een vaste structuur gepresenteerd. Elk objecttype
begint met een tabel met de attributen en attribuutwaarden voor dit object na
het doorvoeren van de wijzigingen. Vervolgens wordt per objecttype beschreven
welke attributen en attribuutwaarden wijzigen, vervallen of worden toegevoegd.</p><p>We hanteren in dit document de term ‘attribuut’ voor een kenmerk of eigenschap
van een object; de term ‘attribuutwaarde’ voor het type of de waarde dat een
attribuut kan aannemen.</p><p>Een attribuut of attribuutwaarde kan op drie manieren wijzigen:</p><ol>
<li><p>de naam van het attribuut of attribuutwaarde wijzigt; de definitie wijzigt
niet.</p>
</li>
<li><p>de definitie van het attribuut of attribuutwaarde wijzigt; de naam wijzigt
niet.</p>
</li>
<li><p>de naam en definitie van het attribuut of de attribuutwaarde wijzigen.</p>
</li>
</ol><p>Als twee attribuutwaarden worden samengevoegd tot één nieuwe attribuutwaarde
wordt dit in het document beschreven als het laten vervallen van twee
attribuutwaarden en het toevoegen van een nieuwe attribuutwaarde, met in de
toelichting (voetnoot) dat er sprake is van een samenvoeging.</p><p>Bij meerdere objectklassen is de modellering van ‘de naam van een object’
aangepast. Waar er in TOP10NL meerdere naam-attributen waren (bijvoorbeeld:
Naam_Nederlands, Naam_Fries en Naam_officieel) worden in BRT.Next de taal, de
herkomst en de aanduiding of een naam officieel is per naam aangegeven. Hiervoor
zijn de attributen “naam: taal”, “naam: herkomst” en “naam: officieel” in het
model opgenomen en die attributen beschrijven de eigenschappen van een naam van
een object.</p></section></section><section data-format="markdown" id="weg"><!--OddPage--><h2 id="x2-weg"><span class="secno">2. </span>Weg</h2><p>Dit hoofdstuk beschrijft de wijzigingen voor het object Weg in BRT.Next ten
opzichte van de huidige versie TOP10NL.</p><section id="overzicht"><h3 id="x2-1-overzicht"><span class="secno">2.1 </span>Overzicht</h3><p><em>Overzicht attributen en waarden/type van object Weg in BRT.Next</em></p><table>
<thead>
<tr>
<th>Attribuutnaam</th>
<th>Waarde of «type»</th>
<th>Geometrietype</th>
<th>Kardinaliteit</th>
</tr>
</thead>
<tbody><tr>
<td>geometrie</td>
<td>«vlak»</td>
<td></td>
<td>1 -1</td>
</tr>
<tr>
<td></td>
<td>«lijn»</td>
<td></td>
<td></td>
</tr>
<tr>
<td>typeWeg</td>
<td>autosnelweg</td>
<td>vlak</td>
<td>1..n</td>
</tr>
<tr>
<td></td>
<td>autoweg</td>
<td>vlak</td>
<td></td>
</tr>
<tr>
<td></td>
<td>hoofdweg</td>
<td>vlak</td>
<td></td>
</tr>
<tr>
<td></td>
<td>regionale weg</td>
<td>vlak</td>
<td></td>
</tr>
<tr>
<td></td>
<td>lokale weg</td>
<td>vlak</td>
<td></td>
</tr>
<tr>
<td></td>
<td>straat</td>
<td>vlak</td>
<td></td>
</tr>
<tr>
<td></td>
<td>overig</td>
<td>vlak</td>
<td></td>
</tr>
<tr>
<td></td>
<td>parkeerplaats</td>
<td>vlak</td>
<td></td>
</tr>
<tr>
<td></td>
<td>OV-baan</td>
<td>vlak</td>
<td></td>
</tr>
<tr>
<td></td>
<td>fietspad</td>
<td>vlak, lijn</td>
<td></td>
</tr>
<tr>
<td></td>
<td>voetpad</td>
<td>vlak, lijn</td>
<td></td>
</tr>
<tr>
<td></td>
<td>voetgangersgebied</td>
<td>vlak</td>
<td></td>
</tr>
<tr>
<td></td>
<td>startbaan, landingsbaan</td>
<td>vlak</td>
<td></td>
</tr>
<tr>
<td></td>
<td>rolbaan, platform</td>
<td>vlak</td>
<td></td>
</tr>
<tr>
<td></td>
<td>veerverbinding</td>
<td>lijn</td>
<td></td>
</tr>
<tr>
<td></td>
<td>fietsveer</td>
<td>lijn</td>
<td></td>
</tr>
<tr>
<td></td>
<td>voetveer</td>
<td>lijn</td>
<td></td>
</tr>
<tr>
<td>ligging</td>
<td>op vast deel van brug</td>
<td></td>
<td>0..n</td>
</tr>
<tr>
<td></td>
<td>op beweegbaar deel van brug</td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td>op rotonde</td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td>op oprit / afrit</td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td>op knooppuntverbinding</td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td>op overweg</td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td>in tunnel</td>
<td></td>
<td></td>
</tr>
<tr>
<td>verhardingsbreedteklasse</td>
<td>> 7 meter</td>
<td></td>
<td>1-1</td>
</tr>
<tr>
<td></td>
<td>4 – 7 meter</td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td>2 – 4 meter</td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td>< 2 meter</td>
<td></td>
<td></td>
</tr>
<tr>
<td>verhardingstype</td>
<td>verhard</td>
<td></td>
<td>1-1</td>
</tr>
<tr>
<td></td>
<td>half verhard</td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td>onverhard</td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td>onbekend</td>
<td></td>
<td></td>
</tr>
<tr>
<td>gescheidenRijbaan</td>
<td>ja</td>
<td></td>
<td>1-1</td>
</tr>
<tr>
<td></td>
<td>nee</td>
<td></td>
<td></td>
</tr>
<tr>
<td>relatieveHoogteligging</td>
<td>«geheel getal [-9;9]»</td>
<td></td>
<td>1-1</td>
</tr>
<tr>
<td>status</td>
<td>bestaand</td>
<td></td>
<td>1-1</td>
</tr>
<tr>
<td></td>
<td>in aanbouw</td>
<td></td>
<td></td>
</tr>
<tr>
<td>naam</td>
<td>«tekst»</td>
<td></td>
<td>0..n</td>
</tr>
<tr>
<td>naam: herkomst</td>
<td>«tekst»</td>
<td></td>
<td>0..n</td>
</tr>
<tr>
<td>A-wegnummer</td>
<td>«tekst»</td>
<td></td>
<td>0..n</td>
</tr>
<tr>
<td>N-wegnummer</td>
<td>«tekst»</td>
<td></td>
<td>0..n</td>
</tr>
<tr>
<td>E-wegnummer</td>
<td>«tekst»</td>
<td></td>
<td>0..n</td>
</tr>
<tr>
<td>S-wegnummer</td>
<td>«tekst»</td>
<td></td>
<td>0..n</td>
</tr>
<tr>
<td>afritnummer</td>
<td>«tekst»</td>
<td></td>
<td>0..1</td>
</tr>
<tr>
<td>afritnaam</td>
<td>«tekst»</td>
<td></td>
<td>0..1</td>
</tr>
<tr>
<td>knooppuntnaam</td>
<td>«tekst»</td>
<td></td>
<td>0..1</td>
</tr>
<tr>
<td>brugnaam</td>
<td>«tekst»</td>
<td></td>
<td>0..1</td>
</tr>
<tr>
<td>tunnelnaam</td>
<td>«tekst»</td>
<td></td>
<td>0..1</td>
</tr>
</tbody></table></section><section id="wijzigen-attributen"><h3 id="x2-2-wijzigen-attributen"><span class="secno">2.2 </span>Wijzigen attributen</h3><p>De attributen in deze paragraaf wijzigen van naam, wijzigen van definitie, of
wijzigen van naam en definitie in BRT.Next.</p><section id="naam"><h4 id="x2-2-1-naam"><span class="secno">2.2.1 </span>Naam</h4><p>Onderstaande attributen wijzigen van naam in BRT.Next. De definitie wordt niet
aangepast.</p><table>
<thead>
<tr>
<th><em>TOP10NL:attribuutnaam</em></th>
<th><em>BRT.Next:attribuutnaam</em></th>
</tr>
</thead>
<tbody><tr>
<td><del>fysiekVoorkomen</del></td>
<td><strong>ligging</strong></td>
</tr>
<tr>
<td><del>hoofdG</del>eometrie</td>
<td><strong>g</strong>eometrie</td>
</tr>
</tbody></table><div class="note" role="note" id="issue-container-generatedID"><div role="heading" class="note-title marker" id="h-note" aria-level="5"><span>Noot</span></div><details class="">Aan geometrie wordt de volgende regel toegevoegd: “Een smalle
berm (< 6m) is geen onderdeel van het wegvlak."