-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsnapshot.html
More file actions
1783 lines (1710 loc) · 78.8 KB
/
snapshot.html
File metadata and controls
1783 lines (1710 loc) · 78.8 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 content="text/html; charset=utf-8" http-equiv="content-type">
<meta name="generator" content="ReSpec 35.8.0">
<style>
.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}
.issue.closed span.issue-number::after{content:" (Closed)";font-size:smaller}
.warning{border-color:#f11;border-color:var(--warning-border,#f11);border-width:.2em;border-style:solid;background:#fbe9e9;background:var(--warning-bg,#fbe9e9);color:#000;color:var(--text,#000)}
.warning-title:before{content:"⚠";font-size:1.3em;float:left;padding-right:.3em;margin-top:-.3em}
li.task-list-item{list-style:none}
input.task-list-item-checkbox{margin:0 .35em .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:700;border-radius:4px;position:relative;bottom:2px;border:none;display:inline-block}
</style>
<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>Geonovum template voor ReSpec</title>
<link rel="shortcut icon" type="image/x-icon" href="https://docs.geostandaarden.nl/media/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:italic}
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;background:0 0}
</style>
<meta name="color-scheme" content="light">
<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="TODO: vul in abstract.md een abstract in.">
<style>
.hljs{--base:#fafafa;--mono-1:#383a42;--mono-2:#686b77;--mono-3:#717277;--hue-1:#0b76c5;--hue-2:#336ae3;--hue-3:#a626a4;--hue-4:#42803c;--hue-5:#ca4706;--hue-5-2:#c91243;--hue-6:#986801;--hue-6-2:#9a6a01}
@media (prefers-color-scheme:dark){
.hljs{--base:#282c34;--mono-1:#abb2bf;--mono-2:#818896;--mono-3:#5c6370;--hue-1:#56b6c2;--hue-2:#61aeee;--hue-3:#c678dd;--hue-4:#98c379;--hue-5:#e06c75;--hue-5-2:#be5046;--hue-6:#d19a66;--hue-6-2:#e6c07b}
}
.hljs{display:block;overflow-x:auto;padding:.5em;color:#383a42;color:var(--mono-1,#383a42);background:#fafafa;background:var(--base,#fafafa)}
.hljs-comment,.hljs-quote{color:#717277;color:var(--mono-3,#717277);font-style:italic}
.hljs-doctag,.hljs-formula,.hljs-keyword{color:#a626a4;color:var(--hue-3,#a626a4)}
.hljs-deletion,.hljs-name,.hljs-section,.hljs-selector-tag,.hljs-subst{color:#ca4706;color:var(--hue-5,#ca4706);font-weight:700}
.hljs-literal{color:#0b76c5;color:var(--hue-1,#0b76c5)}
.hljs-addition,.hljs-attribute,.hljs-meta-string,.hljs-regexp,.hljs-string{color:#42803c;color:var(--hue-4,#42803c)}
.hljs-built_in,.hljs-class .hljs-title{color:#9a6a01;color:var(--hue-6-2,#9a6a01)}
.hljs-attr,.hljs-number,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-pseudo,.hljs-template-variable,.hljs-type,.hljs-variable{color:#986801;color:var(--hue-6,#986801)}
.hljs-bullet,.hljs-link,.hljs-meta,.hljs-selector-id,.hljs-symbol,.hljs-title{color:#336ae3;color:var(--hue-2,#336ae3)}
.hljs-emphasis{font-style:italic}
.hljs-strong{font-weight:700}
.hljs-link{text-decoration:underline}
</style>
<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: #80CC28;
}
</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_organisationStylesURL": "https://tools.geostandaarden.nl/respec/style/",
"nl_organisationPublishURL": "https://docs.geostandaarden.nl/",
"logos": [
{
"src": "https://docs.geostandaarden.nl/media/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.",
"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.",
"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://docs.geostandaarden.nl/media/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://docs.geostandaarden.nl/media/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://docs.geostandaarden.nl/media/cc-by-nd.svg"
}
},
"localBiblio": {
"SemVer": {
"href": "https://semver.org",
"title": "Semantic Versioning 2.0.0",
"authors": [
"T. Preston-Werner"
],
"date": "June 2013",
"id": "semver"
},
"MIM12": {
"id": "MIM12",
"title": "MIM - Metamodel Informatie Modellering (Versie 1.2)",
"href": "https://docs.geostandaarden.nl/mim/def-st-mim-20240613/",
"status": "Definitief",
"publisher": "Geonovum",
"date": "2024-06-13"
},
"3DTILES": {
"title": "3D Tiles Specification 1.0",
"href": "http://docs.opengeospatial.org/cs/18-053r2/18-053r2.html",
"status": "Approved for public release",
"publisher": "Open Geospatial Consortium (OGC)",
"editors": [
"Patrick Cozzi",
"Sean Lilley",
"Gabby Getz"
],
"date": "2019-01-31",
"id": "3DTILES"
},
"adr-mod-geo": {
"title": "API Design rules Module: Geospatial",
"href": "https://docs.geostandaarden.nl/api/API-Strategie-mod-geo/",
"status": "Consultatieversie",
"publisher": "Geonovum",
"editors": [
"Linda van den Brink"
],
"authors": [
"Pieter Bresters",
"Linda van den Brink",
"Paul van Genuchten",
"George Mathijssen",
"Mark Strijker"
],
"date": "2022-09-30",
"id": "adr-mod-geo"
},
"CIS10": {
"title": "ISO 19123-2:2018 Geographic information — Schema for coverage geometry and functions — Part 2: Coverage implementation schema",
"href": "https://www.iso.org/standard/70948.html",
"status": "Published",
"publisher": "ISD",
"date": "2018-10-01",
"id": "CIS10"
},
"CityGML2": {
"title": "OGC City Geography Markup Language (CityGML) Encoding Standard",
"href": "https://portal.ogc.org/files/?artifact_id=47842",
"status": "Published",
"publisher": "Open Geospatial Consortium",
"editors": [
"Gerhard Gröger",
"Thomas H. Kolbe",
"Claus Nagel",
"Karl-Heinz Häfele"
],
"date": "2012-04-04",
"id": "CityGML2"
},
"CityGML3": {
"title": "OGC City Geography Markup Language (CityGML) Part 1: Conceptual Model Standard v3.0",
"href": "https://docs.ogc.org/is/20-010/20-010.html",
"status": "Published",
"publisher": "Open Geospatial Consortium",
"editors": [
"Thomas H. Kolbe",
"Tatjana Kutzner",
"Carl Stephen Smyth",
"Claus Nagel",
"Carsten Roensdorf",
"Charles Heazel"
],
"date": "2021-09-13",
"id": "CityGML3"
},
"CityJSON": {
"title": "CityJSON Community Standard 1.0",
"href": "https://docs.ogc.org/cs/20-072r2/20-072r2.html",
"status": "Published",
"publisher": "Open Geospatial Consortium",
"editors": [
"Hugo Ledoux"
],
"date": "2021-08-13",
"id": "CityJSON"
},
"COVJSON": {
"title": "OGC CoverageJSON Community Standard 1.0-draft_0.2.2",
"href": "https://portal.ogc.org/files/102051",
"status": "Draft",
"publisher": "Open Geospatial Consortium",
"editors": [
"Chris Little",
"Jon Blower",
"Maik Riechert"
],
"id": "COVJSON"
},
"CSW2APISO": {
"title": "OpenGIS Catalogue Services Specification 2.0.2 - ISO Metadata Application Profile",
"href": "http://portal.opengeospatial.org/files/?artifact_id=21460",
"status": [
"Adopted specification"
],
"publisher": "Open Geospatial Consortium",
"id": "CSW2APISO"
},
"CSWISOAP": {
"title": "OGC 07-045r2: OGC Catalogue Services Specification 2.0.2 - ISO Metadata Application Profile: Corrigendum, version 1.0.2",
"href": "https://portal.ogc.org/files/80534",
"status": "Approved",
"publisher": "Open Geospatial Consortium (OGC)",
"editors": [
"Uwe Voges",
"Kristian Senkler"
],
"date": "2020-11-19",
"id": "CSWISOAP"
},
"DCAT-AP-2.1.1": {
"title": "DCAT Application Profile for data portals in Europe 2.1.1",
"href": "https://joinup.ec.europa.eu/collection/semantic-interoperability-community-semic/solution/dcat-application-profile-data-portals-europe/releases",
"publisher": "European Commission",
"date": "2022-06-24",
"id": "DCAT-AP-2.1.1"
},
"epsg": {
"title": "EPSG Geodetic Parameter Dataset",
"href": "https://epsg.org/home.html",
"status": "Published",
"publisher": "Geodesy Subcommittee of the IOGP Geomatics Committee",
"id": "epsg"
},
"FE20": {
"title": "OGC 09-026r2: OGC Filter Encoding 2.0 Encoding Standard - With Corrigendum, Version 2.0.3",
"href": "http://docs.opengeospatial.org/is/09-026r2/09-026r2.html",
"status": "Approved",
"publisher": "Open Geospatial Consortium (OGC)",
"editors": "Panagiotis (Peter) A. Vretanos",
"date": "2014-08-18",
"id": "FE20"
},
"GeoPackage": {
"title": "OGC GeoPackage Encoding Standard - with Corrigendum, v1.3.1",
"href": "https://www.geopackage.org/spec131/",
"status": "Published",
"publisher": "Open Geospatial Consortium",
"editors": [
"Jeff Yutzler"
],
"date": "2021-11-16",
"id": "GeoPackage"
},
"GEOSPARQL11": {
"title": "OGC GeoSPARQL - A Geographic Query Language for RDF Data",
"href": "https://opengeospatial.github.io/ogc-geosparql/geosparql11/spec.html",
"status": "Draft",
"publisher": "Open Geospatial Consortium (OGC)",
"editors": [
"Nicholas J. Car",
"Timo Homburg",
"Matthew Perry",
"John Herring",
"Frans Knibbe",
"Simon J.D. Cox",
"Joseph Abhayaratna",
"Mathias Bonduel"
],
"date": "2022",
"id": "GEOSPARQL11"
},
"GeoTIFF": {
"title": "OGC GeoTIFF standard v1.1",
"href": "http://docs.opengeospatial.org/is/19-008r4/19-008r4.html",
"status": "Published",
"publisher": "Open Geospatial Consortium",
"editors": [
"Emmanuel Devys",
"Ted Habermann",
"Chuck Heazel",
"Roger Lott",
"Even Rouault"
],
"date": "2019-09-14",
"id": "GeoTIFF"
},
"GIMEG": {
"href": "https://docs.geostandaarden.nl/nen3610/gimeg",
"publisher": "Geonovum",
"status": "Vastgesteld",
"authors": [
"Linda van den Brink",
"Paul Janssen",
"Wilko Quak"
],
"title": "Geometrie in model en GML",
"date": "2021-03-26",
"id": "GIMEG"
},
"GML31": {
"title": "OpenGIS® Geography Markup Language (GML) Implementation Specification, v3.1.1",
"href": "https://portal.ogc.org/files/?artifact_id=4700",
"status": "Published",
"publisher": "Open Geospatial Consortium",
"editors": [
"Simon Cox",
"Paul Daisey",
"Ron Lake",
"Clemens Portele",
"Arliss Whiteside"
],
"date": "2004-02-07",
"id": "GML31"
},
"GML33": {
"title": "OGC® Geography Markup Language (GML) — Extended schemas and encoding rules, v3.3",
"href": "https://portal.ogc.org/files/?artifact_id=46568",
"status": "Published",
"publisher": "Open Geospatial Consortium",
"editors": [
"Clemens Portele"
],
"date": "2012-02-07",
"id": "GML33"
},
"GMLJPEG2000": {
"title": "OGC® GML in JPEG 2000 (GMLJP2) Encoding Standard Part 1: Core v.2.1",
"href": "http://docs.opengeospatial.org/is/08-085r8/08-085r8.html",
"status": "Published",
"publisher": "Open Geospatial Consortium",
"editors": [
"Lucio Colaiacomo",
"Joan Masó",
"Emmanuel Devys",
"Eric Hirschorn"
],
"date": "2018-08-27",
"id": "GMLJPEG2000"
},
"GMLSF": {
"title": "Geography Markup Language (GML) simple features profile (with Corrigendum) (2.0)",
"href": "https://portal.ogc.org/files/?artifact_id=42729",
"status": "Published",
"publisher": "Open Geospatial Consortium",
"editors": [
"Linda van den Brink",
"Clemens Portele",
"Panagiotis (Peter) A. Vretanos"
],
"date": "2012-04-05",
"id": "GMLSF"
},
"HDF5": {
"title": "OGC Hierarchical Data Format Version 5 (HDF5®) Core Standard",
"href": "http://docs.opengeospatial.org/is/18-043r3/18-043r3.html",
"status": "Published",
"publisher": "Open Geospatial Consortium",
"editors": [
"Aleksandar Jelenak",
"Ted Habermann",
"Gerd Heber"
],
"date": "2019-03-27",
"id": "HDF5"
},
"HDFEOS": {
"title": "HDF-EOS5 Data Model, File Format and Library (v1.1)",
"href": "https://www.earthdata.nasa.gov/sites/default/files/imported/ESDS-RFC-008-v1.1.pdf",
"status": "Recommended",
"publisher": "NASA",
"editors": [
"Larry Klein",
"Abe Taaheri"
],
"date": "2016-05-01",
"id": "HDFEOS"
},
"HRCRS": {
"title": "Handreiking Gebruik coördinaatreferentiesystemen bij uitwisseling en visualisatie van geo-informatie",
"href": "https://docs.geostandaarden.nl/crs/crs/",
"status": "Definitief",
"publisher": "Geonovum",
"editors": [
"Friso Penninga",
"Lennard Huisman"
],
"date": "2022-03-14",
"id": "HRCRS"
},
"HRLFG": {
"title": "Geometrie in uitwisselingsformaten",
"href": "https://docs.geostandaarden.nl/g4w/geox/#inleiding",
"status": "Definitief",
"publisher": "Geonovum",
"editors": [
"Linda van den Brink",
"Gabriella Wiersma"
],
"date": "2022-02-04",
"id": "HRLFG"
},
"HRTOEG": {
"title": "Handreiking digitaal toegankelijk locatiedata",
"href": "https://docs.geostandaarden.nl/visu/toeg/",
"status": "Vastgesteld",
"publisher": "Geonovum",
"editors": [
"Edward Mac Gillavry",
"Sjors Slaats",
"Theo OVerduin",
"Thijs Brentjens",
"Victor Zuydweg"
],
"date": "2021-08-02",
"id": "HRTOEG"
},
"HRWC": {
"title": "Handreiking webcartografie",
"href": "https://www.geonovum.nl/uploads/standards/downloads/handreiking%20webcartografie%201.0.1_0.pdf",
"status": "Definitief",
"publisher": "Geonovum",
"date": "2010-11-18",
"id": "HRWC"
},
"I3S": {
"title": "OGC Indexed 3d Scene Layer (I3S) and Scene Layer Package (*.slpk) Format Community Standard Version 1.2",
"href": "http://docs.opengeospatial.org/cs/17-014r8/17-014r8.html",
"status": "Approved",
"publisher": "Open Geospatial Consortium (OGC)",
"editors": [
"Carl Reed",
"Tamrat Belayneh"
],
"date": "2021-05-11",
"id": "I3S"
},
"IMMetingen": {
"title": "Informatiemodel Metingen",
"href": "https://www.sikb.nl/datastandaarden/richtlijnen/sikb0101",
"status": "Vastgesteld",
"publisher": "SIKB en IHW",
"id": "IMMetingen"
},
"INSGPGeopackage": {
"title": "GeoPackage encoding of INSPIRE datasets. INSPIRE good practise",
"href": "https://inspire.ec.europa.eu/good-practice/geopackage-encoding-inspire-datasets",
"status": "Candidate",
"publisher": "INSPIRE",
"id": "INSGPGeopackage"
},
"INSGPOAPIF": {
"title": "OGC API - Features as an INSPIRE download service",
"href": "https://inspire.ec.europa.eu/good-practice/ogc-api-%E2%80%93-features-inspire-download-service",
"status": "Endorsed Good Practice",
"publisher": "IOC TF",
"id": "INSGPOAPIF"
},
"INSGPSTA": {
"title": "OGC SensorThings API as an INSPIRE download service",
"href": "https://inspire.ec.europa.eu/good-practice/ogc-sensorthings-api-inspire-download-service",
"status": "Endorsed good practice",
"publisher": "INSPIRE Maintenance and Implementation Group (MIG)",
"id": "INSGPSTA"
},
"inspire-19115-19119": {
"title": "INSPIRE Metadata Implementing Rules: Technical Guidelines based on EN ISO 19115 and EN ISO 19119",
"href": "http://inspire.ec.europa.eu/documents/Metadata/INSPIRE_MD_IR_and_ISO_v1_2_20100616.pdf",
"authors": [
"Drafting Team Metadata and European Commission Joint Research Centre"
],
"publisher": "European Commission Joint Research Centre",
"date": "2007-10-26",
"id": "inspire-19115-19119"
},
"inspire-cirmd": {
"title": "Corrigendum to INSPIRE Metadata Regulation",
"href": "https://eur-lex.europa.eu/legal-content/NL/TXT/PDF/?uri=CELEX:32008R1205R(02)&from=EN",
"authors": [
"Drafting Team Metadata and European Commission Joint Research Centre"
],
"publisher": "European Commission Joint Research Centre",
"date": "2010-01-15",
"id": "inspire-cirmd"
},
"inspire-crs": {
"title": "INSPIRE Data Specification on Coordinate Reference Systems - Technical Guidelines",
"href": "https://inspire.ec.europa.eu/id/document/tg/rs",
"status": "Published",
"publisher": "INSPIRE Thematic Working Group Coordinate Reference Systems & Geographical Grid Systems",
"date": "2014-04-16",
"id": "inspire-crs"
},
"inspire-gcm": {
"title": "Generic Conceptual Model of the INSPIRE data specifications",
"href": "https://inspire.ec.europa.eu/documents/inspire-generic-conceptual-model",
"status": "Published",
"publisher": "INSPIRE Drafting Team Data Specifications",
"date": "2014-04-07",
"id": "inspire-gcm"
},
"inspire-gen": {
"title": "Guidelines for the encoding of spatial data",
"href": "https://inspire.ec.europa.eu/documents/guidelines-encoding-spatial-data",
"status": "Published",
"publisher": "INSPIRE Drafting Team Data Specifications",
"date": "2014-04-08",
"id": "inspire-gen"
},
"inspire-ggs": {
"title": "Guidelines INSPIRE Data Specification on Geographical Grid Systems - Technical Guidelines",
"href": "https://inspire.ec.europa.eu/id/document/tg/gg",
"status": "Published",
"publisher": "INSPIRE Thematic Working Group Coordinate Reference Systems & Geographical Grid Systems",
"date": "2014-04-16",
"id": "inspire-ggs"
},
"inspire-irmd": {
"title": "Implementing Rules for Metadata",
"href": "http://eur-lex.europa.eu/legal-content/EN/ALL/?uri=CELEX:32008R1205",
"authors": [
"Drafting Team Metadata and European Commission Joint Research Centre"
],
"publisher": "European Commission Joint Research Centre",
"date": "2008-12-03",
"id": "inspire-irmd"
},
"inspire-mds": {
"title": "Methodology for the development of data specifications: baseline version (D 2.6, Version 3.0)",
"href": "https://inspire.ec.europa.eu/documents/methodology-development-data-specifications-baseline-version-d-26-version-30",
"status": "Published",
"publisher": "INSPIRE Drafting Team Data Specifications",
"date": "2008-04-06",
"id": "inspire-mds"
},
"inspire-TG-metadata": {
"title": "Technical Guidance for the implementation of INSPIRE dataset and service metadata based on ISO/TS 19139:2007",
"href": "https://github.com/INSPIRE-MIF/technical-guidelines/blob/2022.2/metadata/metadata-iso19139/metadata-iso19139.adoc",
"status": [
"Tehnical Guidance"
],
"authors": [
"Temporary MIWP 2021-2024 sub-group 2.3.1"
],
"publisher": "INSPIRE Maintenance and Implementation Group (MIG)",
"date": "2022-08-01",
"id": "inspire-TG-metadata"
},
"INSTGDiS": {
"title": "Technical Guidance for the implementation of Inspire Discovery Service, version 3.1",
"href": "https://inspire.ec.europa.eu/documents/technical-guidance-implementation-inspire-discovery-services-0",
"status": "Approved",
"publisher": "IOC TF",
"date": "2011-11-07",
"id": "INSTGDiS"
},
"INSTGDS": {
"title": "Technical Guidance for the implementation of Inspire Download Services",
"href": "https://inspire.ec.europa.eu/documents/technical-guidance-implementation-inspire-download-services",
"status": "Approved",
"publisher": "IOC TF",
"date": "2013-08-09",
"id": "INSTGDS"
},
"INSTGDSSOS": {
"title": "Technical Guidance for implementing download services using the OGC Sensor Observation Service and ISO 19143 Filter Encoding, version 1.0",
"href": "https://inspire.ec.europa.eu/id/document/tg/download-sos",
"status": "Approved",
"publisher": "INSPIRE Maintenance and Implementation Group (MIG)",
"date": "2016-12-16",
"id": "INSTGDSSOS"
},
"INSTGDSWCS": {
"title": "Technical Guidance for the implementation of Inspire Download Services using Web Coverage Services (WCS), version 1.0",
"href": "https://inspire.ec.europa.eu/id/document/tg/download-wcs",
"status": "Approved",
"publisher": "INSPIRE Maintenance and Implementation Group (MIG)",
"date": "2016-12-16",
"id": "INSTGDSWCS"
},
"INSTGVS": {
"title": "Technical Guidance for the implementation of Inspire View Service",
"href": "https://inspire.ec.europa.eu/documents/technical-guidance-implementation-inspire-view-services-1",
"status": "Definitief",
"publisher": "IOC TF",
"date": "2022-08-01",
"id": "INSTGVS"
},
"ISO15836": {
"title": "ISO 15836: 2004, Information and documentation - The Dublin Core metadata element set",
"href": "https://www.iso.org/standard/37629.htm",
"publisher": "International Organization for Standardization",
"date": "2004",
"id": "ISO15836"
},
"ISO19101": {
"title": "ISO 19101-1:2014 Geographic information — Reference model — Part 1: Fundamentals",
"href": "https://www.iso.org/standard/59164.html",
"status": "Published",
"publisher": "ISO",
"date": "2014-11-01",
"id": "ISO19101"
},
"ISO19103": {
"title": "ISO 19103:2015 Geographic information — Conceptual schema language",
"href": "https://www.iso.org/standard/56734.html",
"status": "Published",
"publisher": "ISO",
"date": "2015-12-01",
"id": "ISO19103"
},
"ISO19107": {
"title": "ISO 19107:2019 Geographic information — Spatial schema",
"href": "https://www.iso.org/standard/66175.html",
"status": "Published",
"publisher": "ISO",
"date": "2019-12-01",
"id": "ISO19107"
},
"ISO19108": {
"title": "ISO 19108:2002 Geographic information — Temporal schema",
"href": "https://www.iso.org/standard/26013.html",
"status": "Published",
"publisher": "ISO",
"date": "2012-12-08",
"id": "ISO19108"
},
"ISO19109": {
"title": "ISO 19109:2015 Geographic information — Rules for application schema",
"href": "https://www.iso.org/standard/59193.html",
"status": "Published",
"publisher": "ISO",
"date": "2015-12-01",
"id": "ISO19109"
},
"ISO19110": {
"title": "ISO 19110:2016 Geographic information — Methodology for feature cataloguing",
"href": "https://www.iso.org/standard/57303.html",
"status": "Published",
"publisher": "ISO",
"date": "2016-12-01",
"id": "ISO19110"
},
"ISO19111": {
"title": "ISO 19111:2019 Geographic information — Referencing by coordinates",
"href": "https://www.iso.org/standard/74039.html",
"status": "Published",
"publisher": "ISO",
"date": "2019-01-01",
"id": "ISO19111"
},
"ISO19115-2003": {
"title": "ISO 19115:2003 Geographic information -- Metadata",
"href": "https://www.iso.org/standard/26020.html",
"status": [
"Adopted specification"
],
"publisher": "International Organization for Standardization",
"date": "2003-05-01",
"id": "ISO19115-2003"
},
"ISO19115-2006": {
"title": "ISO 19115:2003/Cor 1:2006 Geographic information — Metadata — Technical Corrigendum 1",
"href": "https://www.iso.org/standard/26020.html",
"status": [
"Adopted specification"
],
"publisher": "International Organization for Standardization",
"date": "2006-06-01",
"id": "ISO19115-2006"
},
"ISO19115-2009": {
"title": "ISO 19115-2:2009 Geographic information — Metadata — Part 2: Extensions for imagery and gridded data",
"href": "https://www.iso.org/standard/39229.html",
"publisher": "International Organization for Standardization",
"date": "2009-02-01",
"id": "ISO19115-2009"
},
"ISO19115-2014": {
"title": "ISO 19115-1:2014 Geographic information — Metadata — Part 1: Fundamentals",
"href": "https://www.iso.org/standard/53798.html",
"publisher": "International Organization for Standardization",
"date": "2014-04-01",
"id": "ISO19115-2014"
},
"ISO19117": {
"title": "ISO 19117:2012 Geographic Information - Portrayal",
"href": "https://www.iso.org/standard/46226.html",
"status": "Published",
"publisher": "ISO",
"date": "2012-12-01",
"id": "ISO19117"
},
"ISO19118": {
"title": "ISO 19118:2011 Geographic information — Encoding",
"href": "https://www.iso.org/standard/44212.html",
"status": "Published",
"publisher": "ISO",
"date": "2011-10-01",
"id": "ISO19118"
},
"ISO19119": {
"title": "Geographic information - Services",
"href": "https://www.iso.org/standard/39890.html",
"publisher": "International Organization for Standardization",
"date": "2005-02-01",
"id": "ISO19119"
},
"ISO19119-2005": {
"title": "ISO 19119:2005 Geographic information — Services",
"href": "https://www.iso.org/standard/39890.html",
"publisher": "International Organization for Standardization",
"date": "2005-02-01",
"id": "ISO19119-2005"
},
"ISO19119-2008": {
"title": "ISO 19119:2005/Amd 1:2008 Geographic information — Services — Amendment 1: Extensions of the service metadata model",
"href": "https://www.iso.org/standard/44268.html",
"publisher": "International Organization for Standardization",
"date": "2008-05-01",
"id": "ISO19119-2008"
},
"ISO19126-2009": {
"title": "ISO 19126:2009 Geographic information - Feature concept dictionaries and registers",
"href": "https://www.iso.org/standard/44875.html",
"status": "Published",
"publisher": "ISO",
"date": "2009-11-01",
"id": "ISO19126-2009"
},
"ISO19131": {
"title": "ISO 19131:2022 Geographic information — Data product specifications",
"href": "https://www.iso.org/standard/85092.html",
"status": "Published",
"publisher": "ISO",
"date": "2022-11-01",
"id": "ISO19131"
},
"ISO19136": {
"title": "ISO 19136-1:2020 Geographic information — Geography Markup Language (GML) — Part 1: Fundamentals",
"href": "https://www.iso.org/standard/75676.html",
"status": "Published",
"publisher": "ISO",
"date": "2020-01-01",
"id": "ISO19136"
},
"ISO19139": {
"title": "ISO/TS 19139:2007 Geographic information - Metadata - XML schema implementation",
"href": "https://www.iso.org/standard/32557.html",
"status": [
"Adopted specification"
],
"publisher": "International Organization for Standardization",
"date": "2007-04-01",
"id": "ISO19139"
},
"ISO6709": {
"title": "ISO 6709:2022 Standard representation of geographic point location by coordinates",
"href": "https://www.iso.org/standard/75147.html",
"status": "Published",
"publisher": "ISO",
"date": "2022-09-01",
"id": "ISO6709"
},
"ISOJPEG2000": {
"title": "ISO/IEC 15444-1:2019 Information technology — JPEG 2000 image coding system — Part 1: Core coding system",
"href": "https://www.iso.org/standard/78321.html",
"status": "Published",
"publisher": "ISO",
"date": "2019-10-01",
"id": "ISOJPEG2000"
},
"ISOts19127": {
"title": "ISO/TS 19127 Geographic Information - Geodetic codes and parameters",
"href": "https://www.iso.org/standard/41784.html",
"status": "Published",
"publisher": "ISO",
"date": "2005-06-01",
"id": "ISOts19127"
},
"JSON-FG": {
"title": "OGC Features and Geometries JSON - Part 1: Core",
"href": "https://docs.ogc.org/DRAFTS/21-045.html",
"status": "Draft",
"publisher": "Open Geospatial Consortium",
"editors": [
"Clemens Portele",
"Panagiotis (Peter) A. Vretanos"
],
"id": "JSON-FG"
},
"MBS": {