-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1833 lines (1758 loc) · 122 KB
/
Copy pathindex.html
File metadata and controls
1833 lines (1758 loc) · 122 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GeonicDB のご紹介</title>
<meta name="description" content="GeonicDB は FIWARE Orion 互換のフルマネージド Context Broker サービス。NGSIv2 + NGSI-LD のデュアルプロトコル、AI・地理空間ネイティブ、運用レスな SaaS を、実接続のライブデモでご紹介します。" />
<link rel="canonical" href="https://geolonia.github.io/geonicdb-livedeck/" />
<link rel="icon" type="image/svg+xml" href="assets/geonic-mark.svg" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700;900&display=swap" rel="stylesheet" />
<!-- Render-blocking stylesheet (linked, not JS-injected) so there's no flash of
unstyled content on reload. Vite serves this in dev and bundles+hashes it on build. -->
<link rel="stylesheet" href="/src/styles/styles.css" />
<!-- warm static demo assets (auth-free); entity data is prefetched via JS -->
<link rel="prefetch" href="assets/map-style.json" as="fetch" crossorigin="anonymous" />
<!-- PWA -->
<meta name="theme-color" content="#17171d" />
<link rel="manifest" href="manifest.webmanifest" />
<link rel="icon" type="image/png" sizes="192x192" href="assets/icon-192.png" />
<link rel="apple-touch-icon" href="assets/icon-180.png" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="GeonicDB" />
<!-- Open Graph / Twitter -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="GeonicDB" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:title" content="GeonicDB — FIWARE Orion 互換のフルマネージド Context Broker サービス" />
<meta property="og:description" content="NGSIv2 + NGSI-LD デュアルプロトコル/AI・地理空間ネイティブ/運用レス。実接続のライブデモ入り製品紹介デッキ。" />
<meta property="og:url" content="https://geolonia.github.io/geonicdb-livedeck/" />
<meta property="og:image" content="https://geolonia.github.io/geonicdb-livedeck/assets/og-image.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="GeonicDB — フルマネージド Context Broker サービスの製品紹介" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="GeonicDB — フルマネージド Context Broker サービス" />
<meta name="twitter:description" content="NGSIv2 + NGSI-LD デュアルプロトコル/AI・地理空間ネイティブ/運用レス。実接続のライブデモ入り製品紹介デッキ。" />
<meta name="twitter:image" content="https://geolonia.github.io/geonicdb-livedeck/assets/og-image.png" />
<meta name="twitter:image:alt" content="GeonicDB — フルマネージド Context Broker サービスの製品紹介" />
</head>
<body>
<!-- ===== Deck ===== -->
<main id="deck" class="deck">
<!-- 1. Title -->
<section class="slide slide--title" data-bg="title">
<div class="grid-bg" aria-hidden="true"></div>
<div class="slide__inner title__inner">
<img class="brand-logo brand-logo--h" src="assets/geonic-logo-h-dark.svg" alt="GeonicDB" />
<h1 class="title__headline">
<span class="accent">フルマネージド</span><br />
コンテキストブローカー
</h1>
<p class="title__sub">
NGSIv2 + NGSI-LD デュアルプロトコル/AI・地理空間ネイティブ/エンタープライズ認証認可/運用レス
</p>
<div class="title__meta">
<span class="chip">FIWARE Orion 互換</span>
<span class="chip">フルマネージド</span>
<span class="chip">Smart City / IoT</span>
<span class="chip">Geolonia</span>
</div>
</div>
<aside class="title__qr" aria-label="ライブデッキを開く QR コード">
<div class="title__qr-card" id="titleQr"></div>
<p class="title__qr-cap"><span class="mono" id="titleQrUrl"></span></p>
</aside>
<div class="title__foot mono">v0.11.0 · Context Broker</div>
</section>
<!-- 会社紹介 — 会社概要 + 代表者プロフィール -->
<section class="slide" data-bg="dark">
<div class="slide__inner">
<span class="kicker">会社紹介 / Company</span>
<h2 class="slide__title">会社概要</h2>
<div class="company">
<table class="company-facts">
<tbody>
<tr><th>商号</th><td>株式会社 Geolonia(Geolonia Inc.)</td></tr>
<tr><th>親会社</th><td>ジオテクノロジーズ株式会社(GeoTechnologies, Inc.)</td></tr>
<tr><th>設立</th><td>2019年8月</td></tr>
<tr><th>資本金</th><td>67,022千円(資本準備金 45,010千円)</td></tr>
<tr><th>本社所在地</th><td>〒113-0021<br />東京都文京区本駒込二丁目28番8号</td></tr>
<tr><th>役員</th><td>
<ul class="company-officers">
<li>代表取締役CEO 宮内 隆行</li>
<li>取締役公共政策担当 関 治之</li>
<li>取締役 西川 伸一</li>
<li>社外取締役 八剱 洋一郎</li>
<li>社外取締役 但馬 一幸</li>
<li>社外取締役 足立 圭介</li>
<li>社外取締役 藤田 博昭</li>
<li>社外取締役 藤倉 庸子</li>
<li>社外監査役 中瀬 美明</li>
</ul>
</td></tr>
<tr><th>従業員数</th><td>27名</td></tr>
</tbody>
</table>
<div class="company-side">
<div class="std-card company-clients">
<span class="std-card__name">主な納入先・実績</span>
<ul class="company-clients__list">
<li>デジタル庁</li>
<li>国土交通省</li>
<li>国土地理院</li>
<li>NHK</li>
<li>ソフトバンク株式会社</li>
<li>株式会社竹中工務店</li>
<li>高松市</li>
<li>焼津市</li>
<li>那須塩原市</li>
<li>延岡市</li>
<li>鳥取県</li>
</ul>
</div>
<div class="std-card company-gov">
<span class="std-card__name">政府の取り組みへの貢献</span>
<ul class="company-gov__list">
<li><strong>空間ID(経済産業省 / DADC)</strong><br />ID 付与のための計算式の考案、共通ライブラリの無償提供</li>
<li><strong>スマートシティリファレンスアーキテクチャ(内閣府)</strong><br />地理空間情報連携基盤の仕様策定、SCRA 第3版〜第5版の執筆</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- 2. What is a Context Broker (illustration, inlined so it uses the deck's fonts) -->
<section class="slide slide--illus" data-bg="illus">
<svg class="illus-img illus-svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1280 800"
role="img" aria-label="コンテキストブローカーとは — 街じゅうのデータをつなぐデータの中継役">
<title>コンテキストブローカーとは — 街じゅうのデータをつなぐデータの中継役</title>
<defs>
<linearGradient id="hubGrad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#FF6A2B"/>
<stop offset="1" stop-color="#E8412F"/>
</linearGradient>
<linearGradient id="bgGrad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#FFFDF8"/>
<stop offset="1" stop-color="#FBF4E7"/>
</linearGradient>
<marker id="arrow" markerWidth="10" markerHeight="10" refX="7" refY="3" orient="auto" markerUnits="strokeWidth">
<path d="M0,0 L7,3 L0,6 Z" fill="#B79B73"/>
</marker>
<marker id="arrowO" markerWidth="10" markerHeight="10" refX="7" refY="3" orient="auto" markerUnits="strokeWidth">
<path d="M0,0 L7,3 L0,6 Z" fill="#FF540D"/>
</marker>
<filter id="soft" x="-20%" y="-20%" width="140%" height="140%">
<feDropShadow dx="0" dy="3" stdDeviation="5" flood-color="#9C7A45" flood-opacity="0.18"/>
</filter>
</defs>
<rect width="1280" height="800" fill="url(#bgGrad)"/>
<!-- Title -->
<text x="640" y="58" text-anchor="middle" font-size="48.89" font-weight="800" fill="#2A2A2A">コンテキストブローカーとは?</text>
<text x="640" y="92" text-anchor="middle" font-size="18" fill="#7A6A4F">— 街じゅうのデータをつなぐ「データの中継役」 —</text>
<!-- Column headers -->
<text x="180" y="150" text-anchor="middle" font-size="17" font-weight="700" fill="#5C5142">さまざまなデータ</text>
<text x="180" y="172" text-anchor="middle" font-size="13" fill="#9A8A6E">形式やルールがバラバラ</text>
<text x="640" y="150" text-anchor="middle" font-size="17" font-weight="700" fill="#E8412F">コンテキストブローカー</text>
<text x="640" y="172" text-anchor="middle" font-size="13" fill="#C77A45">受け取って・そろえて・届ける</text>
<text x="1100" y="150" text-anchor="middle" font-size="17" font-weight="700" fill="#5C5142">さまざまなサービス</text>
<text x="1100" y="172" text-anchor="middle" font-size="13" fill="#9A8A6E">同じ形でかんたんに利用</text>
<!-- ===== Arrows (drawn first, under cards) ===== -->
<g stroke-width="3" fill="none">
<line x1="312" y1="227" x2="462" y2="240" stroke="#C9B492" marker-end="url(#arrow)"/>
<line x1="312" y1="337" x2="462" y2="345" stroke="#C9B492" marker-end="url(#arrow)"/>
<line x1="312" y1="447" x2="462" y2="440" stroke="#C9B492" marker-end="url(#arrow)"/>
<line x1="312" y1="557" x2="462" y2="540" stroke="#C9B492" marker-end="url(#arrow)"/>
<line x1="818" y1="240" x2="968" y2="227" stroke="#FF8A5C" marker-end="url(#arrowO)"/>
<line x1="818" y1="345" x2="968" y2="337" stroke="#FF8A5C" marker-end="url(#arrowO)"/>
<line x1="818" y1="440" x2="968" y2="447" stroke="#FF8A5C" marker-end="url(#arrowO)"/>
<line x1="818" y1="540" x2="968" y2="557" stroke="#FF8A5C" marker-end="url(#arrowO)"/>
</g>
<!-- ===== Flowing data dots: heterogeneous in (varied colors) → unified out (orange) ===== -->
<g>
<circle r="4" fill="#4F9DDE"><animateMotion dur="1.9s" repeatCount="indefinite" path="M312,227 L462,240"/><animate attributeName="r" values="2.5;5;2.5" dur="1.9s" repeatCount="indefinite"/></circle>
<circle r="4" fill="#4F9DDE"><animateMotion dur="1.9s" begin="-0.95s" repeatCount="indefinite" path="M312,227 L462,240"/><animate attributeName="r" values="2.5;5;2.5" dur="1.9s" begin="-0.95s" repeatCount="indefinite"/></circle>
<circle r="4" fill="#5BB98C"><animateMotion dur="1.9s" begin="-0.3s" repeatCount="indefinite" path="M312,337 L462,345"/><animate attributeName="r" values="2.5;5;2.5" dur="1.9s" begin="-0.3s" repeatCount="indefinite"/></circle>
<circle r="4" fill="#5BB98C"><animateMotion dur="1.9s" begin="-1.25s" repeatCount="indefinite" path="M312,337 L462,345"/><animate attributeName="r" values="2.5;5;2.5" dur="1.9s" begin="-1.25s" repeatCount="indefinite"/></circle>
<circle r="4" fill="#D2A33F"><animateMotion dur="1.9s" begin="-0.6s" repeatCount="indefinite" path="M312,447 L462,440"/><animate attributeName="r" values="2.5;5;2.5" dur="1.9s" begin="-0.6s" repeatCount="indefinite"/></circle>
<circle r="4" fill="#D2A33F"><animateMotion dur="1.9s" begin="-1.55s" repeatCount="indefinite" path="M312,447 L462,440"/><animate attributeName="r" values="2.5;5;2.5" dur="1.9s" begin="-1.55s" repeatCount="indefinite"/></circle>
<circle r="4" fill="#A06FD0"><animateMotion dur="1.9s" begin="-0.15s" repeatCount="indefinite" path="M312,557 L462,540"/><animate attributeName="r" values="2.5;5;2.5" dur="1.9s" begin="-0.15s" repeatCount="indefinite"/></circle>
<circle r="4" fill="#A06FD0"><animateMotion dur="1.9s" begin="-1.1s" repeatCount="indefinite" path="M312,557 L462,540"/><animate attributeName="r" values="2.5;5;2.5" dur="1.9s" begin="-1.1s" repeatCount="indefinite"/></circle>
<circle r="4" fill="#FF6A2B"><animateMotion dur="1.9s" begin="-0.2s" repeatCount="indefinite" path="M818,240 L968,227"/><animate attributeName="r" values="2.5;5.5;2.5" dur="1.9s" begin="-0.2s" repeatCount="indefinite"/></circle>
<circle r="4" fill="#FF6A2B"><animateMotion dur="1.9s" begin="-1.15s" repeatCount="indefinite" path="M818,240 L968,227"/><animate attributeName="r" values="2.5;5.5;2.5" dur="1.9s" begin="-1.15s" repeatCount="indefinite"/></circle>
<circle r="4" fill="#FF6A2B"><animateMotion dur="1.9s" begin="-0.5s" repeatCount="indefinite" path="M818,345 L968,337"/><animate attributeName="r" values="2.5;5.5;2.5" dur="1.9s" begin="-0.5s" repeatCount="indefinite"/></circle>
<circle r="4" fill="#FF6A2B"><animateMotion dur="1.9s" begin="-1.45s" repeatCount="indefinite" path="M818,345 L968,337"/><animate attributeName="r" values="2.5;5.5;2.5" dur="1.9s" begin="-1.45s" repeatCount="indefinite"/></circle>
<circle r="4" fill="#FF6A2B"><animateMotion dur="1.9s" begin="-0.8s" repeatCount="indefinite" path="M818,440 L968,447"/><animate attributeName="r" values="2.5;5.5;2.5" dur="1.9s" begin="-0.8s" repeatCount="indefinite"/></circle>
<circle r="4" fill="#FF6A2B"><animateMotion dur="1.9s" begin="-1.75s" repeatCount="indefinite" path="M818,440 L968,447"/><animate attributeName="r" values="2.5;5.5;2.5" dur="1.9s" begin="-1.75s" repeatCount="indefinite"/></circle>
<circle r="4" fill="#FF6A2B"><animateMotion dur="1.9s" begin="-0.35s" repeatCount="indefinite" path="M818,540 L968,557"/><animate attributeName="r" values="2.5;5.5;2.5" dur="1.9s" begin="-0.35s" repeatCount="indefinite"/></circle>
<circle r="4" fill="#FF6A2B"><animateMotion dur="1.9s" begin="-1.3s" repeatCount="indefinite" path="M818,540 L968,557"/><animate attributeName="r" values="2.5;5.5;2.5" dur="1.9s" begin="-1.3s" repeatCount="indefinite"/></circle>
</g>
<!-- ===== LEFT: data sources ===== -->
<!-- Card 1: Sensor -->
<g filter="url(#soft)">
<rect x="50" y="185" width="260" height="85" rx="14" fill="#FFFFFF" stroke="#E6F4F2" stroke-width="2"/>
</g>
<circle cx="92" cy="227" r="22" fill="#3AA8A0"/>
<rect x="89" y="215" width="6" height="16" rx="3" fill="#fff"/>
<circle cx="92" cy="234" r="6" fill="#fff"/>
<text x="128" y="222" font-size="18" font-weight="700" fill="#2A2A2A">センサー</text>
<text x="128" y="246" font-size="13" fill="#7A6A4F">気温・降雨・水位 など</text>
<!-- Card 2: Systems -->
<g filter="url(#soft)">
<rect x="50" y="295" width="260" height="85" rx="14" fill="#FFFFFF" stroke="#E9ECF9" stroke-width="2"/>
</g>
<circle cx="92" cy="337" r="22" fill="#5B6BC0"/>
<ellipse cx="92" cy="327" rx="11" ry="4.5" fill="#fff"/>
<path d="M81,327 v18 a11,4.5 0 0 0 22,0 v-18" fill="none" stroke="#fff" stroke-width="2.5"/>
<ellipse cx="92" cy="336" rx="11" ry="4.5" fill="none" stroke="#fff" stroke-width="2"/>
<text x="128" y="332" font-size="18" font-weight="700" fill="#2A2A2A">業務システム</text>
<text x="128" y="356" font-size="13" fill="#7A6A4F">住民・施設・税 など</text>
<!-- Card 3: Open data -->
<g filter="url(#soft)">
<rect x="50" y="405" width="260" height="85" rx="14" fill="#FFFFFF" stroke="#FBF1DD" stroke-width="2"/>
</g>
<circle cx="92" cy="447" r="22" fill="#E0A732"/>
<rect x="83" y="436" width="18" height="22" rx="3" fill="#fff"/>
<line x1="87" y1="442" x2="97" y2="442" stroke="#E0A732" stroke-width="2"/>
<line x1="87" y1="447" x2="97" y2="447" stroke="#E0A732" stroke-width="2"/>
<line x1="87" y1="452" x2="94" y2="452" stroke="#E0A732" stroke-width="2"/>
<text x="128" y="442" font-size="18" font-weight="700" fill="#2A2A2A">オープンデータ</text>
<text x="128" y="466" font-size="13" fill="#7A6A4F">公開された統計 など</text>
<!-- Card 4: IoT / camera -->
<g filter="url(#soft)">
<rect x="50" y="515" width="260" height="85" rx="14" fill="#FFFFFF" stroke="#FAE7E9" stroke-width="2"/>
</g>
<circle cx="92" cy="557" r="22" fill="#D9646E"/>
<rect x="80" y="550" width="24" height="16" rx="3" fill="#fff"/>
<rect x="86" y="546" width="8" height="5" rx="1.5" fill="#fff"/>
<circle cx="92" cy="558" r="4.5" fill="#D9646E"/>
<text x="128" y="552" font-size="18" font-weight="700" fill="#2A2A2A">IoT機器・カメラ</text>
<text x="128" y="576" font-size="13" fill="#7A6A4F">現場の機器 など</text>
<!-- ===== CENTER: the broker hub ===== -->
<g filter="url(#soft)">
<rect x="470" y="185" width="340" height="415" rx="22" fill="url(#hubGrad)"/>
</g>
<!-- network icon -->
<g stroke="#fff" stroke-width="2.5">
<line x1="640" y1="250" x2="600" y2="222"/>
<line x1="640" y1="250" x2="680" y2="222"/>
<line x1="640" y1="250" x2="604" y2="288"/>
<line x1="640" y1="250" x2="676" y2="288"/>
</g>
<!-- pulsing ping from the hub node -->
<circle cx="640" cy="250" r="15" fill="none" stroke="#fff" stroke-width="2.5">
<animate attributeName="r" values="15;48;48" keyTimes="0;0.75;1" dur="2.6s" repeatCount="indefinite"/>
<animate attributeName="stroke-opacity" values="0.7;0;0" keyTimes="0;0.75;1" dur="2.6s" repeatCount="indefinite"/>
</circle>
<circle cx="640" cy="250" r="15" fill="#fff"/>
<circle cx="600" cy="220" r="8" fill="#FFE3D5"/>
<circle cx="680" cy="220" r="8" fill="#FFE3D5"/>
<circle cx="604" cy="290" r="8" fill="#FFE3D5"/>
<circle cx="676" cy="290" r="8" fill="#FFE3D5"/>
<text x="640" y="345" text-anchor="middle" font-size="24" font-weight="700" fill="#fff">コンテキスト</text>
<text x="640" y="378" text-anchor="middle" font-size="24" font-weight="700" fill="#fff">ブローカー</text>
<text x="640" y="402" text-anchor="middle" font-size="13" fill="#FFE0D2" letter-spacing="1">Context Broker</text>
<line x1="510" y1="425" x2="770" y2="425" stroke="#FFFFFF" stroke-opacity="0.35" stroke-width="1.5"/>
<g font-size="14.5" fill="#fff">
<circle cx="520" cy="456" r="3.5" fill="#FFF2CC"/>
<text x="534" y="461">バラバラな形式を共通ルールに統一</text>
<circle cx="520" cy="496" r="3.5" fill="#FFF2CC"/>
<text x="534" y="501">最新の状態をリアルタイムに一元管理</text>
<circle cx="520" cy="536" r="3.5" fill="#FFF2CC"/>
<text x="534" y="541">誰でも同じ方法で取り出せる</text>
</g>
<!-- ===== RIGHT: services (uniform style = standardized) ===== -->
<!-- Card 1: disaster map -->
<g filter="url(#soft)">
<rect x="970" y="185" width="260" height="85" rx="14" fill="#FFF8EC" stroke="#FFD9B8" stroke-width="2"/>
</g>
<circle cx="1012" cy="227" r="22" fill="#FF540D"/>
<path d="M1012,215 a9,9 0 0 1 9,9 c0,7 -9,15 -9,15 c0,0 -9,-8 -9,-15 a9,9 0 0 1 9,-9 z" fill="#fff"/>
<circle cx="1012" cy="224" r="3.5" fill="#FF540D"/>
<text x="1048" y="233" font-size="18" font-weight="700" fill="#2A2A2A">防災・避難マップ</text>
<!-- Card 2: dashboard -->
<g filter="url(#soft)">
<rect x="970" y="295" width="260" height="85" rx="14" fill="#FFF8EC" stroke="#FFD9B8" stroke-width="2"/>
</g>
<circle cx="1012" cy="337" r="22" fill="#FF540D"/>
<rect x="1002" y="338" width="5" height="10" fill="#fff"/>
<rect x="1010" y="332" width="5" height="16" fill="#fff"/>
<rect x="1018" y="328" width="5" height="20" fill="#fff"/>
<text x="1048" y="343" font-size="18" font-weight="700" fill="#2A2A2A">庁内ダッシュボード</text>
<!-- Card 3: citizen app -->
<g filter="url(#soft)">
<rect x="970" y="405" width="260" height="85" rx="14" fill="#FFF8EC" stroke="#FFD9B8" stroke-width="2"/>
</g>
<circle cx="1012" cy="447" r="22" fill="#FF540D"/>
<rect x="1004" y="435" width="16" height="24" rx="3" fill="#fff"/>
<circle cx="1012" cy="455" r="1.8" fill="#FF540D"/>
<text x="1048" y="453" font-size="18" font-weight="700" fill="#2A2A2A">市民向けアプリ</text>
<!-- Card 4: AI -->
<g filter="url(#soft)">
<rect x="970" y="515" width="260" height="85" rx="14" fill="#FFF8EC" stroke="#FFD9B8" stroke-width="2"/>
</g>
<circle cx="1012" cy="557" r="22" fill="#FF540D"/>
<text x="1012" y="563" text-anchor="middle" font-size="15" font-weight="700" fill="#fff">AI</text>
<text x="1048" y="563" font-size="18" font-weight="700" fill="#2A2A2A">AI分析・予測</text>
<!-- ===== Bottom summary banner ===== -->
<g filter="url(#soft)">
<rect x="50" y="650" width="1180" height="86" rx="16" fill="#FFF2CC" stroke="#F0D89A" stroke-width="2"/>
</g>
<text x="640" y="686" text-anchor="middle" font-size="19" font-weight="700" fill="#A8400F">いわば、街じゅうの情報の「交換台」</text>
<text x="640" y="714" text-anchor="middle" font-size="14.5" fill="#6B5B3E">あちこちのバラバラなデータを共通のルールに翻訳してまとめ、使いたいサービスへ同じ形で届けます。</text>
<!-- footer note -->
<text x="640" y="772" text-anchor="middle" font-size="12" fill="#A89878">※ データは国際標準のルール(NGSI-LD など)で表現・管理されます。</text>
</svg>
</section>
<!-- コンテキストブローカーとは(基礎・マルチテナンシー) -->
<section class="slide" data-bg="dark">
<div class="slide__inner">
<span class="kicker">基礎 / What is a Context Broker</span>
<h2 class="slide__title">コンテキストブローカーとは?</h2>
<p class="map-desc">IoT・都市・業務システムが生む<strong>「いま」の状態(コンテキスト)</strong>を一元管理する基盤。登録・更新の受け取り、<strong>最新状態の保持・問い合わせ・購読(Pub/Sub)</strong>を標準 API で提供し、データの<strong>生産者と利用者を疎結合</strong>につなぎます。</p>
<div class="std-grid">
<div class="std-card"><span class="std-card__name">📥 収集・更新</span><span class="std-card__desc">多数の IoT / アプリから最新状態を登録・更新</span></div>
<div class="std-card"><span class="std-card__name">🗃 最新状態+履歴</span><span class="std-card__desc">現在値を一元管理し、Temporal API で履歴も取得</span></div>
<div class="std-card"><span class="std-card__name">🔎 横断クエリ</span><span class="std-card__desc">属性・地理・全文でエンティティを問い合わせ</span></div>
<div class="std-card"><span class="std-card__name">🔔 購読 (Pub/Sub)</span><span class="std-card__desc">変化を WebSocket / Webhook でリアルタイム配信</span></div>
<div class="std-card"><span class="std-card__name">🔗 標準 API</span><span class="std-card__desc">NGSI-LD / NGSIv2 で相互運用・ベンダーロックイン回避</span></div>
<div class="std-card"><span class="std-card__name">🔐 認証・認可</span><span class="std-card__desc">テナント単位のポリシーでアクセス制御</span></div>
</div>
<div class="std-hero" style="margin-top:24px;margin-bottom:0">
<div class="std-hero__badge">🏢</div>
<div class="std-hero__body">
<div class="std-hero__title"><strong>マルチテナンシー</strong> <span>1 基盤で複数組織を安全に相乗り</span></div>
<p>1 つの GeonicDB を<strong>テナント(組織・プロジェクト)ごとに完全分離</strong>して共有。<strong>NGSILD-Tenant / Fiware-Service</strong> ヘッダで切り替わり、データも権限もテナント境界で隔離されます。(詳細は次頁)</p>
</div>
</div>
</div>
</section>
<!-- 3. Future city scene (full-bleed, overlaid title) -->
<section class="slide slide--illus" data-bg="illus-dark">
<img class="illus-img" src="assets/future-city.svg"
alt="GeonicDB が支えるスマートシティの未来像" />
<div class="illus-overlay">
<h2 class="slide__title">GeonicDB が実現する近未来のスマートシティ</h2>
<p class="lead">街のいまを「状態の集合体」として束ねる、スマートシティのための都市 OS。</p>
</div>
</section>
<!-- 4. Standards compliance -->
<section class="slide" data-bg="dark">
<div class="slide__inner">
<span class="kicker">国際標準準拠 / Standards</span>
<h2 class="slide__title">国際標準に準拠したコンテキストブローカー</h2>
<div class="std-hero">
<div class="std-hero__badge">NGSI-LD</div>
<div class="std-hero__body">
<div class="std-hero__title"><strong>ETSI GS CIM 009 V1.9.1 準拠</strong> <span>欧州 ETSI 標準 / 2025-07</span></div>
<p>スマートシティ・IoT のコンテキスト情報を、相互運用可能な形で表現・管理する国際標準。GeonicDB は <strong>NGSI-LD</strong> と FIWARE <strong>NGSIv2</strong> を 1 エンジンで両対応します。</p>
</div>
</div>
<div class="std-grid">
<div class="std-card"><span class="std-card__name">FIWARE NGSIv2</span><span class="std-card__desc">FIWARE のコンテキスト API 仕様</span></div>
<div class="std-card"><span class="std-card__name">OpenAPI 3.0.3</span><span class="std-card__desc">機械可読な API 契約</span></div>
<div class="std-card"><span class="std-card__name">JSON-LD</span><span class="std-card__desc">W3C リンクトデータ</span></div>
<div class="std-card"><span class="std-card__name">DCAT-AP / CKAN</span><span class="std-card__desc">オープンデータカタログ標準</span></div>
<div class="std-card"><span class="std-card__name">CADDE</span><span class="std-card__desc">クロスドメインデータ連携(日本)</span></div>
<div class="std-card"><span class="std-card__name">RFC 群</span><span class="std-card__desc">ETag・Link・DPoP(9449)・GeoJSON(7946)</span></div>
</div>
</div>
</section>
<!-- マルチテナンシー -->
<section class="slide" data-bg="dark">
<div class="slide__inner">
<span class="kicker">基礎 / Multi-tenancy</span>
<h2 class="slide__title">マルチテナンシー</h2>
<p class="map-desc">1 つの GeonicDB を<strong>テナント(組織・プロジェクト)単位で完全分離</strong>して共有。リクエストの <strong>NGSILD-Tenant / Fiware-Service ヘッダ</strong>でテナントが切り替わり、データも権限も混ざりません。エンティティ ID が同じでもテナントが違えば別物として扱われます。</p>
<div class="mt-diagram">
<div class="mt-clients">
<div class="std-card mt-client">アプリ / IoT <span>NGSILD-Tenant: <b>city-a</b></span></div>
<div class="std-card mt-client">アプリ / IoT <span>NGSILD-Tenant: <b>corp-b</b></span></div>
<div class="std-card mt-client">アプリ / IoT <span>NGSILD-Tenant: <b>lab-c</b></span></div>
</div>
<div class="mt-arrows"><span>▼</span><span>▼</span><span>▼</span></div>
<div class="mt-broker">
<div class="mt-broker__label">🗄 1 つの GeonicDB</div>
<div class="mt-tenants">
<div class="std-card mt-tenant"><div class="mt-tenant__name">🏢 テナント city-a</div><div class="mt-tenant__res"><b>エンティティ</b> / ポリシー / API キー / 購読 が独立</div></div>
<div class="std-card mt-tenant"><div class="mt-tenant__name">🏢 テナント corp-b</div><div class="mt-tenant__res"><b>エンティティ</b> / ポリシー / API キー / 購読 が独立</div></div>
<div class="std-card mt-tenant"><div class="mt-tenant__name">🏢 テナント lab-c</div><div class="mt-tenant__res"><b>エンティティ</b> / ポリシー / API キー / 購読 が独立</div></div>
</div>
</div>
</div>
<div class="std-grid">
<div class="std-card"><span class="std-card__name">🔒 完全分離</span><span class="std-card__desc">別テナントのデータ・購読は一切見えない。ID 衝突も起きない</span></div>
<div class="std-card"><span class="std-card__name">🛡 テナント別の認可</span><span class="std-card__desc">XACML ポリシー・API キーもテナント境界内で有効</span></div>
<div class="std-card"><span class="std-card__name">💴 運用レス・データ主権</span><span class="std-card__desc">1 基盤を相乗りしコスト減、各組織のデータ主権は維持</span></div>
</div>
</div>
</section>
<!-- 5. AI native -->
<!-- 5. AI Native — natural-language: create data → issue API key → build the app -->
<section class="slide slide--ai" data-bg="dark">
<div class="slide__inner slide__inner--map">
<div class="map-head">
<span class="kicker">柱 02 / AI Native</span>
<h2 class="slide__title map-title">むずかしいことや面倒なことはAIにおまかせ</h2>
<p class="map-desc"><strong>MCP サーバー</strong>や <strong>CLI</strong> があるため、各種設定やデータの作成、アプリの開発を AI に自然言語で頼むことができます。</p>
</div>
<div class="ai-stage">
<div class="ai-chat">
<div class="ai-chat__head">
<span class="ai-chat__avatar">✦</span>
<span class="ai-chat__name">AI エージェント</span>
<span class="ai-chat__model">Claude・ChatGPT・Gemini など</span>
</div>
<div class="ai-chat__log" id="ai-log"></div>
<div class="ai-chat__bar">
<span class="ai-chat__text" id="ai-input"></span><span class="ai-caret" id="ai-caret"></span>
<span class="ai-chat__send" id="ai-send" aria-hidden="true">➤</span>
</div>
</div>
<div class="ai-browser" id="ai-browser">
<div class="ai-browser__bar">
<span class="ai-browser__btns"><i></i><i></i><i></i></span>
<div class="ai-browser__addr"><span class="ai-browser__lock">🔒</span>shelter-map.geonicdb.app</div>
</div>
<div class="ai-browser__progress" id="ai-progress"></div>
<div class="ai-browser__view">
<div class="ai-browser__ph" id="ai-ph">アプリのプレビュー</div>
<div class="ai-app" id="ai-app">
<div class="ai-app__map">
<svg viewBox="0 0 360 220" preserveAspectRatio="xMidYMid slice" aria-hidden="true">
<rect width="360" height="220" fill="#12121d"/>
<g stroke="rgba(255,255,255,0.08)" stroke-width="6" stroke-linecap="round" fill="none">
<path d="M0,78 H360"/><path d="M0,150 H360"/><path d="M120,0 V220"/><path d="M250,0 V220"/>
</g>
<path d="M-10,40 C80,70 70,140 150,168 C220,192 250,206 370,196" stroke="#243150" stroke-width="18" fill="none" stroke-linecap="round" opacity="0.5"/>
<g id="ai-app-pins"></g>
</svg>
</div>
<!-- app-like UI overlay -->
<div class="ai-app__ui">
<div class="ai-app__top">
<span class="ai-app__icon" aria-hidden="true">☰</span>
<span class="ai-app__search"><span class="ai-app__searchicon" aria-hidden="true">🔍</span>避難所を検索</span>
<span class="ai-app__icon" aria-hidden="true">⚙</span>
</div>
<div class="ai-app__chip"><span class="ai-app__livedot"></span>近くの避難所 <b>10</b> 件</div>
<span class="ai-app__fab" aria-hidden="true">+</span>
</div>
</div>
</div>
</div>
</div>
<p class="ai-note">AI サービスは別途ご契約いただく必要があります。</p>
</div>
</section>
<!-- 9a. Live demo — Entity API (NGSIv2 / NGSI-LD dual protocol) -->
<section class="slide slide--dual" data-bg="dark">
<div class="live-badge" aria-label="ライブデモ"><span class="live-badge__dot"></span>LIVE</div>
<div class="slide__inner slide__inner--map">
<div class="map-head">
<span class="kicker">標準API / Dual Protocol</span>
<h2 class="slide__title map-title">NGSIv2 と NGSI-LD に対応</h2>
<p class="map-desc"><strong>1 つのブローカー</strong>で <strong>NGSIv2</strong> と <strong>NGSI-LD</strong> の両方の標準 API に対応。用途に合わせてどちらの形式でもエンティティを取得できます。下のボタンで実際の API レスポンスを取得します。</p>
</div>
<div class="demo-body dual-body">
<div class="dual-col">
<div class="dual-col__head"><span class="dual-badge dual-badge--v2">NGSIv2</span><span class="dual-sub">FIWARE NGSIv2</span></div>
<pre class="dual-req" id="dual-v2-req">GET /v2/entities/{id}</pre>
<pre class="dual-json" id="dual-v2-json">取得を待機中…</pre>
</div>
<div class="dual-col">
<div class="dual-col__head"><span class="dual-badge">NGSI-LD</span><span class="dual-sub">ETSI GS CIM 009</span></div>
<pre class="dual-req" id="dual-ld-req">GET /ngsi-ld/v1/entities/{id}</pre>
<pre class="dual-json" id="dual-ld-json">取得を待機中…</pre>
</div>
</div>
<div class="demo-note">
<span class="demo-note__dot"></span>
<span id="dual-entity">GeonicDB に実接続し、実際の API レスポンスを表示しています</span>
<button id="dual-run" class="geo-btn dual-run">▶ GET 実行</button>
</div>
</div>
</section>
<!-- 8. NGSI-LD live demo — フィードバックをカスタムデータモデルで作成し WS で受信 -->
<section class="slide slide--fb" data-bg="dark">
<div class="live-badge" aria-label="ライブデモ"><span class="live-badge__dot"></span>LIVE</div>
<div class="slide__inner slide__inner--map">
<div class="map-head">
<span class="kicker">リンクトデータ / NGSI-LD</span>
<h2 class="slide__title map-title">回答が「つながるデータ」になる</h2>
<p class="map-desc"><strong>NGSI-LD</strong>(ETSI 国際標準)は、エンティティ同士が <strong>Relationship</strong> でつながる<strong>リンクトデータ</strong>。組織を越えても意味を保ったまま連携できます。</p>
</div>
<div class="demo-body fb-body">
<!-- LEFT: form -->
<form id="fb-form" class="fb-form" autocomplete="off">
<label class="fb-field">
<span class="fb-field__label">ご所属</span>
<select id="fb-role" class="fb-select">
<option value="municipality">自治体</option>
<option value="sier">SIer・受託開発</option>
<option value="startup">スタートアップ</option>
<option value="research">研究・教育</option>
<option value="other">その他</option>
</select>
</label>
<label class="fb-field">
<span class="fb-field__label">関心のあるユースケース</span>
<select id="fb-interest" class="fb-select">
<option value="disaster">防災・減災</option>
<option value="environment">環境モニタリング</option>
<option value="mobility">交通・モビリティ</option>
<option value="energy">エネルギー</option>
<option value="opendata">オープンデータ</option>
</select>
</label>
<label class="fb-field">
<span class="fb-field__label">お住まいの地域</span>
<select id="fb-region" class="fb-select">
<option value="01">北海道</option>
<option value="02">青森県</option>
<option value="03">岩手県</option>
<option value="04">宮城県</option>
<option value="05">秋田県</option>
<option value="06">山形県</option>
<option value="07">福島県</option>
<option value="08">茨城県</option>
<option value="09">栃木県</option>
<option value="10">群馬県</option>
<option value="11">埼玉県</option>
<option value="12">千葉県</option>
<option value="13" selected>東京都</option>
<option value="14">神奈川県</option>
<option value="15">新潟県</option>
<option value="16">富山県</option>
<option value="17">石川県</option>
<option value="18">福井県</option>
<option value="19">山梨県</option>
<option value="20">長野県</option>
<option value="21">岐阜県</option>
<option value="22">静岡県</option>
<option value="23">愛知県</option>
<option value="24">三重県</option>
<option value="25">滋賀県</option>
<option value="26">京都府</option>
<option value="27">大阪府</option>
<option value="28">兵庫県</option>
<option value="29">奈良県</option>
<option value="30">和歌山県</option>
<option value="31">鳥取県</option>
<option value="32">島根県</option>
<option value="33">岡山県</option>
<option value="34">広島県</option>
<option value="35">山口県</option>
<option value="36">徳島県</option>
<option value="37">香川県</option>
<option value="38">愛媛県</option>
<option value="39">高知県</option>
<option value="40">福岡県</option>
<option value="41">佐賀県</option>
<option value="42">長崎県</option>
<option value="43">熊本県</option>
<option value="44">大分県</option>
<option value="45">宮崎県</option>
<option value="46">鹿児島県</option>
<option value="47">沖縄県</option>
</select>
</label>
<div class="fb-field">
<span class="fb-field__label">GeonicDB への期待度</span>
<div id="fb-expect" class="fb-stars" role="radiogroup" aria-label="期待度">
<button type="button" class="fb-star" data-val="1" role="radio" aria-checked="false" aria-label="1">★</button>
<button type="button" class="fb-star" data-val="2" role="radio" aria-checked="false" aria-label="2">★</button>
<button type="button" class="fb-star" data-val="3" role="radio" aria-checked="false" aria-label="3">★</button>
<button type="button" class="fb-star" data-val="4" role="radio" aria-checked="false" aria-label="4">★</button>
<button type="button" class="fb-star" data-val="5" role="radio" aria-checked="false" aria-label="5">★</button>
</div>
</div>
<button type="submit" id="fb-submit" class="geo-btn fb-submit">▶ NGSI-LD で送信</button>
</form>
<!-- RIGHT: annotated entity -->
<div class="fb-result">
<div class="fb-json-wrap">
<div class="fb-tabs" role="tablist">
<button type="button" class="fb-tab is-active" data-panel="chart" role="tab">集計結果</button>
<button type="button" class="fb-tab" data-panel="entity" role="tab">NGSI-LD エンティティ</button>
<button type="button" class="fb-tab" data-panel="model" role="tab">カスタムデータモデル</button>
</div>
<pre id="fb-json" class="fb-json fb-panel" data-panel="entity" hidden>送信するとここに実エンティティが表示されます…</pre>
<pre id="fb-model" class="fb-json fb-panel" data-panel="model" hidden></pre>
<div id="fb-chart" class="fb-chart fb-panel" data-panel="chart">
<div class="fb-chart__title">回答の集計<span id="fb-chart-total" class="fb-chart__total"></span></div>
<div class="fb-pies">
<div class="fb-pie-col">
<div class="fb-pie-col__title">ご所属</div>
<svg id="fb-pie-role" class="fb-pie" viewBox="0 0 200 200" role="img" aria-label="所属別の回答割合の円グラフ"></svg>
<div id="fb-chips-role" class="fb-pie-chips"></div>
</div>
<div class="fb-pie-col">
<div class="fb-pie-col__title">関心のあるユースケース</div>
<svg id="fb-pie-interest" class="fb-pie" viewBox="0 0 200 200" role="img" aria-label="関心のあるユースケース別の回答割合の円グラフ"></svg>
<div id="fb-chips-interest" class="fb-pie-chips"></div>
</div>
<div class="fb-pie-col">
<div class="fb-pie-col__title">お住まいの地域</div>
<svg id="fb-pie-region" class="fb-pie" viewBox="0 0 200 200" role="img" aria-label="地域別の回答割合の円グラフ"></svg>
<div id="fb-chips-region" class="fb-pie-chips"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="demo-note">
<span class="rsv-live"><span class="rsv-live__dot" id="fb-dot"></span><span id="fb-conn">接続中…</span></span>
<span class="fb-note-text">回答は GeonicDB に実接続して作成し、WebSocket で受信しています</span>
<span id="fb-count" class="fb-count">これまでの回答 0 件</span>
</div>
</div>
</section>
<!-- 9. Live demo — Cafe map (Geolonia Maps + GeonicDB DPoP) -->
<section class="slide slide--map" data-bg="dark">
<div class="live-badge" aria-label="ライブデモ"><span class="live-badge__dot"></span>LIVE</div>
<div class="slide__inner slide__inner--map">
<div class="map-head">
<span class="kicker">ジオクエリー / Geo-Query</span>
<h2 class="slide__title map-title">Geo クエリーでデータを絞り込む</h2>
</div>
<div class="demo-body">
<div class="map-wrap">
<div id="aed-map" class="aed-map" data-navigation-control="off" data-marker="off"></div>
<div class="aed-count" id="aed-count"><div class="aed-count-bar" id="aed-count-bar"></div><div class="aed-count-text" id="aed-count-text"></div></div>
</div>
<aside class="geo-panel">
<h3 class="geo-panel__title">ジオクエリー</h3>
<p class="geo-panel__desc">中心点からの近傍検索(NGSI-LD)</p>
<button id="geo-pick" class="geo-btn">📍 地図で中心を指定</button>
<div class="geo-row">
<label class="geo-label">半径 <span id="geo-radius-val">10</span> km</label>
<input id="geo-radius" class="geo-range" type="range" min="1" max="10" value="10" />
</div>
<div id="geo-result" class="geo-result">中心が未指定です</div>
<button id="geo-clear" class="geo-btn geo-btn--ghost">全件表示に戻す</button>
</aside>
</div>
<div class="demo-note">
<span class="demo-note__dot"></span>
このページのデモは実際に GeonicDB に接続して動作しています。
<span class="demo-src">地図データは香川県高松市が公開するオープンデータ(AED 設置場所)を利用しています。</span>
</div>
</div>
</section>
<!-- 10. Temporal time-machine (live) -->
<section class="slide slide--tmp" data-bg="dark">
<div class="live-badge" aria-label="ライブデモ"><span class="live-badge__dot"></span>LIVE</div>
<div class="slide__inner slide__inner--map">
<div class="map-head">
<span class="kicker">時系列 / Temporal API</span>
<h2 class="slide__title map-title">あらゆる時系列データを過去にさかのぼって取得</h2>
<p class="map-desc">GeonicDB はすべての変化を履歴として保持。<strong>Temporal API</strong> で「いつ・どの瞬間の状態だったか」を期間指定で問い合わせられます。下のスライダーで時刻をさかのぼれます。</p>
</div>
<div class="demo-body tmp-body">
<!-- LEFT: snapshot at the selected time -->
<div class="tmp-panel">
<div class="tmp-snap-label">この時刻の状態</div>
<div id="tmp-time" class="tmp-time">--:--</div>
<div class="tmp-readout">
<div class="tmp-metric"><span class="tmp-metric__v" id="tmp-temp">--</span><span class="tmp-metric__u">°C</span><span class="tmp-metric__k">気温</span></div>
<div class="tmp-metric"><span class="tmp-metric__v" id="tmp-hum">--</span><span class="tmp-metric__u">%</span><span class="tmp-metric__k">湿度</span></div>
</div>
<div class="tmp-controls">
<button id="tmp-play" class="geo-btn">▶ 再生</button>
<input id="tmp-slider" class="geo-range" type="range" min="0" max="0" value="0" step="1" />
</div>
<pre id="tmp-query" class="tmp-query"></pre>
</div>
<!-- RIGHT: temperature history chart -->
<div class="tmp-chart-wrap">
<div class="tmp-chart-head">
<span class="tmp-chart-title">気温の推移 <span id="tmp-range" class="tmp-range"></span></span>
<span class="rsv-live"><span class="rsv-live__dot" id="tmp-dot"></span><span id="tmp-conn">接続中…</span></span>
</div>
<svg id="tmp-chart" class="tmp-chart" viewBox="0 0 760 360" preserveAspectRatio="none"></svg>
</div>
</div>
<div class="demo-note">
<span class="demo-note__dot"></span>
グラフは GeonicDB の Temporal API から取得した実際の履歴データです
</div>
</div>
</section>
<!-- 10. ReactiveCore Rules -->
<section class="slide" data-bg="dark">
<div class="slide__inner">
<span class="kicker">自動化 / ReactiveCore Rules</span>
<h2 class="slide__title">条件がそろえば、あとは自動</h2>
<p class="map-desc">ReactiveCore Rules は GeonicDB 内蔵のルールエンジン。エンティティの変化を監視し、条件に一致すると通知・Webhook・属性更新などのアクションを自動実行します。</p>
<svg class="rc-illus" viewBox="0 0 1120 360" role="img"
font-family="'Inter','Noto Sans JP',sans-serif"
aria-label="温度センサーがしきい値を超えるとルールエンジンが発火し、通知・Webhook などのアクションが実行される流れ">
<defs>
<marker id="rcArrow" markerWidth="9" markerHeight="9" refX="6" refY="3" orient="auto"><path d="M0,0 L6,3 L0,6 Z" fill="#fc6c00"/></marker>
<marker id="rcArrowR" markerWidth="9" markerHeight="9" refX="6" refY="3" orient="auto"><path d="M0,0 L6,3 L0,6 Z" fill="#e8401e"/></marker>
</defs>
<!-- connectors -->
<line x1="282" y1="200" x2="430" y2="200" stroke="rgba(252,108,0,.45)" stroke-width="2" marker-end="url(#rcArrow)"/>
<circle r="4" fill="#fc6c00"><animateMotion dur="1.5s" repeatCount="indefinite" path="M284,200 L430,200"/><animate attributeName="r" dur="1.5s" values="2;6;2.5" keyTimes="0;0.5;1" repeatCount="indefinite"/></circle>
<circle r="4" fill="#fc6c00"><animateMotion dur="1.5s" begin="-0.75s" repeatCount="indefinite" path="M284,200 L430,200"/><animate attributeName="r" dur="1.5s" begin="-0.75s" values="2.5;5;2" keyTimes="0;0.5;1" repeatCount="indefinite"/></circle>
<!-- engine → actions: fan-out to all four actions, flashes red on fire -->
<g stroke="#e8401e" stroke-width="2" fill="none" stroke-linecap="round">
<animate attributeName="stroke-opacity" dur="4.5s" values="0.22;0.22;1;1;0.3;0.22" keyTimes="0;0.5;0.55;0.72;0.8;1" repeatCount="indefinite"/>
<path d="M716,198 H760"/>
<path d="M760,119 V281"/>
<path d="M760,119 H842" marker-end="url(#rcArrowR)"/>
<path d="M760,173 H842" marker-end="url(#rcArrowR)"/>
<path d="M760,227 H842" marker-end="url(#rcArrowR)"/>
<path d="M760,281 H842" marker-end="url(#rcArrowR)"/>
</g>
<!-- pulse dots fanning to each action during fire -->
<g fill="#ff6a2b">
<circle r="3.5"><animateMotion dur="4.5s" keyPoints="0;0;1;1;1" keyTimes="0;0.54;0.62;0.8;1" calcMode="linear" repeatCount="indefinite" path="M762,198 L762,119 L842,119"/><animate attributeName="opacity" dur="4.5s" values="0;0;1;1;0;0" keyTimes="0;0.53;0.55;0.62;0.64;1" repeatCount="indefinite"/></circle>
<circle r="3.5"><animateMotion dur="4.5s" keyPoints="0;0;1;1;1" keyTimes="0;0.56;0.64;0.8;1" calcMode="linear" repeatCount="indefinite" path="M762,198 L762,173 L842,173"/><animate attributeName="opacity" dur="4.5s" values="0;0;1;1;0;0" keyTimes="0;0.55;0.57;0.64;0.66;1" repeatCount="indefinite"/></circle>
<circle r="3.5"><animateMotion dur="4.5s" keyPoints="0;0;1;1;1" keyTimes="0;0.58;0.66;0.8;1" calcMode="linear" repeatCount="indefinite" path="M762,198 L762,227 L842,227"/><animate attributeName="opacity" dur="4.5s" values="0;0;1;1;0;0" keyTimes="0;0.57;0.59;0.66;0.68;1" repeatCount="indefinite"/></circle>
<circle r="3.5"><animateMotion dur="4.5s" keyPoints="0;0;1;1;1" keyTimes="0;0.6;0.68;0.8;1" calcMode="linear" repeatCount="indefinite" path="M762,198 L762,281 L842,281"/><animate attributeName="opacity" dur="4.5s" values="0;0;1;1;0;0" keyTimes="0;0.59;0.61;0.68;0.7;1" repeatCount="indefinite"/></circle>
</g>
<!-- ===== SENSOR ===== -->
<g>
<rect x="70" y="96" width="212" height="208" rx="16" fill="rgba(255,255,255,.05)" stroke="rgba(255,255,255,.16)"/>
<text x="176" y="132" text-anchor="middle" fill="#fff" font-size="16" font-weight="700">温度センサー</text>
<!-- thermometer track -->
<rect x="166" y="152" width="20" height="120" rx="4" fill="rgba(255,255,255,.08)" stroke="rgba(255,255,255,.14)"/>
<!-- fill (animated rise/fall + colour) -->
<rect x="166" width="20" rx="4" fill="#fba40c">
<animate attributeName="height" dur="4.5s" values="40;40;112;112;46;40" keyTimes="0;0.34;0.48;0.72;0.86;1" repeatCount="indefinite"/>
<animate attributeName="y" dur="4.5s" values="232;232;160;160;226;232" keyTimes="0;0.34;0.48;0.72;0.86;1" repeatCount="indefinite"/>
<animate attributeName="fill" dur="4.5s" values="#fba40c;#fba40c;#e8401e;#e8401e;#fba40c;#fba40c" keyTimes="0;0.34;0.48;0.72;0.86;1" repeatCount="indefinite"/>
</rect>
<!-- bulb -->
<circle cx="176" cy="280" r="15" fill="#fba40c">
<animate attributeName="fill" dur="4.5s" values="#fba40c;#fba40c;#e8401e;#e8401e;#fba40c;#fba40c" keyTimes="0;0.34;0.48;0.72;0.86;1" repeatCount="indefinite"/>
</circle>
<!-- threshold -->
<line x1="150" y1="186" x2="278" y2="186" stroke="#39d6c6" stroke-width="1.5" stroke-dasharray="4 3"/>
<text x="278" y="180" text-anchor="end" fill="#39d6c6" font-size="11">しきい値 28°C</text>
</g>
<!-- ===== RULE ENGINE ===== -->
<g>
<rect x="430" y="124" width="286" height="148" rx="18" fill="rgba(252,108,0,.10)" stroke="rgba(252,108,0,.5)"/>
<!-- fire glow overlay -->
<rect x="430" y="124" width="286" height="148" rx="18" fill="#e8401e">
<animate attributeName="opacity" dur="4.5s" values="0;0;0.28;0.28;0;0" keyTimes="0;0.46;0.5;0.72;0.8;1" repeatCount="indefinite"/>
</rect>
<text x="573" y="156" text-anchor="middle" fill="#fc6c00" font-size="19" font-weight="800">ルールエンジン</text>
<text x="573" y="190" text-anchor="middle" fill="#fff" font-size="15" font-family="'JetBrains Mono',monospace">WHEN 温度 > 28°C</text>
<text x="573" y="216" text-anchor="middle" fill="rgba(255,255,255,.7)" font-size="13">THEN アクション実行</text>
<!-- 発火 badge -->
<g>
<rect x="516" y="102" width="116" height="30" rx="15" fill="#e8401e"/>
<text x="574" y="122" text-anchor="middle" fill="#fff" font-size="14" font-weight="800">⚡ 発火!</text>
<animate attributeName="opacity" dur="4.5s" values="0;0;1;1;0;0" keyTimes="0;0.47;0.51;0.72;0.78;1" repeatCount="indefinite"/>
</g>
</g>
<!-- ===== ACTIONS ===== -->
<g font-size="14" font-weight="700">
<!-- chip template: base + highlight overlay (staggered flash) + label -->
<g>
<rect x="846" y="96" width="244" height="46" rx="10" fill="rgba(255,255,255,.05)" stroke="rgba(255,255,255,.14)"/>
<rect x="846" y="96" width="244" height="46" rx="10" fill="rgba(232,64,30,.16)" stroke="#e8401e"><animate attributeName="opacity" dur="4.5s" values="0;0;1;1;0;0" keyTimes="0;0.5;0.54;0.72;0.8;1" repeatCount="indefinite"/></rect>
<text x="866" y="125" fill="#fff">🔔 通知 / アラート</text>
</g>
<g>
<rect x="846" y="150" width="244" height="46" rx="10" fill="rgba(255,255,255,.05)" stroke="rgba(255,255,255,.14)"/>
<rect x="846" y="150" width="244" height="46" rx="10" fill="rgba(232,64,30,.16)" stroke="#e8401e"><animate attributeName="opacity" dur="4.5s" values="0;0;1;1;0;0" keyTimes="0;0.53;0.57;0.72;0.8;1" repeatCount="indefinite"/></rect>
<text x="866" y="179" fill="#fff">🪝 Webhook 呼び出し</text>
</g>
<g>
<rect x="846" y="204" width="244" height="46" rx="10" fill="rgba(255,255,255,.05)" stroke="rgba(255,255,255,.14)"/>
<rect x="846" y="204" width="244" height="46" rx="10" fill="rgba(232,64,30,.16)" stroke="#e8401e"><animate attributeName="opacity" dur="4.5s" values="0;0;1;1;0;0" keyTimes="0;0.56;0.6;0.72;0.8;1" repeatCount="indefinite"/></rect>
<text x="866" y="233" fill="#fff">✏️ 属性を更新</text>
</g>
<g>
<rect x="846" y="258" width="244" height="46" rx="10" fill="rgba(255,255,255,.05)" stroke="rgba(255,255,255,.14)"/>
<rect x="846" y="258" width="244" height="46" rx="10" fill="rgba(232,64,30,.16)" stroke="#e8401e"><animate attributeName="opacity" dur="4.5s" values="0;0;1;1;0;0" keyTimes="0;0.59;0.63;0.72;0.8;1" repeatCount="indefinite"/></rect>
<text x="866" y="287" fill="#fff">🧬 派生エンティティ生成</text>
</g>
</g>
</svg>
<p class="footnote">外部のルールエンジンやワークフロー基盤を別途構築せず、ブローカー内で完結。</p>
</div>
</section>
<!-- 12. Federation — データを動かさず、1回の問い合わせで束ねる -->
<section class="slide slide--fed" data-bg="dark">
<div class="slide__inner">
<span class="kicker">データ連携 / Federation</span>
<h2 class="slide__title"><span class="accent">組織をまたがって</span>データを集約</h2>
<p class="map-desc">フェデレーションは、<strong>テナントやドメインの異なる複数の GeonicDB</strong> を 1 つの窓口にまとめる仕組み。手元の GeonicDB が問い合わせを別テナント・別ドメインの GeonicDB へ<strong>並列に転送</strong>し、返ってきた結果を<strong>ひとつに束ねて</strong>返します。データを 1 か所にコピー・集約する必要はありません。</p>
<svg class="rc-illus" viewBox="0 0 1120 430" role="img"
font-family="'Inter','Noto Sans JP',sans-serif"
aria-label="利用者の1回の問い合わせを、手元の GeonicDB が別テナント・別ドメインの GeonicDB へ並列に転送し、結果を束ねて返す様子。データは各インスタンスに置いたまま動かない。">
<defs>
<marker id="fedTip" markerWidth="8" markerHeight="8" refX="5.5" refY="3" orient="auto"><path d="M0,0 L5.5,3 L0,6 Z" fill="rgba(252,108,0,.55)"/></marker>
<linearGradient id="fedHub" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#fc6c00"/><stop offset="1" stop-color="#e8401e"/>
</linearGradient>
</defs>
<!-- ===== column headers ===== -->
<text x="115" y="34" text-anchor="middle" fill="rgba(255,255,255,.55)" font-size="13" font-weight="700">問い合わせる人</text>
<text x="550" y="34" text-anchor="middle" fill="#fc6c00" font-size="13" font-weight="700">GeonicDB(統合の窓口)</text>
<text x="992" y="34" text-anchor="middle" fill="rgba(255,255,255,.55)" font-size="13" font-weight="700">別テナント/別ドメインの GeonicDB</text>
<!-- ===== static connectors ===== -->
<g stroke="rgba(252,108,0,.28)" stroke-width="2" fill="none">
<line x1="198" y1="198" x2="389" y2="198" marker-end="url(#fedTip)"/>
<line x1="709" y1="168" x2="881" y2="113" marker-end="url(#fedTip)"/>
<line x1="709" y1="198" x2="881" y2="198" marker-end="url(#fedTip)"/>
<line x1="709" y1="228" x2="881" y2="283" marker-end="url(#fedTip)"/>
</g>
<!-- ===== moving dots ===== -->
<!-- (1) query: user → hub [0.02–0.14] -->
<circle r="5" fill="#fc6c00">
<animateMotion dur="6s" repeatCount="indefinite" calcMode="linear" keyTimes="0;0.02;0.14;1" keyPoints="0;0;1;1" path="M198,198 L391,198"/>
<animate attributeName="opacity" dur="6s" repeatCount="indefinite" values="0;0;1;1;0;0" keyTimes="0;0.02;0.03;0.14;0.15;1"/>
</circle>
<!-- (2) query fan-out: hub → each provider [0.17–0.30] -->
<g fill="#fc6c00">
<circle r="4.5"><animateMotion dur="6s" repeatCount="indefinite" calcMode="linear" keyTimes="0;0.17;0.30;1" keyPoints="0;0;1;1" path="M709,168 L881,113"/><animate attributeName="opacity" dur="6s" repeatCount="indefinite" values="0;0;1;1;0;0" keyTimes="0;0.17;0.18;0.30;0.31;1"/></circle>
<circle r="4.5"><animateMotion dur="6s" repeatCount="indefinite" calcMode="linear" keyTimes="0;0.17;0.30;1" keyPoints="0;0;1;1" path="M709,198 L881,198"/><animate attributeName="opacity" dur="6s" repeatCount="indefinite" values="0;0;1;1;0;0" keyTimes="0;0.17;0.18;0.30;0.31;1"/></circle>
<circle r="4.5"><animateMotion dur="6s" repeatCount="indefinite" calcMode="linear" keyTimes="0;0.17;0.30;1" keyPoints="0;0;1;1" path="M709,228 L881,283"/><animate attributeName="opacity" dur="6s" repeatCount="indefinite" values="0;0;1;1;0;0" keyTimes="0;0.17;0.18;0.30;0.31;1"/></circle>
</g>
<!-- (3) results back: provider → hub [0.44–0.58], coloured by protocol -->
<circle r="5" fill="#39d6c6"><animateMotion dur="6s" repeatCount="indefinite" calcMode="linear" keyTimes="0;0.44;0.58;1" keyPoints="0;0;1;1" path="M881,113 L709,168"/><animate attributeName="opacity" dur="6s" repeatCount="indefinite" values="0;0;1;1;0;0" keyTimes="0;0.44;0.45;0.58;0.59;1"/></circle>
<circle r="5" fill="#fba40c"><animateMotion dur="6s" repeatCount="indefinite" calcMode="linear" keyTimes="0;0.44;0.58;1" keyPoints="0;0;1;1" path="M881,198 L709,198"/><animate attributeName="opacity" dur="6s" repeatCount="indefinite" values="0;0;1;1;0;0" keyTimes="0;0.44;0.45;0.58;0.59;1"/></circle>
<circle r="5" fill="#fba40c"><animateMotion dur="6s" repeatCount="indefinite" calcMode="linear" keyTimes="0;0.44;0.58;1" keyPoints="0;0;1;1" path="M881,283 L709,228"/><animate attributeName="opacity" dur="6s" repeatCount="indefinite" values="0;0;1;1;0;0" keyTimes="0;0.44;0.45;0.58;0.59;1"/></circle>
<!-- (4) merged result: hub → user [0.66–0.80] -->
<circle r="6" fill="#fc6c00"><animateMotion dur="6s" repeatCount="indefinite" calcMode="linear" keyTimes="0;0.66;0.80;1" keyPoints="0;0;1;1" path="M391,198 L198,198"/><animate attributeName="opacity" dur="6s" repeatCount="indefinite" values="0;0;1;1;0;0" keyTimes="0;0.66;0.67;0.80;0.81;1"/></circle>
<!-- ===== USER / APP ===== -->
<g>
<rect x="40" y="150" width="150" height="96" rx="16" fill="rgba(255,255,255,.05)" stroke="rgba(255,255,255,.16)"/>
<rect x="72" y="176" width="86" height="44" rx="7" fill="none" stroke="#fff" stroke-width="2"/>
<line x1="72" y1="188" x2="158" y2="188" stroke="#fff" stroke-width="2"/>
<circle cx="79" cy="182" r="1.8" fill="#fff"/><circle cx="86" cy="182" r="1.8" fill="#fff"/><circle cx="93" cy="182" r="1.8" fill="#fff"/>
<text x="115" y="238" text-anchor="middle" fill="rgba(255,255,255,.72)" font-size="12">1 回たずねるだけ</text>
</g>
<!-- ===== GEONICDB HUB ===== -->
<g>
<rect x="395" y="110" width="310" height="176" rx="20" fill="rgba(252,108,0,.10)" stroke="rgba(252,108,0,.5)"/>
<!-- merge glow when results arrive -->
<rect x="395" y="110" width="310" height="176" rx="20" fill="url(#fedHub)"><animate attributeName="opacity" dur="6s" repeatCount="indefinite" values="0;0;0.22;0.22;0;0" keyTimes="0;0.55;0.60;0.68;0.74;1"/></rect>
<!-- network node icon -->
<g stroke="#fc6c00" stroke-width="2.4" fill="none">
<line x1="550" y1="152" x2="522" y2="134"/><line x1="550" y1="152" x2="578" y2="134"/>
<line x1="550" y1="152" x2="526" y2="176"/><line x1="550" y1="152" x2="574" y2="176"/>
</g>
<circle cx="550" cy="152" r="9" fill="#fc6c00"/>
<circle cx="522" cy="132" r="5" fill="#fba40c"/><circle cx="578" cy="132" r="5" fill="#fba40c"/>
<circle cx="526" cy="178" r="5" fill="#39d6c6"/><circle cx="574" cy="178" r="5" fill="#39d6c6"/>
<text x="550" y="216" text-anchor="middle" fill="#fff" font-size="21" font-weight="800">GeonicDB</text>
<text x="550" y="242" text-anchor="middle" fill="rgba(255,255,255,.78)" font-size="13">問い合わせを並列転送 → 結果を束ねる</text>
<text x="550" y="266" text-anchor="middle" fill="#fc6c00" font-size="12.5" font-weight="700">形式が違っても自動でそろえて返す</text>
</g>
<!-- ===== PROVIDERS (data stays put) ===== -->
<!-- P1 -->
<g>
<rect x="885" y="78" width="215" height="70" rx="14" fill="rgba(255,255,255,.05)" stroke="rgba(255,255,255,.14)"/>
<rect x="885" y="78" width="215" height="70" rx="14" fill="rgba(57,214,198,.14)" stroke="#39d6c6"><animate attributeName="opacity" dur="6s" repeatCount="indefinite" values="0;0;1;1;0;0" keyTimes="0;0.30;0.33;0.46;0.5;1"/></rect>
<g transform="translate(908,113)" stroke-linecap="round">
<g stroke="#39d6c6" stroke-width="1.8" fill="none"><line x1="0" y1="0" x2="-12" y2="-10"/><line x1="0" y1="0" x2="12" y2="-10"/><line x1="0" y1="0" x2="-12" y2="10"/><line x1="0" y1="0" x2="12" y2="10"/></g>
<circle r="5" fill="#39d6c6"/><circle cx="-12" cy="-10" r="3" fill="#39d6c6"/><circle cx="12" cy="-10" r="3" fill="#39d6c6"/><circle cx="-12" cy="10" r="3" fill="#39d6c6"/><circle cx="12" cy="10" r="3" fill="#39d6c6"/>
</g>
<text x="944" y="107" fill="#fff" font-size="15" font-weight="700">別テナント A</text>
<text x="944" y="129" fill="#39d6c6" font-size="11.5" font-weight="700">GeonicDB · NGSI-LD</text>
</g>
<!-- P2 -->
<g>
<rect x="885" y="163" width="215" height="70" rx="14" fill="rgba(255,255,255,.05)" stroke="rgba(255,255,255,.14)"/>
<rect x="885" y="163" width="215" height="70" rx="14" fill="rgba(251,164,12,.14)" stroke="#fba40c"><animate attributeName="opacity" dur="6s" repeatCount="indefinite" values="0;0;1;1;0;0" keyTimes="0;0.30;0.33;0.46;0.5;1"/></rect>
<g transform="translate(908,198)" stroke-linecap="round">
<g stroke="#fba40c" stroke-width="1.8" fill="none"><line x1="0" y1="0" x2="-12" y2="-10"/><line x1="0" y1="0" x2="12" y2="-10"/><line x1="0" y1="0" x2="-12" y2="10"/><line x1="0" y1="0" x2="12" y2="10"/></g>
<circle r="5" fill="#fba40c"/><circle cx="-12" cy="-10" r="3" fill="#fba40c"/><circle cx="12" cy="-10" r="3" fill="#fba40c"/><circle cx="-12" cy="10" r="3" fill="#fba40c"/><circle cx="12" cy="10" r="3" fill="#fba40c"/>
</g>
<text x="944" y="192" fill="#fff" font-size="15" font-weight="700">別テナント B</text>
<text x="944" y="214" fill="#fba40c" font-size="11.5" font-weight="700">GeonicDB · NGSIv2</text>
</g>
<!-- P3 -->
<g>
<rect x="885" y="248" width="215" height="70" rx="14" fill="rgba(255,255,255,.05)" stroke="rgba(255,255,255,.14)"/>
<rect x="885" y="248" width="215" height="70" rx="14" fill="rgba(251,164,12,.14)" stroke="#fba40c"><animate attributeName="opacity" dur="6s" repeatCount="indefinite" values="0;0;1;1;0;0" keyTimes="0;0.30;0.33;0.46;0.5;1"/></rect>
<g transform="translate(908,283)" stroke-linecap="round">
<g stroke="#fba40c" stroke-width="1.8" fill="none"><line x1="0" y1="0" x2="-12" y2="-10"/><line x1="0" y1="0" x2="12" y2="-10"/><line x1="0" y1="0" x2="-12" y2="10"/><line x1="0" y1="0" x2="12" y2="10"/></g>
<circle r="5" fill="#fba40c"/><circle cx="-12" cy="-10" r="3" fill="#fba40c"/><circle cx="12" cy="-10" r="3" fill="#fba40c"/><circle cx="-12" cy="10" r="3" fill="#fba40c"/><circle cx="12" cy="10" r="3" fill="#fba40c"/>
</g>
<text x="944" y="277" fill="#fff" font-size="15" font-weight="700">別ドメイン</text>
<text x="944" y="299" fill="#fba40c" font-size="11.5" font-weight="700">GeonicDB · NGSIv2</text>
</g>
<!-- ===== bottom banner: 3 benefits ===== -->
<g>
<rect x="40" y="360" width="1060" height="56" rx="14" fill="rgba(255,255,255,.04)" stroke="rgba(255,255,255,.1)"/>
<line x1="393" y1="374" x2="393" y2="402" stroke="rgba(255,255,255,.12)"/>
<line x1="747" y1="374" x2="747" y2="402" stroke="rgba(255,255,255,.12)"/>
<text x="216" y="384" text-anchor="middle" font-size="16">🗂️</text>
<text x="216" y="404" text-anchor="middle" fill="rgba(255,255,255,.85)" font-size="13.5" font-weight="700">データを1か所に集めない</text>
<text x="570" y="384" text-anchor="middle" font-size="16">🔗</text>
<text x="570" y="404" text-anchor="middle" fill="rgba(255,255,255,.85)" font-size="13.5" font-weight="700">テナント・ドメインをまたいで取得</text>
<text x="924" y="384" text-anchor="middle" font-size="16">🔄</text>
<text x="924" y="404" text-anchor="middle" fill="rgba(255,255,255,.85)" font-size="13.5" font-weight="700">形式が違っても自動変換</text>
</g>
</svg>
<p class="footnote">Context Source Registration にもとづく分散クエリ/更新の転送・結果マージ。ループ検知(Via)・警告ヘッダ(NGSILD-Warning)に対応(ETSI GS CIM 009)。</p>
</div>
</section>
<!-- 避難所の混雑状況(自治体ユースケース・地図 + Temporal API, live) -->
<section class="slide slide--shelter" data-bg="dark">
<div class="live-badge" aria-label="ライブデモ"><span class="live-badge__dot"></span>LIVE</div>
<div class="slide__inner slide__inner--map">
<div class="map-head">
<span class="kicker">ユースケース・自治体 / 防災</span>
<h2 class="slide__title map-title">避難所の混雑度を時系列データで</h2>
<p class="map-desc">指定避難所の位置に <strong>Temporal API</strong> の受入状況を重ね、1 日の混雑の移り変わりを再生。下のスライダーで時刻を動かすと各避難所が<strong>混雑度で色分け</strong>され、クリックすると 24 時間の推移が見られます。</p>
</div>
<div class="demo-body">
<div class="map-wrap">
<div id="shelter-map" class="aed-map" data-navigation-control="off" data-marker="off"></div>
</div>
<aside class="geo-panel shelter-panel">
<div class="shelter-clock">
<span class="shelter-clock__label">表示時刻</span>
<span id="shelter-time" class="shelter-clock__time">--/-- --:--</span>
</div>
<div class="shelter-controls">
<button id="shelter-play" class="geo-btn">▶ 再生</button>
<input id="shelter-slider" class="geo-range" type="range" min="0" max="0" value="0" step="1" />
</div>
<div class="shelter-legend">
<span class="shelter-legend__item"><i class="dot dot--green"></i>空き <b id="shelter-n-green">–</b></span>
<span class="shelter-legend__item"><i class="dot dot--amber"></i>やや混雑 <b id="shelter-n-amber">–</b></span>
<span class="shelter-legend__item"><i class="dot dot--red"></i>満員間近 <b id="shelter-n-red">–</b></span>
</div>
<div class="shelter-req">
<div class="shelter-req__label">API リクエスト</div>
<pre id="shelter-query" class="shelter-query"></pre>
</div>
<p class="shelter-note">混雑度は Temporal API のデモ用サンプルデータ(実際の受入実績ではありません)。</p>
</aside>
</div>
<div class="demo-note">
<span class="demo-note__dot"></span>
避難所の位置・収容人数は高松市オープンデータ「指定緊急避難場所・指定避難所」(CC BY 4.0)。
</div>
</div>
</section>
<!-- 共同編集 GIS(民間ユースケース・地図 + WebSocket, live) -->
<section class="slide slide--collab" data-bg="dark">
<div class="live-badge" aria-label="ライブデモ"><span class="live-badge__dot"></span>LIVE</div>