generated from Geonovum/Template-ReSpec
-
Notifications
You must be signed in to change notification settings - Fork 3
/
snapshot.html
3322 lines (3248 loc) · 232 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"><!-- HTML-Header - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --><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 24.5.2"><style>/* --- EXAMPLES --- */
span.example-title {
text-transform: none;
}
aside.example, div.example, div.illegal-example {
padding: 0.5em;
margin: 1em 0;
position: relative;
clear: both;
}
div.illegal-example { color: red }
div.illegal-example p { color: black }
aside.example, div.example {
padding: .5em;
border-left-width: .5em;
border-left-style: solid;
border-color: #e0cb52;
background: #fcfaee;
}
aside.example div.example {
border-left-width: .1em;
border-color: #999;
background: #fff;
}
aside.example div.example span.example-title {
color: #999;
}
</style><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>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- File. . . : index.html -->
<!-- Bevat . . : Template voor de index.html die verplicht is voor respec -->
<!-- Gebaseerd op https://github.com/Geonovum/respec/wiki -->
<!-- Deze file moet worden neergezet in de root-directory van de -->
<!-- betreffende standaard. -->
<!-- Door. . . : Jan van Gelder -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- Log . . . : 20181015 - JvG - Initiele versie -->
<!-- - - - - - - -20191022 - IE - ReSpec file Handreiking Archiveren ruimtelijke plannen -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- meta tags - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- Invullen: de titel van de standaard of het document - - - - - - - - - - - - - - - - - - -->
<title>Raamwerk Geostandaarden 4.0</title>
<!-- Kan hier een 'ondertitel' tag worden gemaakt? -->
<!-- Invullen: de naam van de lokale CSS file - - - - - - - - - - - - - - - - - - - - - - - -->
<link rel="stylesheet" type="text/css" href="./media/Geonovumstyle.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-DEF.css"><link rel="shortcut icon" type="image/x-icon" href="https://tools.geostandaarden.nl/respec/style/logos/Geonovum.ico"><script id="initialUserConfig" type="application/json">{
"specStatus": "GN-DEF",
"specType": "HR",
"format": "markdown",
"publishDate": "2023-06-22",
"github": "https://github.com/geonovum/raamwerk-geostandaarden",
"issueBase": "https://github.com/geonovum/raamwerk-geostandaarden/issues",
"editors": [
{
"name": "Michel Grothe",
"company": "Geonovum",
"companyURL": "https://www.geonovum.nl"
}
],
"authors": [
{
"name": "Linda van den Brink ",
"company": "Geonovum",
"companyURL": "https://www.geonovum.nl"
},
{
"name": "Jan van Gelder",
"company": "Geonovum",
"companyURL": "https://www.geonovum.nl"
},
{
"name": "Michel Grothe",
"company": "Geonovum",
"companyURL": "https://www.geonovum.nl"
},
{
"name": "Lennard Huisman",
"company": "Kadaster",
"companyURL": "http://www.kadaster.nl"
},
{
"name": "Paul Janssen",
"company": "Geonovum",
"companyURL": "https://www.geonovum.nl"
},
{
"name": "Monique van Scherpenzeel",
"company": "Geonovum",
"companyURL": "https://www.geonovum.nl"
},
{
"name": "Ine de Visser",
"company": "Geonovum",
"companyURL": "https://www.geonovum.nl"
}
],
"shortName": "rw",
"pubDomain": "rwgs",
"licence": "cc-by",
"localBiblio": {
"NLISO19115": {
"title": "Nederlands metadata profiel op ISO 19115 voor geografie versie 2.1.0",
"href": "https://docs.geostandaarden.nl/md/mdprofiel-iso19115/",
"status": "Vastgestelde versie",
"publisher": "Geonovum",
"date": "30 juni 2020",
"id": "nliso19115"
},
"NLISO19119": {
"title": "Nederlands metadata profiel op ISO 19119 voor services versie 2.1.0",
"href": "https://docs.geostandaarden.nl/md/mdprofiel-iso19119/",
"status": "Vastgestelde versie",
"publisher": "Geonovum",
"date": "30 juni 2020",
"id": "nliso19119"
},
"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": "May 2003",
"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": "June 2006",
"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": "February 2009",
"id": "iso19115-2009"
},
"ISO19119-2005": {
"title": "ISO 19119:2005 Geographic information — Services",
"href": "https://www.iso.org/standard/39890.html",
"publisher": "International Organization for Standardization",
"date": "February 2005",
"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": "May 2008",
"id": "iso19119-2008"
},
"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": "April 2014",
"id": "iso19115-2014"
},
"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": "April 2007",
"id": "iso19139"
},
"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"
},
"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"
},
"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": "3 December 2008"
},
"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": "15 January 2010"
},
"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": "26 oktober 2007"
},
"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": "1 augustus 2022",
"id": "inspire-tg-metadata"
},
"ISO19119": {
"title": "Geographic information - Services",
"href": "https://www.iso.org/standard/39890.html",
"publisher": "International Organization for Standardization",
"date": "2005-02"
},
"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"
},
"SLD11": {
"title": "OGC 05-078r4: Styled Layer Descriptor profile of the Web Map Service Implementation Specification, Version 1.1",
"href": "http://portal.opengeospatial.org/files/?artifact_id=22364",
"status": "Final version",
"publisher": "Open Geospatial Consortium (OGC)",
"date": "2007-06-29",
"id": "sld11"
},
"SE11": {
"title": "OGC 05-077r4: OpenGIS Symbology Encoding Implementation Specification, version 1.1",
"href": "https://portal.ogc.org/files/?artifact_id=16700",
"status": "Final version",
"publisher": "Open Geospatial Consortium (OGC)",
"date": "2006-07-21",
"id": "se11"
},
"WMC11": {
"title": "OpenGIS 05-005: Web Map Context Documents Implementation Specification, version 1.1",
"href": "https://portal.ogc.org/files/?artifact_id=8618",
"status": "Adopted specification",
"publisher": "Open Geospatial Consortium (OGC)",
"editors": "J. Sonnet",
"date": "2005-01-19",
"id": "wmc11"
},
"WMCC11": {
"title": "OpenGIS 08-050: Corrigendum for OpenGIS Implementation Standard Web Map Context Documents - Corrigendum 1",
"href": "https://portal.ogc.org/files/?artifact_id=27286",
"status": "Approved",
"publisher": "Open Geospatial Consortium (OGC)",
"editors": "T. Kralidis",
"date": "2008-03-14",
"id": "wmcc11"
},
"MBS": {
"title": "Mapbox GL JS Style Specification",
"href": "https://docs.mapbox.com/mapbox-gl-js/style-spec/",
"status": "Unofficial",
"publisher": "Mapbox",
"id": "mbs"
},
"OAPISTYLES": {
"title": "OGC 20-009: OGC API Styles",
"href": "http://docs.opengeospatial.org/DRAFTS/20-009.html",
"status": "Draft",
"publisher": "Open Geospatial Consortium (OGC)",
"editors": "C. Portele",
"id": "oapistyles"
},
"3DTILES": {
"title": "3D Tiles Specification 1.0",
"href": "http://docs.opengeospatial.org/cs/18-053r2/18-053r2.html",
"status": "Approved for pubic release",
"publisher": "Open Geospatial Consortium (OGC)",
"editors": [
"Patrick Cozzi",
"Sean Lilley",
"Gabby Getz"
],
"date": "2019-01-31",
"id": "3dtiles"
},
"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"
},
"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": "14 maart 2022",
"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": "4 februari 2022",
"id": "hrlfg"
},
"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"
},
"NLWMS": {
"title": "Nederlands profiel op ISO 19128 Geographic information — Web Map Server Interface",
"href": "https://www.geonovum.nl/uploads/documents/nederlands_profiel_op_iso_19128_wms_1.3_-_versie_1.0.pdf",
"status": "Vastgesteld",
"publisher": "Geonovum",
"date": "2015-04-24",
"id": "nlwms"
},
"NLAPIS": {
"title": "API Strategie Algemeen (Nederlandse API Strategie I)",
"href": "https://docs.geostandaarden.nl/api/API-Strategie/",
"status": "Vastgesteld",
"publisher": "Geonovum",
"date": "9 maart 2022",
"id": "nlapis"
},
"OAPIMAPS": {
"title": "OGC 20-058: OGC API - Maps - Part 1: Core, Version 0.1.0",
"href": "http://docs.ogc.org/DRAFTS/20-058.html",
"status": "Draft",
"publisher": "Open Geospatial Consortium (OGC)",
"editors": "Joan Masó",
"date": "2022-06-06",
"id": "oapimaps"
},
"WFS11": {
"title": "Web Feature Service Implementation Specification with Corrigendum, Version 1.1.3",
"href": "http://docs.opengeospatial.org/is/04-094r1/04-094r1.html",
"status": "Approved",
"publisher": "Open Geospatial Consortium (OGC)",
"editors": "Panagiotis A. Vretanos",
"date": "2016-10-26",
"id": "wfs11"
},
"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"
},
"NLWFS": {
"title": "Nederlands profiel op ISO 19142 Geographic information — Web Feature Service, Versie 1.1",
"href": "https://www.geonovum.nl/geo-standaarden/services/nederlands-wfs-profiel-11-op-iso-19142-voor-web-feature-services-20",
"status": "Definitief",
"publisher": "Geonovum",
"date": "2015-04-24",
"id": "nlwfs"
},
"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"
},
"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"
},
"OAPIF1": {
"title": "OGC 17-069r4: OGC API - Features - Part 1: Core corrigendum, Version 1.0.1",
"href": "https://docs.opengeospatial.org/is/17-069r4/17-069r4.html",
"status": "Approved",
"publisher": "Open Geospatial Consortium (OGC)",
"editors": [
"Panagiotis (Peter) A. Vretanos",
"Clemens Portele",
"Charles Heazel"
],
"date": "2022-05-11",
"id": "oapif1"
},
"OAPIF2": {
"title": "OGC 18-058: OGC API - Features - Part 2: Coordinate Reference Systems by Reference, Version 1.0",
"href": "https://docs.opengeospatial.org/is/18-058r1/18-058r1.html",
"status": "Approved",
"publisher": "Open Geospatial Consortium (OGC)",
"editors": [
"Panagiotis (Peter) A. Vretanos",
"Clemens Portele"
],
"date": "2020-11-02",
"id": "oapif2"
},
"OAPIF3": {
"title": "OGC 19-079r1: OGC API - Features - Part 3: Filtering, Version 1.0.0-rc1",
"href": "http://docs.ogc.org/DRAFTS/19-079r1.html",
"status": "Draft",
"publisher": "Open Geospatial Consortium (OGC)",
"editors": [
"Panagiotis (Peter) A. Vretanos",
"Clemens Portele"
],
"id": "oapif3"
},
"OAPIF4": {
"title": "OGC 20-002: OGC API - Features - Part 4: Create, Replace, Update and Delete, Version 1.0.0 snapshot (editor's draft",
"href": "http://docs.ogc.org/DRAFTS/20-002.html",
"status": "Draft",
"publisher": "Open Geospatial Consortium (OGC)",
"editors": [
"Panagiotis (Peter) A. Vretanos",
"Clemens Portele"
],
"id": "oapif4"
},
"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"
},
"WCS21": {
"title": "OGC 17-089r1: OGC Web Coverage Service (WCS) 2.1 Interface Standard - Core",
"href": "http://docs.opengeospatial.org/is/17-089r1/17-089r1.html",
"status": "Approved",
"publisher": "Open Geospatial Consortium (OGC)",
"date": "2018-08-16",
"id": "wcs21"
},
"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"
},
"OREFCO": {
"title": "OGC Abstract Specification Topic 2: Referencing by coordinates",
"href": "http://docs.opengeospatial.org/as/18-005r4/18-005r4.html",
"status": "OGC® Publicly Available Standard",
"publisher": "Open Geospatial Consortium (OGC)",
"editors": [
"Roger Lott"
],
"date": "2019-02-08",
"id": "orefco"
},
"OAPIC": {
"title": "OGC 19-087: OGC API - Coverages - Part 1: Core, version 0.0.6",
"href": "http://docs.ogc.org/DRAFTS/19-087.html",
"status": "Draft",
"publisher": "Open Geospatial Consortium (OGC)",
"editors": [
"Charles Heazel",
"Jerome St-Louis"
],
"id": "oapic"
},
"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"
},
"STAS": {
"title": "OGC 18-088: OGC SensorThings API Part 1 - Sensing, Version 1.1",
"href": "https://docs.ogc.org/is/18-088/18-088.html",
"status": "Approved",
"publisher": "Open Geospatial Consortium (OGC)",
"editors": [
"Steve Liang",
"Tania Khalafbeigi",
"Hylke van der Schaaf"
],
"date": "2021-08-04",
"id": "stas"
},
"STAT": {
"title": "OGC 17-079r1: OGC SensorThings API Part 1 - Tasking Core, Version 1.0",
"href": "http://docs.opengeospatial.org/is/17-079r1/17-079r1.html",
"status": "Approved",
"publisher": "Open Geospatial Consortium (OGC)",
"editors": [
"Steve Liang",
"Tania Khalafbeigi"
],
"date": "2019-01-08",
"id": "stat"
},
"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"
},
"OAPIEDR": {
"title": "OGC 19-086r5: OGC API - Environmental Data Retrieval Standard, Version 1.0.1",
"href": "https://docs.ogc.org/is/19-086r5/19-086r5.html",
"status": "Approved",
"publisher": "Open Geospatial Consortium (OGC)",
"editors": [
"Mark Burgoyne",
"David Blodgett",
"Charles Heazel",
"Chris Little"
],
"date": "2022-08-05",
"id": "oapiedr"
},
"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"
},
"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"
},
"OAPIRECORDS1": {
"title": "OGC 20-224: OGC API - Records - Part 1: Core",
"href": "http://docs.ogc.org/DRAFTS/20-004.html",
"status": "Draft",
"publisher": "Open Geospatial Consortium (OGC)",
"editors": [
"Panagiotis (Peter) A. Vretanos",
"Tom Kralidis",
"Charles Heazel"
],
"date": "2020-01-13",
"id": "oapirecords1"
},
"OAPITILES1": {
"title": "OGC 20-057: OGC API - Tiles - Part 1: Core",
"href": "https://docs.ogc.org/is/20-057/20-057.html",
"status": "Approved",
"publisher": "Open Geospatial Consortium (OGC)",
"editors": [
"Joan Masó",
"Jérôme St-Louis"
],
"date": "26-08-2022",
"id": "oapitiles1"
},
"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"
},
"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"
},
"NLDP": {
"title": "NEN 3610 - Linked Data",
"href": "https://docs.geostandaarden.nl/nen3610/nldp/",
"status": "Vastgesteld",
"publisher": "Geonovum",
"editors": [
"Paul Janssen"
],
"authors": [
"Linda van den Brink",
"Marco Brattinga",
"Marinus Vonhof",
"Niels Hoffmann",
"Pano Maria",
"Hans Schevers",
"Ronald van Lanen",
"Joep van Genuchten"
],
"date": "2020-03-23",
"id": "nldp"
},
"MIM": {
"title": "MIM - Metamodel Informatie Modellering",
"href": "https://docs.geostandaarden.nl/mim/mim/",
"status": "Vastgesteld",
"publisher": "Geonovum",
"editors": [
"Dick Krijtenburg",
"Paul Janssen",