-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogram.nt
4194 lines (4194 loc) · 556 KB
/
program.nt
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
<http://aksw.org/AndreValdestilhas> <http://purl.org/dc/terms/description> "BAM"@de .
<http://aksw.org/AndreValdestilhas> <http://purl.org/dc/terms/description> "BAM"@en .
<http://aksw.org/AndreValdestilhas> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/AndreValdestilhas> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/AndreValdestilhas> <http://www.w3.org/2004/02/skos/core#prefLabel> "Dr. André Valdestilhas" .
<http://aksw.org/AndreValdestilhas> <http://xmlns.com/foaf/0.1/name> "André Valdestilhas" .
<http://aksw.org/AndreValdestilhas> <http://xmlns.com/foaf/0.1/title> "Dr." .
<http://aksw.org/AntoniaSchoenbrodt> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/AntoniaSchoenbrodt> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/AntoniaSchoenbrodt> <http://xmlns.com/foaf/0.1/name> "Antonia Schönbrodt" .
<http://aksw.org/AntoninDelpeuch> <http://schema.org/affiliation> <https://infai.org/> .
<http://aksw.org/AntoninDelpeuch> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/AntoninDelpeuch> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Document> .
<http://aksw.org/AntoninDelpeuch> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/AntoninDelpeuch> <http://www.w3.org/2004/02/skos/core#prefLabel> "Dr. Antonin Delpeuch" .
<http://aksw.org/AntoninDelpeuch> <http://xmlns.com/foaf/0.1/homepage> <http://aksw.org/AntoninDelpeuch> .
<http://aksw.org/AntoninDelpeuch> <http://xmlns.com/foaf/0.1/name> "Antonin Delpeuch" .
<http://aksw.org/AntoninDelpeuch> <http://xmlns.com/foaf/0.1/title> "Dr." .
<http://aksw.org/ClausStadler> <http://schema.org/affiliation> <https://infai.org/> .
<http://aksw.org/ClausStadler> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/ClausStadler> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Document> .
<http://aksw.org/ClausStadler> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/ClausStadler> <http://xmlns.com/foaf/0.1/homepage> <http://aksw.org/ClausStadler> .
<http://aksw.org/ClausStadler> <http://xmlns.com/foaf/0.1/name> "Claus Stadler" .
<http://aksw.org/DenisStreitmatter> <http://purl.org/dc/terms/description> "AKSW, DBpedia Association"@de .
<http://aksw.org/DenisStreitmatter> <http://purl.org/dc/terms/description> "AKSW, DBpedia Association"@en .
<http://aksw.org/DenisStreitmatter> <http://schema.org/affiliation> <https://infai.org/> .
<http://aksw.org/DenisStreitmatter> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/DenisStreitmatter> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Document> .
<http://aksw.org/DenisStreitmatter> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/DenisStreitmatter> <http://xmlns.com/foaf/0.1/homepage> <http://aksw.org/DenisStreitmatter> .
<http://aksw.org/DenisStreitmatter> <http://xmlns.com/foaf/0.1/name> "Denis Streitmatter" .
<http://aksw.org/EdgardMarx> <http://purl.org/dc/terms/description> "HTWK Leipzig/eccenca GmbH"@de .
<http://aksw.org/EdgardMarx> <http://purl.org/dc/terms/description> "HTWK Leipzig/eccenca GmbH"@en .
<http://aksw.org/EdgardMarx> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/EdgardMarx> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Document> .
<http://aksw.org/EdgardMarx> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/EdgardMarx> <http://xmlns.com/foaf/0.1/homepage> <http://aksw.org/EdgardMarx> .
<http://aksw.org/EdgardMarx> <http://xmlns.com/foaf/0.1/name> "Edgard Marx" .
<http://aksw.org/ElisabethBreitenstein> <http://purl.org/dc/terms/description> "Digital City Department, City of Leipzig"@en .
<http://aksw.org/ElisabethBreitenstein> <http://purl.org/dc/terms/description> "Referat Digitale Stadt, Stadt Leipzig"@de .
<http://aksw.org/ElisabethBreitenstein> <http://schema.org/affiliation> <https://digitalcampus.leipzig.de/referat-digitale-stadt/> .
<http://aksw.org/ElisabethBreitenstein> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/ElisabethBreitenstein> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/ElisabethBreitenstein> <http://xmlns.com/foaf/0.1/name> "Elisabeth Breitenstein" .
<http://aksw.org/JohannesFrey> <http://purl.org/dc/terms/description> "Research assistant"@en .
<http://aksw.org/JohannesFrey> <http://purl.org/dc/terms/description> "Wissenschaftlicher Mitarbeiter"@de .
<http://aksw.org/JohannesFrey> <http://schema.org/affiliation> <https://infai.org/> .
<http://aksw.org/JohannesFrey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/JohannesFrey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Document> .
<http://aksw.org/JohannesFrey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/JohannesFrey> <http://xmlns.com/foaf/0.1/homepage> <http://aksw.org/JohannesFrey> .
<http://aksw.org/JohannesFrey> <http://xmlns.com/foaf/0.1/name> "Johannes Frey" .
<http://aksw.org/JuliaHolze> <http://schema.org/affiliation> <https://infai.org/> .
<http://aksw.org/JuliaHolze> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/JuliaHolze> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Document> .
<http://aksw.org/JuliaHolze> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/JuliaHolze> <http://xmlns.com/foaf/0.1/homepage> <http://aksw.org/JuliaHolze> .
<http://aksw.org/JuliaHolze> <http://xmlns.com/foaf/0.1/name> "Julia Holze" .
<http://aksw.org/JuliaKauper> <http://schema.org/affiliation> <https://www.ba-plauen.de/> .
<http://aksw.org/JuliaKauper> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/JuliaKauper> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/JuliaKauper> <http://xmlns.com/foaf/0.1/name> "Julia Kauper" .
<http://aksw.org/KirillBulert> <http://schema.org/affiliation> <https://infai.org/> .
<http://aksw.org/KirillBulert> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/KirillBulert> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/KirillBulert> <http://xmlns.com/foaf/0.1/homepage> <https://aksw.org/KirillBulert> .
<http://aksw.org/KirillBulert> <http://xmlns.com/foaf/0.1/name> "Kirill Bulert" .
<http://aksw.org/KurtJunghanns> <http://purl.org/dc/terms/description> "Scientific Researcher"@en .
<http://aksw.org/KurtJunghanns> <http://purl.org/dc/terms/description> "Wissenschaftlicher Mitarbeiter"@de .
<http://aksw.org/KurtJunghanns> <http://schema.org/affiliation> <https://infai.org/> .
<http://aksw.org/KurtJunghanns> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/KurtJunghanns> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/KurtJunghanns> <http://xmlns.com/foaf/0.1/homepage> <https://aksw.org/KurtJunghanns> .
<http://aksw.org/KurtJunghanns> <http://xmlns.com/foaf/0.1/name> "Kurt Junghanns" .
<http://aksw.org/LarsPeterMeyer> <http://schema.org/affiliation> <https://infai.org/> .
<http://aksw.org/LarsPeterMeyer> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/LarsPeterMeyer> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/LarsPeterMeyer> <http://xmlns.com/foaf/0.1/homepage> <https://aksw.org/LarsPeterMeyer> .
<http://aksw.org/LarsPeterMeyer> <http://xmlns.com/foaf/0.1/name> "Lars-Peter Meyer" .
<http://aksw.org/LorenzBuehmann> <http://schema.org/affiliation> <https://infai.org/> .
<http://aksw.org/LorenzBuehmann> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/LorenzBuehmann> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Document> .
<http://aksw.org/LorenzBuehmann> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/LorenzBuehmann> <http://xmlns.com/foaf/0.1/homepage> <http://aksw.org/LorenzBuehmann> .
<http://aksw.org/LorenzBuehmann> <http://xmlns.com/foaf/0.1/name> "Lorenz Bühmann" .
<http://aksw.org/MarvinHofer> <http://purl.org/dc/terms/description> "Researcher"@en .
<http://aksw.org/MarvinHofer> <http://purl.org/dc/terms/description> "Wissenschaftlicher Mitarbeiter"@de .
<http://aksw.org/MarvinHofer> <http://schema.org/affiliation> <https://scads.ai/> .
<http://aksw.org/MarvinHofer> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/MarvinHofer> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Document> .
<http://aksw.org/MarvinHofer> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/MarvinHofer> <http://xmlns.com/foaf/0.1/homepage> <http://aksw.org/MarvinHofer> .
<http://aksw.org/MarvinHofer> <http://xmlns.com/foaf/0.1/name> "Marvin Hofer" .
<http://aksw.org/MichaelMartin> <http://purl.org/dc/terms/description> "Professor"@de .
<http://aksw.org/MichaelMartin> <http://purl.org/dc/terms/description> "Professor"@en .
<http://aksw.org/MichaelMartin> <http://schema.org/affiliation> <https://tu-chemnitz.de/> .
<http://aksw.org/MichaelMartin> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/MichaelMartin> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/MichaelMartin> <http://www.w3.org/2004/02/skos/core#prefLabel> "Prof. Dr. Michael Martin" .
<http://aksw.org/MichaelMartin> <http://xmlns.com/foaf/0.1/homepage> <https://www.tu-chemnitz.de/informatik/dm/professur/> .
<http://aksw.org/MichaelMartin> <http://xmlns.com/foaf/0.1/name> "Michael Martin" .
<http://aksw.org/MichaelMartin> <http://xmlns.com/foaf/0.1/title> "Prof. Dr." .
<http://aksw.org/MilanDojchinovski> <http://purl.org/dc/terms/description> "Research Associate / Assistant Professor"@en .
<http://aksw.org/MilanDojchinovski> <http://purl.org/dc/terms/description> "Wissenschaftlicher Mitarbeiter / Assistenzprofessor"@de .
<http://aksw.org/MilanDojchinovski> <http://schema.org/affiliation> <https://infai.org/> .
<http://aksw.org/MilanDojchinovski> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/MilanDojchinovski> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Document> .
<http://aksw.org/MilanDojchinovski> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/MilanDojchinovski> <http://www.w3.org/2004/02/skos/core#prefLabel> "Dr. Milan Dojchinovski" .
<http://aksw.org/MilanDojchinovski> <http://xmlns.com/foaf/0.1/homepage> <http://aksw.org/MilanDojchinovski> .
<http://aksw.org/MilanDojchinovski> <http://xmlns.com/foaf/0.1/name> "Milan Dojchinovski" .
<http://aksw.org/MilanDojchinovski> <http://xmlns.com/foaf/0.1/title> "Dr." .
<http://aksw.org/NatanaelArndt> <http://purl.org/dc/terms/description> "Web Archiv"@de .
<http://aksw.org/NatanaelArndt> <http://purl.org/dc/terms/description> "Web Archiv"@en .
<http://aksw.org/NatanaelArndt> <http://schema.org/affiliation> <https://www.dnb.de/> .
<http://aksw.org/NatanaelArndt> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/NatanaelArndt> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Document> .
<http://aksw.org/NatanaelArndt> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/NatanaelArndt> <http://www.w3.org/2004/02/skos/core#prefLabel> "Dr. Natanael Arndt" .
<http://aksw.org/NatanaelArndt> <http://xmlns.com/foaf/0.1/homepage> <http://aksw.org/NatanaelArndt> .
<http://aksw.org/NatanaelArndt> <http://xmlns.com/foaf/0.1/name> "Natanael Arndt" .
<http://aksw.org/NatanaelArndt> <http://xmlns.com/foaf/0.1/title> "Dr." .
<http://aksw.org/NathanaelPhilipp> <http://purl.org/dc/terms/description> "Saxon Academy of Sciences and Humanities, academy project \"BACH Research Portal\""@en .
<http://aksw.org/NathanaelPhilipp> <http://purl.org/dc/terms/description> "Sächsische Akademie der Wissenschaften, Akademienprojekt „Forschungsportal BACH\""@de .
<http://aksw.org/NathanaelPhilipp> <http://schema.org/affiliation> <https://www.saw-leipzig.de/de> .
<http://aksw.org/NathanaelPhilipp> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/NathanaelPhilipp> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/NathanaelPhilipp> <http://xmlns.com/foaf/0.1/name> "Nathanael Philipp" .
<http://aksw.org/NormanRadtke> <http://schema.org/affiliation> <https://infai.org/> .
<http://aksw.org/NormanRadtke> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/NormanRadtke> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Document> .
<http://aksw.org/NormanRadtke> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/NormanRadtke> <http://xmlns.com/foaf/0.1/homepage> <http://aksw.org/NormanRadtke> .
<http://aksw.org/NormanRadtke> <http://xmlns.com/foaf/0.1/name> "Norman Radtke" .
<http://aksw.org/RebekkaGersbach> <http://purl.org/dc/terms/description> "Research associate"@en .
<http://aksw.org/RebekkaGersbach> <http://purl.org/dc/terms/description> "Wissenschaftliche Mitarbeiterin"@de .
<http://aksw.org/RebekkaGersbach> <http://schema.org/affiliation> <https://infai.org/> .
<http://aksw.org/RebekkaGersbach> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/RebekkaGersbach> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/RebekkaGersbach> <http://xmlns.com/foaf/0.1/name> "Rebekka Gersbach" .
<http://aksw.org/RicardoUsbeck> <http://schema.org/affiliation> <https://www.uni-hamburg.de> .
<http://aksw.org/RicardoUsbeck> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/RicardoUsbeck> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/RicardoUsbeck> <http://www.w3.org/2004/02/skos/core#prefLabel> "Prof. Dr. Ricardo Usbeck" .
<http://aksw.org/RicardoUsbeck> <http://xmlns.com/foaf/0.1/name> "Ricardo Usbeck" .
<http://aksw.org/RicardoUsbeck> <http://xmlns.com/foaf/0.1/title> "Prof. Dr." .
<http://aksw.org/RoyMeissner> <http://schema.org/affiliation> <https://infai.org/> .
<http://aksw.org/RoyMeissner> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/RoyMeissner> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Document> .
<http://aksw.org/RoyMeissner> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/RoyMeissner> <http://xmlns.com/foaf/0.1/homepage> <http://aksw.org/RoyMeissner> .
<http://aksw.org/RoyMeissner> <http://xmlns.com/foaf/0.1/name> "Roy Meissner" .
<http://aksw.org/SabineGruenderFahrer> <http://schema.org/affiliation> <https://infai.org/> .
<http://aksw.org/SabineGruenderFahrer> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/SabineGruenderFahrer> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Document> .
<http://aksw.org/SabineGruenderFahrer> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/SabineGruenderFahrer> <http://www.w3.org/2004/02/skos/core#prefLabel> "Dr. Sabine Gründer-Fahrer" .
<http://aksw.org/SabineGruenderFahrer> <http://xmlns.com/foaf/0.1/homepage> <http://aksw.org/SabineGruenderFahrer> .
<http://aksw.org/SabineGruenderFahrer> <http://xmlns.com/foaf/0.1/name> "Sabine Gründer-Fahrer" .
<http://aksw.org/SabineGruenderFahrer> <http://xmlns.com/foaf/0.1/title> "Dr." .
<http://aksw.org/SebastianHellmann> <http://purl.org/dc/terms/description> "AKSW, DBpedia Association"@de .
<http://aksw.org/SebastianHellmann> <http://purl.org/dc/terms/description> "AKSW, DBpedia Association"@en .
<http://aksw.org/SebastianHellmann> <http://schema.org/affiliation> <https://infai.org/> .
<http://aksw.org/SebastianHellmann> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/SebastianHellmann> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Document> .
<http://aksw.org/SebastianHellmann> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/SebastianHellmann> <http://www.w3.org/2004/02/skos/core#prefLabel> "Dr.-Ing. Sebastian Hellmann" .
<http://aksw.org/SebastianHellmann> <http://xmlns.com/foaf/0.1/homepage> <http://aksw.org/SebastianHellmann> .
<http://aksw.org/SebastianHellmann> <http://xmlns.com/foaf/0.1/name> "Sebastian Hellmann" .
<http://aksw.org/SebastianHellmann> <http://xmlns.com/foaf/0.1/title> "Dr.-Ing." .
<http://aksw.org/SebastianTramp> <http://purl.org/dc/terms/description> "CTO"@de .
<http://aksw.org/SebastianTramp> <http://purl.org/dc/terms/description> "CTO"@en .
<http://aksw.org/SebastianTramp> <http://schema.org/affiliation> <https://www.eccenca.com/> .
<http://aksw.org/SebastianTramp> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/SebastianTramp> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Document> .
<http://aksw.org/SebastianTramp> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/SebastianTramp> <http://www.w3.org/2004/02/skos/core#prefLabel> "Dr. Sebastian Tramp" .
<http://aksw.org/SebastianTramp> <http://xmlns.com/foaf/0.1/homepage> <http://aksw.org/SebastianTramp> .
<http://aksw.org/SebastianTramp> <http://xmlns.com/foaf/0.1/name> "Sebastian Tramp" .
<http://aksw.org/SebastianTramp> <http://xmlns.com/foaf/0.1/title> "Dr." .
<http://aksw.org/SimonBin> <http://schema.org/affiliation> <https://infai.org/> .
<http://aksw.org/SimonBin> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/SimonBin> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Document> .
<http://aksw.org/SimonBin> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/SimonBin> <http://xmlns.com/foaf/0.1/homepage> <http://aksw.org/SimonBin> .
<http://aksw.org/SimonBin> <http://xmlns.com/foaf/0.1/name> "Simon Bin" .
<http://aksw.org/SoerenAuer> <http://purl.org/dc/terms/description> "Professor for Data Science and Digital Libraries at the Gottfried Wilhelm Leibniz University Hannover and Director of the Technische Informationsbibliothek (TIB) in Hannover"@en .
<http://aksw.org/SoerenAuer> <http://purl.org/dc/terms/description> "Professor für Data Science and Digital Libraries an der Gottfried Wilhelm Leibniz Universität Hannover und Direktor der Technischen Informationsbibliothek (TIB) in Hannover"@de .
<http://aksw.org/SoerenAuer> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/SoerenAuer> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/SoerenAuer> <http://www.w3.org/2004/02/skos/core#prefLabel> "Prof. Dr. Sören Auer" .
<http://aksw.org/SoerenAuer> <http://xmlns.com/foaf/0.1/homepage> <https://www.tib.eu/en/research-development/research-groups-and-labs/data-science-digital-libraries/staff/soeren-auer> .
<http://aksw.org/SoerenAuer> <http://xmlns.com/foaf/0.1/name> "Sören Auer" .
<http://aksw.org/SoerenAuer> <http://xmlns.com/foaf/0.1/title> "Prof. Dr." .
<http://aksw.org/SoerenAuer> <https://d-nb.info/standards/elementset/gnd#biographicalOrHistoricalInformation> "Sören Auer is Professor for Data Science and Digital Libraries at the Gottfried Wilhelm Leibniz University Hannover and Director of the Technische Informationsbibliothek (TIB) in Hannover. Before being appointed Director of TIB, Sören led the “Enterprise Information Systems (EIS)” department at Fraunhofer Institute for Intelligent Analysis and Information Systems IAIS and held a Chair in Enterprise Information Systems at the University of Bonn. After studying Mathematics and Computer Science at Hagen, Dresden and Yekaterinburg, Sören earned a PhD in Computer Science at Leipzig University. This was followed by posts as post-doctoral researcher at the University of Pennsylvania and at Leipzig University, where he led the “Agile Knowledge Engineering and Semantic Web” (AKSW) research group."@en .
<http://aksw.org/SoerenAuer> <https://d-nb.info/standards/elementset/gnd#biographicalOrHistoricalInformation> "Sören Auer ist Professor für Data Science and Digital Libraries an der Gottfried Wilhelm Leibniz Universität Hannover und Direktor der Technischen Informationsbibliothek (TIB) in Hannover. Vor seiner Ernennung zum Direktor der TIB leitete Auer die Abteilung \"Enterprise Information Systems (EIS)\" am Fraunhofer-Institut für Intelligente Analyse- und Informationssysteme IAIS und hatte eine Professur für Enterprise Information Systems an der Universität Bonn inne. Nach dem Studium der Mathematik und Informatik in Hagen, Dresden und Jekaterinburg promovierte Sören Auer in Informatik an der Universität Leipzig. Es folgten Stationen als Post-Doc an der University of Pennsylvania und an der Universität Leipzig, wo er die Forschungsgruppe \"Agile Knowledge Engineering and Semantic Web\" (AKSW) leitete."@de .
<http://aksw.org/ThomasRiechert> <http://schema.org/affiliation> <https://htwk-leipzig.de/> .
<http://aksw.org/ThomasRiechert> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://aksw.org/ThomasRiechert> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Document> .
<http://aksw.org/ThomasRiechert> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://aksw.org/ThomasRiechert> <http://www.w3.org/2004/02/skos/core#prefLabel> "Prof. Dr. Thomas Riechert" .
<http://aksw.org/ThomasRiechert> <http://xmlns.com/foaf/0.1/homepage> <http://aksw.org/ThomasRiechert> .
<http://aksw.org/ThomasRiechert> <http://xmlns.com/foaf/0.1/name> "Thomas Riechert" .
<http://aksw.org/ThomasRiechert> <http://xmlns.com/foaf/0.1/title> "Prof. Dr." .
<http://lexvo.org/id/iso639-3/deu> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Language> .
<http://lexvo.org/id/iso639-3/eng> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Language> .
<http://www.andreasboth.de/en> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Document> .
<http://www.b4dt.de/> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Document> .
<http://www.b4dt.de/> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Organization> .
<http://www.b4dt.de/> <http://www.w3.org/2000/01/rdf-schema#label> "Büro für den digitalen Tiefbau"@de .
<http://www.b4dt.de/> <http://www.w3.org/2000/01/rdf-schema#label> "Digital civil engineering office"@en .
<http://www.b4dt.de/> <http://xmlns.com/foaf/0.1/homepage> <http://www.b4dt.de/> .
<http://www.halle.de/> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Document> .
<http://www.halle.de/> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Organization> .
<http://www.halle.de/> <http://www.w3.org/2000/01/rdf-schema#label> "City of Halle (Saale)"@en .
<http://www.halle.de/> <http://www.w3.org/2000/01/rdf-schema#label> "Stadt Halle (Saale)"@de .
<http://www.halle.de/> <http://xmlns.com/foaf/0.1/homepage> <http://www.halle.de/> .
<http://www.leipzig.de/> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Document> .
<http://www.leipzig.de/> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Organization> .
<http://www.leipzig.de/> <http://www.w3.org/2000/01/rdf-schema#label> "City of Leipzig"@en .
<http://www.leipzig.de/> <http://www.w3.org/2000/01/rdf-schema#label> "Stadt Leipzig"@de .
<http://www.leipzig.de/> <http://xmlns.com/foaf/0.1/homepage> <http://www.leipzig.de/> .
<https://2025.dataweek.de/break/2025-06-10/09:15> <http://ns.ontowiki.net/SysOnt/Site/track> <https://dataweek.de/#pause> .
<https://2025.dataweek.de/break/2025-06-10/09:15> <http://purl.org/dc/terms/date> "2025-06-10"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/break/2025-06-10/09:15> <http://purl.org/dc/terms/title> "Admission"@en .
<https://2025.dataweek.de/break/2025-06-10/09:15> <http://purl.org/dc/terms/title> "Einlass"@de .
<https://2025.dataweek.de/break/2025-06-10/09:15> <http://schema.org/endTime> "10:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-10/09:15> <http://schema.org/location> <https://dataweek.de/venue#Wandelhalle> .
<https://2025.dataweek.de/break/2025-06-10/09:15> <http://schema.org/startTime> "09:15:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-10/09:15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/break/2025-06-10/09:15> <http://www.w3.org/2004/02/skos/core#prefLabel> "Admission"@en .
<https://2025.dataweek.de/break/2025-06-10/09:15> <http://www.w3.org/2004/02/skos/core#prefLabel> "Einlass"@de .
<https://2025.dataweek.de/break/2025-06-10/11:30> <http://ns.ontowiki.net/SysOnt/Site/track> <https://dataweek.de/#pause> .
<https://2025.dataweek.de/break/2025-06-10/11:30> <http://purl.org/dc/terms/date> "2025-06-10"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/break/2025-06-10/11:30> <http://purl.org/dc/terms/description> "Poster und Stände"@de .
<https://2025.dataweek.de/break/2025-06-10/11:30> <http://purl.org/dc/terms/description> "Posters and Stands"@en .
<https://2025.dataweek.de/break/2025-06-10/11:30> <http://purl.org/dc/terms/title> "Lunch break"@en .
<https://2025.dataweek.de/break/2025-06-10/11:30> <http://purl.org/dc/terms/title> "Mittagessen"@de .
<https://2025.dataweek.de/break/2025-06-10/11:30> <http://schema.org/endTime> "12:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-10/11:30> <http://schema.org/location> <https://dataweek.de/venue#Wandelhalle> .
<https://2025.dataweek.de/break/2025-06-10/11:30> <http://schema.org/startTime> "11:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-10/11:30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/break/2025-06-10/11:30> <http://www.w3.org/2004/02/skos/core#prefLabel> "Lunch break"@en .
<https://2025.dataweek.de/break/2025-06-10/11:30> <http://www.w3.org/2004/02/skos/core#prefLabel> "Mittagessen"@de .
<https://2025.dataweek.de/break/2025-06-10/14:00> <http://ns.ontowiki.net/SysOnt/Site/track> <https://dataweek.de/#pause> .
<https://2025.dataweek.de/break/2025-06-10/14:00> <http://purl.org/dc/terms/date> "2025-06-10"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/break/2025-06-10/14:00> <http://purl.org/dc/terms/description> "Poster und Stände"@de .
<https://2025.dataweek.de/break/2025-06-10/14:00> <http://purl.org/dc/terms/description> "Posters and Stands"@en .
<https://2025.dataweek.de/break/2025-06-10/14:00> <http://purl.org/dc/terms/title> "Coffee break"@en .
<https://2025.dataweek.de/break/2025-06-10/14:00> <http://purl.org/dc/terms/title> "Pause"@de .
<https://2025.dataweek.de/break/2025-06-10/14:00> <http://schema.org/endTime> "14:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-10/14:00> <http://schema.org/location> <https://dataweek.de/venue#Wandelhalle> .
<https://2025.dataweek.de/break/2025-06-10/14:00> <http://schema.org/startTime> "14:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-10/14:00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/break/2025-06-10/14:00> <http://www.w3.org/2004/02/skos/core#prefLabel> "Coffee break"@en .
<https://2025.dataweek.de/break/2025-06-10/14:00> <http://www.w3.org/2004/02/skos/core#prefLabel> "Pause"@de .
<https://2025.dataweek.de/break/2025-06-10/16:00> <http://ns.ontowiki.net/SysOnt/Site/track> <https://dataweek.de/#pause> .
<https://2025.dataweek.de/break/2025-06-10/16:00> <http://purl.org/dc/terms/date> "2025-06-10"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/break/2025-06-10/16:00> <http://purl.org/dc/terms/description> "Poster und Stände"@de .
<https://2025.dataweek.de/break/2025-06-10/16:00> <http://purl.org/dc/terms/description> "Posters and Stands"@en .
<https://2025.dataweek.de/break/2025-06-10/16:00> <http://purl.org/dc/terms/title> "Coffee break"@en .
<https://2025.dataweek.de/break/2025-06-10/16:00> <http://purl.org/dc/terms/title> "Pause"@de .
<https://2025.dataweek.de/break/2025-06-10/16:00> <http://purl.org/dc/terms/title> "Raumwechsel"@de .
<https://2025.dataweek.de/break/2025-06-10/16:00> <http://schema.org/endTime> "16:10:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-10/16:00> <http://schema.org/location> <https://dataweek.de/venue#Wandelhalle> .
<https://2025.dataweek.de/break/2025-06-10/16:00> <http://schema.org/startTime> "16:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-10/16:00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/break/2025-06-10/16:00> <http://www.w3.org/2004/02/skos/core#prefLabel> "Coffee break"@en .
<https://2025.dataweek.de/break/2025-06-10/16:00> <http://www.w3.org/2004/02/skos/core#prefLabel> "Pause"@de .
<https://2025.dataweek.de/break/2025-06-10/16:10> <http://ns.ontowiki.net/SysOnt/Site/track> <https://dataweek.de/#sideevent> .
<https://2025.dataweek.de/break/2025-06-10/16:10> <http://purl.org/dc/terms/date> "2025-06-10"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/break/2025-06-10/16:10> <http://purl.org/dc/terms/description> "Sensoren tauchen zunehmend im Stadtbild von Leipzig auf und werden als Technologie zur \"Vermessung\" städtischer Aufgaben benötigt. Neben Sensoren sind Bürger- und nutzergenerierte Daten ein noch ungehobener Schatz für die nachhaltige Stadtentwicklung. Auf unserem Spaziergang durch Leipzigs Innenstadt entdecken Sie, wo und wie Sensoren und Datenspenden in der Stadt eingesetzt werden und wie sie unsere Stadt schon heute smarter machen (Start: Neues Rathaus, Ziel: Smart City Lab)"@de .
<https://2025.dataweek.de/break/2025-06-10/16:10> <http://purl.org/dc/terms/description> "Sensors are increasingly appearing in Leipzig's cityscape and are needed as a technology for ‘measuring’ urban tasks. In addition to sensors, citizen and user-generated data is an as yet untapped treasure for sustainable urban development. On our walk through Leipzig's city centre, you will discover where and how sensors and data donations are used in the city and how they are already making our city smarter today (start: New City Hall, destination: Smart City Lab)"@en .
<https://2025.dataweek.de/break/2025-06-10/16:10> <http://purl.org/dc/terms/title> "Leipzig, how are you? - A walk through sensor technology and user-generated data"@en .
<https://2025.dataweek.de/break/2025-06-10/16:10> <http://purl.org/dc/terms/title> "Leipzig, wie geht´s dir? - Ein Spaziergang zu Sensorik und nutzergenerierten Daten"@de .
<https://2025.dataweek.de/break/2025-06-10/16:10> <http://schema.org/endTime> "17:40:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-10/16:10> <http://schema.org/location> <https://dataweek.de/venue#SmartCityLab> .
<https://2025.dataweek.de/break/2025-06-10/16:10> <http://schema.org/startTime> "16:10:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-10/16:10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/break/2025-06-10/16:10> <http://www.w3.org/2004/02/skos/core#prefLabel> "Leipzig, how are you? - A walk through sensor technology and user-generated data"@en .
<https://2025.dataweek.de/break/2025-06-10/16:10> <http://www.w3.org/2004/02/skos/core#prefLabel> "Leipzig, wie geht´s dir? - Ein Spaziergang zu Sensorik und nutzergenerierten Daten"@de .
<https://2025.dataweek.de/break/2025-06-10/17:45> <http://ns.ontowiki.net/SysOnt/Site/track> <https://dataweek.de/#sideevent> .
<https://2025.dataweek.de/break/2025-06-10/17:45> <http://purl.org/dc/terms/date> "2025-06-10"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/break/2025-06-10/17:45> <http://purl.org/dc/terms/description> "Built on the foundation of the old Pleißenburg Tower, the tower of the New City Hall is considered the tallest city hall tower in Germany and is one of Leipzig's most important landmarks. With a height of exactly 114.7 meters, it towers over the entire city. As part of Data Week Leipzig, you have the opportunity to visit the town hall tower with us."@en .
<https://2025.dataweek.de/break/2025-06-10/17:45> <http://purl.org/dc/terms/description> "Der auf dem Fundament des alten Pleißenburgturms errichtete Turm des Neuen Rathauses gilt als höchster Rathausturm Deutschlands und ist eines der wichtigsten Wahrzeichen Leipzigs. Mit einer Höhe von genau 114,7 Metern überragt er die ganze Stadt. Im Rahmen der Data Week Leipzig haben Sie die Möglichkeit den Rathausturm mit uns zu besichtigen."@de .
<https://2025.dataweek.de/break/2025-06-10/17:45> <http://purl.org/dc/terms/title> "Rathausturmführung"@de .
<https://2025.dataweek.de/break/2025-06-10/17:45> <http://purl.org/dc/terms/title> "Visit city hall tower"@en .
<https://2025.dataweek.de/break/2025-06-10/17:45> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/break/2025-06-10/17:45> <http://schema.org/endTime> "18:15:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-10/17:45> <http://schema.org/startTime> "17:45:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-10/17:45> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/break/2025-06-10/17:45> <http://www.w3.org/2004/02/skos/core#prefLabel> "Rathausturmführung"@de .
<https://2025.dataweek.de/break/2025-06-10/17:45> <http://www.w3.org/2004/02/skos/core#prefLabel> "Visit city hall tower"@en .
<https://2025.dataweek.de/break/2025-06-11/08:30> <http://ns.ontowiki.net/SysOnt/Site/track> <https://dataweek.de/#pause> .
<https://2025.dataweek.de/break/2025-06-11/08:30> <http://purl.org/dc/terms/date> "2025-06-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/break/2025-06-11/08:30> <http://purl.org/dc/terms/title> "Admission"@en .
<https://2025.dataweek.de/break/2025-06-11/08:30> <http://purl.org/dc/terms/title> "Einlass"@de .
<https://2025.dataweek.de/break/2025-06-11/08:30> <http://schema.org/endTime> "09:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-11/08:30> <http://schema.org/location> <https://dataweek.de/venue#Wandelhalle> .
<https://2025.dataweek.de/break/2025-06-11/08:30> <http://schema.org/startTime> "08:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-11/08:30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/break/2025-06-11/08:30> <http://www.w3.org/2004/02/skos/core#prefLabel> "Admission"@en .
<https://2025.dataweek.de/break/2025-06-11/08:30> <http://www.w3.org/2004/02/skos/core#prefLabel> "Einlass"@de .
<https://2025.dataweek.de/break/2025-06-11/10:30> <http://ns.ontowiki.net/SysOnt/Site/track> <https://dataweek.de/#pause> .
<https://2025.dataweek.de/break/2025-06-11/10:30> <http://purl.org/dc/terms/date> "2025-06-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/break/2025-06-11/10:30> <http://purl.org/dc/terms/description> "Poster und Stände"@de .
<https://2025.dataweek.de/break/2025-06-11/10:30> <http://purl.org/dc/terms/description> "Posters and Stands"@en .
<https://2025.dataweek.de/break/2025-06-11/10:30> <http://purl.org/dc/terms/title> "Coffee break"@en .
<https://2025.dataweek.de/break/2025-06-11/10:30> <http://purl.org/dc/terms/title> "Pause"@de .
<https://2025.dataweek.de/break/2025-06-11/10:30> <http://schema.org/endTime> "11:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-11/10:30> <http://schema.org/location> <https://dataweek.de/venue#Wandelhalle> .
<https://2025.dataweek.de/break/2025-06-11/10:30> <http://schema.org/startTime> "10:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-11/10:30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/break/2025-06-11/10:30> <http://www.w3.org/2004/02/skos/core#prefLabel> "Coffee break"@en .
<https://2025.dataweek.de/break/2025-06-11/10:30> <http://www.w3.org/2004/02/skos/core#prefLabel> "Pause"@de .
<https://2025.dataweek.de/break/2025-06-11/12:30> <http://ns.ontowiki.net/SysOnt/Site/track> <https://dataweek.de/#pause> .
<https://2025.dataweek.de/break/2025-06-11/12:30> <http://purl.org/dc/terms/date> "2025-06-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/break/2025-06-11/12:30> <http://purl.org/dc/terms/description> "Poster und Stände"@de .
<https://2025.dataweek.de/break/2025-06-11/12:30> <http://purl.org/dc/terms/description> "Posters and Stands"@en .
<https://2025.dataweek.de/break/2025-06-11/12:30> <http://purl.org/dc/terms/title> "Lunch break"@en .
<https://2025.dataweek.de/break/2025-06-11/12:30> <http://purl.org/dc/terms/title> "Mittagessen"@de .
<https://2025.dataweek.de/break/2025-06-11/12:30> <http://schema.org/endTime> "13:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-11/12:30> <http://schema.org/location> <https://dataweek.de/venue#Wandelhalle> .
<https://2025.dataweek.de/break/2025-06-11/12:30> <http://schema.org/startTime> "12:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-11/12:30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/break/2025-06-11/12:30> <http://www.w3.org/2004/02/skos/core#prefLabel> "Lunch break"@en .
<https://2025.dataweek.de/break/2025-06-11/12:30> <http://www.w3.org/2004/02/skos/core#prefLabel> "Mittagessen"@de .
<https://2025.dataweek.de/break/2025-06-11/15:00> <http://ns.ontowiki.net/SysOnt/Site/track> <https://dataweek.de/#pause> .
<https://2025.dataweek.de/break/2025-06-11/15:00> <http://purl.org/dc/terms/date> "2025-06-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/break/2025-06-11/15:00> <http://purl.org/dc/terms/description> "Poster und Stände"@de .
<https://2025.dataweek.de/break/2025-06-11/15:00> <http://purl.org/dc/terms/description> "Posters and Stands"@en .
<https://2025.dataweek.de/break/2025-06-11/15:00> <http://purl.org/dc/terms/title> "Coffee break"@en .
<https://2025.dataweek.de/break/2025-06-11/15:00> <http://purl.org/dc/terms/title> "Pause"@de .
<https://2025.dataweek.de/break/2025-06-11/15:00> <http://schema.org/endTime> "15:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-11/15:00> <http://schema.org/location> <https://dataweek.de/venue#Wandelhalle> .
<https://2025.dataweek.de/break/2025-06-11/15:00> <http://schema.org/startTime> "15:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-11/15:00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/break/2025-06-11/15:00> <http://www.w3.org/2004/02/skos/core#prefLabel> "Coffee break"@en .
<https://2025.dataweek.de/break/2025-06-11/15:00> <http://www.w3.org/2004/02/skos/core#prefLabel> "Pause"@de .
<https://2025.dataweek.de/break/2025-06-11/17:10> <http://ns.ontowiki.net/SysOnt/Site/track> <https://dataweek.de/#sideevent> .
<https://2025.dataweek.de/break/2025-06-11/17:10> <http://purl.org/dc/terms/date> "2025-06-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/break/2025-06-11/17:10> <http://purl.org/dc/terms/description> "Built on the foundation of the old Pleißenburg Tower, the tower of the New City Hall is considered the tallest city hall tower in Germany and is one of Leipzig's most important landmarks. With a height of exactly 114.7 meters, it towers over the entire city. As part of Data Week Leipzig, you have the opportunity to visit the town hall tower with us."@en .
<https://2025.dataweek.de/break/2025-06-11/17:10> <http://purl.org/dc/terms/description> "Der auf dem Fundament des alten Pleißenburgturms errichtete Turm des Neuen Rathauses gilt als höchster Rathausturm Deutschlands und ist eines der wichtigsten Wahrzeichen Leipzigs. Mit einer Höhe von genau 114,7 Metern überragt er die ganze Stadt. Im Rahmen der Data Week Leipzig haben Sie die Möglichkeit den Rathausturm mit uns zu besichtigen."@de .
<https://2025.dataweek.de/break/2025-06-11/17:10> <http://purl.org/dc/terms/title> "Rathausturmführung"@de .
<https://2025.dataweek.de/break/2025-06-11/17:10> <http://purl.org/dc/terms/title> "Visit city hall tower"@en .
<https://2025.dataweek.de/break/2025-06-11/17:10> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/break/2025-06-11/17:10> <http://schema.org/endTime> "17:40:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-11/17:10> <http://schema.org/startTime> "17:10:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-11/17:10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/break/2025-06-11/17:10> <http://www.w3.org/2004/02/skos/core#prefLabel> "Rathausturmführung"@de .
<https://2025.dataweek.de/break/2025-06-11/17:10> <http://www.w3.org/2004/02/skos/core#prefLabel> "Visit city hall tower"@en .
<https://2025.dataweek.de/break/2025-06-11/17:40> <http://ns.ontowiki.net/SysOnt/Site/track> <https://dataweek.de/#sideevent> .
<https://2025.dataweek.de/break/2025-06-11/17:40> <http://purl.org/dc/terms/date> "2025-06-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/break/2025-06-11/17:40> <http://purl.org/dc/terms/title> "Get together"@de .
<https://2025.dataweek.de/break/2025-06-11/17:40> <http://purl.org/dc/terms/title> "Get together"@en .
<https://2025.dataweek.de/break/2025-06-11/17:40> <http://purl.org/dc/terms/title> "ScaDS.AI Meetup "@de .
<https://2025.dataweek.de/break/2025-06-11/17:40> <http://purl.org/dc/terms/title> "ScaDS.AI Meetup "@en .
<https://2025.dataweek.de/break/2025-06-11/17:40> <http://schema.org/endTime> "19:10:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-11/17:40> <http://schema.org/location> <https://dataweek.de/venue#Wandelhalle> .
<https://2025.dataweek.de/break/2025-06-11/17:40> <http://schema.org/startTime> "17:40:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-11/17:40> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/break/2025-06-11/17:40> <http://www.w3.org/2004/02/skos/core#prefLabel> "ScaDS.AI Meetup "@de .
<https://2025.dataweek.de/break/2025-06-11/17:40> <http://www.w3.org/2004/02/skos/core#prefLabel> "ScaDS.AI Meetup "@en .
<https://2025.dataweek.de/break/2025-06-12/08:30> <http://ns.ontowiki.net/SysOnt/Site/track> <https://dataweek.de/#pause> .
<https://2025.dataweek.de/break/2025-06-12/08:30> <http://purl.org/dc/terms/date> "2025-06-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/break/2025-06-12/08:30> <http://purl.org/dc/terms/title> "Admission"@en .
<https://2025.dataweek.de/break/2025-06-12/08:30> <http://purl.org/dc/terms/title> "Einlass"@de .
<https://2025.dataweek.de/break/2025-06-12/08:30> <http://schema.org/endTime> "09:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-12/08:30> <http://schema.org/location> <https://dataweek.de/venue#Wandelhalle> .
<https://2025.dataweek.de/break/2025-06-12/08:30> <http://schema.org/startTime> "08:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-12/08:30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/break/2025-06-12/08:30> <http://www.w3.org/2004/02/skos/core#prefLabel> "Admission"@en .
<https://2025.dataweek.de/break/2025-06-12/08:30> <http://www.w3.org/2004/02/skos/core#prefLabel> "Einlass"@de .
<https://2025.dataweek.de/break/2025-06-12/10:30> <http://ns.ontowiki.net/SysOnt/Site/track> <https://dataweek.de/#pause> .
<https://2025.dataweek.de/break/2025-06-12/10:30> <http://purl.org/dc/terms/date> "2025-06-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/break/2025-06-12/10:30> <http://purl.org/dc/terms/description> "Poster und Stände"@de .
<https://2025.dataweek.de/break/2025-06-12/10:30> <http://purl.org/dc/terms/description> "Posters and Stands"@en .
<https://2025.dataweek.de/break/2025-06-12/10:30> <http://purl.org/dc/terms/title> "Coffee break"@en .
<https://2025.dataweek.de/break/2025-06-12/10:30> <http://purl.org/dc/terms/title> "Pause"@de .
<https://2025.dataweek.de/break/2025-06-12/10:30> <http://schema.org/endTime> "11:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-12/10:30> <http://schema.org/location> <https://dataweek.de/venue#Wandelhalle> .
<https://2025.dataweek.de/break/2025-06-12/10:30> <http://schema.org/startTime> "10:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-12/10:30> <http://schema.org/subEvent> <https://2023.dataweek.de/#postersession> .
<https://2025.dataweek.de/break/2025-06-12/10:30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/break/2025-06-12/10:30> <http://www.w3.org/2004/02/skos/core#prefLabel> "Coffee break"@en .
<https://2025.dataweek.de/break/2025-06-12/10:30> <http://www.w3.org/2004/02/skos/core#prefLabel> "Pause"@de .
<https://2025.dataweek.de/break/2025-06-12/12:30> <http://ns.ontowiki.net/SysOnt/Site/track> <https://dataweek.de/#pause> .
<https://2025.dataweek.de/break/2025-06-12/12:30> <http://purl.org/dc/terms/date> "2025-06-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/break/2025-06-12/12:30> <http://purl.org/dc/terms/description> "Poster und Stände"@de .
<https://2025.dataweek.de/break/2025-06-12/12:30> <http://purl.org/dc/terms/description> "Posters and Stands"@en .
<https://2025.dataweek.de/break/2025-06-12/12:30> <http://purl.org/dc/terms/title> "Lunch break"@en .
<https://2025.dataweek.de/break/2025-06-12/12:30> <http://purl.org/dc/terms/title> "Mittagessen"@de .
<https://2025.dataweek.de/break/2025-06-12/12:30> <http://schema.org/endTime> "13:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-12/12:30> <http://schema.org/location> <https://dataweek.de/venue#Wandelhalle> .
<https://2025.dataweek.de/break/2025-06-12/12:30> <http://schema.org/startTime> "12:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-12/12:30> <http://schema.org/subEvent> <https://2023.dataweek.de/#postersession> .
<https://2025.dataweek.de/break/2025-06-12/12:30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/break/2025-06-12/12:30> <http://www.w3.org/2004/02/skos/core#prefLabel> "Lunch break"@en .
<https://2025.dataweek.de/break/2025-06-12/12:30> <http://www.w3.org/2004/02/skos/core#prefLabel> "Mittagessen"@de .
<https://2025.dataweek.de/break/2025-06-12/15:00> <http://ns.ontowiki.net/SysOnt/Site/track> <https://dataweek.de/#pause> .
<https://2025.dataweek.de/break/2025-06-12/15:00> <http://purl.org/dc/terms/date> "2025-06-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/break/2025-06-12/15:00> <http://purl.org/dc/terms/description> "Poster und Stände"@de .
<https://2025.dataweek.de/break/2025-06-12/15:00> <http://purl.org/dc/terms/description> "Posters and Stands"@en .
<https://2025.dataweek.de/break/2025-06-12/15:00> <http://purl.org/dc/terms/title> "Coffee break"@en .
<https://2025.dataweek.de/break/2025-06-12/15:00> <http://purl.org/dc/terms/title> "Pause"@de .
<https://2025.dataweek.de/break/2025-06-12/15:00> <http://schema.org/endTime> "15:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-12/15:00> <http://schema.org/location> <https://dataweek.de/venue#Wandelhalle> .
<https://2025.dataweek.de/break/2025-06-12/15:00> <http://schema.org/startTime> "15:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-12/15:00> <http://schema.org/subEvent> <https://2023.dataweek.de/#postersession> .
<https://2025.dataweek.de/break/2025-06-12/15:00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/break/2025-06-12/15:00> <http://www.w3.org/2004/02/skos/core#prefLabel> "Coffee break"@en .
<https://2025.dataweek.de/break/2025-06-12/15:00> <http://www.w3.org/2004/02/skos/core#prefLabel> "Pause"@de .
<https://2025.dataweek.de/break/2025-06-12/17:10> <http://ns.ontowiki.net/SysOnt/Site/track> <https://dataweek.de/#sideevent> .
<https://2025.dataweek.de/break/2025-06-12/17:10> <http://purl.org/dc/terms/date> "2025-06-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/break/2025-06-12/17:10> <http://purl.org/dc/terms/description> "Built on the foundation of the old Pleißenburg Tower, the tower of the New City Hall is considered the tallest city hall tower in Germany and is one of Leipzig's most important landmarks. With a height of exactly 114.7 meters, it towers over the entire city. As part of Data Week Leipzig, you have the opportunity to visit the town hall tower with us."@en .
<https://2025.dataweek.de/break/2025-06-12/17:10> <http://purl.org/dc/terms/description> "Der auf dem Fundament des alten Pleißenburgturms errichtete Turm des Neuen Rathauses gilt als höchster Rathausturm Deutschlands und ist eines der wichtigsten Wahrzeichen Leipzigs. Mit einer Höhe von genau 114,7 Metern überragt er die ganze Stadt. Im Rahmen der Data Week Leipzig haben Sie die Möglichkeit den Rathausturm mit uns zu besichtigen."@de .
<https://2025.dataweek.de/break/2025-06-12/17:10> <http://purl.org/dc/terms/title> "Rathausturmführung"@de .
<https://2025.dataweek.de/break/2025-06-12/17:10> <http://purl.org/dc/terms/title> "Visit city hall tower"@en .
<https://2025.dataweek.de/break/2025-06-12/17:10> <http://schema.org/endTime> "17:40:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-12/17:10> <http://schema.org/startTime> "17:10:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-12/17:10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/break/2025-06-12/17:10> <http://www.w3.org/2004/02/skos/core#prefLabel> "Rathausturmführung"@de .
<https://2025.dataweek.de/break/2025-06-12/17:10> <http://www.w3.org/2004/02/skos/core#prefLabel> "Visit city hall tower"@en .
<https://2025.dataweek.de/break/2025-06-12/18:00> <http://ns.ontowiki.net/SysOnt/Site/track> <https://dataweek.de/#sideevent> .
<https://2025.dataweek.de/break/2025-06-12/18:00> <http://purl.org/dc/terms/date> "2025-06-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/break/2025-06-12/18:00> <http://purl.org/dc/terms/description> "eccenca cordially invites you to the social event \"Semantic Biergarten\"."@en .
<https://2025.dataweek.de/break/2025-06-12/18:00> <http://purl.org/dc/terms/description> "eccenca lädt Sie herzlich zum Social Event “Semantic Biergarten“ ein."@de .
<https://2025.dataweek.de/break/2025-06-12/18:00> <http://purl.org/dc/terms/title> "eccenca Semantic Biergarten"@de .
<https://2025.dataweek.de/break/2025-06-12/18:00> <http://purl.org/dc/terms/title> "eccenca Semantic Biergarten"@en .
<https://2025.dataweek.de/break/2025-06-12/18:00> <http://schema.org/endTime> "20:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-12/18:00> <http://schema.org/startTime> "18:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-12/18:00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/break/2025-06-12/18:00> <http://www.w3.org/2004/02/skos/core#prefLabel> "eccenca Semantic Biergarten"@de .
<https://2025.dataweek.de/break/2025-06-12/18:00> <http://www.w3.org/2004/02/skos/core#prefLabel> "eccenca Semantic Biergarten"@en .
<https://2025.dataweek.de/break/2025-06-13/08:30> <http://ns.ontowiki.net/SysOnt/Site/track> <https://dataweek.de/#pause> .
<https://2025.dataweek.de/break/2025-06-13/08:30> <http://purl.org/dc/terms/date> "2025-06-13"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/break/2025-06-13/08:30> <http://purl.org/dc/terms/title> "Admission"@en .
<https://2025.dataweek.de/break/2025-06-13/08:30> <http://purl.org/dc/terms/title> "Einlass"@de .
<https://2025.dataweek.de/break/2025-06-13/08:30> <http://schema.org/endTime> "09:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-13/08:30> <http://schema.org/location> <https://dataweek.de/venue#Wandelhalle> .
<https://2025.dataweek.de/break/2025-06-13/08:30> <http://schema.org/startTime> "08:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-13/08:30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/break/2025-06-13/08:30> <http://www.w3.org/2004/02/skos/core#prefLabel> "Admission"@en .
<https://2025.dataweek.de/break/2025-06-13/08:30> <http://www.w3.org/2004/02/skos/core#prefLabel> "Einlass"@de .
<https://2025.dataweek.de/break/2025-06-13/10:30> <http://ns.ontowiki.net/SysOnt/Site/track> <https://dataweek.de/#pause> .
<https://2025.dataweek.de/break/2025-06-13/10:30> <http://purl.org/dc/terms/date> "2025-06-13"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/break/2025-06-13/10:30> <http://purl.org/dc/terms/description> "Poster und Stände"@de .
<https://2025.dataweek.de/break/2025-06-13/10:30> <http://purl.org/dc/terms/description> "Posters and Stands"@en .
<https://2025.dataweek.de/break/2025-06-13/10:30> <http://purl.org/dc/terms/title> "Coffee break"@en .
<https://2025.dataweek.de/break/2025-06-13/10:30> <http://purl.org/dc/terms/title> "Pause"@de .
<https://2025.dataweek.de/break/2025-06-13/10:30> <http://schema.org/endTime> "11:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-13/10:30> <http://schema.org/location> <https://dataweek.de/venue#Wandelhalle> .
<https://2025.dataweek.de/break/2025-06-13/10:30> <http://schema.org/startTime> "10:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-13/10:30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/break/2025-06-13/10:30> <http://www.w3.org/2004/02/skos/core#prefLabel> "Coffee break"@en .
<https://2025.dataweek.de/break/2025-06-13/10:30> <http://www.w3.org/2004/02/skos/core#prefLabel> "Pause"@de .
<https://2025.dataweek.de/break/2025-06-13/12:30> <http://ns.ontowiki.net/SysOnt/Site/track> <https://dataweek.de/#pause> .
<https://2025.dataweek.de/break/2025-06-13/12:30> <http://purl.org/dc/terms/date> "2025-06-13"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/break/2025-06-13/12:30> <http://purl.org/dc/terms/description> "Poster und Stände"@de .
<https://2025.dataweek.de/break/2025-06-13/12:30> <http://purl.org/dc/terms/description> "Posters and Stands"@en .
<https://2025.dataweek.de/break/2025-06-13/12:30> <http://purl.org/dc/terms/title> "Lunch break"@en .
<https://2025.dataweek.de/break/2025-06-13/12:30> <http://purl.org/dc/terms/title> "Mittagessen"@de .
<https://2025.dataweek.de/break/2025-06-13/12:30> <http://schema.org/endTime> "13:15:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-13/12:30> <http://schema.org/location> <https://dataweek.de/venue#Wandelhalle> .
<https://2025.dataweek.de/break/2025-06-13/12:30> <http://schema.org/startTime> "12:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/break/2025-06-13/12:30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/break/2025-06-13/12:30> <http://www.w3.org/2004/02/skos/core#prefLabel> "Lunch break"@en .
<https://2025.dataweek.de/break/2025-06-13/12:30> <http://www.w3.org/2004/02/skos/core#prefLabel> "Mittagessen"@de .
<https://2025.dataweek.de/breaks/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-10/09:15> .
<https://2025.dataweek.de/breaks/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-10/11:30> .
<https://2025.dataweek.de/breaks/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-10/14:00> .
<https://2025.dataweek.de/breaks/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-10/16:00> .
<https://2025.dataweek.de/breaks/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-10/16:10> .
<https://2025.dataweek.de/breaks/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-10/17:45> .
<https://2025.dataweek.de/breaks/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-11/08:30> .
<https://2025.dataweek.de/breaks/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-11/10:30> .
<https://2025.dataweek.de/breaks/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-11/12:30> .
<https://2025.dataweek.de/breaks/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-11/15:00> .
<https://2025.dataweek.de/breaks/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-11/17:10> .
<https://2025.dataweek.de/breaks/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-11/17:40> .
<https://2025.dataweek.de/breaks/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-12/08:30> .
<https://2025.dataweek.de/breaks/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-12/10:30> .
<https://2025.dataweek.de/breaks/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-12/12:30> .
<https://2025.dataweek.de/breaks/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-12/15:00> .
<https://2025.dataweek.de/breaks/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-12/17:10> .
<https://2025.dataweek.de/breaks/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-12/18:00> .
<https://2025.dataweek.de/breaks/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-13/08:30> .
<https://2025.dataweek.de/breaks/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-13/10:30> .
<https://2025.dataweek.de/breaks/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-13/12:30> .
<https://2025.dataweek.de/hackathon/#programm-session-1> <http://purl.org/dc/terms/date> "2025-06-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/hackathon/#programm-session-1> <http://purl.org/dc/terms/title> "Thin[gk]athon"@de .
<https://2025.dataweek.de/hackathon/#programm-session-1> <http://purl.org/dc/terms/title> "Thin[gk]athon"@en .
<https://2025.dataweek.de/hackathon/#programm-session-1> <http://schema.org/endTime> "10:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/hackathon/#programm-session-1> <http://schema.org/location> <https://dataweek.de/venue#Room270> .
<https://2025.dataweek.de/hackathon/#programm-session-1> <http://schema.org/startTime> "09:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/hackathon/#programm-session-1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/hackathon/#programm-session-2> <http://purl.org/dc/terms/date> "2025-06-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/hackathon/#programm-session-2> <http://purl.org/dc/terms/title> "Thin[gk]athon"@de .
<https://2025.dataweek.de/hackathon/#programm-session-2> <http://purl.org/dc/terms/title> "Thin[gk]athon"@en .
<https://2025.dataweek.de/hackathon/#programm-session-2> <http://schema.org/endTime> "12:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/hackathon/#programm-session-2> <http://schema.org/location> <https://dataweek.de/venue#Festsaal> .
<https://2025.dataweek.de/hackathon/#programm-session-2> <http://schema.org/startTime> "11:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/hackathon/#programm-session-2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/hackathon/#programm-session-3> <http://purl.org/dc/terms/date> "2025-06-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/hackathon/#programm-session-3> <http://purl.org/dc/terms/title> "Thin[gk]athon"@de .
<https://2025.dataweek.de/hackathon/#programm-session-3> <http://purl.org/dc/terms/title> "Thin[gk]athon"@en .
<https://2025.dataweek.de/hackathon/#programm-session-3> <http://schema.org/endTime> "15:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/hackathon/#programm-session-3> <http://schema.org/location> <https://dataweek.de/venue#Festsaal> .
<https://2025.dataweek.de/hackathon/#programm-session-3> <http://schema.org/startTime> "13:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/hackathon/#programm-session-3> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/hackathon/#programm-session-4> <http://purl.org/dc/terms/date> "2025-06-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/hackathon/#programm-session-4> <http://purl.org/dc/terms/title> "Thin[gk]athon"@de .
<https://2025.dataweek.de/hackathon/#programm-session-4> <http://purl.org/dc/terms/title> "Thin[gk]athon"@en .
<https://2025.dataweek.de/hackathon/#programm-session-4> <http://schema.org/endTime> "17:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/hackathon/#programm-session-4> <http://schema.org/location> <https://dataweek.de/venue#Festsaal> .
<https://2025.dataweek.de/hackathon/#programm-session-4> <http://schema.org/startTime> "15:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/hackathon/#programm-session-4> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/hackathon/#programm-session-5> <http://purl.org/dc/terms/date> "2025-06-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/hackathon/#programm-session-5> <http://purl.org/dc/terms/title> "Thin[gk]athon"@de .
<https://2025.dataweek.de/hackathon/#programm-session-5> <http://purl.org/dc/terms/title> "Thin[gk]athon"@en .
<https://2025.dataweek.de/hackathon/#programm-session-5> <http://schema.org/endTime> "22:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/hackathon/#programm-session-5> <http://schema.org/location> <https://dataweek.de/venue#Festsaal> .
<https://2025.dataweek.de/hackathon/#programm-session-5> <http://schema.org/startTime> "17:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/hackathon/#programm-session-5> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/hackathon/#programm-session-6> <http://purl.org/dc/terms/date> "2025-06-13"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/hackathon/#programm-session-6> <http://purl.org/dc/terms/title> "Thin[gk]athon"@de .
<https://2025.dataweek.de/hackathon/#programm-session-6> <http://purl.org/dc/terms/title> "Thin[gk]athon"@en .
<https://2025.dataweek.de/hackathon/#programm-session-6> <http://schema.org/endTime> "10:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/hackathon/#programm-session-6> <http://schema.org/location> <https://dataweek.de/venue#Festsaal> .
<https://2025.dataweek.de/hackathon/#programm-session-6> <http://schema.org/startTime> "09:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/hackathon/#programm-session-6> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/hackathon/#programm-session-7> <http://purl.org/dc/terms/date> "2025-06-13"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/hackathon/#programm-session-7> <http://purl.org/dc/terms/title> "Thin[gk]athon"@de .
<https://2025.dataweek.de/hackathon/#programm-session-7> <http://purl.org/dc/terms/title> "Thin[gk]athon"@en .
<https://2025.dataweek.de/hackathon/#programm-session-7> <http://schema.org/endTime> "12:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/hackathon/#programm-session-7> <http://schema.org/location> <https://dataweek.de/venue#Festsaal> .
<https://2025.dataweek.de/hackathon/#programm-session-7> <http://schema.org/startTime> "11:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/hackathon/#programm-session-7> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/hackathon/#programm-session-8> <http://purl.org/dc/terms/date> "2025-06-13"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/hackathon/#programm-session-8> <http://purl.org/dc/terms/title> "Thin[gk]athon"@de .
<https://2025.dataweek.de/hackathon/#programm-session-8> <http://purl.org/dc/terms/title> "Thin[gk]athon"@en .
<https://2025.dataweek.de/hackathon/#programm-session-8> <http://schema.org/endTime> "14:45:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/hackathon/#programm-session-8> <http://schema.org/location> <https://dataweek.de/venue#Festsaal> .
<https://2025.dataweek.de/hackathon/#programm-session-8> <http://schema.org/startTime> "13:15:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/hackathon/#programm-session-8> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/hackathon/#programm-session-9> <http://purl.org/dc/terms/date> "2025-06-13"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/hackathon/#programm-session-9> <http://purl.org/dc/terms/title> "Jugend hackt "@de .
<https://2025.dataweek.de/hackathon/#programm-session-9> <http://purl.org/dc/terms/title> "Youth hacks "@en .
<https://2025.dataweek.de/hackathon/#programm-session-9> <http://schema.org/endTime> "22:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/hackathon/#programm-session-9> <http://schema.org/location> <https://dataweek.de/venue#Festsaal> .
<https://2025.dataweek.de/hackathon/#programm-session-9> <http://schema.org/startTime> "15:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/hackathon/#programm-session-9> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/hackathon/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-12/10:30> .
<https://2025.dataweek.de/hackathon/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-12/12:30> .
<https://2025.dataweek.de/hackathon/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-12/15:00> .
<https://2025.dataweek.de/hackathon/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-13/10:30> .
<https://2025.dataweek.de/hackathon/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-13/12:30> .
<https://2025.dataweek.de/hackathon/> <http://schema.org/subEvent> <https://2025.dataweek.de/hackathon/#programm-session-1> .
<https://2025.dataweek.de/hackathon/> <http://schema.org/subEvent> <https://2025.dataweek.de/hackathon/#programm-session-2> .
<https://2025.dataweek.de/hackathon/> <http://schema.org/subEvent> <https://2025.dataweek.de/hackathon/#programm-session-3> .
<https://2025.dataweek.de/hackathon/> <http://schema.org/subEvent> <https://2025.dataweek.de/hackathon/#programm-session-4> .
<https://2025.dataweek.de/hackathon/> <http://schema.org/subEvent> <https://2025.dataweek.de/hackathon/#programm-session-5> .
<https://2025.dataweek.de/hackathon/> <http://schema.org/subEvent> <https://2025.dataweek.de/hackathon/#programm-session-6> .
<https://2025.dataweek.de/hackathon/> <http://schema.org/subEvent> <https://2025.dataweek.de/hackathon/#programm-session-7> .
<https://2025.dataweek.de/hackathon/> <http://schema.org/subEvent> <https://2025.dataweek.de/hackathon/#programm-session-8> .
<https://2025.dataweek.de/hackathon/> <http://schema.org/subEvent> <https://2025.dataweek.de/hackathon/#programm-session-9> .
<https://2025.dataweek.de/roadshow/#programm-session-1> <http://purl.org/dc/terms/date> "2025-06-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/roadshow/#programm-session-1> <http://purl.org/dc/terms/title> "Civic AI with Civic Coding - the start for your civic AI project! (Roadshow)"@en .
<https://2025.dataweek.de/roadshow/#programm-session-1> <http://purl.org/dc/terms/title> "Gemeinwohlorientierte KI mit Civic Coding – der Start für dein gemeinwohlorientiertes KI-Projekt! (Roadshow)"@de .
<https://2025.dataweek.de/roadshow/#programm-session-1> <http://schema.org/endTime> "15:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/roadshow/#programm-session-1> <http://schema.org/location> <https://dataweek.de/venue#Room260> .
<https://2025.dataweek.de/roadshow/#programm-session-1> <http://schema.org/startTime> "13:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/roadshow/#programm-session-1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/roadshow/#programm-session-2> <http://purl.org/dc/terms/date> "2025-06-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/roadshow/#programm-session-2> <http://purl.org/dc/terms/title> "AIAMOroadshow"@de .
<https://2025.dataweek.de/roadshow/#programm-session-2> <http://purl.org/dc/terms/title> "AIAMOroadshow"@en .
<https://2025.dataweek.de/roadshow/#programm-session-2> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/roadshow/#programm-session-2> <http://schema.org/endTime> "12:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/roadshow/#programm-session-2> <http://schema.org/location> <https://dataweek.de/venue#Ratsplenarsaal> .
<https://2025.dataweek.de/roadshow/#programm-session-2> <http://schema.org/startTime> "11:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/roadshow/#programm-session-2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/roadshow/#programm-session-3> <http://purl.org/dc/terms/date> "2025-06-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/roadshow/#programm-session-3> <http://purl.org/dc/terms/title> "AIAMOroadshow"@de .
<https://2025.dataweek.de/roadshow/#programm-session-3> <http://purl.org/dc/terms/title> "AIAMOroadshow"@en .
<https://2025.dataweek.de/roadshow/#programm-session-3> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/roadshow/#programm-session-3> <http://schema.org/endTime> "15:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/roadshow/#programm-session-3> <http://schema.org/location> <https://dataweek.de/venue#Ratsplenarsaal> .
<https://2025.dataweek.de/roadshow/#programm-session-3> <http://schema.org/startTime> "13:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/roadshow/#programm-session-3> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/roadshow/#programm-session-4> <http://purl.org/dc/terms/date> "2025-06-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/roadshow/#programm-session-4> <http://purl.org/dc/terms/title> "AIAMOroadshow"@de .
<https://2025.dataweek.de/roadshow/#programm-session-4> <http://purl.org/dc/terms/title> "AIAMOroadshow"@en .
<https://2025.dataweek.de/roadshow/#programm-session-4> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/roadshow/#programm-session-4> <http://schema.org/endTime> "17:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/roadshow/#programm-session-4> <http://schema.org/location> <https://dataweek.de/venue#Ratsplenarsaal> .
<https://2025.dataweek.de/roadshow/#programm-session-4> <http://schema.org/startTime> "15:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/roadshow/#programm-session-4> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/roadshow/#programm-session-5> <http://purl.org/dc/terms/date> "2025-06-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/roadshow/#programm-session-5> <http://purl.org/dc/terms/title> "AIAMOroadshow"@de .
<https://2025.dataweek.de/roadshow/#programm-session-5> <http://purl.org/dc/terms/title> "AIAMOroadshow"@en .
<https://2025.dataweek.de/roadshow/#programm-session-5> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/roadshow/#programm-session-5> <http://schema.org/endTime> "18:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/roadshow/#programm-session-5> <http://schema.org/location> <https://dataweek.de/venue#Ratsplenarsaal> .
<https://2025.dataweek.de/roadshow/#programm-session-5> <http://schema.org/startTime> "17:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/roadshow/#programm-session-5> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/roadshow/#programm-talk-3> <http://purl.org/dc/terms/date> "2025-06-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/roadshow/#programm-talk-3> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/roadshow/#programm-talk-7> <http://purl.org/dc/terms/date> "2025-06-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/roadshow/#programm-talk-7> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/roadshow/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-11/10:30> .
<https://2025.dataweek.de/roadshow/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-11/12:30> .
<https://2025.dataweek.de/roadshow/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-11/15:00> .
<https://2025.dataweek.de/roadshow/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-12/10:30> .
<https://2025.dataweek.de/roadshow/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-12/12:30> .
<https://2025.dataweek.de/roadshow/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-12/15:00> .
<https://2025.dataweek.de/roadshow/> <http://schema.org/subEvent> <https://2025.dataweek.de/roadshow/#programm-session-1> .
<https://2025.dataweek.de/roadshow/> <http://schema.org/subEvent> <https://2025.dataweek.de/roadshow/#programm-session-2> .
<https://2025.dataweek.de/roadshow/> <http://schema.org/subEvent> <https://2025.dataweek.de/roadshow/#programm-session-3> .
<https://2025.dataweek.de/roadshow/> <http://schema.org/subEvent> <https://2025.dataweek.de/roadshow/#programm-session-4> .
<https://2025.dataweek.de/roadshow/> <http://schema.org/subEvent> <https://2025.dataweek.de/roadshow/#programm-session-5> .
<https://2025.dataweek.de/roadshow/> <http://schema.org/subEvent> <https://2025.dataweek.de/roadshow/#programm-talk-3> .
<https://2025.dataweek.de/roadshow/> <http://schema.org/subEvent> <https://2025.dataweek.de/roadshow/#programm-talk-7> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-10> <http://purl.org/dc/terms/date> "2025-06-10"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-10> <http://purl.org/dc/terms/title> "Session 7"@de .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-10> <http://purl.org/dc/terms/title> "Session 7"@en .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-10> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-10> <http://schema.org/endTime> "17:40:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-10> <http://schema.org/location> <https://dataweek.de/venue#Festsaal> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-10> <http://schema.org/startTime> "16:10:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-11> <http://purl.org/dc/terms/date> "2025-06-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-11> <http://purl.org/dc/terms/title> "Session 8"@de .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-11> <http://purl.org/dc/terms/title> "Session 8"@en .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-11> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-11> <http://schema.org/endTime> "10:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-11> <http://schema.org/location> <https://dataweek.de/venue#Sitzungssaal> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-11> <http://schema.org/startTime> "09:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-12> <http://purl.org/dc/terms/date> "2025-06-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-12> <http://purl.org/dc/terms/title> "Session 9"@de .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-12> <http://purl.org/dc/terms/title> "Session 9"@en .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-12> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-12> <http://schema.org/endTime> "10:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-12> <http://schema.org/location> <https://dataweek.de/venue#Festsaal> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-12> <http://schema.org/startTime> "09:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-13> <http://purl.org/dc/terms/date> "2025-06-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-13> <http://purl.org/dc/terms/title> "Session 10"@de .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-13> <http://purl.org/dc/terms/title> "Session 10"@en .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-13> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-13> <http://schema.org/endTime> "12:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-13> <http://schema.org/location> <https://dataweek.de/venue#Sitzungssaal> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-13> <http://schema.org/startTime> "11:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-14> <http://purl.org/dc/terms/date> "2025-06-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-14> <http://purl.org/dc/terms/title> "Session 11"@de .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-14> <http://purl.org/dc/terms/title> "Session 11"@en .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-14> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-14> <http://schema.org/endTime> "12:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-14> <http://schema.org/location> <https://dataweek.de/venue#Festsaal> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-14> <http://schema.org/startTime> "11:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-15> <http://purl.org/dc/terms/date> "2025-06-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-15> <http://purl.org/dc/terms/title> "Session 12"@de .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-15> <http://purl.org/dc/terms/title> "Session 12"@en .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-15> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-15> <http://schema.org/endTime> "15:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-15> <http://schema.org/location> <https://dataweek.de/venue#Sitzungssaal> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-15> <http://schema.org/startTime> "13:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-16> <http://purl.org/dc/terms/date> "2025-06-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-16> <http://purl.org/dc/terms/title> "Session 13"@de .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-16> <http://purl.org/dc/terms/title> "Session 13"@en .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-16> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-16> <http://schema.org/endTime> "15:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-16> <http://schema.org/location> <https://dataweek.de/venue#Festsaal> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-16> <http://schema.org/startTime> "13:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-16> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-17> <http://purl.org/dc/terms/date> "2025-06-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-17> <http://purl.org/dc/terms/title> "Session 14"@de .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-17> <http://purl.org/dc/terms/title> "Session 14"@en .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-17> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-17> <http://schema.org/endTime> "17:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-17> <http://schema.org/location> <https://dataweek.de/venue#Sitzungssaal> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-17> <http://schema.org/startTime> "15:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-17> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-18> <http://purl.org/dc/terms/date> "2025-06-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-18> <http://purl.org/dc/terms/title> "Session 15"@de .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-18> <http://purl.org/dc/terms/title> "Session 15"@en .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-18> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-18> <http://schema.org/endTime> "17:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-18> <http://schema.org/location> <https://dataweek.de/venue#Festsaal> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-18> <http://schema.org/startTime> "15:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-1> <http://purl.org/dc/terms/date> "2025-06-10"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-1> <http://purl.org/dc/terms/title> "Eröffnung"@de .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-1> <http://purl.org/dc/terms/title> "Opening "@en .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-1> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-1> <http://schema.org/endTime> "11:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-1> <http://schema.org/location> <https://dataweek.de/venue#Sitzungssaal> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-1> <http://schema.org/startTime> "10:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-2> <http://purl.org/dc/terms/date> "2025-06-10"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-2> <http://purl.org/dc/terms/description> "Digital participation generates qualitative data in particular. Such data is collected by citizens and is therefore often closer to the reality of their own lives and provides information about the local quality of life. In this workshop, we will look at what information and data is generated in the context of digital participation and how citizen-generated data can be meaningfully processed and integrated into our urban database."@en .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-2> <http://purl.org/dc/terms/description> "Im Rahmen von digitaler Beteiligung werden insbesondere qualitative Daten erzeugt. Solche Daten werden von Bürger/innen erhoben, sind daher häufig näher an der eigenen Lebenswirklichkeit und geben Aufschluss über die lokale Lebensqualität. In diesem Workshop beschäftigen wir uns damit, welche Informationen und Daten im Rahmen von digitaler Beteiligung entstehen und wie bürgergenerierte Daten sinnvoll aufbereitet und in unsere städtische Datenbasis integriert werden können."@de .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-2> <http://purl.org/dc/terms/title> "Bürger- und nutzergenerierte Daten - Ein (ungehobener) Schatz für die nachhaltige Stadtentwicklung?"@de .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-2> <http://purl.org/dc/terms/title> "Citizen and user-generated data - an (unexploited) treasure for sustainable urban development?"@en .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-2> <http://schema.org/endTime> "14:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-2> <http://schema.org/location> <https://dataweek.de/venue#Room377> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-2> <http://schema.org/performer> <https://dataweek.de/#HeikeGebhardt> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-2> <http://schema.org/startTime> "12:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-3> <http://purl.org/dc/terms/date> "2025-06-10"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-3> <http://purl.org/dc/terms/title> "Session 2"@de .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-3> <http://purl.org/dc/terms/title> "Session 2"@en .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-3> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-3> <http://schema.org/endTime> "14:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-3> <http://schema.org/location> <https://dataweek.de/venue#Sitzungssaal> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-3> <http://schema.org/startTime> "12:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-3> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-4> <http://purl.org/dc/terms/date> "2025-06-10"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-4> <http://purl.org/dc/terms/title> "Session 3"@de .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-4> <http://purl.org/dc/terms/title> "Session 3"@en .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-4> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-4> <http://schema.org/endTime> "14:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-4> <http://schema.org/location> <https://dataweek.de/venue#Festsaal> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-4> <http://schema.org/startTime> "12:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-4> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-5> <http://purl.org/dc/terms/date> "2025-06-10"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-5> <http://purl.org/dc/terms/description> "In der Schulung erfahren sie wie sie Daten von Satelliten nutzen können, um den Bestand von Stadtgrün zu bewerten und die Entwicklung zu analysieren.Im Projekt UrbanGreenEye wurden mittels Senitel2 Datensätze Indikatoren zur Grünausstattung, Versiegelung und Oberflächentemperatur mittels KI Auswertungen erstellt. Die fertigen Indikatoren stehen allen Kommunen, aber auch interessierten Bürgerinnen und Bürgern auf der Homepage als interaktive Karte zur Verfügung. Auch die Nutzung von wms Dienst ist möglich. Die Teilnehmer des Workshops erfahren praxisnah wie die Informationen zum Beschirmungsgrad, Grünvolumen und Versiegelung interpretiert und Rasterdaten im GIS verwendet werden können. An Beispielen soll die Analysen zur Verschneidung, Defizit und Veränderungsanalysen gezeigt werden. Auch wollen wir einen kleinen Einblick in die KI Modelle geben, um die Datengrundlagen besser zu verstehen. Für die Teilnahme an dem Workshop sind GIS Vorkenntnisse von Vorteil, eigene GIS Anwendungen auf dem Rechner erleichtern die Nachverfolgung von Analysen."@de .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-5> <http://purl.org/dc/terms/description> "In the training course, they learn how they can use satellite data to assess the stock of urban greenery and analyse its development. In the UrbanGreenEye project, Senitel2 data sets were used to create indicators for greenery, sealing and surface temperature using AI analyses. The finished indicators are available to all local authorities and interested citizens as an interactive map on the homepage. It is also possible to use the wms service. The participants of the workshop will learn in a practical way how the information on the degree of shading, green volume and sealing can be interpreted and how raster data can be used in the GIS. Examples will be used to demonstrate the analyses for intersection, deficit and change analyses. We also want to give a brief insight into the AI models in order to better understand the data basis. Previous knowledge of GIS is an advantage for participation in the workshop; having your own GIS applications on your computer makes it easier to follow up analyses."@en .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-5> <http://purl.org/dc/terms/title> "Keeping an eye on urban greenery with satellite data"@en .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-5> <http://purl.org/dc/terms/title> "Mit Satellitendaten das Stadtgrün im Blick"@de .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-5> <http://schema.org/endTime> "16:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-5> <http://schema.org/location> <https://dataweek.de/venue#Room377> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-5> <http://schema.org/performer> <https://dataweek.de/#FranziskaLoeffler> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-5> <http://schema.org/startTime> "14:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-5> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-6> <http://purl.org/dc/terms/date> "2025-06-10"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-6> <http://purl.org/dc/terms/title> "Session 4"@de .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-6> <http://purl.org/dc/terms/title> "Session 4"@en .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-6> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-6> <http://schema.org/endTime> "16:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-6> <http://schema.org/location> <https://dataweek.de/venue#Sitzungssaal> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-6> <http://schema.org/startTime> "14:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-6> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-7> <http://purl.org/dc/terms/date> "2025-06-10"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-7> <http://purl.org/dc/terms/title> "Session 5"@de .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-7> <http://purl.org/dc/terms/title> "Session 5"@en .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-7> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-7> <http://schema.org/endTime> "16:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-7> <http://schema.org/location> <https://dataweek.de/venue#Festsaal> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-7> <http://schema.org/startTime> "14:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-7> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-8> <http://purl.org/dc/terms/date> "2025-06-10"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-8> <http://purl.org/dc/terms/description> "In der Schulung erfahren sie wie sie Daten von Satelliten nutzen können, um den Bestand von Stadtgrün zu bewerten und die Entwicklung zu analysieren.Im Projekt UrbanGreenEye wurden mittels Senitel2 Datensätze Indikatoren zur Grünausstattung, Versiegelung und Oberflächentemperatur mittels KI Auswertungen erstellt. Die fertigen Indikatoren stehen allen Kommunen, aber auch interessierten Bürgerinnen und Bürgern auf der Homepage als interaktive Karte zur Verfügung. Auch die Nutzung von wms Dienst ist möglich. Die Teilnehmer des Workshops erfahren praxisnah wie die Informationen zum Beschirmungsgrad, Grünvolumen und Versiegelung interpretiert und Rasterdaten im GIS verwendet werden können. An Beispielen soll die Analysen zur Verschneidung, Defizit und Veränderungsanalysen gezeigt werden. Auch wollen wir einen kleinen Einblick in die KI Modelle geben, um die Datengrundlagen besser zu verstehen. Für die Teilnahme an dem Workshop sind GIS Vorkenntnisse von Vorteil, eigene GIS Anwendungen auf dem Rechner erleichtern die Nachverfolgung von Analysen."@de .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-8> <http://purl.org/dc/terms/description> "In the training course, they learn how they can use satellite data to assess the stock of urban greenery and analyse its development. In the UrbanGreenEye project, Senitel2 data sets were used to create indicators for greenery, sealing and surface temperature using AI analyses. The finished indicators are available to all local authorities and interested citizens as an interactive map on the homepage. It is also possible to use the wms service. The participants of the workshop will learn in a practical way how the information on the degree of shading, green volume and sealing can be interpreted and how raster data can be used in the GIS. Examples will be used to demonstrate the analyses for intersection, deficit and change analyses. We also want to give a brief insight into the AI models in order to better understand the data basis. Previous knowledge of GIS is an advantage for participation in the workshop; having your own GIS applications on your computer makes it easier to follow up analyses."@en .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-8> <http://purl.org/dc/terms/title> "Keeping an eye on urban greenery with satellite data"@en .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-8> <http://purl.org/dc/terms/title> "Mit Satellitendaten das Stadtgrün im Blick"@de .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-8> <http://schema.org/endTime> "17:40:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-8> <http://schema.org/location> <https://dataweek.de/venue#Room377> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-8> <http://schema.org/performer> <https://dataweek.de/#FranziskaLoeffler> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-8> <http://schema.org/startTime> "16:10:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-8> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-9> <http://purl.org/dc/terms/date> "2025-06-10"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-9> <http://purl.org/dc/terms/title> "Session 6"@de .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-9> <http://purl.org/dc/terms/title> "Session 6"@en .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-9> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-9> <http://schema.org/endTime> "17:40:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-9> <http://schema.org/location> <https://dataweek.de/venue#Sitzungssaal> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-9> <http://schema.org/startTime> "16:10:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-session-9> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/stadt-leipzig/#programm-talk-3> <http://purl.org/dc/terms/date> "2025-06-10"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/stadt-leipzig/#programm-talk-3> <http://purl.org/dc/terms/title> "Eröffnungskeynote zur Data Week 2025"@de .
<https://2025.dataweek.de/stadt-leipzig/#programm-talk-3> <http://purl.org/dc/terms/title> "Opening keynote for Data Week 2025"@en .
<https://2025.dataweek.de/stadt-leipzig/#programm-talk-3> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/stadt-leipzig/#programm-talk-3> <http://schema.org/endTime> "11:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-talk-3> <http://schema.org/location> <https://dataweek.de/venue#Sitzungssaal> .
<https://2025.dataweek.de/stadt-leipzig/#programm-talk-3> <http://schema.org/performer> <https://dataweek.de/#MiguelD.Mahecha> .
<https://2025.dataweek.de/stadt-leipzig/#programm-talk-3> <http://schema.org/startTime> "11:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/stadt-leipzig/#programm-talk-3> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/stadt-leipzig/#programm-talk-3> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://dataweek.de/#Keynote> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-10/09:15> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-10/11:30> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-10/14:00> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-10/16:00> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-10/17:45> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-11/08:30> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-11/10:30> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-11/12:30> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-11/15:00> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-11/17:10> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-11/17:40> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/stadt-leipzig/#programm-session-10> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/stadt-leipzig/#programm-session-11> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/stadt-leipzig/#programm-session-12> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/stadt-leipzig/#programm-session-13> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/stadt-leipzig/#programm-session-14> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/stadt-leipzig/#programm-session-15> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/stadt-leipzig/#programm-session-16> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/stadt-leipzig/#programm-session-17> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/stadt-leipzig/#programm-session-18> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/stadt-leipzig/#programm-session-1> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/stadt-leipzig/#programm-session-2> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/stadt-leipzig/#programm-session-3> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/stadt-leipzig/#programm-session-4> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/stadt-leipzig/#programm-session-5> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/stadt-leipzig/#programm-session-6> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/stadt-leipzig/#programm-session-7> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/stadt-leipzig/#programm-session-8> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/stadt-leipzig/#programm-session-9> .
<https://2025.dataweek.de/stadt-leipzig/> <http://schema.org/subEvent> <https://2025.dataweek.de/stadt-leipzig/#programm-talk-3> .
<https://2025.dataweek.de/trainings/#programm-session-1> <http://purl.org/dc/terms/date> "2025-06-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/trainings/#programm-session-1> <http://purl.org/dc/terms/title> "Training (durchgeführt von ScaDS.AI)"@de .
<https://2025.dataweek.de/trainings/#programm-session-1> <http://purl.org/dc/terms/title> "Training (organized by ScaDS.AI)"@en .
<https://2025.dataweek.de/trainings/#programm-session-1> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/trainings/#programm-session-1> <http://schema.org/endTime> "12:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/trainings/#programm-session-1> <http://schema.org/location> <https://dataweek.de/venue#Room260> .
<https://2025.dataweek.de/trainings/#programm-session-1> <http://schema.org/startTime> "11:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/trainings/#programm-session-1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/trainings/#programm-session-2> <http://purl.org/dc/terms/date> "2025-06-13"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/trainings/#programm-session-2> <http://purl.org/dc/terms/description> "Im Rahmen der Session werden alle Teilnehmer den brandneuen eccenca.my Service nutzen, um ihre eigene eccenca Corporate Memory Instanz zu erstellen, lernen, wie man Knowledge Graphs aufbaut und visualisiert und erhalten weiteres Trainingsmaterial zum Selbststudium zum Thema."@de .
<https://2025.dataweek.de/trainings/#programm-session-2> <http://purl.org/dc/terms/description> "Within the session, all participants will use the brand new eccenca.my service to create their own eccenca Corporate Memory instance, learn how to build and visualize Knowledge Graphs as well as get further training material for self-learning on the topic.\n"@en .
<https://2025.dataweek.de/trainings/#programm-session-2> <http://purl.org/dc/terms/title> "Building Knowledge Graphs with eccenca Corporate Memory"@de .
<https://2025.dataweek.de/trainings/#programm-session-2> <http://purl.org/dc/terms/title> "Building Knowledge Graphs with eccenca Corporate Memory"@en .
<https://2025.dataweek.de/trainings/#programm-session-2> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/eng> .
<https://2025.dataweek.de/trainings/#programm-session-2> <http://schema.org/endTime> "10:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/trainings/#programm-session-2> <http://schema.org/location> <https://dataweek.de/venue#Room259> .
<https://2025.dataweek.de/trainings/#programm-session-2> <http://schema.org/performer> <https://dataweek.de/#MagnusKnuth> .
<https://2025.dataweek.de/trainings/#programm-session-2> <http://schema.org/startTime> "09:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/trainings/#programm-session-2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/trainings/#programm-talk-11> <http://purl.org/dc/terms/date> "2025-06-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/trainings/#programm-talk-11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/trainings/#programm-talk-18> <http://purl.org/dc/terms/date> "2025-06-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/trainings/#programm-talk-18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/trainings/#programm-talk-2> <http://purl.org/dc/terms/date> "2025-06-10"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/trainings/#programm-talk-2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/trainings/#programm-talk-4> <http://purl.org/dc/terms/date> "2025-06-10"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/trainings/#programm-talk-4> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/trainings/#programm-talk-9> <http://purl.org/dc/terms/date> "2025-06-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/trainings/#programm-talk-9> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/trainings/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-10/11:30> .
<https://2025.dataweek.de/trainings/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-10/14:00> .
<https://2025.dataweek.de/trainings/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-10/16:00> .
<https://2025.dataweek.de/trainings/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-11/10:30> .
<https://2025.dataweek.de/trainings/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-11/12:30> .
<https://2025.dataweek.de/trainings/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-11/15:00> .
<https://2025.dataweek.de/trainings/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-12/10:30> .
<https://2025.dataweek.de/trainings/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-12/12:30> .
<https://2025.dataweek.de/trainings/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-12/15:00> .
<https://2025.dataweek.de/trainings/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-13/10:30> .
<https://2025.dataweek.de/trainings/> <http://schema.org/subEvent> <https://2025.dataweek.de/break/2025-06-13/12:30> .
<https://2025.dataweek.de/trainings/> <http://schema.org/subEvent> <https://2025.dataweek.de/trainings/#programm-session-1> .
<https://2025.dataweek.de/trainings/> <http://schema.org/subEvent> <https://2025.dataweek.de/trainings/#programm-session-2> .
<https://2025.dataweek.de/trainings/> <http://schema.org/subEvent> <https://2025.dataweek.de/trainings/#programm-talk-11> .
<https://2025.dataweek.de/trainings/> <http://schema.org/subEvent> <https://2025.dataweek.de/trainings/#programm-talk-18> .
<https://2025.dataweek.de/trainings/> <http://schema.org/subEvent> <https://2025.dataweek.de/trainings/#programm-talk-2> .
<https://2025.dataweek.de/trainings/> <http://schema.org/subEvent> <https://2025.dataweek.de/trainings/#programm-talk-4> .
<https://2025.dataweek.de/trainings/> <http://schema.org/subEvent> <https://2025.dataweek.de/trainings/#programm-talk-9> .
<https://2025.dataweek.de/workshops/#programm-session-10> <http://purl.org/dc/terms/date> "2025-06-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/workshops/#programm-session-10> <http://purl.org/dc/terms/description> "Der Workshop „KI-Herausforderungen in Verwaltung, Wissenschaft und Industrie“ beleuchtet die aktuellen und zukünftigen Herausforderungen und Möglichkeiten der Künstlichen Intelligenz (KI) in verschiedenen Sektoren. Wir werden praktische Anwendungsfälle von RAG-Systemen, erfolgreiche Strategien des Promptings sowie rechtliche Rahmenbedingungen und ethische Überlegungen diskutieren. Der halbtägige Workshop bietet interaktive Diskussionen und praktische Übungen, durchgeführt von Expert:innen der GISA GmbH. Nutzen Sie die Gelegenheit, sich mit Fachleuten zu vernetzen und wertvolle Impulse für die Nutzung von KI in Ihrem Bereich zu erhalten. Seien Sie dabei und gestalten Sie die Zukunft der KI mit! "@de .
<https://2025.dataweek.de/workshops/#programm-session-10> <http://purl.org/dc/terms/description> "The workshop ‘AI challenges in administration, science and industry’ will shed light on the current and future challenges and opportunities of artificial intelligence (AI) in various sectors. We will discuss practical use cases of RAG systems, successful strategies of prompting as well as legal frameworks and ethical considerations. The half-day workshop will feature interactive discussions and hands-on exercises led by experts from GISA GmbH. Take the opportunity to network with experts and gain valuable impulses for the use of AI in your field. Join us and help shape the future of AI!"@en .
<https://2025.dataweek.de/workshops/#programm-session-10> <http://purl.org/dc/terms/title> "AI challenges in administration, science and industry (organized by GISA GmbH)"@en .
<https://2025.dataweek.de/workshops/#programm-session-10> <http://purl.org/dc/terms/title> "KI-Herausforderungen in Verwaltung, Wissenschaft und Industrie (durchgeführt von GISA GmbH)"@de .
<https://2025.dataweek.de/workshops/#programm-session-10> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/workshops/#programm-session-10> <http://schema.org/endTime> "17:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/workshops/#programm-session-10> <http://schema.org/location> <https://dataweek.de/venue#Room369> .
<https://2025.dataweek.de/workshops/#programm-session-10> <http://schema.org/startTime> "15:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/workshops/#programm-session-10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/workshops/#programm-session-11> <http://purl.org/dc/terms/date> "2025-06-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/workshops/#programm-session-11> <http://purl.org/dc/terms/description> "How can we successfully involve children and young people in decision-making processes and what role can digital tools play in this? In this workshop, we will bring together local authorities, independent organisations and other stakeholders in child and youth participation and explore the potential that digital methods and processes can offer. We will share best practice examples with other local authorities. We will summarise which participation formats and structures already exist and collect ideas for their (digital) further development."@en .
<https://2025.dataweek.de/workshops/#programm-session-11> <http://purl.org/dc/terms/description> "Wie können wir Kinder und Jugendliche erfolgreich in Entscheidungsprozesse einbinden und welche Rolle können digitale Tools dabei spielen? In diesem Workshop bringen wir Kommunen, freie Träger und weitere Akteure der Kinder- und Jugendbeteiligung zusammen und ergründen, welche Potenziale digitale Methoden und Prozesse bieten können. Im gemeinsamen Austausch mit anderen Kommunen teilen wir Best-Practice-Beispiele. Wir tragen zusammen, welche Beteiligungsformate und -strukturen bereits bestehen und sammeln Ideen für deren (digitale) Weiterentwicklung."@de .
<https://2025.dataweek.de/workshops/#programm-session-11> <http://purl.org/dc/terms/title> "Digital gestützte Kinder- und Jugendbeteiligung – Potenziale, Erfahrungen und Zukunftsideen"@de .
<https://2025.dataweek.de/workshops/#programm-session-11> <http://purl.org/dc/terms/title> "Digitally supported child and youth participation - potentials, experiences and ideas for the future"@en .
<https://2025.dataweek.de/workshops/#programm-session-11> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/workshops/#programm-session-11> <http://schema.org/endTime> "10:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/workshops/#programm-session-11> <http://schema.org/location> <https://dataweek.de/venue#Room495> .
<https://2025.dataweek.de/workshops/#programm-session-11> <http://schema.org/performer> <https://dataweek.de/#JessicaBraun> .
<https://2025.dataweek.de/workshops/#programm-session-11> <http://schema.org/startTime> "09:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/workshops/#programm-session-11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/workshops/#programm-session-12> <http://purl.org/dc/terms/date> "2025-06-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/workshops/#programm-session-12> <http://purl.org/dc/terms/title> "Goblin Meeting"@de .
<https://2025.dataweek.de/workshops/#programm-session-12> <http://purl.org/dc/terms/title> "Goblin Meeting"@en .
<https://2025.dataweek.de/workshops/#programm-session-12> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/eng> .
<https://2025.dataweek.de/workshops/#programm-session-12> <http://schema.org/endTime> "10:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/workshops/#programm-session-12> <http://schema.org/location> <https://dataweek.de/venue#Room377> .
<https://2025.dataweek.de/workshops/#programm-session-12> <http://schema.org/performer> <http://aksw.org/MilanDojchinovski> .
<https://2025.dataweek.de/workshops/#programm-session-12> <http://schema.org/startTime> "09:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/workshops/#programm-session-12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/workshops/#programm-session-13> <http://purl.org/dc/terms/date> "2025-06-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/workshops/#programm-session-13> <http://purl.org/dc/terms/description> "How can we successfully involve children and young people in decision-making processes and what role can digital tools play in this? In this workshop, we will bring together local authorities, independent organisations and other stakeholders in child and youth participation and explore the potential that digital methods and processes can offer. We will share best practice examples with other local authorities. We will summarise which participation formats and structures already exist and collect ideas for their (digital) further development."@en .
<https://2025.dataweek.de/workshops/#programm-session-13> <http://purl.org/dc/terms/description> "Wie können wir Kinder und Jugendliche erfolgreich in Entscheidungsprozesse einbinden und welche Rolle können digitale Tools dabei spielen? In diesem Workshop bringen wir Kommunen, freie Träger und weitere Akteure der Kinder- und Jugendbeteiligung zusammen und ergründen, welche Potenziale digitale Methoden und Prozesse bieten können. Im gemeinsamen Austausch mit anderen Kommunen teilen wir Best-Practice-Beispiele. Wir tragen zusammen, welche Beteiligungsformate und -strukturen bereits bestehen und sammeln Ideen für deren (digitale) Weiterentwicklung."@de .
<https://2025.dataweek.de/workshops/#programm-session-13> <http://purl.org/dc/terms/title> "Digital gestützte Kinder- und Jugendbeteiligung – Potenziale, Erfahrungen und Zukunftsideen"@de .
<https://2025.dataweek.de/workshops/#programm-session-13> <http://purl.org/dc/terms/title> "Digitally supported child and youth participation - potentials, experiences and ideas for the future"@en .
<https://2025.dataweek.de/workshops/#programm-session-13> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/workshops/#programm-session-13> <http://schema.org/endTime> "12:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/workshops/#programm-session-13> <http://schema.org/location> <https://dataweek.de/venue#Room495> .
<https://2025.dataweek.de/workshops/#programm-session-13> <http://schema.org/performer> <https://dataweek.de/#JessicaBraun> .
<https://2025.dataweek.de/workshops/#programm-session-13> <http://schema.org/startTime> "11:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/workshops/#programm-session-13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/workshops/#programm-session-14> <http://purl.org/dc/terms/date> "2025-06-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/workshops/#programm-session-14> <http://purl.org/dc/terms/title> "Goblin Meeting"@de .
<https://2025.dataweek.de/workshops/#programm-session-14> <http://purl.org/dc/terms/title> "Goblin Meeting"@en .
<https://2025.dataweek.de/workshops/#programm-session-14> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/eng> .
<https://2025.dataweek.de/workshops/#programm-session-14> <http://schema.org/endTime> "12:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/workshops/#programm-session-14> <http://schema.org/location> <https://dataweek.de/venue#Room377> .
<https://2025.dataweek.de/workshops/#programm-session-14> <http://schema.org/performer> <http://aksw.org/MilanDojchinovski> .
<https://2025.dataweek.de/workshops/#programm-session-14> <http://schema.org/startTime> "11:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/workshops/#programm-session-14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/workshops/#programm-session-15> <http://purl.org/dc/terms/date> "2025-06-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/workshops/#programm-session-15> <http://purl.org/dc/terms/description> "Die Modernisierung öffentlicher Register ist eine der größten Herausforderungen in der Verwaltung und erfordert innovative technische Lösungen zur besseren Nutzung und Integration bestehender Daten. Im geplanten Workshop werden die Erkenntnisse und Ergebnisse einer von der FH Meißenund dem InfAI durchgeführten Studie vorgestellt, die das Potenzial von Wissensgraphenzur Optimierung der Interoperabilität von Registerdaten untersucht. Des Weiteren verfolgt er das Ziel, konkrete, praxisorientierte Anwendungsfälle aus ganz Deutschlandund in der Verwaltung bereits bewährte Projekte zu präsentieren."@de .
<https://2025.dataweek.de/workshops/#programm-session-15> <http://purl.org/dc/terms/description> "The modernisation of public registers is one of the greatest challenges in administration and requires innovative technical solutions to improve the use and integration of existing data. The planned workshop will present the findings and results of a study conducted by the Meissen University of Applied Sciences and InfAI, which examines the potential of knowledge graphs to optimise the interoperability of register data. Furthermore, the aim is to present concrete, practice-orientated use cases from all over Germany and projects that have already been tried and tested in the administration."@en .
<https://2025.dataweek.de/workshops/#programm-session-15> <http://purl.org/dc/terms/title> "Knowledge graphs and semantic data technologies in register modernisation - potentials, barriers and use cases (organized by InfAI)"@en .
<https://2025.dataweek.de/workshops/#programm-session-15> <http://purl.org/dc/terms/title> "Wissensgraphen und semantische Datentechnologien in der Registermodernisierung – Potenziale, Barrieren und Anwendungsfälle (durchgeführt von InfAI)"@de .
<https://2025.dataweek.de/workshops/#programm-session-15> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/workshops/#programm-session-15> <http://schema.org/endTime> "12:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/workshops/#programm-session-15> <http://schema.org/location> <https://dataweek.de/venue#Room369> .
<https://2025.dataweek.de/workshops/#programm-session-15> <http://schema.org/performer> <https://dataweek.de/#DanielGerber> .
<https://2025.dataweek.de/workshops/#programm-session-15> <http://schema.org/startTime> "11:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/workshops/#programm-session-15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/workshops/#programm-session-16> <http://purl.org/dc/terms/date> "2025-06-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/workshops/#programm-session-16> <http://purl.org/dc/terms/title> "Goblin Meeting"@de .
<https://2025.dataweek.de/workshops/#programm-session-16> <http://purl.org/dc/terms/title> "Goblin Meeting"@en .
<https://2025.dataweek.de/workshops/#programm-session-16> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/eng> .
<https://2025.dataweek.de/workshops/#programm-session-16> <http://schema.org/endTime> "15:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/workshops/#programm-session-16> <http://schema.org/location> <https://dataweek.de/venue#Room377> .
<https://2025.dataweek.de/workshops/#programm-session-16> <http://schema.org/performer> <http://aksw.org/MilanDojchinovski> .
<https://2025.dataweek.de/workshops/#programm-session-16> <http://schema.org/startTime> "13:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/workshops/#programm-session-16> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/workshops/#programm-session-17> <http://purl.org/dc/terms/date> "2025-06-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/workshops/#programm-session-17> <http://purl.org/dc/terms/description> "Die Modernisierung öffentlicher Register ist eine der größten Herausforderungen in der Verwaltung und erfordert innovative technische Lösungen zur besseren Nutzung und Integration bestehender Daten. Im geplanten Workshop werden die Erkenntnisse und Ergebnisse einer von der FH Meißenund dem InfAI durchgeführten Studie vorgestellt, die das Potenzial von Wissensgraphenzur Optimierung der Interoperabilität von Registerdaten untersucht. Des Weiteren verfolgt er das Ziel, konkrete, praxisorientierte Anwendungsfälle aus ganz Deutschlandund in der Verwaltung bereits bewährte Projekte zu präsentieren."@de .
<https://2025.dataweek.de/workshops/#programm-session-17> <http://purl.org/dc/terms/description> "The modernisation of public registers is one of the greatest challenges in administration and requires innovative technical solutions to improve the use and integration of existing data. The planned workshop will present the findings and results of a study conducted by the Meissen University of Applied Sciences and InfAI, which examines the potential of knowledge graphs to optimise the interoperability of register data. Furthermore, the aim is to present concrete, practice-orientated use cases from all over Germany and projects that have already been tried and tested in the administration."@en .
<https://2025.dataweek.de/workshops/#programm-session-17> <http://purl.org/dc/terms/title> "Knowledge graphs and semantic data technologies in register modernisation - potentials, barriers and use cases (organized by InfAI)"@en .
<https://2025.dataweek.de/workshops/#programm-session-17> <http://purl.org/dc/terms/title> "Wissensgraphen und semantische Datentechnologien in der Registermodernisierung – Potenziale, Barrieren und Anwendungsfälle (durchgeführt von InfAI)"@de .
<https://2025.dataweek.de/workshops/#programm-session-17> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/workshops/#programm-session-17> <http://schema.org/endTime> "15:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/workshops/#programm-session-17> <http://schema.org/location> <https://dataweek.de/venue#Room369> .
<https://2025.dataweek.de/workshops/#programm-session-17> <http://schema.org/performer> <https://dataweek.de/#DanielGerber> .
<https://2025.dataweek.de/workshops/#programm-session-17> <http://schema.org/startTime> "13:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/workshops/#programm-session-17> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/workshops/#programm-session-18> <http://purl.org/dc/terms/date> "2025-06-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/workshops/#programm-session-18> <http://purl.org/dc/terms/title> "Goblin Meeting"@de .
<https://2025.dataweek.de/workshops/#programm-session-18> <http://purl.org/dc/terms/title> "Goblin Meeting"@en .
<https://2025.dataweek.de/workshops/#programm-session-18> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/eng> .
<https://2025.dataweek.de/workshops/#programm-session-18> <http://schema.org/endTime> "17:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/workshops/#programm-session-18> <http://schema.org/location> <https://dataweek.de/venue#Room377> .
<https://2025.dataweek.de/workshops/#programm-session-18> <http://schema.org/performer> <http://aksw.org/MilanDojchinovski> .
<https://2025.dataweek.de/workshops/#programm-session-18> <http://schema.org/startTime> "15:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/workshops/#programm-session-18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/workshops/#programm-session-19> <http://purl.org/dc/terms/date> "2025-06-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/workshops/#programm-session-19> <http://purl.org/dc/terms/description> "Die Modernisierung öffentlicher Register ist eine der größten Herausforderungen in der Verwaltung und erfordert innovative technische Lösungen zur besseren Nutzung und Integration bestehender Daten. Im geplanten Workshop werden die Erkenntnisse und Ergebnisse einer von der FH Meißenund dem InfAI durchgeführten Studie vorgestellt, die das Potenzial von Wissensgraphenzur Optimierung der Interoperabilität von Registerdaten untersucht. Des Weiteren verfolgt er das Ziel, konkrete, praxisorientierte Anwendungsfälle aus ganz Deutschlandund in der Verwaltung bereits bewährte Projekte zu präsentieren."@de .
<https://2025.dataweek.de/workshops/#programm-session-19> <http://purl.org/dc/terms/description> "The modernisation of public registers is one of the greatest challenges in administration and requires innovative technical solutions to improve the use and integration of existing data. The planned workshop will present the findings and results of a study conducted by the Meissen University of Applied Sciences and InfAI, which examines the potential of knowledge graphs to optimise the interoperability of register data. Furthermore, the aim is to present concrete, practice-orientated use cases from all over Germany and projects that have already been tried and tested in the administration."@en .
<https://2025.dataweek.de/workshops/#programm-session-19> <http://purl.org/dc/terms/title> "Knowledge graphs and semantic data technologies in register modernisation - potentials, barriers and use cases (organized by InfAI)"@en .
<https://2025.dataweek.de/workshops/#programm-session-19> <http://purl.org/dc/terms/title> "Wissensgraphen und semantische Datentechnologien in der Registermodernisierung – Potenziale, Barrieren und Anwendungsfälle (durchgeführt von InfAI)"@de .
<https://2025.dataweek.de/workshops/#programm-session-19> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/workshops/#programm-session-19> <http://schema.org/endTime> "17:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/workshops/#programm-session-19> <http://schema.org/location> <https://dataweek.de/venue#Room369> .
<https://2025.dataweek.de/workshops/#programm-session-19> <http://schema.org/performer> <https://dataweek.de/#DanielGerber> .
<https://2025.dataweek.de/workshops/#programm-session-19> <http://schema.org/startTime> "15:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/workshops/#programm-session-19> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/workshops/#programm-session-1> <http://purl.org/dc/terms/date> "2025-06-10"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/workshops/#programm-session-1> <http://purl.org/dc/terms/description> "Anhand ausgewählter KI-Produkte und Datenplattformen geben wir einen praxisnahen Einblick, wie KI erfolgreich in sicherheitskritische Bereiche implementieren werden kann. Dabei richtet sich unser Angebot an Entscheidungsträger:innen, Forscher:innen und IT-Fachleute aus Verwaltung und Industrie, die sich für sichere und datenschutzkonforme Lösungen interessieren. Die Teilnehmenden bekommen die Möglichkeit, eigene Anwendungsfälle zu diskutieren und unsere Produkte direkt auszuprobieren."@de .
<https://2025.dataweek.de/workshops/#programm-session-1> <http://purl.org/dc/terms/description> "Using selected AI products and data platforms, we provide a practical insight into how AI can be successfully implemented in security-critical areas. Our programme is aimed at decision-makers, researchers and IT specialists from government and industry who are interested in secure and data protection-compliant solutions. Participants will have the opportunity to discuss their own use cases and try out our products directly."@en .
<https://2025.dataweek.de/workshops/#programm-session-1> <http://purl.org/dc/terms/title> "AI for critical infrastructure: open source solutions for administration and industry (carried out by German Biomass Research Centre)"@en .
<https://2025.dataweek.de/workshops/#programm-session-1> <http://purl.org/dc/terms/title> "KI für kritische Infrastruktur: Open-Source-Lösungen für Verwaltung und Industrie (durchgeführt von Deutsches Biomasseforschungszentrum) "@de .
<https://2025.dataweek.de/workshops/#programm-session-1> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/workshops/#programm-session-1> <http://schema.org/endTime> "16:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/workshops/#programm-session-1> <http://schema.org/location> <https://dataweek.de/venue#Room270> .
<https://2025.dataweek.de/workshops/#programm-session-1> <http://schema.org/performer> <https://dataweek.de/#KimSchmidt> .
<https://2025.dataweek.de/workshops/#programm-session-1> <http://schema.org/performer> <https://dataweek.de/#MarcoSelig> .
<https://2025.dataweek.de/workshops/#programm-session-1> <http://schema.org/startTime> "14:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/workshops/#programm-session-1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/workshops/#programm-session-20> <http://purl.org/dc/terms/date> "2025-06-13"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/workshops/#programm-session-20> <http://purl.org/dc/terms/description> "As part of Data Week Leipzig 2025, Kehl University of Applied Sciences is offering an interactive workshop to develop the skills of future administrative staff. The aim is to use identified skills and methods to optimally prepare administrative staff for the challenges of digital change. The focus is on topics such as AI, data management, digital twins and smart cities. Together with participants from administration, science and business, we want to develop practical skills profiles and approaches for teaching digital skills that are crucial for the future of municipal administration."@en .
<https://2025.dataweek.de/workshops/#programm-session-20> <http://purl.org/dc/terms/description> "Im Rahmen der Data Week Leipzig 2025 bietet die Hochschule Kehl einen interaktiven Workshop zur Kompetenzentwicklung der zukünftigen Verwaltungsmitarbeitenden an. Ziel ist es, mittels identifizierter Kompetenzen und Methodiken Verwaltungsmitarbeitende optimal auf die Herausforderungen des digitalen Wandels vorzubereiten. Im Fokus stehen Themen wie KI, Datenmanagement, digitale Zwillinge und Smart Cities. Gemeinsam mit Teilnehmenden aus Verwaltung, Wissenschaft und Wirtschaft wollen wir praxisnahe Kompetenzprofile und Ansätze zur Vermittlung digitaler Fähigkeiten, die für die Zukunft der kommunalen Verwaltung entscheidend sind, erarbeiten."@de .
<https://2025.dataweek.de/workshops/#programm-session-20> <http://purl.org/dc/terms/title> "Kompetenzen für den digitalen Wandel in der Verwaltung (durchgeführt von der Hochschule Kehl)"@de .
<https://2025.dataweek.de/workshops/#programm-session-20> <http://purl.org/dc/terms/title> "Skills for digital change in administration (organized by Hochschule Kehl)"@en .
<https://2025.dataweek.de/workshops/#programm-session-20> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/workshops/#programm-session-20> <http://schema.org/endTime> "10:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/workshops/#programm-session-20> <http://schema.org/location> <https://dataweek.de/venue#Room360> .
<https://2025.dataweek.de/workshops/#programm-session-20> <http://schema.org/performer> <https://dataweek.de/#HannesKoeninger> .
<https://2025.dataweek.de/workshops/#programm-session-20> <http://schema.org/performer> <https://dataweek.de/#LisaBrunzel> .
<https://2025.dataweek.de/workshops/#programm-session-20> <http://schema.org/startTime> "09:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/workshops/#programm-session-20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/workshops/#programm-session-21> <http://purl.org/dc/terms/date> "2025-06-13"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/workshops/#programm-session-21> <http://purl.org/dc/terms/description> "Transform your organization with AI! Benefit from the proven approaches of a full IT provider with over 2,500 employees and a turnover of more than €1 billion in 2024. With our practical experience from numerous AI projects in Germany and Austria, we will show you how to build an AI-driven corporate culture in our hands-on workshop. Develop YOUR AI strategy, identify relevant use cases and learn how to anchor AI skills throughout your entire customer journey. This workshop is ideal for managers, companies and agile teams who want to establish AI as an integral part of their strategy. Take the first step into your AI future!"@en .
<https://2025.dataweek.de/workshops/#programm-session-21> <http://purl.org/dc/terms/description> "Verwandeln Sie Ihre Organisation durch KI! Profitieren Sie von den bewährten Ansätzen eines Full-IT Providers mit über 2500 Mitarbeitenden und mehr als 1 Mrd. € Umsatz in 2024. Mit unserer Praxiserfahrung aus zahlreichen KI-Projekten in Deutschland und Österreich zeigen wir Ihnen in unserem praxisorientierten Workshop, wie Sie eine KI-getriebene Unternehmenskultur aufbauen. Entwickeln Sie IHRE KI-Strategie, identifizieren Sie relevante Use Cases und lernen Sie, wie Sie KI-Kompetenzen in Ihrer gesamten Customer Journey verankern. Dieser Workshop ist ideal für Führungskräfte, Unternehmen und agile Teams, die KI als festen Bestandteil ihrer Strategie etablieren möchten. Machen Sie den ersten Schritt in Ihre KI-Zukunft!"@de .
<https://2025.dataweek.de/workshops/#programm-session-21> <http://purl.org/dc/terms/title> "AI-First: How organizations are mastering the path to an AI-driven corporate culture"@en .
<https://2025.dataweek.de/workshops/#programm-session-21> <http://purl.org/dc/terms/title> "AI-First: Wie Organisationen den Weg zur KI-getriebenen Unternehmenskultur meistern"@de .
<https://2025.dataweek.de/workshops/#programm-session-21> <http://schema.org/availableLanguage> <http://lexvo.org/id/iso639-3/deu> .
<https://2025.dataweek.de/workshops/#programm-session-21> <http://schema.org/endTime> "10:30:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/workshops/#programm-session-21> <http://schema.org/location> <https://dataweek.de/venue#Room260> .
<https://2025.dataweek.de/workshops/#programm-session-21> <http://schema.org/performer> <https://dataweek.de/#MarcusBinner> .
<https://2025.dataweek.de/workshops/#programm-session-21> <http://schema.org/performer> <https://dataweek.de/#StefanHennig> .
<https://2025.dataweek.de/workshops/#programm-session-21> <http://schema.org/startTime> "09:00:00.000"^^<http://www.w3.org/2001/XMLSchema#time> .
<https://2025.dataweek.de/workshops/#programm-session-21> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Event> .
<https://2025.dataweek.de/workshops/#programm-session-22> <http://purl.org/dc/terms/date> "2025-06-13"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://2025.dataweek.de/workshops/#programm-session-22> <http://purl.org/dc/terms/description> "Der Workshop bietet eine praxisorientierte Gelegenheit, die Herausforderungen und Chancen der digitalen Transformation im Bauwesen zu erkunden. Nach einer Einführung in die Grundlagen der „digitalen Planung“ analysieren die Teilnehmenden in rollenbasierter Gruppenarbeit das Zusammenspiel von traditionellen und innovativen Arbeitsweisen. Gemeinsam werden Lösungsansätze erarbeitet, die darauf abzielen, die Zusammenarbeit der verschiedenen Akteure in Transformationsprozessen effektiver zu gestalten. Der Workshop richtet sich an Fachleute aus dem Bauwesen und der Stadtplanung, die sich mit Digitalisierung befassen, steht jedoch auch Interessierten aus anderen Bereichen offen. Optional können die Teilnehmenden ein eigenes Endgerät nutzen, um browserbasierte Tools wie das Online-Whiteboard und den Modellviewer einzusetzen."@de .
<https://2025.dataweek.de/workshops/#programm-session-22> <http://purl.org/dc/terms/description> "The workshop offers a practice-orientated opportunity to explore the challenges and opportunities of digital transformation in the construction industry. After an introduction to the basics of ‘digital planning’, participants will analyse the interplay between traditional and innovative working methods in role-based group work. Together, they will develop solutions aimed at making the collaboration between the various players in transformation processes more effective.\n \nThe workshop is aimed at experts from the construction industry and urban planning who deal with digitalisation, but is also open to interested parties from other areas. Participants can optionally use their own end device to utilise browser-based tools such as the online whiteboard and model viewer."@en .