-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.yaml
1455 lines (1455 loc) · 51.8 KB
/
index.yaml
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
apiVersion: v1
entries:
frost-server:
- apiVersion: v2
appVersion: 2.5.2
created: "2025-01-08T10:21:05.757060208Z"
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.22.0
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: 93a6ffe4f355293533e258cd58d7b9188f8d0229333d85fd60f4501512a21f87
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
- email: hylke.vanderschaaf@iosb.fraunhofer.de
name: Hylke van der Schaaf
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.5.2.tgz
version: 2.5.2
- apiVersion: v2
appVersion: 2.5.1
created: "2025-01-08T10:21:05.755103989Z"
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.22.0
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: bcfd02d8dd0b0e39d5710cbe4b2237e661f2c83da32febbbfd83a2585e038d36
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
- email: hylke.vanderschaaf@iosb.fraunhofer.de
name: Hylke van der Schaaf
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.5.1.tgz
version: 2.5.1
- apiVersion: v2
appVersion: 2.5.0
created: "2025-01-08T10:21:05.753105661Z"
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.22.0
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: 489444717e4faa55bd9690fda1106abe1d3b760ecb9c062863fea80a3218fb1f
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
- email: hylke.vanderschaaf@iosb.fraunhofer.de
name: Hylke van der Schaaf
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.5.0.tgz
version: 2.5.0
- apiVersion: v2
appVersion: 2.4.6
created: "2025-01-08T10:21:05.750257254Z"
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.22.0
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: 5ee505b86a9951d947ad628e0fe4eb4ee782bd1b60eb734b999dd2e2f487f56b
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
- email: hylke.vanderschaaf@iosb.fraunhofer.de
name: Hylke van der Schaaf
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.4.6.tgz
version: 2.4.6
- apiVersion: v2
appVersion: 2.4.5
created: "2025-01-08T10:21:05.748288462Z"
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.22.0
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: ea1e18f5fdc1044c19248d22ec3b4a96389de1eaa3ece38cba624fc25f9745ac
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
- email: hylke.vanderschaaf@iosb.fraunhofer.de
name: Hylke van der Schaaf
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.4.5.tgz
version: 2.4.5
- apiVersion: v2
appVersion: 2.4.4
created: "2025-01-08T10:21:05.746329848Z"
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.22.0
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: 8658990f9fd3452ad32da29898638b2ee405ef6e23a73e71332cd53950100e3c
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
- email: hylke.vanderschaaf@iosb.fraunhofer.de
name: Hylke van der Schaaf
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.4.4.tgz
version: 2.4.4
- apiVersion: v2
appVersion: 2.4.3
created: "2025-01-08T10:21:05.743553724Z"
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.22.0
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: 9d97263bb32d895f8f2639b171e4dc72012febd9f87747f1eb181f213f352312
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
- email: hylke.vanderschaaf@iosb.fraunhofer.de
name: Hylke van der Schaaf
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.4.3.tgz
version: 2.4.3
- apiVersion: v2
appVersion: 2.4.2
created: "2025-01-08T10:21:05.741608125Z"
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.22.0
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: f65ae066ab1dfa894d6587769d05a818f7c35e25380e6baf30b7255e16026002
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
- email: hylke.vanderschaaf@iosb.fraunhofer.de
name: Hylke van der Schaaf
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.4.2.tgz
version: 2.4.2
- apiVersion: v2
appVersion: 2.4.1
created: "2025-01-08T10:21:05.739652928Z"
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.22.0
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: 508716b825c2621ede06accba7f55a435353b4967709787c5a951f6fab623944
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
- email: hylke.vanderschaaf@iosb.fraunhofer.de
name: Hylke van der Schaaf
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.4.1.tgz
version: 2.4.1
- apiVersion: v1
appVersion: 2.4.0
created: "2025-01-08T10:21:05.737627078Z"
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: 656080513fed12d959391f76b89c84acb73f4650205079bc6786b2140f8a74e8
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
- email: hylke.vanderschaaf@iosb.fraunhofer.de
name: Hylke van der Schaaf
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.4.0.tgz
version: 2.4.0
- apiVersion: v1
appVersion: 2.3.4
created: "2025-01-08T10:21:05.735422676Z"
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: cc3a0dea8b4ae023d89996a90ca5a6913a14ffd5c8197230bba6b7a164b8662e
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
- email: hylke.vanderschaaf@iosb.fraunhofer.de
name: Hylke van der Schaaf
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.3.4.tgz
version: 2.3.4
- apiVersion: v1
appVersion: 2.3.3
created: "2025-01-08T10:21:05.734098693Z"
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: 653679ad28096064bfb509f8e16fece3d178a143eeb6b215486e98abc488dd28
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
- email: hylke.vanderschaaf@iosb.fraunhofer.de
name: Hylke van der Schaaf
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.3.3.tgz
version: 2.3.3
- apiVersion: v1
appVersion: 2.3.2
created: "2025-01-08T10:21:05.73276904Z"
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: e7f1fd038cfb0ed1f1b34492f5e8ad2e343bf18bb7f2f0bfc9cf530386500a31
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
- email: hylke.vanderschaaf@iosb.fraunhofer.de
name: Hylke van der Schaaf
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.3.2.tgz
version: 2.3.2
- apiVersion: v1
appVersion: 2.3.1
created: "2025-01-08T10:21:05.731426782Z"
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: 060f3c33d293a668c45d71212cac9292876fe9a26e1dfd2a9ac7af90d55bdc63
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
- email: hylke.vanderschaaf@iosb.fraunhofer.de
name: Hylke van der Schaaf
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.3.1.tgz
version: 2.3.1
- apiVersion: v1
appVersion: 2.3.0
created: "2025-01-08T10:21:05.72910591Z"
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: 1957ae25d9bd62eb4b506aa4356aab8af1fc7edb813bcdacf94b7e4e6e287940
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
- email: hylke.vanderschaaf@iosb.fraunhofer.de
name: Hylke van der Schaaf
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.3.0.tgz
version: 2.3.0
- apiVersion: v1
appVersion: 2.2.4
created: "2025-01-08T10:21:05.727809018Z"
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: b019ef6cdb7c3a5e2b712b050b1927518846ce00453828c995b2bd7903b6e192
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.2.4.tgz
version: 2.2.4
- apiVersion: v1
appVersion: 2.2.3
created: "2025-01-08T10:21:05.726463394Z"
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: 3e3172059ff630424377fc386abe3e985480072940cdc1a8a36f993f51e1f1d6
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.2.3.tgz
version: 2.2.3
- apiVersion: v1
appVersion: 2.2.2
created: "2025-01-08T10:21:05.725116238Z"
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: 67098651fe76ca437faee58b8341afc24f8617fe786b80108844edca9f45575c
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.2.2.tgz
version: 2.2.2
- apiVersion: v1
appVersion: 2.2.1
created: "2025-01-08T10:21:05.723029422Z"
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: 6f9057770a9091d4c61f429604926fa7b02dfd71333aa45468fe28995f639020
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.2.1.tgz
version: 2.2.1
- apiVersion: v1
appVersion: 2.2.0
created: "2025-01-08T10:21:05.721735045Z"
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: 7c159e7dcd77ffec515aed280e33f4054874b1302dbdeedb9a35ee6aa32b0487
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.2.0.tgz
version: 2.2.0
- apiVersion: v1
appVersion: 2.1.5
created: "2025-01-08T10:21:05.720430959Z"
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: 9d33144b6c5ac6fe0632d80783a2ac3e703aa5b6d3a1b3c9f118cb6de2a2a769
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.1.5.tgz
version: 2.1.5
- apiVersion: v1
appVersion: 2.1.4
created: "2025-01-08T10:21:05.719069596Z"
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: 63e643c3776597a9a8ef01da33846f6b35fcea0670b354c912ee6e6f87583b78
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.1.4.tgz
version: 2.1.4
- apiVersion: v1
appVersion: 2.1.3
created: "2025-01-08T10:21:05.716533675Z"
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: f3456907cf9ecd27a8ebc07d6325ff37993cabaa1a8232b0c9ca72dedb95350b
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.1.3.tgz
version: 2.1.3
- apiVersion: v1
appVersion: 2.1.2
created: "2025-01-08T10:21:05.715282107Z"
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: 4614ba9f1b6f99027d4f254787fb3d0d7f3c1b667fefdd0e04510485eee15936
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.1.2.tgz
version: 2.1.2
- apiVersion: v1
appVersion: 2.1.1
created: "2025-01-08T10:21:05.714005633Z"
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: f43f849eac76774610a98a632c747513822e4462afa46d502e49606ba7540f7e
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.1.1.tgz
version: 2.1.1
- apiVersion: v1
appVersion: 2.1.0
created: "2025-01-08T10:21:05.712751672Z"
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: 12c05157d66a67675f45ee54a5b6eed47895f25c2fee7979acb86f893d0c418e
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.1.0.tgz
version: 2.1.0
- apiVersion: v1
appVersion: 2.0.13
created: "2025-01-08T10:21:05.701326524Z"
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: 7d0cbaf3d7d47b1f86ab2bd10fa885c81163db63e58660a594c554aa96a4bda0
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.0.13.tgz
version: 2.0.13
- apiVersion: v1
appVersion: 2.0.12
created: "2025-01-08T10:21:05.700025824Z"
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: 75d40d280644a8f933246e9f40ff7bc37cbb9befedcd0ffb521a31ee7890fe29
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.0.12.tgz
version: 2.0.12
- apiVersion: v1
appVersion: 2.0.11
created: "2025-01-08T10:21:05.697875927Z"
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: 38b6df9068146ac211401e3d2d0220d361c816438cd618dbb7764b5fa31d3bd8
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.0.11.tgz
version: 2.0.11
- apiVersion: v1
appVersion: 2.0.10
created: "2025-01-08T10:21:05.696609522Z"
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: 416ce01bcb84f9e08f448f46f13202f7c5e4d20fd8964d5e1c0604b0ee45de74
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.0.10.tgz
version: 2.0.10
- apiVersion: v1
appVersion: 2.0.9
created: "2025-01-08T10:21:05.710686996Z"
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: e42b293ae98f5f97621abfa7567b7600251c480db58790b5ad7320e2edbac04e
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.0.9.tgz
version: 2.0.9
- apiVersion: v1
appVersion: 2.0.8
created: "2025-01-08T10:21:05.709395283Z"
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: bf3d561dcc5351023d2a23ecaff965bd505820b0e4dc4aaea170fcfabc076026
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.0.8.tgz
version: 2.0.8
- apiVersion: v1
appVersion: 2.0.7
created: "2025-01-08T10:21:05.708126534Z"
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: 012e6230fc3e04dc7da5fae7a905945a5034f109a1fc8e69b322edb72060b727
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.0.7.tgz
version: 2.0.7
- apiVersion: v1
appVersion: 2.0.6
created: "2025-01-08T10:21:05.706883983Z"
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: fd24ed54ba73e4e9fc9728215a19d4ca3c85447fb86ec4f9fe1c9cc4e02476b2
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc
- sensing
- iot
- frost
maintainers:
- name: Aurelien Bourdon
url: http://abourdon.github.io
- email: philipp.hertweck@iosb.fraunhofer.de
name: Philipp Hertweck
name: frost-server
sources:
- https://github.com/FraunhoferIOSB/FROST-Server
urls:
- https://fraunhoferiosb.github.io/helm-charts/frost-server-2.0.6.tgz
version: 2.0.6
- apiVersion: v1
appVersion: 2.0.5
created: "2025-01-08T10:21:05.704668191Z"
description: The FROST-Server (FRaunhofer Opensource SensorThings-Server) is the
first complete, open-source implementation of the OGC SensorThings API Part
1 (Sensing).
digest: 57940828ed8ca185cc85d011ce1d7222f2bda54ab10654a16ff4f26b670202b5
home: https://github.com/FraunhoferIOSB/FROST-Server
icon: https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docs/images/FROST-Server-darkgrey.png
keywords:
- sensorthings-api
- sensorthings
- ogc