-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
953 lines (912 loc) · 59.9 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<meta http-equiv="cache-control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="expires" content="0">
<title>OGC API</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/agency.min.css" rel="stylesheet">
</head>
<body id="page-top">
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<img class="page-top-logo" src="img/OGC_Logo__Blue_Horizontal.svg" alt="OGC Logo">
</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
Menu
<i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav text-uppercase ml-auto">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#intro">Context</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#standards">APIs</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#events">Sprints</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#videos">Videos</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#training">Training</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#documents">Documents</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#contact">Get In Touch</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Header -->
<header class="masthead">
<!-- <div class="container">-->
<!-- <div class="intro-text">-->
<!-- <div class="intro-lead-in">Welcome To The OGC APIs</div>-->
<!-- <div class="intro-heading">#OGCAPI</div> -->
<!-- <a class="btn btn-primary btn-xl text-uppercase js-scroll-trigger" href="#intro">Tell Me More</a> -->
<!-- <br>-->
<!-- <p class="intro-lead-in"><a style="color:white;" href="http://twitter.com/hashtag/OGCAPI" target="_blank">#OGCAPI</a></p>-->
<!-- <p class="intro-lead-in">Building Blocks for Location</p>-->
<!-- </div>-->
<!-- </div>-->
</header>
<!-- Intro -->
<section class="page-section" id="intro">
<div class="containter">
<div class="row">
<div class="col-lg-12 text-center">
<a href="https://www.youtube.com/watch?v=hNmZJ1itqfM" target="_blank" class="btn btn-lg btn-primary">Watch the Overview Video</a>
<br><br><br>
<h2 class="section-heading text-uppercase">Context</h2>
</div>
</div>
<div class="row">
<div class="col-lg-8 mx-auto text-justify">
<p>OGC is globally known for its proven widely implemented open standards. The OGC open consensus-based standards development process has evolved to move at the pace of innovation, with constant input from technology forecasting, practical prototyping, real-world testing, certification and compliance and community engagement. Today we are revolutionizing how geospatial/location information is shared, accessed, integrated, and analyzed via the OGC’s revolutionary APIs- the building blocks for location information.</p>
<p>OGC APIs are designed to make it easy for ANYONE to provide and use geospatial data on the web, and to integrate this data with ANY other type of information. These Standards build upon the legacy of the OGC Web Service Standards (WMS, WFS, WCS, WPS, etc.), but define resource-centric APIs that take advantage of modern web development practices. This web page provides information on these Standards in a consolidated location.</p>
<p>These Standards are being constructed as "building blocks" that can be used to assemble novel APIs for web access to geospatial content. The building blocks are defined not only by the requirements of the Standards specified in the <a href="https://www.ogc.org/standards" target="_blank">OGC's Standards Program</a>, but also through interoperability prototyping and testing in the <a href="https://www.opengeospatial.org/ogc/programs/ip" target="_blank">OGC's Collaborative Solutions and Innovation Program</a>.
<br>To learn more about using the OGC APIs please view our <a href="#guidelines">guidelines here</a>.</p>
<p>The <b>OGC API Roadmap</b> highlights the current and planned standards efforts as well as related extensions to those standards. The roadmap is available for the public to view at the links below. </p>
<ul class="list-group">
<li class="list-group-item"><a href="https://roadmap.productboard.com/2db052e6-57f5-40ec-a813-0ee0fff6b5c8">Roadmap - Status View</a></li>
<li class="list-group-item"><a href="https://roadmap.productboard.com/1b15493e-0271-45e6-bbf9-4d7fcb5c22a5">Roadmap - Timeline View</a></li>
<li class="list-group-item"><a href="https://portal.productboard.com/ogc/1-ogc-api-use-case-portal">Roadmap - Use Case View</a></li>
</ul>
<p></p>
<p>To subscribe for notifications when the roadmap is updated, please <a href="#contact">contact us</a> using the form below and include the message "Roadmap updates".</p>
<p>For more information on the OGC API Standards, please also <a href="#contact">contact us</a> using the form below.</p>
<p class="text-center">To find out more about the OGC please visit our public site. <a class="btn px-1" href="https://www.ogc.org" target="_blank" role="button"><img src="img/OGC_Logo__Blue_Horizontal.svg" alt="OGC Logo" height="76"></a></p>
</div>
</div>
</div>
</section>
<!-- What's New -->
<section class="page-section" id="whatsnew">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">What's New</h2>
<h3 class="section-subheading text-muted">OGC API standards in the news</h3>
</div>
</div>
<div class="row">
<div class="card-deck">
<div class="card">
<img class="card-img-top" src="img/siw/movingfeatures-thumb.jpg" alt="movingfeatures">
<div class="card-body">
<h5 class="card-title">OGC Membership approves OGC API - Moving Features - Part 1: Core as official OGC Standard</h5>
<p class="card-text">Part 1 of the OGC API - Moving Features Standard defines a standard interface for querying and accessing geospatial data that changes over time, such as the location, trajectories and attributes of moving objects like vehicles, vessels, or pedestrians.</p>
<br/>
<p class="card-text"><a href="https://ogcapi.ogc.org/features/" target="_blank">More Info</a></p>
</div>
</div>
<div class="card">
<img class="card-img-top" src="img/siw/noaa-WHLI73X8tE0-unsplash.jpg" alt="edr2">
<div class="card-body">
<h5 class="card-title">OGC Membership approves OGC API - Environmental Data Retrieval - Part 2: Publish-Subscribe Workflow as official OGC Standard</h5>
<p class="card-text">The OGC API - Environmental Data Retrieval - Part 2: Publish-Subscribe Workflow Standard provides recommendations on applying Publish-Subscribe architectural patterns to event-driven implementations of one or more OGC API Standards.</p>
<br/>
<p class="card-text"><a href="https://ogcapi.ogc.org/edr/" target="_blank">More Info</a></p>
</div>
</div>
<div class="card">
<img class="card-img-top" src="img/siw/stylesimage-thumb.jpg" alt="maps">
<div class="card-body">
<h5 class="card-title">OGC Membership approves OGC API - Maps - Part 1: Core as official OGC Standard</h5>
<p class="card-text">The OGC API - Maps Standard defines building blocks which can be used in a Web API implementation to retrieve maps that are visual portrayals of geospatial data, created by applying a style to the data. Maps can present the whole area of the geospatial data or a subset of the content, such as by filtering the data by extent.</p>
<br/>
<p class="card-text"><a href="https://ogcapi.ogc.org/maps/" target="_blank">More Info</a></p>
</div>
</div>
<!--div class="card">
<img class="card-img-top" src="img/news/happy-coder.jpeg" alt="Code Sprint">
<div class="card-body">
<h5 class="card-title">Next Code Sprint scheduled for June 12 to 14, 2023</h5>
<p class="text-muted"></p>
<p class="card-text">The Open Geospatial Consortium (OGC) invites software developers to the OGC Tiling Interfaces Code Sprint, to be held online and in-person from June 12-14, 2023, at the Moonshot Labs of the National Geospatial-Intelligence Agency (NGA) in St Louis, Missouri, USA. Participation in the code sprint is free. Registration for in-person participation closes at 5pm EDT on May 10. Registration for remote participation will remain open throughout the code sprint.
<a href="https://developer.ogc.org/sprints/21/" target="_blank">Registration is Open</a>.</p>
</div>
</div-->
</div>
</div>
</div>
</section>
<!-- Standards Grid -->
<section class="bg-light page-section" id="standards">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">APIs for the Web</h2>
</div>
</div>
<div class="row pt-3">
<div class="col">
<div class="card-deck">
<div class="card sit-card">
<img src="img/portfolio/feat-full.jpg" class="card-img-top">
<div class="card-body">
<h5 class="card-title">Features</h5>
<p class="subheading">Approved Standard <img src="img/approved_api_badge.png" class="approve_badge" alt=""></p>
<p class="card-text">OGC API - Features - Part 1: Core and Part 2: Coordinate Reference Systems by Reference are both publicly available.</p>
</div>
<div class="card-footer"><a href="features" class="btn btn-primary">More Info</a><a href="https://github.com/opengeospatial/ogcapi-features" target="_blank" class="btn btn-primary float-right">GitHub repo</a></div>
</div>
<div class="card sit-card">
<img src="img/siw/common-thumb.jpg" class="card-img-top">
<div class="card-body">
<h5 class="card-title">Common</h5>
<p class="subheading">Approved Standard <img src="img/approved_api_badge.png" class="approve_badge" alt=""></p>
<p class="card-text">OGC API - Common specifies those building blocks that are shared by most or all OGC API Standards to ensure consistency across the family. </p>
</div>
<div class="card-footer"><a href="common" class="btn btn-primary">More Info</a><a href="https://github.com/opengeospatial/ogcapi-common" target="_blank" class="btn btn-primary float-right">GitHub repo</a></div>
</div>
<div class="card sit-card">
<img src="img/siw/edr-thumb.jpg" class="card-img-top">
<div class="card-body">
<h5 class="card-title">EDR</h5>
<p class="subheading">Approved Standard <img src="img/approved_api_badge.png" class="approve_badge" alt=""></p>
<p class="card-text">Environmental Data Retrieval (EDR) API provides a family of lightweight interfaces to access Environmental Data resources. Each resource addressed by an EDR API maps to a defined query pattern.</p>
</div>
<div class="card-footer"><a href="edr" class="btn btn-primary">More Info</a><a href="https://github.com/opengeospatial/ogcapi-environmental-data-retrieval" target="_blank" class="btn btn-primary float-right">GitHub repo</a></div>
</div>
</div>
</div>
</div>
<div class="row pt-3">
<div class="col">
<div class="card-deck">
<div class="card sit-card">
<img src="img/siw/tile-thumb.jpg" class="card-img-top">
<div class="card-body">
<h5 class="card-title">Tiles</h5>
<p class="subheading">Approved Standard <img src="img/approved_api_badge.png" class="approve_badge" alt=""></p>
<p class="card-text">OGC API - Tiles provides extended functionality to other OGC API Standards to deliver vector tiles, map tiles, and other tiled data.</p>
</div>
<div class="card-footer"><a href="tiles" class="btn btn-primary">More Info</a><a href="https://github.com/opengeospatial/ogcapi-tiles" target="_blank" class="btn btn-primary float-right">GitHub repo</a></div>
</div>
<div class="card sit-card">
<img src="img/siw/process-thumb.jpg" class="card-img-top">
<div class="card-body">
<h5 class="card-title">Processes</h5>
<p class="subheading">Approved Standard <img src="img/approved_api_badge.png" class="approve_badge" alt=""></p>
<p class="card-text">OGC API - Processes allows for processing tools to be called and combined from many sources and applied to data in other OGC API resources though a simple API.</p>
</div>
<div class="card-footer"><a href="processes" class="btn btn-primary">More Info</a><a href="https://github.com/opengeospatial/ogcapi-processes" target="_blank" class="btn btn-primary float-right">GitHub repo</a></div>
</div>
<div class="card sit-card">
<img src="img/siw/map-thumb.jpg" class="card-img-top">
<div class="card-body">
<h5 class="card-title">Maps</h5>
<p class="subheading">Approved Standard <img src="img/approved_api_badge.png" class="approve_badge" alt=""></p>
<p class="card-text">OGC API - Maps offers a modern approach to the OGC Web Map Service (WMS) standard for provision map and raster content.</p>
</div>
<div class="card-footer"><a href="maps" class="btn btn-primary">More Info</a><a href="https://github.com/opengeospatial/ogcapi-maps" target="_blank" class="btn btn-primary float-right">GitHub repo</a></div>
</div>
</div>
</div>
</div>
<div class="row pt-3">
<div class="col">
<div class="card-deck">
<div class="card sit-card">
<img src="img/siw/movingfeatures-thumb.jpg" class="card-img-top" alt="Photo by kimi lee on Unsplash" title="Photo by kimi lee on Unsplash">
<div class="card-body">
<h5 class="card-title">Moving Features</h5>
<p class="subheading">Approved Standard <img src="img/approved_api_badge.png" class="approve_badge" alt=""></p>
<p class="card-text">OGC API - Moving Features defines an API that provides access to data representing features that move as rigid bodies.</p>
</div>
<div class="card-footer"><a href="movingfeatures" class="btn btn-primary">More Info</a><a href="https://github.com/opengeospatial/ogcapi-movingfeatures" target="_blank" class="btn btn-primary float-right">GitHub repo</a></div>
</div>
<div class="card sit-card">
<img src="img/siw/records-thumb.jpg" class="card-img-top">
<div class="card-body">
<h5 class="card-title">Records</h5>
<p class="card-text">OGC API - Records updates OGC’s Catalog Services for the Web by building on the simple access to content in OGC API - Features.</p>
</div>
<div class="card-footer"><a href="records" class="btn btn-primary">More Info</a><a href="https://github.com/opengeospatial/ogcapi-records" target="_blank" class="btn btn-primary float-right">GitHub repo</a></div>
</div>
<!-- -->
<div class="card sit-card">
<img src="img/siw/cube-coverages-thumb.jpg" class="card-img-top">
<div class="card-body">
<h5 class="card-title">Coverages</h5>
<p class="card-text">OGC API - Coverages allows discovery, visualization and query of complex raster stacks and data cubes.</p>
</div>
<div class="card-footer"><a href="coverages" class="btn btn-primary">More Info</a><a href="https://github.com/opengeospatial/ogcapi-coverages" target="_blank" class="btn btn-primary float-right">GitHub repo</a></div>
</div><!-- -->
</div>
</div>
</div>
<div class="row pt-3">
<div class="col">
<div class="card-deck">
<div class="card sit-card">
<img src="img/siw/dggs.png" class="card-img-top">
<div class="card-body">
<h5 class="card-title">DGGS</h5>
<p class="card-text">Specifies an API for accessing data organised according to a Discrete Global Grid Reference System (DGGRS).</p>
</div>
<div class="card-footer"><a href="dggs" class="btn btn-primary">More Info</a><a href="https://github.com/opengeospatial/ogcapi-discrete-global-grid-systems" target="_blank" class="btn btn-primary float-right">GitHub repo</a></div>
</div>
<div class="card sit-card">
<img src="img/siw/routes-thumb.jpg" class="card-img-top">
<div class="card-body">
<h5 class="card-title">Routes</h5>
<p class="card-text">Enables applications to request routes in a manner independent of the underlying routing data set, routing engine or algorithm.</p>
</div>
<div class="card-footer"><a href="routes" class="btn btn-primary">More Info</a><a href="https://github.com/opengeospatial/ogcapi-routes" target="_blank" class="btn btn-primary float-right">GitHub repo</a></div>
</div>
<div class="card sit-card">
<img src="img/siw/joins-thumb.jpg" class="card-img-top" alt="Photo by pepe nero on Unsplash" title="Photo by pepe nero on Unsplash">
<div class="card-body">
<h5 class="card-title">Joins</h5>
<p class="card-text">OGC API - Joins supports the joining of data, from multiple sources, with feature collections or directly with other input files.</p>
</div>
<div class="card-footer"><a href="joins" class="btn btn-primary">More Info</a><a href="https://github.com/opengeospatial/tjs/raw/master/drafts/OGC%20API%20-%20Joins%20-%20Part%201%20Core.pdf" target="_blank" class="btn btn-primary float-right">GitHub repo</a></div>
</div>
</div>
</div>
</div>
<div class="row pt-3">
<div class="col"> <!--if there are 3 cards then use this instead of the .col-lg-x and .mx-auto -->
<!--div class="col-lg-8 mx-auto"> if there are 2 cards then use this instead of the .col -->
<!-- <div class="col-lg-4 mx-auto"> if there is only 1 card then use this instead -->
<div class="card-deck">
<div class="card sit-card">
<img src="img/siw/stylesimage-thumb.jpg" class="card-img-top">
<div class="card-body">
<h5 class="card-title">Styles</h5>
<p class="card-text">The OGC API - Styles defines a Web API that enables map servers, clients as well as visual style editors, to manage and fetch styles.</p>
</div>
<div class="card-footer"><a href="styles" class="btn btn-primary">More Info</a><a href="https://github.com/opengeospatial/ogcapi-styles" target="_blank" class="btn btn-primary float-right">GitHub repo</a></div>
</div>
<div class="card sit-card">
<img src="img/siw/geovolumes-thumb.jpg" class="card-img-top" alt="Image by Brecht Corbeel on Unsplash" title="Image by Brecht Corbeel on Unsplash">
<div class="card-body">
<h5 class="card-title">3D GeoVolumes</h5>
<p class="card-text">OGC API - 3D GeoVolumes facilitates efficient discovery of and access to 3D content in multiple formats based on a space-centric perspective.</p>
</div>
<div class="card-footer"><a href="geovolumes" class="btn btn-primary">More Info</a><a href="https://github.com/opengeospatial/ogcapi-3d-geovolumes" target="_blank" class="btn btn-primary float-right">GitHub repo</a></div>
</div>
<div class="card sit-card">
<img src="img/siw/connectedsystems-thumb.jpg" class="card-img-top" alt="Image by Daniam Chou on Unsplash" title="Image by Daniam Chou on Unsplash">
<div class="card-body">
<h5 class="card-title">Connected Systems</h5>
<p class="card-text">OGC API - Connected Systems act as a bridge between static and dynamic data collected by sensors.</p>
</div>
<div class="card-footer"><a href="connectedsystems" class="btn btn-primary">More Info</a><a href="https://github.com/opengeospatial/ogcapi-connected-systems" target="_blank" class="btn btn-primary float-right">GitHub repo</a></div>
</div>
</div>
</div>
</div>
<!-- IoT-->
<div class="row pt-3">
<div class="col-lg-12 text-center">
<p> </p>
<h3 class="section-heading">APIs for the IoT</h3>
</div>
<!-- <div class="col-lg-8 mx-auto"> if there are 2 cards then use this instead of the .col -->
<div class="col-lg-4 mx-auto"> <!-- if there is only 1 card then use this instead -->
<div class="card-deck">
<div class="card sit-card">
<img src="img/siw/sensorthings.jpg" class="card-img-top" alt="Photo by kimi lee on Unsplash" title="Photo by kimi lee on Unsplash">
<div class="card-body">
<h5 class="card-title">SensorThings</h5>
<p class="subheading">Approved Standard <img src="img/approved_api_badge.png" class="approve_badge" alt=""></p>
<p class="card-text">The OGC SensorThings API provides an open, geospatial-enabled and unified way to interconnect Internet of Things (IoT) devices, data, and applications over the Web.</p>
</div>
<div class="card-footer"><a href="sensorthings" class="btn btn-primary">More Info</a><a href="https://github.com/opengeospatial/sensorthings" target="_blank" class="btn btn-primary float-right">GitHub repo</a></div>
</div>
</div>
</div>
</div>
<!-- Compliance in it's own row -->
<div class="row">
<div class="col-lg-12 text-center">
<p> </p>
<h3 class="section-heading">Compliance Testing and Certification</h3>
<p>The executable test suite for Parts 1 and 2 of the <b>OGC API - Features Standard 1.0</b> is now <a href="https://cite.ogc.org/teamengine/">available</a>.</p>
<p>The executable test suite for the <b>OGC API - Environmental Data Retrieval Standard 1.0</b> is now <a href="https://cite.ogc.org/teamengine/">available</a>.</p>
<p>The executable test suite for the <b>OGC API - Processes Standard 1.0</b> is now <a href="https://cite.ogc.org/teamengine/">available</a>.</p>
<p>The executable test suite for the <b>OGC API - Tiles Standard 1.0</b> is now <a href="https://cite.ogc.org/teamengine/">available</a>.</p>
<p>More information about Compliance certification is on the <a href="https://www.ogc.org/compliance">OGC website</a>.</p>
</div>
</div>
</div>
</section>
<!-- Events -->
<section class="bg-light page-section" id="events">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">Sprints</h2>
<p class="text-justify">OGC continues to use special events, hackathons, and sprints to validate the OGC API draft candidate standards as those standards evolve. By including the broadest possible selection of stakeholders, OGC can be confident that when the standards are published, those standards have already withstood testing and suitability evaluation.</p>
</div>
</div>
<div class="row mt-5">
<div class="col-lg-12">
<ul class="timeline">
<li>
<div class="timeline-image">
<img class="rounded-circle img-fluid" src="https://picsum.photos/id/201/200" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="subheading">Climate Services Code Sprint</h4>
</div>
<div class="timeline-body">
<p class="text-muted"></p>
<p class="text-muted"><b>7 October to 9 October</b>. This will be a <strong>hybrid</strong> event. The face-to-face element will be held in Bonn, Germany. The code sprint will cover several OGC Standards, Artificial Intelligence (AI) technologies, and Climate Science applications. </p>
<p class="text-muted"><br/><a href="https://climateintelligence.eu/2024/07/climate-services-code-sprint/" target="_blank">Registration is Closed</a></p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="rounded-circle img-fluid" src="https://picsum.photos/id/201/200" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="subheading">July 2024 Open Standards Code Sprint</h4>
</div>
<div class="timeline-body">
<p class="text-muted"></p>
<p class="text-muted"><b>10 July to 12 July</b>. This will be a <strong>hybrid</strong> event. The face-to-face element will be held in London, England. The code sprint will cover several OGC Standards. </p>
<p class="text-muted"><br/><a href="https://developer.ogc.org/sprints/" target="_blank">Registration is Closed</a></p>
</div>
</div>
</li>
<!--li>
<div class="timeline-image">
<img class="rounded-circle img-fluid" src="https://picsum.photos/id/201/200" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>Future Event </h4>
<h4 class="subheading">Future Event Subheading</h4>
</div>
<div class="timeline-body">
<p class="text-muted">Find out more about <a href="#" target="_blank">this event</a> taking place on future date.<br>
The event begins at 7:00am EST on the first day, and ends at 05:30pm EST on the last day.</p>
<p class="text-muted"><br/><a href="" target="_blank">Register Here</a></p>
</div>
</div>
</li-->
</ul>
</div>
</div>
</div>
</section>
<!-- Guidelines -->
<section class="page-section" id="guidelines">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">OGC Web API guidelines</h2>
<!-- <h3 class="section-subheading text-muted">Subheading</h3> -->
</div>
<div class="row mt-5">
<div class="col text-justify">
The OGC Architecture Board (OAB) considers architecture consistency and life cycle management of the OGC standards baseline. The OAB has developed <a href="https://github.com/opengeospatial/OGC-Web-API-Guidelines" target="_blank">OGC Web API Guidelines</a> to be followed when building Web API standards. These guidelines are not mandatory or policy, rather their purpose is to assist standards developers to use common patterns and better align their efforts.
</div>
</div>
</div>
</div>
</section>
<!-- Videos -->
<section class="bg-light page-section" id="videos">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">OGC API Videos</h2>
<h3 class="section-subheading text-muted">Click on a video below to begin viewing it.</h3>
</div>
</div>
<!-- Grid row: START -->
<div class="row">
<!-- Grid column: START 9 -->
<div class="col-lg-4 col-md-12 mb-4">
<figure class="figure">
<a href="https://www.youtube.com/watch?v=TuBZwoLH-vo" target="_blank"><img class="figure-img img-fluid z-depth-1" src="./img/videos/foss4g_ecere.jpg" alt="video"></a>
<figcaption class="figure-caption text-center">FOSS4G 2023 - OGC API standards for geospatial data cubes. Presented by Jerome St-Louis.</figcaption>
</figure>
</div>
<!-- Grid column: START 8 -->
<div class="col-lg-4 col-md-6 mb-4">
<figure class="figure">
<a href="https://www.youtube.com/watch?v=uIjxV3TJ1NM" target="_blank"><img class="figure-img img-fluid z-depth-1" src="./img/videos/Apidays2024.jpg" alt="video"></a>
<figcaption class="figure-caption text-center">Apidays London 2024 - Open Standards for Getting your APIs into the Geospatial Ecosystem. Presented by Gobe Hobona.</figcaption>
</figure>
</div>
<!-- Grid column: START 7 -->
<div class="col-lg-4 col-md-6 mb-4">
<figure class="figure">
<a href="https://www.youtube.com/watch?v=k1CbHGynC_w" target="_blank"><img class="figure-img img-fluid z-depth-1" src="./img/videos/foss4ge2024.jpg" alt="video"></a>
<figcaption class="figure-caption text-center">FOSS4G Europe 2024 - State of OGC APIs. Presented by Joana Simoes.</figcaption>
</figure>
</div>
</div>
<!-- Grid row: END -->
<!-- Grid row: START -->
<div class="row">
<!-- Grid column: START 6 -->
<div class="col-lg-4 col-md-12 mb-4">
<figure class="figure">
<a href="https://www.youtube.com/watch?v=Wv8GMkd00XU" target="_blank"><img class="figure-img img-fluid z-depth-1" src="./img/videos/FOSS4G21_thumb.jpeg" alt="video"></a>
<figcaption class="figure-caption text-center">FOSS4G 2021 - OGC APIs: background, current state, what's next?</figcaption>
</figure>
</div>
<!-- Grid column: START 5 -->
<div class="col-lg-4 col-md-6 mb-4">
<figure class="figure">
<a href="https://www.youtube.com/watch?v=8_Jz9cV8BAo" target="_blank"><img class="figure-img img-fluid z-depth-1" src="./img/videos/APIDays_thumb.jpeg" alt="video"></a>
<figcaption class="figure-caption text-center">Apidays LIVE interface 2021 - Spatially enabling Web APIs through OGC Standards By Gobe Hobona</figcaption>
</figure>
</div>
<!-- Grid column: START 4 -->
<div class="col-lg-4 col-md-6 mb-4">
<figure class="figure">
<a href="https://www.youtube.com/watch?v=08C_TEJNjJc" target="_blank"><img class="figure-img img-fluid z-depth-1" src="./img/videos/ApacheCon_thumb.jpeg" alt="video"></a>
<figcaption class="figure-caption text-center">ApacheCon 2021 - OGC APIs: Web API Standards for Handling and Exchanging Location Data - Gobe Hobona, Scott Simmons</figcaption>
</figure>
</div>
</div>
<!-- Grid row: START -->
<div class="row">
<!-- Grid column: START 3 -->
<div class="col-lg-4 col-md-12 mb-4">
<figure class="figure">
<a href="https://www.youtube.com/watch?v=hNmZJ1itqfM" target="_blank"><img class="figure-img img-fluid z-depth-1" src="./img/videos/OGCAPI_thumb.jpeg" alt="video"></a>
<figcaption class="figure-caption text-center">OGC APIs: The Building Blocks for Location</figcaption>
</figure>
</div>
<!-- Grid column: START 2 -->
<div class="col-lg-4 col-md-6 mb-4">
<figure class="figure">
<a href="https://www.youtube.com/watch?v=xpw_VvcPjaE" target="_blank"><img class="figure-img img-fluid z-depth-1" src="./img/videos/OverviewImp_thumb.jpeg" alt="video"></a>
<figcaption class="figure-caption text-center">OGC API Overview and Implementation</figcaption>
</figure>
</div>
<!-- Grid column: START 1 -->
<div class="col-lg-4 col-md-6 mb-4">
<figure class="figure">
<a href="https://www.youtube.com/watch?v=3y46zovMsvo" target="_blank"><img class="figure-img img-fluid z-depth-1" src="./img/videos/ESIP_Update_thumb.jpeg" alt="video"></a>
<figcaption class="figure-caption text-center">OGC API update - presented to the ESIP - November 2020</figcaption>
</figure>
</div>
</div>
<div class="row">
<div class="col-lg-12 text-center">
<h3>Playlists:</h3>
<div id="video_list_card" class="m-auto col-lg-8">
<div class="card mb-3">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./img/videos/VTP2_thumb.jpeg" class="card-img" alt="...">
</div>
<div class="col-md-8">
<div class="card-body">
<!-- <h5 class="card-title">Card title</h5>-->
<p class="card-text">
<a href="https://www.youtube.com/playlist?list=PLQsQNjNIDU84L3xCmbhdHdxR_ztIrwiVQ" target="_blank">Videos of OGC API implementations from the Vector Tiles Pilot Phase 2 initiative</a>
</p>
</div>
</div>
</div>
</div>
<div class="card mb-3">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./img/videos/3DCTP_thumb.jpeg" class="card-img" alt="...">
</div>
<div class="col-md-8">
<div class="card-body">
<!-- <h5 class="card-title">Card title</h5>-->
<p class="card-text">
<a href="https://www.youtube.com/playlist?list=PLQsQNjNIDU84-8pPkJvWSxnR0pizjU4tP" target="_blank">Videos of OGC API implementations from the 3D Container and Tile API Pilot initiative</a>
</p>
</div>
</div>
</div>
</div>
<div class="card mb-3">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./img/videos/TB16Overview_thumb.jpeg" class="card-img" alt="...">
</div>
<div class="col-md-8">
<div class="card-body">
<!-- <h5 class="card-title">Card title</h5>-->
<p class="card-text">
<a href="https://www.youtube.com/watch?v=8dkvzQLjzqM&list=PLQsQNjNIDU85pxOAmuPLY-ihk7kSl3BwJ" target="_blank">Overview of OGC Testbed-16 Results</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Blogs -->
<section class="bg-light page-section" id="blogs">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">Related Blog Posts</h2>
<h3 class="section-subheading text-muted"><a href="https://www.ogc.org/news/" target="_blank">View blog posts on the OGC website.</a></h3>
</div>
</div>
</div>
</section>
<!-- Training -->
<section class="bg-light page-section" id="training">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">Training for Getting Started</h2>
<h3 class="section-subheading text-muted">A series of freely accessible e-learning and training resources for <b>getting started</b> with OGC API Standards.<br/>
For advanced training, please contact <a href="https://www.ogc.org/about-ogc/ogc-member-list/">OGC Members</a>.</h3>
<div class="row mt-5">
<div id="document_list" class="m-auto col-lg-8 list-group">
<a class="list-group-item list-group-item-action" href="https://ogcapi-workshop.ogc.org/" target="_blank">OGC API workshop</a>
<a class="list-group-item list-group-item-action" href="https://opengeospatial.github.io/e-learning" target="_blank">OGC e-learning: This resource includes material on OGC API, data encoding, and web service standards</a>
<a class="list-group-item list-group-item-action" href="https://academy.ogc.org/" target="_blank">OGC Location Innovation Academy</a>
</div>
</div>
<div class="row justify-content-center">
<span class="badge-xl show_button badge badge-pill badge-primary">Show more +</span>
</div>
</div>
</div>
</div>
</section>
<!-- Documents -->
<section class="page-section" id="documents">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">Supporting Documents</h2>
<h3 class="section-subheading text-muted">OGC and other documents supporting OGC API efforts.</h3>
<p class="text-justify">The OGC API standards rely heavily upon fundamental concepts expressed in OGC White Papers and research and testing performed in OGC's Collaborative Solutions and Innovation Program activities and documented in <a href="https://www.ogc.org/docs/er">Engineering Reports</a>. OGC members are also specifying best practices for the use of web APIs and often share that guidance. The documents below provide some background to OGC API efforts.</p>
</div>
</div>
<div class="row mt-5">
<div id="document_list" class="m-auto col-lg-8 list-group">
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/23-033.html" target="_blank">OGC Testbed-19: Machine Learning Models Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/23-044.html" target="_blank">OGC Testbed-19: High Performance Geospatial Computing Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/23-047.html" target="_blank">OGC Testbed-19: GeoDataCubes Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/23-048.html" target="_blank">OGC Testbed-19: Draft API – Geodatacubes Specification Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/23-050.html" target="_blank">OGC Testbed-19: Agile Reference Architecture Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://doi.org/10.5194/ica-abs-6-91-2023" target="_blank">ICA extended abstract: OGC API Standards for the Next Generation of Web Mapping</a>
<a class="list-group-item list-group-item-action" href="https://www.openapis.org/blog/2023/02/01/why-the-largest-geospatial-organization-in-the-world-uses-the-openapi-specification" target="_blank">OpenAPI Initiative article: Why the Largest Geospatial Organization in the World Uses the OpenAPI Specification</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/22-031r1.html" target="_blank">OGC Testbed-18: Reproducible FAIR Best Practices Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/22-018.html" target="_blank">OGC Testbed-18: Secure Asynchronous Catalog Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/22-017.html" target="_blank">OGC Testbed-18: Machine Learning Training Data Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/22-020r1.html" target="_blank">OGC Testbed-18: Identifiers for Reproducible Science Summary Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/22-024r2.html" target="_blank">OGC Testbed-18: Filtering Service and Rule Set Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/21-027.html" target="_blank">OGC Testbed-17: Geo Data Cube API Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/21-039r1.html" target="_blank">OGC Testbed-17: Aviation API Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/21-020r1.html" target="_blank">OGC Testbed-17: Data Centric Security Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/21-019.html" target="_blank">OGC Testbed-17: Attracting Developers: Lowering the entry barrier for implementing OGC Web APIs Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/21-028.html" target="_blank">OGC Testbed-17: OGC API - Moving Features Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/22-043r1.html" target="_blank">Joint OGC and ISO Code Sprint 2022 Summary Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/22-004.html" target="_blank">Joint OGC OSGeo ASF Code Sprint 2022 Summary Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/21-055.html" target="_blank">July 2021 OGC API Code Sprint Summary Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/21-042.html" target="_blank">May 2021 OGC API Code Sprint Summary Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/21-008.html" target="_blank">Joint OGC OSGeo ASF Code Sprint 2021 Summary Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/20-091.html" target="_blank">OGC API – Common and OGC API – Features Sprint 2020: Summary Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/20-090.html" target="_blank">OGC API – Maps Sprint 2020: Summary Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/20-033.html" target="_blank">OGC Testbed-16: OpenAPI Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/20-021r2.html" target="_blank">OGC Testbed-16: Data Centric Security Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/20-033.html" target="_blank">OGC Testbed-16: OpenAPI Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/20-039r2.html" target="_blank">OGC Testbed-16: DGGS and DGGS API Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/20-016.html" target="_blank">OGC Testbed-16: Data Access and Processing Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/20-025r1.html" target="_blank">OGC Testbed-16: Data Access and Processing API Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/20-018.html" target="_blank">OGC Testbed-16: Machine Learning Training Data ER</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/20-020.html" target="_blank">OGC Testbed-16: Aviation Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://docs.ogc.org/per/20-035.html" target="_blank">OGC Testbed-16: Earth Observation Application Packages with Jupyter Notebooks</a>
<a class="list-group-item list-group-item-action" href="http://docs.ogc.org/per/19-088r2.html" target="_blank">OGC Vector Tiles Pilot 2: Summary Engineering Report</a>
<a class="list-group-item list-group-item-action" href="http://docs.opengeospatial.org/per/19-082r1.html" target="_blank">OGC Vector Tiles Pilot 2: Tile Set Metadata Engineering Report</a>
<a class="list-group-item list-group-item-action" href="http://docs.opengeospatial.org/per/19-084.html" target="_blank">OGC Vector Tiles Pilot 2: Vector Tiles Filtering Language Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://portal.ogc.org/files/17-061" target="_blank">FGDC OGC Application Programming Interface Interoperability Assessment</a>
<a class="list-group-item list-group-item-action" href="downloads/OGC_APIs_prospectus.pdf" target="_blank">OGC API Prospectus</a>
<a class="list-group-item list-group-item-action" href="http://docs.opengeospatial.org/per/19-010r2.html" target="_blank">Testbed-15 Styles API Engineering Report</a>
<a class="list-group-item list-group-item-action" href="http://docs.opengeospatial.org/per/19-069.html" target="_blank">Testbed-15 Maps and Tiles API Engineering Report</a>
<a class="list-group-item list-group-item-action" href="http://docs.opengeospatial.org/per/19-070.html" target="_blank">Testbed-15 Images and Changes Set API Engineering Report</a>
<a class="list-group-item list-group-item-action" href="http://docs.opengeospatial.org/wp/16-019r4/16-019r4.html" target="_blank">OGC Open Geospatial APIs - White Paper</a>
<a class="list-group-item list-group-item-action" href="https://www.w3.org/TR/sdw-bp/">Joint OGC-W3C Spatial Data on the Web Best Practices</a>
<a class="list-group-item list-group-item-action" href="http://docs.opengeospatial.org/per/18-045.html" target="_blank">OGC Testbed-14: Next Generation Web APIs - WFS 3.0 Engineering Report</a>
<a class="list-group-item list-group-item-action" href="http://docs.opengeospatial.org/per/18-021.html" target="_blank">OGC Testbed-14 Next Generation APIs: Complex Feature Handling Engineering Report</a>
<a class="list-group-item list-group-item-action" href="http://docs.opengeospatial.org/per/18-049r1.html" target="_blank">OGC Testbed-14: Application Package Engineering Report</a>
<a class="list-group-item list-group-item-action" href="http://docs.opengeospatial.org/per/18-050r1.html" target="_blank">OGC Testbed-14: ADES & EMS Results and Best Practices Engineering Report</a>
<a class="list-group-item list-group-item-action" href="http://docs.opengeospatial.org/per/18-047r3.html" target="_blank">OGC Testbed-14: Swath Coverage Engineering Report</a>
<a class="list-group-item list-group-item-action" href="http://docs.opengeospatial.org/per/18-078.html" target="_blank">OGC Vector Tiles Pilot: WFS 3.0 Vector Tiles Extension Engineering Report</a>
<a class="list-group-item list-group-item-action" href="http://docs.opengeospatial.org/per/18-101.html" target="_blank">Vector Tiles Pilot Extension Engineering Report</a>
<a class="list-group-item list-group-item-action" href="https://geonovum.github.io/KP-APIs/#api-designrules" target="_blank">API strategie voor de Nederlandse overheid (section in English)</a>
</div>
</div>
<div class="row justify-content-center">
<span class="badge-xl show_button badge badge-pill badge-primary">Show more +</span>
</div>
<br/>
<br/>
</div>
<hr>
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<!-- <h2 class="section-heading text-uppercase">Innovation Program activities</h2> -->
<h3 class="section-heading text-uppercase">Collaborative Solutions and Innovation Program activities</h3>
<!-- <h3 class="section-subheading text-muted">OGC and other documents supporting OGC API efforts.</h3> -->
<p class="text-justify">The OGC Collaborative Solutions and Innovation Program provides a world-recognized process for users of geospatial technology to collaborate and share the advancement of technologies for future enterprise architectures.</p>
</div>
</div>
<div class="row mt-5">
<div class="m-auto col-md-6">
<ul class="list-group">
<li class="list-group-item"><a href="https://www.ogc.org/initiatives/t-19/">OGC Testbed-19</a></li>
<li class="list-group-item"><a href="https://www.ogc.org/initiatives/testbed-18/">OGC Testbed-18</a></li>
<li class="list-group-item"><a href="https://www.ogc.org/initiatives/t17/">OGC Testbed-17</a></li>
<li class="list-group-item"><a href="https://www.ogc.org/initiatives/t-16/">OGC Testbed-16</a></li>
<li class="list-group-item"><a href="https://www.ogc.org/initiatives/oapihackathon19/">OGC API Hackathon 2019 ; </a> <a href="https://github.com/opengeospatial/OGC-API-Hackathon-2019" target="_blank">GitHub repository for hackathon</a></li>
<li class="list-group-item"><a href="https://www.ogc.org/initiatives/3dt/">3D Data Container and Tiles Pilot</a>
<li class="list-group-item"><a href="https://www.ogc.org/initiatives/wfs3hackathon/">WFS 3.0 (now OGC API - Features) Hackathon</a></li>
<li class="list-group-item"><a href="https://www.ogc.org/initiatives/testbed-15/">OGC Testbed-15</a></li>
<li class="list-group-item"><a href="https://www.ogc.org/initiatives/testbed-14/">OGC Testbed-14</a></li>
<li class="list-group-item"><a href="https://www.ogc.org/initiatives/routing-pilot/">Routing Pilot</a></li>
<li class="list-group-item"><a href="https://www.ogc.org/initiatives/vt-pilot-2018/">Vector Tiles Pilot</a></li>
</ul>
</div>
</div>
<div class="row mt-5">
<div class="col-lg-8 m-auto text-justify">
<p>If you have an idea for an initiative or simply have a question or comment, contact <a href="https://www.ogc.org/contacts">Ingo Simonis</a>, Chief Technology Innovation Officer.</p>
</div>
</div>
</div>
<hr/>
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h3 class="section-heading text-uppercase">Frequently Asked Questions (FAQs)</h3>
<p class="text-justify">The following are frequently asked questions in relation to OGC API Standards.</p>
<div class="ulist">
<ul>
<li>
<b>Q: I would like to migrate from a Web Feature Service (WFS) to OGC API Standards. Which OGC API Standard should I implement?</b>
<br/>
A: <a href="https://ogcapi.ogc.org/features/">OGC API - Features</a>
</li>
<li>
<b>Q: I would like to migrate from a MetOcean Web Coverage Service (WCS) to OGC API Standards. Which OGC API Standard should I implement?</b>
<br/>
A: <a href="https://ogcapi.ogc.org/edr/">OGC API - Environmental Data Retrieval</a>
</li>
<li>
<b>Q: I would like to migrate from a Web Processing Service (WPS) to OGC API Standards. Which OGC API Standard should I implement?</b>
<br/>
A: <a href="https://ogcapi.ogc.org/processes/">OGC API - Processes</a>
</li>
<li>
<b>Q: I would like to migrate from a Web Map Tile Service (WMTS) to OGC API Standards. Which OGC API Standard should I implement?</b>
<br/>
A: <a href="https://ogcapi.ogc.org/tiles/">OGC API - Tiles</a>
</li>
<li>
<b>Q: I would like to migrate from a Sensor Observation Service (SOS) to OGC API Standards. Which OGC API Standard should I implement?</b>
<br/>
A: <a href="https://ogcapi.ogc.org/sensorthings/">OGC SensorThings API</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<hr/>
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<!-- <h2 class="section-heading text-uppercase">Use of OpenAPI in legacy OGC standards</h2> -->
<h3 class="section-heading text-uppercase">Use of OpenAPI in legacy OGC standards</h3>
<!-- <h3 class="section-subheading text-muted">While the OGC API standards are being developed in concert around common core elements,<br> some older OGC web service standards have been described using OpenAPI. <br>Examples of these legacy enhancements are found below.</h3> -->
<p class="text-justify">While the OGC API standards are being developed in concert around common core elements, some older OGC web service standards have been described using OpenAPI. Examples of these legacy enhancements are found below.</p>
</div>
</div>
<div class="row mt-5">
<div class="m-auto col-lg-8 list-group">
<a class="list-group-item list-group-item-action" href="https://admiraltyapi.portal.azure-api.net/docs/services/" target="_blank">UK Hydrographic Office Web Map Service (WMS) for Electronic Navigational Charts</a>
<a class="list-group-item list-group-item-action" href="http://cite.opengeospatial.org/pub/cite/files/edu/wmts/text/api.html" target="_blank">Prototype OpenAPI definition for Web Map Tile Service (WMTS)</a>
</div>
</div>
</div>
</section>
<!-- Contact -->
<section class="page-section" id="contact">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">Get In Touch</h2>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<form id="contactForm" name="sentMessage" novalidate="novalidate">
<div class="row">
<div class="col-md-6">
<div class="form-group">
<input class="form-control" id="name" type="text" placeholder="Your Name *" required="required" data-validation-required-message="Please enter your name.">
<p class="help-block text-danger"></p>
</div>
<div class="form-group">
<input class="form-control" id="email" type="email" placeholder="Your Email *" required="required" data-validation-required-message="Please enter your email address.">
<p class="help-block text-danger"></p>
</div>
<div class="form-group">
<input class="form-control" id="organization" type="text" placeholder="Your Organization *" required="required" data-validation-required-message="Please enter your organization name.">
<p class="help-block text-danger"></p>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<textarea class="form-control" id="message" placeholder="Your Message *" required="required" data-validation-required-message="Please enter a message."></textarea>
<p class="help-block text-danger"></p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-lg-12 text-center">
<div class="form-group text-white">
<label class="form-type-checkbox" for="newsletter">Yes, I wish to receive the OGC newsletter.
<input class="form-type-checkbox" type="checkbox" name="newsletter" id="newsletter" value="1" checked />
</label>
<span id="privacynote" data-toggle="popover" data-trigger="focus" title="OGC Email List"
data-content="By selecting the checkbox you are signing up to the OGC mailing list. We will never give out or sell your information." ><i class="fa fa-question-circle"></i></span>
</div>
<div id="success"></div>
<button id="sendMessageButton" class="btn btn-primary btn-xl text-uppercase" type="submit">Send Message</button>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="row align-items-center">
<div class="col-md-4">
<span class="copyright">Copyright © OGC <span id="year"></span></span>
</div>
<div class="col-md-4">
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a href="https://twitter.com/opengeospatial" data-toggle="tooltip" data-placement="top" title="Visit the OGC Twitter page." alt="OGC Twitter">
<i class="fab fa-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a href="http://www.linkedin.com/groups?mostPopular=&gid=55322" data-toggle="tooltip" data-placement="top" title="Visit the OGC Linkedin group." alt="OGC linkedin group">
<i class="fab fa-linkedin-in"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.opengeospatial.org" data-toggle="tooltip" data-placement="top" title="Visit the OGC website." alt="OGC website">
<i class="fa fa-home"></i>
</a>
</li>
</ul>
</div>
<div class="col-md-4">
<ul class="list-inline quicklinks">
<li class="list-inline-item">
<a href="https://www.opengeospatial.org/ogc/policies/privacy">Privacy Policy</a>
</li>
<li class="list-inline-item">
<a href="#">Terms of Use</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script>
$(function () {
$('[data-toggle="tooltip"]').tooltip();
$("#year").text( (new Date).getFullYear() );
})
</script>
<!-- Plugin JavaScript -->
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
<!-- Contact form JavaScript -->
<script src="js/jqBootstrapValidation.js"></script>
<script src="js/contact_me.js"></script>
<!-- Custom scripts for this template -->
<script src="js/agency.min.js"></script>
<!-- More custom scripts -->
<script src="js/custom-min.js"></script>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NCQMLFG"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-NCQMLFG');</script>
<!-- End Google Tag Manager -->
<link type="text/css" rel="stylesheet" href="./css/cookiepanel.css" />
<div id='cookiePanel'>
<p>Do you consent to the use of cookies on this site?</p>
<button id="btnConsentGranted" class="btnConsent">Yes</button>
<button id="btnConsentDenied" class="btnConsent">No</button>
<a id="detailToggle" href="#detailPanel" rel="modal:open">Set Specific Preferences</a>
<!-- The Modal -->
<div id="detailPanel" class="modal">
<p>Required Cookies (minimal set for site operation)<br/>
<label class="switch">
<input type="checkbox" checked disabled>
<span class="slider round"></span>
</label>
</p>
<p>Google Analytics<br/>
<label class="switch">
<input id="opt_analytics_storage" type="checkbox" checked>
<span class="slider round"></span>
</label>
</p>
<hr/>
<p>Make selection then click "Yes" above.</p>
<!-- <a href="#" rel="modal:close">Close</a> -->
</div>
</div>
<script type="text/javascript" src="./js/cookiepanel.js"></script>
</body>
</html>