-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnapshot.html
1759 lines (1485 loc) · 89.1 KB
/
snapshot.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
<!DOCTYPE html><html lang="nl"><head>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta content="text/html; charset=utf-8" http-equiv="content-type">
<meta name="generator" content="ReSpec 35.1.1">
<style>
dfn{cursor:pointer}
.dfn-panel{position:absolute;z-index:35;min-width:300px;max-width:500px;padding:.5em .75em;margin-top:.6em;font-family:"Helvetica Neue",sans-serif;font-size:small;background:#fff;background:var(--indextable-hover-bg,#fff);color:#000;color:var(--text,#000);box-shadow:0 1em 3em -.4em rgba(0,0,0,.3),0 0 1px 1px rgba(0,0,0,.05);box-shadow:0 1em 3em -.4em var(--tocsidebar-shadow,rgba(0,0,0,.3)),0 0 1px 1px var(--tocsidebar-shadow,rgba(0,0,0,.05));border-radius:2px}
.dfn-panel:not(.docked)>.caret{position:absolute;top:-9px}
.dfn-panel:not(.docked)>.caret::after,.dfn-panel:not(.docked)>.caret::before{content:"";position:absolute;border:10px solid transparent;border-top:0;border-bottom:10px solid #fff;border-bottom-color:var(--indextable-hover-bg,#fff);top:0}
.dfn-panel:not(.docked)>.caret::before{border-bottom:9px solid #a2a9b1;border-bottom-color:var(--indextable-hover-bg,#a2a9b1)}
.dfn-panel *{margin:0}
.dfn-panel b{display:block;color:#000;color:var(--text,#000);margin-top:.25em}
.dfn-panel ul a[href]{color:#333;color:var(--text,#333)}
.dfn-panel>div{display:flex}
.dfn-panel a.self-link{font-weight:700;margin-right:auto}
.dfn-panel .marker{padding:.1em;margin-left:.5em;border-radius:.2em;text-align:center;white-space:nowrap;font-size:90%;color:#040b1c}
.dfn-panel .marker.dfn-exported{background:#d1edfd;box-shadow:0 0 0 .125em #1ca5f940}
.dfn-panel .marker.idl-block{background:#8ccbf2;box-shadow:0 0 0 .125em #0670b161}
.dfn-panel a:not(:hover){text-decoration:none!important;border-bottom:none!important}
.dfn-panel a[href]:hover{border-bottom-width:1px}
.dfn-panel ul{padding:0}
.dfn-panel li{margin-left:1em}
.dfn-panel.docked{position:fixed;left:.5em;top:unset;bottom:2em;margin:0 auto;max-width:calc(100vw - .75em * 2 - .5em - .2em * 2);max-height:30vh;overflow:auto}
</style>
<script>document.title = respecConfig.title</script>
<title>Basis datatypen binnen Geonovum</title>
<title>TODO: Vul hier de titel in</title>
<link rel="shortcut icon" type="image/x-icon" href="https://tools.geostandaarden.nl/respec/style/logos/Geonovum.ico">
<style>
div.imageinfo img {max-width: none;}
</style>
<style id="respec-mainstyle">
@keyframes pop{
0%{transform:scale(1,1)}
25%{transform:scale(1.25,1.25);opacity:.75}
100%{transform:scale(1,1)}
}
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}
.respec-offending-element:target{animation:pop .25s ease-in-out 0s 1}
.respec-offending-element,a[href].respec-offending-element{text-decoration:red wavy underline}
@supports not (text-decoration:red wavy underline){
.respec-offending-element:not(pre){display:inline-block}
.respec-offending-element{background:url(data:image/gif;base64,R0lGODdhBAADAPEAANv///8AAP///wAAACwAAAAABAADAEACBZQjmIAFADs=) bottom repeat-x}
}
#references :target{background:#eaf3ff;animation:pop .4s ease-in-out 0s 1}
cite .bibref{font-style:normal}
a[href].orcid{padding-left:4px;padding-right:4px}
a[href].orcid>svg{margin-bottom:-2px}
ol.tof,ul.tof{list-style:none outside none}
.caption{margin-top:.5em;font-style:italic}
#issue-summary>ul{column-count:2}
#issue-summary li{list-style:none;display:inline-block}
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:.3em;background-color:#fff;padding-bottom:.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:-.3em}
details.respec-tests-details>li{padding-left:1em}
.self-link:hover{opacity:1;text-decoration:none;background-color:transparent}
aside.example .marker>a.self-link{color:inherit}
.header-wrapper{display:flex;align-items:baseline;position:relative;left:-.5em}
:is(h2,h3,h4,h5,h6):not(#toch2)+a.self-link{color:inherit;order:-1;position:relative;left:-.7em;font-size:1rem;opacity:.5}
:is(h2,h3,h4,h5,h6)+a.self-link::before{content:"§";text-decoration:none;color:var(--heading-text)}
:is(h2,h3)+a.self-link{top:-.2em}
:is(h4,h5,h6)+a.self-link::before{color:#000}
@media (max-width:767px){
dd{margin-left:0}
}
@media print{
.removeOnSave{display:none}
}
</style>
<style id="respec-nlgov">
img.license{float:left;padding-right:5px}
</style>
<style>
ul.index{columns:30ch;column-gap:1.5em}
ul.index li{list-style:inherit}
ul.index li span{color:inherit;cursor:pointer;white-space:normal}
#index-defined-here ul.index li{font-size:.9rem}
ul.index code{color:inherit}
#index-defined-here .print-only{display:none}
@media print{
#index-defined-here .print-only{display:initial}
}
</style>
<meta name="description" content="Dit informatiemodel bevat alle primitieve datatypen die in informatiemodellen van Geonovum worden gebruikt. De datatypen zijn over drie packages verdeeld:">
<style>
.sidelabel {
position: fixed;
-webkit-transform-origin: top right;
right: 100%;
top: 0;
-webkit-transform: rotate(-90deg);
padding: 4px 50px 4px 10px;
color: white;
white-space: nowrap;
z-index: 1;
background-color: #FF0000;
}
</style>
<script type="text/javascript">
/* Any custom mermaid.js scripts will go here. */
</script>
<style>
/* Any custom mermaid.js scripts will go here. */
}
</style>
<script id="initialUserConfig" type="application/json">{
"nl_organisationName": "Geonovum",
"nl_organisationPublishURL": "https://docs.geostandaarden.nl/",
"logos": [
{
"src": "https://tools.geostandaarden.nl/respec/style/logos/Geonovum.svg",
"alt": "Geonovum",
"id": "Geonovum",
"height": 67,
"width": 132,
"url": "https://www.geonovum.nl/geo-standaarden"
}
],
"postProcess": [
null
],
"latestVersion": [
"nl_organisationPublishURL",
"pubDomain",
"/",
"shortName",
"/"
],
"thisVersion": [
"nl_organisationPublishURL",
"pubDomain",
"/",
"specStatus",
"-",
"specType",
"-",
"shortName",
"-",
"publishDate"
],
"prevVersion": [
"nl_organisationPublishURL",
"pubDomain",
"/",
"previousMaturity",
"-",
"specType",
"-",
"shortName",
"-",
"previousPublishDate"
],
"useLogo": true,
"useLabel": true,
"license": "cc-by",
"addSectionLinks": true,
"localizationStrings": {
"en": {
"wv": "Editor's draft",
"cv": "Candidate recommendation",
"vv": "Proposed recommendation",
"def": "Recommendation",
"ld": "Living document",
"basis": "Document",
"no": "Norm",
"st": "Standard",
"im": "Information model",
"pr": "Practical guideline",
"hr": "Guide",
"wa": "Work process agreement",
"al": "General",
"bd": "Governance documentation",
"bp": "Best practice"
},
"nl": {
"wv": "Werkversie",
"cv": "Consultatieversie",
"vv": "Versie ter vaststelling",
"def": "Vastgestelde versie",
"ld": "Levend document",
"basis": "Document",
"no": "Norm",
"st": "Standaard",
"im": "Informatiemodel",
"pr": "Praktijkrichtlijn",
"hr": "Handreiking",
"wa": "Werkafspraak",
"al": "Algemeen",
"bd": "Beheerdocumentatie",
"bp": "Best practice"
}
},
"sotdText": {
"nl": {
"sotd": "Status van dit document",
"def": "Dit is de definitieve versie van dit document. Wijzigingen naar aanleiding van consultaties zijn doorgevoerd.",
"wv": "Dit is een werkversie die op elk moment kan worden gewijzigd, verwijderd of vervangen door andere documenten. Het is geen stabiel document.",
"cv": "Dit is een consultatieversie. Commentaar over dit document kan gestuurd worden naar ",
"vv": "Dit is de definitieve conceptversie van dit document. Wijzigingen naar aanleiding van consultaties zijn doorgevoerd.",
"basis": "Dit is een document zonder officiële status.",
"ld": "Dit is een levend document dat regelmatig gewijzigd wordt."
},
"en": {
"sotd": "Status of this document",
"def": "This is the definitive version of this document. Edits resulting from consultations have been applied.",
"wv": "This is a working draft that can be changed, removed or replaced by other documents at any time. It is not a stable document.",
"cv": "This is a stable draft, published for public comment. Comments regarding this document may be sent to ",
"vv": "This is the final draft of this document. Edits resulting from consultations have been applied.",
"basis": "This document has no official standing.",
"ld": "This is a living document, which is updated regularly."
}
},
"labelColor": {
"def": "#045D9F",
"wv": "#FF0000",
"cv": "#045D9F",
"vv": "#045D9F",
"basis": "#80CC28",
"ld": "#80CC28"
},
"licenses": {
"cc0": {
"name": "Creative Commons 0 Public Domain Dedication",
"short": "CC0",
"url": "https://creativecommons.org/publicdomain/zero/1.0/",
"image": "https://tools.geostandaarden.nl/respec/style/logos/CC-Licentie.svg"
},
"cc-by": {
"name": "Creative Commons Attribution 4.0 International Public License",
"short": "CC-BY",
"url": "https://creativecommons.org/licenses/by/4.0/legalcode",
"image": "https://tools.geostandaarden.nl/respec/style/logos/cc-by.svg"
},
"cc-by-nd": {
"name": "Creative Commons Naamsvermelding-GeenAfgeleideWerken 4.0 Internationaal",
"short": "CC-BY-ND",
"url": "https://creativecommons.org/licenses/by-nd/4.0/legalcode.nl",
"image": "https://tools.geostandaarden.nl/respec/style/logos/cc-by-nd.svg"
}
},
"localBiblio": {
"SemVer": {
"href": "https://semver.org",
"title": "Semantic Versioning 2.0.0",
"authors": [
"T. Preston-Werner"
],
"date": "June 2013"
}
},
"title": "Basis datatypen binnen Geonovum",
"specStatus": "wv",
"specType": "ST",
"pubDomain": "gnm",
"shortName": "datatypen",
"editors": [
{
"name": "Wilko Quak",
"company": "Geonovum",
"companyURL": "https://www.geonovum.nl"
}
],
"authors": [
{
"name": "Wilko Quak",
"company": "Geonovum",
"companyURL": "https://www.geonovum.nl"
}
],
"github": "https://github.com/Geonovum/NL-ReSpec-GN-template",
"alternateFormats": [
{
"label": "pdf",
"uri": "datatypen.pdf"
}
]
}</script>
<link rel="stylesheet" href="https://www.w3.org/StyleSheets/TR/2016/base.css"></head>
<body class="h-entry toc-inline"><div class="head">
<a class="logo" href="https://www.geonovum.nl/geo-standaarden"><img alt="Geonovum" height="67" id="Geonovum" src="https://tools.geostandaarden.nl/respec/style/logos/Geonovum.svg" width="132">
</a> <h1 id="title" class="title">Basis datatypen binnen Geonovum</h1>
<h2>
Geonovum Standaard<br>
Werkversie
<time class="dt-published" datetime="2024-09-30">30 september 2024</time>
</h2>
<dl>
<dt>Laatste werkversie:</dt><dd><a href="https://geonovum.github.io/NL-ReSpec-GN-template/">https://geonovum.github.io/NL-ReSpec-GN-template/</a></dd>
<dt>Redacteur:</dt>
<dd class="editor p-author h-card vcard">
<span class="p-name fn">Wilko Quak</span> (<a class="p-org org h-org" href="https://www.geonovum.nl">Geonovum</a>)
</dd>
<dt>Auteur:</dt><dd class="editor p-author h-card vcard">
<span class="p-name fn">Wilko Quak</span> (<a class="p-org org h-org" href="https://www.geonovum.nl">Geonovum</a>)
</dd>
<dt>Doe mee:</dt><dd>
<a href="https://github.com/Geonovum/NL-ReSpec-GN-template/">GitHub Geonovum/NL-ReSpec-GN-template</a>
</dd><dd>
<a href="https://github.com/Geonovum/NL-ReSpec-GN-template/issues/">Dien een melding in</a>
</dd><dd>
<a href="https://github.com/Geonovum/NL-ReSpec-GN-template/commits/">Revisiehistorie</a>
</dd><dd>
<a href="https://github.com/Geonovum/NL-ReSpec-GN-template/pulls/">Pull requests</a>
</dd>
</dl>
<p>
Dit document is ook beschikbaar in dit niet-normatieve formaat:
<a rel="alternate" href="datatypen.pdf">pdf</a>
</p>
<p class="copyright">
Dit document valt onder de volgende licentie:
<a rel="license" href="https://creativecommons.org/licenses/by/4.0/legalcode" class="subfoot"><img class="license" src="https://tools.geostandaarden.nl/respec/style/logos/cc-by.svg" alt="Logo Creative Commons Attribution 4.0 International Public License"><br> Creative Commons Attribution 4.0 International Public License</a>
</p>
<hr title="Separator for header">
</div>
<section id="abstract" class="introductory"><h2>Samenvatting</h2><p>Dit informatiemodel bevat alle primitieve datatypen die in informatiemodellen van Geonovum worden gebruikt. De datatypen zijn over drie packages verdeeld:</p>
<ul>
<li><strong>MIM datatypen</strong>: bevat de primitieve datatypen die zijn vastgelegd in de MIM standaard.</li>
<li><strong>ISO19107-2003</strong>: bevat de ruimtelijke datatypen die zijn vastgelegd is de ISO19107:2003 standaard.</li>
<li><strong>datatypen-overig</strong>: bevat overige datatypen die gebruikt worden in informatiemodellen maar niet in andere categorieën vallen.</li>
</ul>
</section>
<section id="sotd" class="introductory"><h2>Status van dit document</h2><p>Dit is een werkversie die op elk moment kan worden gewijzigd, verwijderd of vervangen door andere documenten. Het is geen stabiel document.</p></section><nav id="toc"><h2 class="introductory" id="inhoudsopgave">Inhoudsopgave</h2><ol class="toc"><li class="tocline"><a class="tocxref" href="#abstract">Samenvatting</a></li><li class="tocline"><a class="tocxref" href="#sotd">Status van dit document</a></li><li class="tocline"><a class="tocxref" href="#cat"><bdi class="secno">1. </bdi>Gegevensdefinitie</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#EAID_17883B31_A5DA_413b_8BC8_4048AE36E1BD"><bdi class="secno">1.1 </bdi> MIM datatypen - overzicht</a></li><li class="tocline"><a class="tocxref" href="#primitieve-datatypen"><bdi class="secno">1.2 </bdi>Primitieve datatypen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_MIMdatatypen_Month"><bdi class="secno">1.2.1 </bdi>Primitief datatype Month</a></li><li class="tocline"><a class="tocxref" href="#global_class_MIMdatatypen_CharacterString"><bdi class="secno">1.2.2 </bdi>Primitief datatype CharacterString</a></li><li class="tocline"><a class="tocxref" href="#global_class_MIMdatatypen_Date"><bdi class="secno">1.2.3 </bdi>Primitief datatype Date</a></li><li class="tocline"><a class="tocxref" href="#global_class_MIMdatatypen_DateTime"><bdi class="secno">1.2.4 </bdi>Primitief datatype DateTime</a></li><li class="tocline"><a class="tocxref" href="#global_class_MIMdatatypen_Integer"><bdi class="secno">1.2.5 </bdi>Primitief datatype Integer</a></li><li class="tocline"><a class="tocxref" href="#global_class_MIMdatatypen_URI"><bdi class="secno">1.2.6 </bdi>Primitief datatype URI</a></li><li class="tocline"><a class="tocxref" href="#global_class_MIMdatatypen_Decimal"><bdi class="secno">1.2.7 </bdi>Primitief datatype Decimal</a></li><li class="tocline"><a class="tocxref" href="#global_class_MIMdatatypen_Boolean"><bdi class="secno">1.2.8 </bdi>Primitief datatype Boolean</a></li><li class="tocline"><a class="tocxref" href="#global_class_MIMdatatypen_Day"><bdi class="secno">1.2.9 </bdi>Primitief datatype Day</a></li><li class="tocline"><a class="tocxref" href="#global_class_MIMdatatypen_Year"><bdi class="secno">1.2.10 </bdi>Primitief datatype Year</a></li><li class="tocline"><a class="tocxref" href="#global_class_MIMdatatypen_Real"><bdi class="secno">1.2.11 </bdi>Primitief datatype Real</a></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#cat"><bdi class="secno">2. </bdi>Gegevensdefinitie</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#EAID_C6A3DA8D_ECDB_4767_81E7_24B8386F2D6B"><bdi class="secno">2.1 </bdi> ISO19107-2003 - overzicht</a></li><li class="tocline"><a class="tocxref" href="#primitieve-datatypen-0"><bdi class="secno">2.2 </bdi>Primitieve datatypen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_ISO191072003_GM_Curve"><bdi class="secno">2.2.1 </bdi>Primitief datatype GM_Curve</a></li><li class="tocline"><a class="tocxref" href="#global_class_ISO191072003_GM_PointArray"><bdi class="secno">2.2.2 </bdi>Primitief datatype GM_PointArray</a></li><li class="tocline"><a class="tocxref" href="#global_class_ISO191072003_GM_Polygon"><bdi class="secno">2.2.3 </bdi>Primitief datatype GM_Polygon</a></li><li class="tocline"><a class="tocxref" href="#global_class_ISO191072003_GM_MultiSurface"><bdi class="secno">2.2.4 </bdi>Primitief datatype GM_MultiSurface</a></li><li class="tocline"><a class="tocxref" href="#global_class_ISO191072003_GM_ArcString"><bdi class="secno">2.2.5 </bdi>Primitief datatype GM_ArcString</a></li><li class="tocline"><a class="tocxref" href="#global_class_ISO191072003_GM_Geometry"><bdi class="secno">2.2.6 </bdi>Primitief datatype GM_Geometry</a></li><li class="tocline"><a class="tocxref" href="#global_class_ISO191072003_GM_Solid"><bdi class="secno">2.2.7 </bdi>Primitief datatype GM_Solid</a></li><li class="tocline"><a class="tocxref" href="#global_class_ISO191072003_GM_CompositePoint"><bdi class="secno">2.2.8 </bdi>Primitief datatype GM_CompositePoint</a></li><li class="tocline"><a class="tocxref" href="#global_class_ISO191072003_GM_MultiPrimitive"><bdi class="secno">2.2.9 </bdi>Primitief datatype GM_MultiPrimitive</a></li><li class="tocline"><a class="tocxref" href="#global_class_ISO191072003_GM_Composite"><bdi class="secno">2.2.10 </bdi>Primitief datatype GM_Composite</a></li><li class="tocline"><a class="tocxref" href="#global_class_ISO191072003_GM_Aggregate"><bdi class="secno">2.2.11 </bdi>Primitief datatype GM_Aggregate</a></li><li class="tocline"><a class="tocxref" href="#global_class_ISO191072003_GM_Primitive"><bdi class="secno">2.2.12 </bdi>Primitief datatype GM_Primitive</a></li><li class="tocline"><a class="tocxref" href="#global_class_ISO191072003_GM_OrientableSurface"><bdi class="secno">2.2.13 </bdi>Primitief datatype GM_OrientableSurface</a></li><li class="tocline"><a class="tocxref" href="#global_class_ISO191072003_GM_MultiPoint"><bdi class="secno">2.2.14 </bdi>Primitief datatype GM_MultiPoint</a></li><li class="tocline"><a class="tocxref" href="#global_class_ISO191072003_GM_Complex"><bdi class="secno">2.2.15 </bdi>Primitief datatype GM_Complex</a></li><li class="tocline"><a class="tocxref" href="#global_class_ISO191072003_GM_MultiCurve"><bdi class="secno">2.2.16 </bdi>Primitief datatype GM_MultiCurve</a></li><li class="tocline"><a class="tocxref" href="#global_class_ISO191072003_GM_LineString"><bdi class="secno">2.2.17 </bdi>Primitief datatype GM_LineString</a></li><li class="tocline"><a class="tocxref" href="#global_class_ISO191072003_GM_OrientableCurve"><bdi class="secno">2.2.18 </bdi>Primitief datatype GM_OrientableCurve</a></li><li class="tocline"><a class="tocxref" href="#global_class_ISO191072003_GM_Point"><bdi class="secno">2.2.19 </bdi>Primitief datatype GM_Point</a></li><li class="tocline"><a class="tocxref" href="#global_class_ISO191072003_GM_Position"><bdi class="secno">2.2.20 </bdi>Primitief datatype GM_Position</a></li><li class="tocline"><a class="tocxref" href="#global_class_ISO191072003_GM_Surface"><bdi class="secno">2.2.21 </bdi>Primitief datatype GM_Surface</a></li><li class="tocline"><a class="tocxref" href="#global_class_ISO191072003_GM_MultiSolid"><bdi class="secno">2.2.22 </bdi>Primitief datatype GM_MultiSolid</a></li><li class="tocline"><a class="tocxref" href="#global_class_ISO191072003_GM_Object"><bdi class="secno">2.2.23 </bdi>Primitief datatype GM_Object</a></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#cat"><bdi class="secno">3. </bdi>Gegevensdefinitie</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#EAID_3F2B2788_0AB5_4fa3_BA47_93A8E6E2A920"><bdi class="secno">3.1 </bdi> datatypen-overig - overzicht</a></li><li class="tocline"><a class="tocxref" href="#primitieve-datatypen-1"><bdi class="secno">3.2 </bdi>Primitieve datatypen </a><ol class="toc"><li class="tocline"><a class="tocxref" href="#global_class_datatypenoverig_Binary"><bdi class="secno">3.2.1 </bdi>Primitief datatype Binary</a></li><li class="tocline"><a class="tocxref" href="#global_class_datatypenoverig_Time"><bdi class="secno">3.2.2 </bdi>Primitief datatype Time</a></li><li class="tocline"><a class="tocxref" href="#global_class_datatypenoverig_GenericName"><bdi class="secno">3.2.3 </bdi>Primitief datatype GenericName</a></li><li class="tocline"><a class="tocxref" href="#global_class_datatypenoverig_Measure"><bdi class="secno">3.2.4 </bdi>Primitief datatype Measure</a></li><li class="tocline"><a class="tocxref" href="#global_class_datatypenoverig_DoubleList"><bdi class="secno">3.2.5 </bdi>Primitief datatype DoubleList</a></li><li class="tocline"><a class="tocxref" href="#global_class_datatypenoverig_GM_SENTINEL"><bdi class="secno">3.2.6 </bdi>Primitief datatype GM_SENTINEL</a></li><li class="tocline"><a class="tocxref" href="#global_class_datatypenoverig_GM_Geometrycollection"><bdi class="secno">3.2.7 </bdi>Primitief datatype GM_Geometrycollection</a></li><li class="tocline"><a class="tocxref" href="#global_class_datatypenoverig_ScopedName"><bdi class="secno">3.2.8 </bdi>Primitief datatype ScopedName</a></li><li class="tocline"><a class="tocxref" href="#global_class_datatypenoverig_GM_AbstractGMLType"><bdi class="secno">3.2.9 </bdi>Primitief datatype GM_AbstractGMLType</a></li><li class="tocline"><a class="tocxref" href="#global_class_datatypenoverig_GM_AbstractFeatureType"><bdi class="secno">3.2.10 </bdi>Primitief datatype GM_AbstractFeatureType</a></li><li class="tocline"><a class="tocxref" href="#global_class_datatypenoverig_GM_AbstractFeatureCollection"><bdi class="secno">3.2.11 </bdi>Primitief datatype GM_AbstractFeatureCollection</a></li><li class="tocline"><a class="tocxref" href="#global_class_datatypenoverig_GM_AbstractFeatureMember"><bdi class="secno">3.2.12 </bdi>Primitief datatype GM_AbstractFeatureMember</a></li><li class="tocline"><a class="tocxref" href="#global_class_datatypenoverig_GM_AbstractFeature"><bdi class="secno">3.2.13 </bdi>Primitief datatype GM_AbstractFeature</a></li><li class="tocline"><a class="tocxref" href="#global_class_datatypenoverig_GM_MultiGeometry"><bdi class="secno">3.2.14 </bdi>Primitief datatype GM_MultiGeometry</a></li><li class="tocline"><a class="tocxref" href="#global_class_datatypenoverig_URL"><bdi class="secno">3.2.15 </bdi>Primitief datatype URL</a></li><li class="tocline"><a class="tocxref" href="#global_class_datatypenoverig_TM_Period"><bdi class="secno">3.2.16 </bdi>Primitief datatype TM_Period</a></li></ol></li></ol></li><li class="tocline"><a class="tocxref" href="#conformance"><bdi class="secno">4. </bdi>Conformiteit</a></li><li class="tocline"><a class="tocxref" href="#tof"><bdi class="secno">5. </bdi>Lijst met figuren</a></li><li class="tocline"><a class="tocxref" href="#index"><bdi class="secno">A. </bdi>Index</a><ol class="toc"><li class="tocline"><a class="tocxref" href="#index-defined-here"><bdi class="secno">A.1 </bdi>Begrippen gedefinieerd door deze specificatie</a></li><li class="tocline"><a class="tocxref" href="#index-defined-elsewhere"><bdi class="secno">A.2 </bdi>Begrippen gedefinieerd door verwijzing</a></li></ol></li></ol></nav>
<section id="cat" class="normative">
<div class="header-wrapper"><h2 id="x1-gegevensdefinitie"><bdi class="secno">1. </bdi>Gegevensdefinitie</h2><a class="self-link" href="#cat" aria-label="Permalink for Section 1."></a></div>
<section id="EAID_17883B31_A5DA_413b_8BC8_4048AE36E1BD">
<div class="header-wrapper"><h3 id="x1-1-mim-datatypen-overzicht"><bdi class="secno">1.1 </bdi> MIM datatypen - overzicht</h3><a class="self-link" href="#EAID_17883B31_A5DA_413b_8BC8_4048AE36E1BD" aria-label="Permalink for Section 1.1"></a></div>
<div class="imageinfo overview">
<figure id="fig-mim-datatypen"><img src="data/Images/EAID_17883B31_A5DA_413b_8BC8_4048AE36E1BD.png" usemap="#imagemap-EAID_17883B31_A5DA_413b_8BC8_4048AE36E1BD" alt="Diagram: Overzicht van de primitieve datatypen uit het MIM model"><figcaption><a class="self-link" href="#fig-mim-datatypen">Figuur <bdi class="figno">1</bdi></a> <span class="fig-title">MIM datatypen</span></figcaption>
</figure><map name="imagemap-EAID_17883B31_A5DA_413b_8BC8_4048AE36E1BD"><area shape="rect" alt="Year" coords="14,14,137,96" href="#global_class_MIMdatatypen_Year"><area shape="rect" alt="URI" coords="159,14,282,96" href="#global_class_MIMdatatypen_URI"><area shape="rect" alt="Month" coords="300,14,423,96" href="#global_class_MIMdatatypen_Month"><area shape="rect" alt="Integer" coords="446,14,569,96" href="#global_class_MIMdatatypen_Integer"><area shape="rect" alt="Decimal" coords="19,116,142,198" href="#global_class_MIMdatatypen_Decimal"><area shape="rect" alt="Day" coords="159,116,282,198" href="#global_class_MIMdatatypen_Day"><area shape="rect" alt="DateTime" coords="300,116,423,198" href="#global_class_MIMdatatypen_DateTime"><area shape="rect" alt="Date" coords="438,116,561,198" href="#global_class_MIMdatatypen_Date"><area shape="rect" alt="CharacterString" coords="26,216,149,298" href="#global_class_MIMdatatypen_CharacterString"><area shape="rect" alt="Boolean" coords="168,216,291,298" href="#global_class_MIMdatatypen_Boolean"><area shape="rect" alt="Real" coords="306,216,430,298" href="#global_class_MIMdatatypen_Real"></map><p>
</p><p>Overzicht van de primitieve datatypen uit het MIM model</p>
<p></p>
</div>
</section>
<section id="primitieve-datatypen">
<div class="header-wrapper"><h3 id="x1-2-primitieve-datatypen"><bdi class="secno">1.2 </bdi>Primitieve datatypen </h3><a class="self-link" href="#primitieve-datatypen" aria-label="Permalink for Section 1.2"></a></div>
<section id="global_class_MIMdatatypen_Month">
<div class="header-wrapper"><h4 id="x1-2-1-primitief-datatype-month"><bdi class="secno">1.2.1 </bdi>Primitief datatype Month</h4><a class="self-link" href="#global_class_MIMdatatypen_Month" aria-label="Permalink for Section 1.2.1"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>Month</td>
</tr>
<tr>
<th>Definitie</th>
<td>
<p>2-cijferige maand uitgedrukt in mm conform </p>
</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_MIMdatatypen_CharacterString">
<div class="header-wrapper"><h4 id="x1-2-2-primitief-datatype-character-string"><bdi class="secno">1.2.2 </bdi>Primitief datatype CharacterString</h4><a class="self-link" href="#global_class_MIMdatatypen_CharacterString" aria-label="Permalink for Section 1.2.2"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>CharacterString</td>
</tr>
<tr>
<th>Definitie</th>
<td>
<p>Zie [iso-19103]. Vrij vertaald: alle alfanumerieke tekens en speciale tekens die horen
bij de gekozen characterset (standaard UTF-8), dus met diakrieten, white spaces, -teken
en newlines of HTML opmaak e.d. Mag starten met spatie. De maximale lengte is onbepaald.</p>
</td>
</tr>
<tr>
<th>Toelichting</th>
<td>
<p>Opmerking: getallen (ISO Numbers) met voorloopnullen worden opgenomen als CharacterString,
met een patroon of formeel patroon. Bij het metagegeven Waardenverzameling attribuutsoort
wordt dit dan (ook) gespecificeerd.</p>
</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_MIMdatatypen_Date">
<div class="header-wrapper"><h4 id="x1-2-3-primitief-datatype-date"><bdi class="secno">1.2.3 </bdi>Primitief datatype Date</h4><a class="self-link" href="#global_class_MIMdatatypen_Date" aria-label="Permalink for Section 1.2.3"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>Date</td>
</tr>
<tr>
<th>Definitie</th>
<td>
<p>4-cijferig jaar, 2-cijferig maand, 2-cijferig dag uitgedrukt in yyyy-mm-dd conform
</p>
</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_MIMdatatypen_DateTime">
<div class="header-wrapper"><h4 id="x1-2-4-primitief-datatype-date-time"><bdi class="secno">1.2.4 </bdi>Primitief datatype DateTime</h4><a class="self-link" href="#global_class_MIMdatatypen_DateTime" aria-label="Permalink for Section 1.2.4"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>DateTime</td>
</tr>
<tr>
<th>Definitie</th>
<td>
<p>yyyy-mm-ddThh:mm:ss conform </p>
</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_MIMdatatypen_Integer">
<div class="header-wrapper"><h4 id="x1-2-5-primitief-datatype-integer"><bdi class="secno">1.2.5 </bdi>Primitief datatype Integer</h4><a class="self-link" href="#global_class_MIMdatatypen_Integer" aria-label="Permalink for Section 1.2.5"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>Integer</td>
</tr>
<tr>
<th>Definitie</th>
<td>
<p>Zie [iso-19103] (subtype van ISO Number). Vrij vertaald: geheel getal, lengte is minimaal
1 en maximale lengte is onbepaald, zonder voorloopnullen. Opmerking: t.a.v. positieve
en negatieve getalen en + en - tekens: bijvoorbeeld -2,0 Het (formeel) patroon geeft
aan of een + en/of - teken gebruikt mag worden in het gegeven.</p>
</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_MIMdatatypen_URI">
<div class="header-wrapper"><h4 id="x1-2-6-primitief-datatype-uri"><bdi class="secno">1.2.6 </bdi>Primitief datatype URI</h4><a class="self-link" href="#global_class_MIMdatatypen_URI" aria-label="Permalink for Section 1.2.6"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>URI</td>
</tr>
<tr>
<th>Definitie</th>
<td>
<p>Unieke identificatie op internet conform RFC3986 en de URI-strategie Linked Open Data.
Gestandaardiseerde manier om op het internet dingen (pagina's met informatie, objecten,
datasets) uniek te identificeren.</p>
</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_MIMdatatypen_Decimal">
<div class="header-wrapper"><h4 id="x1-2-7-primitief-datatype-decimal"><bdi class="secno">1.2.7 </bdi>Primitief datatype Decimal</h4><a class="self-link" href="#global_class_MIMdatatypen_Decimal" aria-label="Permalink for Section 1.2.7"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>Decimal</td>
</tr>
<tr>
<th>Definitie</th>
<td>
<p>Zie [iso-19103] (subtype van ISO Number). Vrij vertaald: een decimal is een gegevenstype
waarin het getal een exacte waarde vertegenwoordigt, als een eindige weergave van
een decimaal getal. </p>
</td>
</tr>
<tr>
<th>Toelichting</th>
<td>
<p>Aangezien veel valuta's decimaal zijn, hebben deze weergaven de voorkeur bij het omgaan
met dergelijke waarden.
Opmerking 1: Dit verschilt van real, want real is een geschatte waarde en Decimal
is exact.
Opmerking 2: t.a.v. positieve en negatieve getalen en + en - tekens: zie Integer.</p>
</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_MIMdatatypen_Boolean">
<div class="header-wrapper"><h4 id="x1-2-8-primitief-datatype-boolean"><bdi class="secno">1.2.8 </bdi>Primitief datatype Boolean</h4><a class="self-link" href="#global_class_MIMdatatypen_Boolean" aria-label="Permalink for Section 1.2.8"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>Boolean</td>
</tr>
<tr>
<th>Definitie</th>
<td>
<p>Indicatie met mogelijke waarden True, false, 1 of 0. True en 1 hebben een identieke
betekenis: Ja. False en 0 hebben een identieke betekenis: Nee. Opmerking: t.a.v. Ja
of Nee. </p>
</td>
</tr>
<tr>
<th>Toelichting</th>
<td>
<p>Wanneer u de Ja of Nee wilt gebruiken, gebruik dan bv. een Enumeratie genaamd Indicatie,
of gebruik AN met een lengte en een (formeel) patroon.</p>
</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_MIMdatatypen_Day">
<div class="header-wrapper"><h4 id="x1-2-9-primitief-datatype-day"><bdi class="secno">1.2.9 </bdi>Primitief datatype Day</h4><a class="self-link" href="#global_class_MIMdatatypen_Day" aria-label="Permalink for Section 1.2.9"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>Day</td>
</tr>
<tr>
<th>Definitie</th>
<td>
<p>2-cijferige dag uitgedrukt in dd conform </p>
</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_MIMdatatypen_Year">
<div class="header-wrapper"><h4 id="x1-2-10-primitief-datatype-year"><bdi class="secno">1.2.10 </bdi>Primitief datatype Year</h4><a class="self-link" href="#global_class_MIMdatatypen_Year" aria-label="Permalink for Section 1.2.10"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>Year</td>
</tr>
<tr>
<th>Definitie</th>
<td>
<p>4-cijferig jaar uitgedrukt in yyyy conform .</p>
</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_MIMdatatypen_Real">
<div class="header-wrapper"><h4 id="x1-2-11-primitief-datatype-real"><bdi class="secno">1.2.11 </bdi>Primitief datatype Real</h4><a class="self-link" href="#global_class_MIMdatatypen_Real" aria-label="Permalink for Section 1.2.11"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>Real</td>
</tr>
<tr>
<th>Definitie</th>
<td>
<p>Zie [iso-19103] (subtype van ISO Number). Vrij vertaald: een real is een zwevendekommagetal,
waarbij de precisie bepaald wordt door het aantal getoonde cijfers. Het getoonde getal
is een schatting en geeft niet noodzakelijk de exacte waarde weer. </p>
</td>
</tr>
<tr>
<th>Toelichting</th>
<td>
<p>Dit verschilt van decimal, want decimal is een exacte waarde en real is geschat. Opmerking
2: t.a.v. positieve en negatieve getalen en + en - tekens: zie Integer.</p>
</td>
</tr>
</tbody>
</table>
</section>
</section>
</section>
<section id="cat" class="normative">
<div class="header-wrapper"><h2 id="x2-gegevensdefinitie"><bdi class="secno">2. </bdi>Gegevensdefinitie</h2><a class="self-link" href="#cat" aria-label="Permalink for Section 2."></a></div>
<section id="EAID_C6A3DA8D_ECDB_4767_81E7_24B8386F2D6B">
<div class="header-wrapper"><h3 id="x2-1-iso19107-2003-overzicht"><bdi class="secno">2.1 </bdi> ISO19107-2003 - overzicht</h3><a class="self-link" href="#EAID_C6A3DA8D_ECDB_4767_81E7_24B8386F2D6B" aria-label="Permalink for Section 2.1"></a></div>
<div class="imageinfo overview">
<figure id="fig-iso19107-2003"><img src="data/Images/EAID_C6A3DA8D_ECDB_4767_81E7_24B8386F2D6B.png" usemap="#imagemap-EAID_C6A3DA8D_ECDB_4767_81E7_24B8386F2D6B" alt="Diagram: Overzicht van de primitieve datatypen uit ISO19107:2003"><figcaption><a class="self-link" href="#fig-iso19107-2003">Figuur <bdi class="figno">2</bdi></a> <span class="fig-title">ISO19107-2003</span></figcaption>
</figure><map name="imagemap-EAID_C6A3DA8D_ECDB_4767_81E7_24B8386F2D6B"><area shape="rect" alt="GM_MultiPrimitive" coords="606,424,729,506" href="#global_class_ISO191072003_GM_MultiPrimitive"><area shape="rect" alt="GM_Surface" coords="453,424,576,506" href="#global_class_ISO191072003_GM_Surface"><area shape="rect" alt="GM_Solid" coords="308,424,431,506" href="#global_class_ISO191072003_GM_Solid"><area shape="rect" alt="GM_Primitive" coords="164,424,287,506" href="#global_class_ISO191072003_GM_Primitive"><area shape="rect" alt="GM_Position" coords="454,323,577,405" href="#global_class_ISO191072003_GM_Position"><area shape="rect" alt="GM_Polygon" coords="22,424,145,506" href="#global_class_ISO191072003_GM_Polygon"><area shape="rect" alt="GM_PointArray" coords="534,226,657,308" href="#global_class_ISO191072003_GM_PointArray"><area shape="rect" alt="GM_Point" coords="308,323,431,405" href="#global_class_ISO191072003_GM_Point"><area shape="rect" alt="GM_OrientableCurve" coords="606,323,758,405" href="#global_class_ISO191072003_GM_OrientableCurve"><area shape="rect" alt="GM_OrientableSurface" coords="308,220,521,302" href="#global_class_ISO191072003_GM_OrientableSurface"><area shape="rect" alt="GM_Object" coords="22,323,145,405" href="#global_class_ISO191072003_GM_Object"><area shape="rect" alt="GM_MultiSurface" coords="164,323,287,405" href="#global_class_ISO191072003_GM_MultiSurface"><area shape="rect" alt="GM_MultiSolid" coords="577,116,700,198" href="#global_class_ISO191072003_GM_MultiSolid"><area shape="rect" alt="GM_MultiPoint" coords="164,220,287,302" href="#global_class_ISO191072003_GM_MultiPoint"><area shape="rect" alt="GM_MultiCurve" coords="22,220,145,302" href="#global_class_ISO191072003_GM_MultiCurve"><area shape="rect" alt="GM_LineString" coords="436,116,560,198" href="#global_class_ISO191072003_GM_LineString"><area shape="rect" alt="GM_Geometry" coords="293,116,416,198" href="#global_class_ISO191072003_GM_Geometry"><area shape="rect" alt="GM_Curve" coords="151,112,274,194" href="#global_class_ISO191072003_GM_Curve"><area shape="rect" alt="GM_CompositePoint" coords="453,14,627,96" href="#global_class_ISO191072003_GM_CompositePoint"><area shape="rect" alt="GM_Composite" coords="14,112,137,194" href="#global_class_ISO191072003_GM_Composite"><area shape="rect" alt="GM_Complex" coords="646,19,769,101" href="#global_class_ISO191072003_GM_Complex"><area shape="rect" alt="GM_ArcString" coords="313,14,436,96" href="#global_class_ISO191072003_GM_ArcString"><area shape="rect" alt="GM_Aggregate" coords="151,14,274,96" href="#global_class_ISO191072003_GM_Aggregate"></map><p>
</p><p>Overzicht van de primitieve datatypen uit ISO19107:2003</p>
<p></p>
</div>
</section>
<section id="primitieve-datatypen-0">
<div class="header-wrapper"><h3 id="x2-2-primitieve-datatypen"><bdi class="secno">2.2 </bdi>Primitieve datatypen </h3><a class="self-link" href="#primitieve-datatypen-0" aria-label="Permalink for Section 2.2"></a></div>
<section id="global_class_ISO191072003_GM_Curve">
<div class="header-wrapper"><h4 id="x2-2-1-primitief-datatype-gm_curve"><bdi class="secno">2.2.1 </bdi>Primitief datatype GM_Curve</h4><a class="self-link" href="#global_class_ISO191072003_GM_Curve" aria-label="Permalink for Section 2.2.1"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>GM_Curve</td>
</tr>
<tr>
<th>Definitie</th>
<td>
<p>Lijn. 1-dimensionale geometrie.</p>
</td>
</tr>
<tr>
<th>Toelichting</th>
<td>
<p>Een curve is simple indien er geen zelfintersectie optreedt.</p>
<p>Lijnen zijn continu en hebben een meetbare lengte in een coördinaten systeem. Lijnen
bestaan uit een of meer lijnsegmenten waarbij de lijnsegmenten verschillende interpolatiemethoden
kunnen gebruiken. Lijnsegmenten zijn aan elkaar verbonden waarbij het eindpunt van
elk segment, behalve de laatste, verbonden is aan het beginpunt van het volgende.
Wanneer het begin- en eindpunt van een lijn met elkaar verbonden zijn is de lijn gesloten
en spreken we ook wel van een Ring.</p>
</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_ISO191072003_GM_PointArray">
<div class="header-wrapper"><h4 id="x2-2-2-primitief-datatype-gm_point-array"><bdi class="secno">2.2.2 </bdi>Primitief datatype GM_PointArray</h4><a class="self-link" href="#global_class_ISO191072003_GM_PointArray" aria-label="Permalink for Section 2.2.2"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>GM_PointArray</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_ISO191072003_GM_Polygon">
<div class="header-wrapper"><h4 id="x2-2-3-primitief-datatype-gm_polygon"><bdi class="secno">2.2.3 </bdi>Primitief datatype GM_Polygon</h4><a class="self-link" href="#global_class_ISO191072003_GM_Polygon" aria-label="Permalink for Section 2.2.3"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>GM_Polygon</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_ISO191072003_GM_MultiSurface">
<div class="header-wrapper"><h4 id="x2-2-4-primitief-datatype-gm_multi-surface"><bdi class="secno">2.2.4 </bdi>Primitief datatype GM_MultiSurface</h4><a class="self-link" href="#global_class_ISO191072003_GM_MultiSurface" aria-label="Permalink for Section 2.2.4"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>GM_MultiSurface</td>
</tr>
<tr>
<th>Definitie</th>
<td>
<p>Multivlak. Verzameling van vlakken die gezamenlijk één object vormen (instanties van
GM_Surface).</p>
</td>
</tr>
<tr>
<th>Toelichting</th>
<td>
<p>Vlakken in een multisurface mogen elkaar niet overlappen. In een simple multisurface
mogen vlakken elkaar alleen raken in een eindig aantal punten (wel punten maar geen
grenzen gemeenschappelijk)
Zie verder: https://docs.geostandaarden.nl/nen3610/gimeg/#gm_multisurface.</p>
</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_ISO191072003_GM_ArcString">
<div class="header-wrapper"><h4 id="x2-2-5-primitief-datatype-gm_arc-string"><bdi class="secno">2.2.5 </bdi>Primitief datatype GM_ArcString</h4><a class="self-link" href="#global_class_ISO191072003_GM_ArcString" aria-label="Permalink for Section 2.2.5"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>GM_ArcString</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_ISO191072003_GM_Geometry">
<div class="header-wrapper"><h4 id="x2-2-6-primitief-datatype-gm_geometry"><bdi class="secno">2.2.6 </bdi>Primitief datatype GM_Geometry</h4><a class="self-link" href="#global_class_ISO191072003_GM_Geometry" aria-label="Permalink for Section 2.2.6"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>GM_Geometry</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_ISO191072003_GM_Solid">
<div class="header-wrapper"><h4 id="x2-2-7-primitief-datatype-gm_solid"><bdi class="secno">2.2.7 </bdi>Primitief datatype GM_Solid</h4><a class="self-link" href="#global_class_ISO191072003_GM_Solid" aria-label="Permalink for Section 2.2.7"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>GM_Solid</td>
</tr>
<tr>
<th>Definitie</th>
<td>
<p>Volume. 3-dimensionaal geometrietype.</p>
</td>
</tr>
<tr>
<th>Toelichting</th>
<td>
<p>De geometrie van een GM<em>Solid is opgebouwd uit GM</em>SolidBoundaries (grenzen) die elk weer een GM_Surface zijn. Deze zijn naar buiten
toe georiënteerd: de bovenkant van elk vlak is aan de buitenkant van het volume object
te zien.</p>
<p>Zie ook: https://docs.geostandaarden.nl/nen3610/gimeg/#gm_surface</p>
</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_ISO191072003_GM_CompositePoint">
<div class="header-wrapper"><h4 id="x2-2-8-primitief-datatype-gm_composite-point"><bdi class="secno">2.2.8 </bdi>Primitief datatype GM_CompositePoint</h4><a class="self-link" href="#global_class_ISO191072003_GM_CompositePoint" aria-label="Permalink for Section 2.2.8"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>GM_CompositePoint</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_ISO191072003_GM_MultiPrimitive">
<div class="header-wrapper"><h4 id="x2-2-9-primitief-datatype-gm_multi-primitive"><bdi class="secno">2.2.9 </bdi>Primitief datatype GM_MultiPrimitive</h4><a class="self-link" href="#global_class_ISO191072003_GM_MultiPrimitive" aria-label="Permalink for Section 2.2.9"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>GM_MultiPrimitive</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_ISO191072003_GM_Composite">
<div class="header-wrapper"><h4 id="x2-2-10-primitief-datatype-gm_composite"><bdi class="secno">2.2.10 </bdi>Primitief datatype GM_Composite</h4><a class="self-link" href="#global_class_ISO191072003_GM_Composite" aria-label="Permalink for Section 2.2.10"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>GM_Composite</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_ISO191072003_GM_Aggregate">
<div class="header-wrapper"><h4 id="x2-2-11-primitief-datatype-gm_aggregate"><bdi class="secno">2.2.11 </bdi>Primitief datatype GM_Aggregate</h4><a class="self-link" href="#global_class_ISO191072003_GM_Aggregate" aria-label="Permalink for Section 2.2.11"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>GM_Aggregate</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_ISO191072003_GM_Primitive">
<div class="header-wrapper"><h4 id="x2-2-12-primitief-datatype-gm_primitive"><bdi class="secno">2.2.12 </bdi>Primitief datatype GM_Primitive</h4><a class="self-link" href="#global_class_ISO191072003_GM_Primitive" aria-label="Permalink for Section 2.2.12"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>GM_Primitive</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_ISO191072003_GM_OrientableSurface">
<div class="header-wrapper"><h4 id="x2-2-13-primitief-datatype-gm_orientable-surface"><bdi class="secno">2.2.13 </bdi>Primitief datatype GM_OrientableSurface</h4><a class="self-link" href="#global_class_ISO191072003_GM_OrientableSurface" aria-label="Permalink for Section 2.2.13"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>GM_OrientableSurface</td>
</tr>
</tbody>
</table>
</section>
<section id="global_class_ISO191072003_GM_MultiPoint">
<div class="header-wrapper"><h4 id="x2-2-14-primitief-datatype-gm_multi-point"><bdi class="secno">2.2.14 </bdi>Primitief datatype GM_MultiPoint</h4><a class="self-link" href="#global_class_ISO191072003_GM_MultiPoint" aria-label="Permalink for Section 2.2.14"></a></div>
<table style="width: 100%;">
<colgroup style="width: 30%;"></colgroup>
<colgroup style="width: 70%;"></colgroup>
<tbody>
<tr>
<th>Naam</th>
<td>GM_MultiPoint</td>
</tr>
<tr>
<th>Definitie</th>
<td>
<p>Multipunt. Verzameling van punten die gezamenlijk één object vormen. (instanties van
GM_Point). </p>