-
Notifications
You must be signed in to change notification settings - Fork 1
/
Queries.txt
1140 lines (994 loc) · 40.3 KB
/
Queries.txt
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
Ein paar Beispiel-Anfragen:
PREFIX ldo: <http://leipzig-data.de/Data/Ort/>
PREFIX ldp: <http://leipzig-data.de/Data/Person/>
PREFIX ldtag: <http://leipzig-data.de/Data/Tag/>
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
---------------------------------------------------
Suchen. Weitere Suchanfragen ganz unten
Information zu einer Adresse
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX gsp: <http://www.opengis.net/ont/geosparql#>
SELECT distinct ?a ?l ?g ?lo as ?Ortsteil ?xl as ?Ort
WHERE {
?a a ld:LeipzigerAdresse; rdfs:label ?l .
optional{ ?a gsp:asWKT ?g . }
optional{ ?a ld:inOrtsteil ?o . ?o rdfs:label ?lo . }
optional{ ?x ld:hasAddress ?a . ?x rdfs:label ?xl . }
filter regex(?l,"Leuschner")
} order by (?l)
Alle MINT-Orte finden
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX mint2014: <http://leipzig-data.de/Data/MINT-2014/>
SELECT distinct ?l ?email ?telefon ?url
from <http://leipzig-data.de/Data/MINTBroschuere2014/>
WHERE {
?p a mint2014:Ortsbeschreibung; rdfs:label ?l .
optional{ ?p mint2014:Telefon ?telefon . }
optional{ ?p mint2014:Internet ?url . }
optional{ ?p mint2014:Mail ?email . }
} order by (?l)
Alle Schuladressen heraussuchen
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT distinct ?l ?a ?h
from <http://leipzig-data.de/Data/Schulen/>
WHERE {
?s a ld:Oberschule; rdfs:label ?l .
optional {?s ld:hasAddress ?a . }
optional {?s foaf:homepage ?h . }
} order by (?s)
Alle MINT-Orte und zugehörige Projekte finden
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX ldtag: <http://leipzig-data.de/Data/Tag/>
SELECT ?l ?k WHERE {
?p ld:hasTag ldtag:MINT .
?p a ld:Ort .
?p rdfs:label ?l .
?p ld:Kurzinformation ?k .
}
Alle Angebote der LSGM finden
PREFIX ld: <http://leipzig-data.de/Data/Model/>
SELECT ?l ?k
WHERE {
?p ld:relatedBundle <http://leipzig-data.de/Data/Ort/LSGM> .
?p a ld:Angebot .
?p rdfs:label ?l .
?p ld:Kurzinformation ?k .
}
Alles zu MINT-Orten extrahieren
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX ldtag: <http://leipzig-data.de/Data/Tag/>
construct { ?s ?p ?o . }
WHERE {
?s ld:hasTag ldtag:MINT .
?s a ld:Ort .
?s ?p ?o .
}
Alle Adressen, die nicht existieren
PREFIX ld: <http://leipzig-data.de/Data/Model/>
select ?a ?c
from <http://leipzig-data.de/Data/PolizeidirektionLeipzig/>
from <http://leipzig-data.de/Data/Adressen/>
WHERE {
?b ld:hasAddress ?a .
optional { ?a a ?c .}
}
Personen nach Namen finden
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?p ?n WHERE {
?p a foaf:Person .
?p foaf:name ?n .
filter regex(?n,"Meier") .
}
Träger nach Namen finden
PREFIX ld: <http://leipzig-data.de/Data/Model/>
SELECT ?p ?n WHERE {
?p a ld:Traeger .
?p rdfs:label ?n .
filter regex(?n,"Meier") .
}
---------------------------------------------------
ld:hasURL durchsehen, welche noch Literale sind
PREFIX ld: <http://leipzig-data.de/Data/Model/>
SELECT ?p ?n WHERE {
?p ld:hasURL ?n .
filter isliteral(?n) .
}
---------------------------------------------------
Events kontrollieren
Eine Reihe von Tripeln mit ical:dtstart als xsd:date wurden nicht korrekt
gelöscht. Finde diese:
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX ical: <http://www.w3.org/2002/12/cal/ical#>
SELECT distinct ?e ?d
from <http://leipzig-data.de/Data/Events/>
WHERE {
?e ical:dtstart ?d .
optional { ?e a ?t . }
filter (!bound(?t))
} order by ?e
Welche Events haben keinen Ort?
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX ical: <http://www.w3.org/2002/12/cal/ical#>
SELECT distinct ?e WHERE {
?e a ld:Event .
optional {?e ical:location ?o .}
filter (!bound(?o))
}
Keine - alle Events mit unbestimmten Ort haben entweder
http://leipzig-data.de/Data/Ort/NN oder
http://leipzig-data.de/Data/Ort/Stadtweit
Welche Events haben einen Ort, der nicht existiert?
-- Achtung org:Organization hat skos:prefLabel statt rdfs:label, ich habe das
-- an den relevanten Stellen unter beiden keys eingetragen. HGG 2014-07-27
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX ical: <http://www.w3.org/2002/12/cal/ical#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT distinct ?e ?o WHERE {
?e a ld:Event .
?e ical:location ?o .
optional {?o rdfs:label ?l .}
filter (!bound(?l))
}
Keine - die unbestimmten Orte
http://leipzig-data.de/Data/Ort/NN und
http://leipzig-data.de/Data/Ort/Stadtweit
sind unter Orte.ttl erfasst
Welche Events haben einen Ort ohne Adresse?
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX ical: <http://www.w3.org/2002/12/cal/ical#>
SELECT distinct ?e ?o WHERE {
?e a ld:Event .
?e ical:location ?o .
optional { ?o ld:hasAddress ?a .}
filter (!bound(?a))
}
Wie viele Adressen gibt es?
PREFIX ld: <http://leipzig-data.de/Data/Model/>
SELECT count(distinct ?e)
FROM <http://leipzig-data.de/Data/Adressen/>
WHERE {
?e a ld:Adresse .
}
## Adressen und Ortsteile
## Es fehlen einige Zuordnungen von Adressen zu Ortsteilen
PREFIX ld: <http://leipzig-data.de/Data/Model/>
SELECT ?e
FROM <http://leipzig-data.de/Data/Adressen/>
WHERE {
?e a ld:Adresse ;
optional { ?e ld:inOrtsteil ?t . }
filter (!bound(?t))
}
http://leipzig-data.de/Data/04103.Leipzig.BayrischerPlatz.1
http://leipzig-data.de/Data/04107.Leipzig.Simsonplatz.1
http://leipzig-data.de/Data/04159.Leipzig.Renftstrasse.1
http://leipzig-data.de/Data/04159.Leipzig.Renftstrasse.3
http://leipzig-data.de/Data/04275.Leipzig.Kantstrasse.71-73
http://leipzig-data.de/Data/04275.Leipzig.Kurt-Eisner-Strasse.108
http://leipzig-data.de/Data/04279.Leipzig.Vollhardtstrasse.16
http://leipzig-data.de/Data/04299.Leipzig.Friedhofsweg.1
http://leipzig-data.de/Data/04299.Leipzig.Friedhofsweg.3
http://leipzig-data.de/Data/04347.Leipzig.Zeumerstrasse.1
PREFIX ld: <http://leipzig-data.de/Data/Model/>
SELECT count(distinct ?e)
FROM <http://leipzig-data.de/Data/Adressen/>
WHERE {
?e a ld:Adresse .
optional { ?e ld:inOrtsteil ?g . }
filter (!bound(?g))
}
PREFIX ld: <http://leipzig-data.de/Data/Model/>
SELECT ?a ?b
WHERE {
?a a ld:Ortsteil ; ld:hasStadtRef ?b .
}
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
SELECT count(distinct ?e)
FROM <http://leipzig-data.de/Data/Adressen/>
FROM <http://leipzig-data.de/Data/GeoDaten/>
WHERE {
?e a ld:Adresse .
optional { ?e geo:lat ?g . }
filter (!bound(?g))
}
Nur Events zu den unbestimmten Orten
http://leipzig-data.de/Data/Ort/NN und
http://leipzig-data.de/Data/Ort/Stadtweit
Welche Events haben einen Ort mit Adresse, aber ohne Geokoordinaten?
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX ical: <http://www.w3.org/2002/12/cal/ical#>
PREFIX geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>
SELECT distinct ?o ?a WHERE {
?e a ld:Event .
?e ical:location ?o .
?o ld:hasAddress ?a .
optional { ?a geo:lat ?g .}
filter (!bound(?g))
}
Alle Adressen mit gegebenem Adress-String
PREFIX ld: <http://leipzig-data.de/Data/Model/>
SELECT distinct ?a WHERE {
?a a ld:Adresse .
filter regex($a, "04105.Leipzig.Loehrstrasse")
}
Alle Orte mit mit gegebenem Adress-String
PREFIX ld: <http://leipzig-data.de/Data/Model/>
SELECT distinct ?o ?a WHERE {
?o ld:hasAddress ?a .
filter regex($a, "04105.Leipzig.Loehrstrasse")
}
http://leipzig-data.de/Data/Ort/UniLeipzig.Augustusplatz
http://leipzig-data.de/Data/04109.Leipzig.Augustusplatz.10-11
http://leipzig-data.de/Data/Ort/Volkshochschule
http://leipzig-data.de/Data/04105.Leipzig.Loehrstrasse.3-7
Welche Events vor einem bestimmten Datum?
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX ical: <http://www.w3.org/2002/12/cal/ical#>
SELECT distinct ?e ?d WHERE {
?e a ld:Event .
?e ical:dtstart ?d .
Filter(xsd:date(?d) <= "2013-11-01"^^xsd:date) .
} order by (xsd:date(?d))
Welche Events vor einem bestimmten Datum?
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX ical: <http://www.w3.org/2002/12/cal/ical#>
SELECT distinct ?e ?d WHERE {
?e a ld:Event .
?e ical:dtstart ?d .
} order by (xsd:date(?d))
---------------------------------------------------
Jugendtstadtplan aufbereiten
PREFIX jsp: <http://leipzig-data.de/Data/Jugendstadtplan/>
SELECT ?p ?o
from <http://leipzig-data.de/Data/Jugendstadtplan/>
WHERE {
jsp:DieVilla ?p ?o .
}
PREFIX jsp: <http://leipzig-data.de/Data/Jugendstadtplan/>
SELECT ?a
from <http://leipzig-data.de/Data/Jugendstadtplan/>
WHERE {
?a a owl:Class .
}
PREFIX jsp: <http://leipzig-data.de/Data/Jugendstadtplan/>
SELECT distinct ?a count(?b)
from <http://leipzig-data.de/Data/Jugendstadtplan/>
WHERE {
?a a jsp:Art . ?b jsp:Art ?a
}
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX jsp: <http://leipzig-data.de/Data/Jugendstadtplan/>
SELECT distinct ?e ?label ?o ?ol
from <http://leipzig-data.de/Data/Jugendstadtplan/>
from <http://leipzig-data.de/Data/Orte/>
from <http://leipzig-data.de/Data/Unternehmen/>
from <http://leipzig-data.de/Data/Vereine/>
from <http://leipzig-data.de/Data/Treffpunkte/>
WHERE {
?e a jsp:Ort ; jsp:describes ?o; rdfs:label ?label .
optional { ?o rdfs:label ?ol . }
filter (!bound(?ol))
}
jsp:describes - Möglich sind Ort, Treffpunkt, Verein, Firma
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX jsp: <http://leipzig-data.de/Data/Jugendstadtplan/>
PREFIX geosparql: <http://www.opengis.net/ont/geosparql#>
SELECT distinct ?e ?label ?o ?a ?geo
from <http://leipzig-data.de/Data/Jugendstadtplan/>
from <http://leipzig-data.de/Data/Orte/>
from <http://leipzig-data.de/Data/Unternehmen/>
from <http://leipzig-data.de/Data/Vereine/>
from <http://leipzig-data.de/Data/Treffpunkte/>
from <http://leipzig-data.de/Data/GeoDaten/>
WHERE {
?e a jsp:Ort ; jsp:describes ?o; rdfs:label ?label .
optional { ?o ld:hasAddress ?a . }
optional { ?o ld:hasAddress ?a . ?a geosparql:asWKT ?geo . }
optional { ?o geosparql:asWKT ?geo . }
}
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX jsp: <http://leipzig-data.de/Data/Jugendstadtplan/>
CONSTRUCT {
?e a ld:Ort; ld:hasAddress ?adresse; rdfs:label ?label; ld:hasURL ?url .
}
from <http://leipzig-data.de/Data/Jugendstadtplan/>
WHERE {
?e a jsp:Ort ; jsp:hasAddress ?adresse .
?e rdfs:label ?label .
?e ld:hasURL ?url .
}
---------------------------------------------------
Adressen und Geokoordinaten kontrollieren
Wie viele Adressen?
PREFIX ld: <http://leipzig-data.de/Data/Model/>
SELECT count(?e)
from <http://leipzig-data.de/Data/Adressen/>
WHERE {
?e a ld:LeipzigerAdresse .
}
# -> 65221
Ausschnitt von Adressen mit Geokoordinaten
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>
PREFIX geonames: <http://www.geonames.org/ontology#>
SELECT distinct ?a ?long ?lat ?way
from <http://leipzig-data.de/Data/Adressen/>
from <http://leipzig-data.de/Data/GeoDaten/>
WHERE {
?a a ld:LeipzigerAdresse .
?a geo:lat ?lat .
?a geo:long ?long .
?a geonames:nearbyFeatures ?way .
filter regex(?a, "Karl-Liebknecht-Strasse")
}
Welche Geokoordinaten tauchen mehrfach auf?
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>
SELECT distinct ?lat ?long count(distinct ?e) as ?s
from <http://leipzig-data.de/Data/Adressen/>
from <http://leipzig-data.de/Data/GeoDaten/>
WHERE {
?e a ld:LeipzigerAdresse .
?e geo:lat ?lat .
?e geo:long ?long .
} order by ?s
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>
SELECT ?e
from <http://leipzig-data.de/Data/Adressen/>
from <http://leipzig-data.de/Data/GeoDaten/>
WHERE {
?e a ld:LeipzigerAdresse .
?e geo:lat 51.2906416 .
?e geo:long 12.4391084 .
}
Welche Geokoordinaten tauchen mehrfach auf, welche ways? -- Anfrage ist zu
komplex
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>
PREFIX geonames: <http://www.geonames.org/ontology#>
SELECT distinct ?lat ?long ?way count(distinct ?e) as ?s
from <http://leipzig-data.de/Data/Adressen/>
from <http://leipzig-data.de/Data/GeoDaten/>
WHERE {
?e a ld:LeipzigerAdresse .
?e geo:lat ?lat .
?e geo:long ?long .
?a geonames:nearbyFeatures ?way .
} order by desc(?s)
Welche Adressen haben keine Geokoordinaten?
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>
SELECT count(distinct ?e)
from <http://leipzig-data.de/Data/Adressen/>
from <http://leipzig-data.de/Data/GeoDaten/>
WHERE {
?e a ld:LeipzigerAdresse .
optional {?e geo:lat ?l . }
filter (!bound(?l))
}
Aktuell 1940 Einträge.
Welche Adressen haben kein ld:inStreet?
PREFIX ld: <http://leipzig-data.de/Data/Model/>
SELECT distinct ?e WHERE {
?e a ld:Adresse .
optional {?e ld:hasCity ?l .}
filter (bound(?l))
}
keine.
--------------------------------------------
Alle APIRefs finden
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX cal: <http://www.w3.org/2002/12/cal/ical#>
SELECT distinct ?p ?pn WHERE {
?pn ld:hasAPIRef ?p .
}
--------------------------------------------
Weitere Suchanfragen
Alle Adressen zu einem Straßen-regex finden
PREFIX ld: <http://leipzig-data.de/Data/Model/>
SELECT ?p WHERE {
?p a ld:Adresse .
?p rdfs:label ?l .
filter regex(?l,"Kohlgartenstra") .
}
Alle Orte finden, die keinen Label haben
SELECT distinct ?o ?ol WHERE {
?o a ld:Ort ;
optional { ?o rdfs:label ?ol .}
filter (!bound(?ol))
}
Alle Datensätze mit Prädikat ?p finden, das "zusatz" case insensitiv matcht.
select ?a ?p ?b where {
?a ?p ?b .
filter regex(?p,"zusatz","i") .
}
---------------------------------------------------
RDF Graphen aufteilen
PREFIX ld: <http://leipzig-data.de/Data/Model/>
construct { ?a a ld:Buergerverein . }
from <http://leipzig-data.de/Data/Traeger/>
where {
?a a ld:Traeger .
filter regex(?a, "BV") .
}
-- Events der Inspirata auslesen
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX ical: <http://www.w3.org/2002/12/cal/ical#>
select ?d ?t ?s
from <http://leipzig-data.de/Data/Events/>
where {
?a a ld:Event .
?a ld:hasTag <http://leipzig-data.de/Data/Tag/Inspirata> .
?a rdfs:label ?t .
optional { ?a ical:dtstart ?d . }
optional { ?a ical:summary ?s . }
}
-- Events ohne rdfs:label
PREFIX ld: <http://leipzig-data.de/Data/Model/>
select ?a ?b ?t
from <http://leipzig-data.de/Data/Events/>
where {
?a a ?b .
?a rdfs:label ?t .
filter by regex(?t,"0") .
}
---------------------------------------------------
Liste der Schulen
-- Adressen checken
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>
select distinct ?a ?type ?t ?alabel ?lat ?long
from <http://leipzig-data.de/Data/Schulen/>
from <http://leipzig-data.de/Data/Adressen/>
from <http://leipzig-data.de/Data/GeoDaten/>
where {
?a a ld:Schule ; rdfs:label ?t ; a ?type .
optional { ?a ld:hasAddress ?add . }
optional { ?add rdfs:label ?alabel; geo:lat ?lat ; geo:long ?long . }
filter regex(?type, "Gymnasium")
} order by ?type ?t
--- mit CodeForLeipzig vergleichen
--- Adressen fixen
PREFIX ld: <http://leipzig-data.de/Data/Model/>
select ?a ?t ?add ?aname
from <http://leipzig-data.de/Data/KidsLE/Schulen/>
from <http://leipzig-data.de/Data/Adressen/>
where {
?a a ld:KidLESchule ; rdfs:label ?t .
optional { ?a ld:hasAddress ?add . }
optional { ?add rdfs:label ?aname . }
}
--- finde zugehörige Schule zu KidLE-Schule über Adresse
PREFIX ld: <http://leipzig-data.de/Data/Model/>
select ?a ?t ?b
from <http://leipzig-data.de/Data/KidsLE/Schulen/>
from <http://leipzig-data.de/Data/Schulen/>
where {
?a a ld:KidLESchule ; rdfs:label ?t .
optional { ?a ld:hasAddress ?add . }
optional { ?b a ld:Schule; ld:hasAddress ?add . }
}
--- finde fehlende KidLE-Schulen
PREFIX ld: <http://leipzig-data.de/Data/Model/>
select ?a ?t
from <http://leipzig-data.de/Data/KidsLE/Schulen/>
from <http://leipzig-data.de/Data/Schulen/>
where {
?a a ld:Schule ; rdfs:label ?t .
optional { ?a ld:hasAddress ?add . }
optional { ?b a ld:KidLESchule; ld:hasAddress ?add . }
filter (!bound(?b))
}
--- Adressen und Geokoordinaten
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>
select ?a ?t ?klat ?klong ?slat ?slong
(xsd:float(?klat)-xsd:float(?slat)) as ?deltalat
(xsd:float(?klong)-xsd:float(?slong)) as ?deltalong
from <http://leipzig-data.de/Data/KidsLE/Schulen/>
from <http://leipzig-data.de/Data/Adressen/>
from <http://leipzig-data.de/Data/GeoDaten/>
where {
?a a ld:KidLESchule ; rdfs:label ?t; geo:lat ?klat; geo:long ?klong .
optional { ?a ld:hasAddress ?add . }
optional { ?add geo:lat ?slat; geo:long ?slong . }
}
-----------------------------------
--- Ortsteile und Adressen
PREFIX ld: <http://leipzig-data.de/Data/Model/>
select ?a ?o ?l
from <http://leipzig-data.de/Data/AdministrativeGliederung/>
from <http://leipzig-data.de/Data/OrtsteilZuAdressen/>
from <http://leipzig-data.de/Data/Adressen/>
where {
?a a ld:Adresse ; ld:imOrtsteil ?ot . ?o a ld:Ortsteil; ld:hasStadtRef ?ot .
optional { ?a rdfs:label ?l . }
filter regex(?ot, "Ortsteil.03") .
}
PREFIX ld: <http://leipzig-data.de/Data/Model/>
construct { ?a ld:inOrtsteil ?o . }
from <http://leipzig-data.de/Data/AdministrativeGliederung/>
from <http://leipzig-data.de/Data/OrtsteilZuAdressen/>
from <http://leipzig-data.de/Data/Adressen/>
where {
?a a ld:Adresse ; ld:imOrtsteil ?ot . ?o a ld:Ortsteil; ld:hasStadtRef ?ot .
}
-----------------------------------
--- Energiedaten
PREFIX ld: <http://leipzig-data.de/Data/Model/>
select ?a ?o ?l
from <http://leipzig-data.de/Data/EnergiewendeVokabular/>
where {
?a a ld:Energietraeger; ?b ?c .
}
PREFIX ld: <http://leipzig-data.de/Data/Model/>
SELECT ?anlage ?einspeisungsebene ?energietraeger ?leistung ?inbetriebnahmedatum ?netzbetreiber ?enr
FROM <http://leipzig-data.de/Data/EEG_Stammdaten_2012/>
WHERE {
?anlage a ld:Anlage .
?anlage ld:hatEinspeisungsebene ?einspeisungsebene .
?anlage ld:hatEnergietraeger ?energietraeger .
?anlage ld:installierteLeistung ?leistung .
?anlage ld:Netzbetreiber ?netzbetreiber .
?anlage ld:Inbetriebnahmedatum ?inbetriebnahmedatum .
?anlage ld:PLZ ?postleitzahl .
?anlage ld:hasENR ?enr .
}
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>
SELECT ?anlage ?adresse ?lat ?long ?postleitzahl
FROM <http://leipzig-data.de/Data/EEG_Stammdaten_2012/>
FROM <http://leipzig-data.de/Data/GeoDaten/>
WHERE {
?anlage a ld:Anlage .
?anlage ld:PLZ ?postleitzahl .
?anlage ld:hatAdresse ?adresse .
?adresse geo:lat ?lat .
?adresse geo:long ?long .
}
select ?class ?label ?type
FROM <http://leipzig-data.de/Data/EnergiewendeVokabular/>
where {
?class <http://www.w3.org/2000/01/rdf-schema#label> ?label .
FILTER (langmatches(lang(?label), "de") || REGEX(lang(?label), "^$"))
OPTIONAL { ?class <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?type . }
}
-----------------------------------
--- Welche Adressen fehlen oder sind nicht korrekt?
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>
SELECT xsd:string(?l) as ?unternehmen xsd:string(?plz) as ?plz xsd:string(?al) as ?al ?lat ?long
FROM <http://leipzig-data.de/Data/Unternehmen/>
FROM <http://leipzig-data.de/Data/Adressen/>
FROM <http://leipzig-data.de/Data/GeoDaten/>
WHERE {
?u a ld:Unternehmen; rdfs:label ?l; ld:hasAddress ?adresse .
?adresse rdfs:label ?al; ld:hasPostCode ?plz .
?adresse geo:lat ?lat ; geo:long ?long .
}
PREFIX ld: <http://leipzig-data.de/Data/Model/>
SELECT ?u ?a
FROM <http://leipzig-data.de/Data/Unternehmen/>
FROM <http://leipzig-data.de/Data/Adressen/>
WHERE {
?u a ld:Unternehmen; rdfs:label ?l; ld:hasAddress ?a .
optional { ?a rdfs:label ?al . }
filter (!bound(?al))
}
PREFIX ld: <http://leipzig-data.de/Data/Model/>
SELECT ?u ?a
FROM <http://leipzig-data.de/Data/Vereine/>
FROM <http://leipzig-data.de/Data/Adressen/>
FROM <http://leipzig-data.de/Data/WeitereAdressen/>
WHERE {
?u a ld:Verein; rdfs:label ?l; ld:hasAddress ?a .
optional { ?a rdfs:label ?al . }
filter (!bound(?al))
}
u a
http://leipzig-data.de/Data/Verein/AD.Behindertenhilfe http://leipzig-data.de/Data/04109.Leipzig.Friedrich-Ebert-Strasse.19A
http://leipzig-data.de/Data/Verein/AlleMitmischen http://leipzig-data.de/Data/04277.Leipzig.Doelitzerstrasse.31A
http://leipzig-data.de/Data/Verein/Artpa http://leipzig-data.de/Data/04275.Leipzig.Kantstrasse.18
http://leipzig-data.de/Data/Verein/BrueckeDerKulturen http://leipzig-data.de/Data/04249.Leipzig.Gerhard-Ellrodt-Srasse.26
http://leipzig-data.de/Data/Verein/EI.MutistischeKinder http://leipzig-data.de/Data/04317.Leipzig.DresdnerStrasse.25
http://leipzig-data.de/Data/Verein/ElIrakerTreff http://leipzig-data.de/Data/04013.Leipzig.Sternwartenstrasse.4
http://leipzig-data.de/Data/Verein/JazzclubLeipzig http://leipzig-data.de/Data/04103.Leipzig.Rosa-Luxemburg-Strasse.10
http://leipzig-data.de/Data/Verein/Kindernest http://leipzig-data.de/Data/04420.Leipzig.Nordstrasse.10
http://leipzig-data.de/Data/Verein/KreativitaetsWerkstattLeipzig http://leipzig-data.de/Data/04155.Leipzig.Luetzowstrasse.19
http://leipzig-data.de/Data/Verein/KulturLounge http://leipzig-data.de/Data/04317.Leipzig.DresdnerStrasse.5
http://leipzig-data.de/Data/Verein/LEMANN http://leipzig-data.de/Data/04279.Leipzig.Prinz-Eugen-Strasse.34
http://leipzig-data.de/Data/Verein/LaLecheLigaDeutschland http://leipzig-data.de/Data/04416.Leipzig.Spindelweg.5
http://leipzig-data.de/Data/Verein/LeipzigerKlinikclowns http://leipzig-data.de/Data/04416.Leipzig.Werner-Rummelt-Strasse.1
http://leipzig-data.de/Data/Verein/LernfoerdervereinPlagwitz http://leipzig-data.de/Data/04229.Leipzig.Kantatenweg.47
http://leipzig-data.de/Data/Verein/MukoviszidoseSelbsthilfeLeipzig http://leipzig-data.de/Data/04849.Leipzig.Bluecherstrasse.69
http://leipzig-data.de/Data/Verein/MusikProjektSachsen http://leipzig-data.de/Data/04416.Leipzig.Erikenweg.1
http://leipzig-data.de/Data/Verein/Plusnull http://leipzig-data.de/Data/04177.Leipzig.Luetznerstrasse.91
http://leipzig-data.de/Data/Verein/RheumaLigaSachsen http://leipzig-data.de/Data/04103.Leipzig.Liebigstrasse.22A
http://leipzig-data.de/Data/Verein/SchattenUndLicht http://leipzig-data.de/Data/86465.Leipzig.ObereWeinbergstrasse.3
http://leipzig-data.de/Data/Verein/SchlossSchoenefeld http://leipzig-data.de/Data/04347.Leipzig.ZeumerStrasse.1
http://leipzig-data.de/Data/Verein/SelbsthilfegruppeAdipositas http://leipzig-data.de/Data/04838.Leipzig.LeipzigerStrasse.4
http://leipzig-data.de/Data/Verein/SelbsthilfegruppeFuerMenschenMitSchilddruesenerkrankungenLeipzig http://leipzig-data.de/Data/45147.Leipzig.Gemarkenstrasse.133
http://leipzig-data.de/Data/Verein/SelbsthilfegruppeSued http://leipzig-data.de/Data/04275.Leipzig.Bernhard-Goering-Strasse.18
http://leipzig-data.de/Data/Verein/SelbsthilfegruppeWeg http://leipzig-data.de/Data/04299.Leipzig.StoetteritzerStrasse.28
http://leipzig-data.de/Data/Verein/SelbsthilfegruppenAlleinerziehender http://leipzig-data.de/Data/04109.Leipzig.Hauptmannstrasse.4
http://leipzig-data.de/Data/Verein/Triade http://leipzig-data.de/Data/04416.Leipzig.August-Bebel-Strasse.35
http://leipzig-data.de/Data/Verein/VHS.DasExtraFuerFrauen http://leipzig-data.de/Data/04107.Leipzig.Loehrstrasse.3
http://leipzig-data.de/Data/Verein/VereinFuerFrauenFamilieUndJugendInLeipzig http://leipzig-data.de/Data/04107.Leipzig.Windmuehlenstrasse.41
http://leipzig-data.de/Data/Verein/VereinZurBeruflichenFoerderungVonFrauenInSachsen http://leipzig-data.de/Data/04463.Leipzig.StoermthalerWeg.2
http://leipzig-data.de/Data/Verein/WasserStadtLeipzig http://leipzig-data.de/Data/04229.Leipzig.Industriestrasse.72
http://leipzig-data.de/Data/Verein/ZuHause http://leipzig-data.de/Data/04107.Leipzig.HoheStrasse.9-13
http://leipzig-data.de/Data/Verein/Zwergenland http://leipzig-data.de/Data/04277.Leipzig.Doelitzerstrasse.14
http://leipzig-data.de/Data/Verein/Caritas.Leipzig http://leipzig-data.de/Data/Strasse/Elsterstrasse.15
http://leipzig-data.de/Data/Verein/Civixx http://leipzig-data.de/Data/04178.Leipzig.Pestalozzistrasse.70
http://leipzig-data.de/Data/Verein/DRK.AkademischerKreisverband http://leipzig-data.de/Data/04177.Leipzig.Birkenstrasse.26-30
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX org: <http://www.w3.org/ns/org#>
SELECT ?u ?a
WHERE {
?u a org:Organization; rdfs:label ?l; ld:hasAddress ?a .
optional { ?a rdfs:label ?al . }
filter (!bound(?al))
}
--------------------------------
-- Referenzen auflösen
PREFIX ld: <http://leipzig-data.de/Data/Model/>
construct { ?u owl:sameAs ?a . }
FROM <http://leipzig-data.de/Data/Referenzen/>
FROM <http://leipzig-data.de/Data/AdministrativeGliederung/>
WHERE {
?u a ld:Ortsteil; ld:hasStadtRef ?s .
?a rdfs:sameAs ?s .
}
--------------------------------
-- Abgleich mit Nachhaltiges Leipzig
PREFIX ld: <http://leipzig-data.de/Data/Model/>
PREFIX nl: <http://nachhaltiges-leipzig.de/Data/Model#>
SELECT distinct ?v
WHERE {
?u owl:sameAs ?v .
filter regex(?v,'nachhaltiges-leipzig.de')
filter (!regex(?v,'Data/Akteur'))
}
Folgende User fehlen: 1, 7, 17, 20, 31, 44, 65, 82, 107, 119, 121, 132, 140,
158, 161, 169, 180, 225
Folgende User sind nicht nach LD übernommen
205 = Stadt Delitzsch
206 = Gartenpforte Muldental
213 = Grüne Liga Kohrener Land
222 = Delitzscher Land e.V.
230 = Annett Antonia Graeske, Grimma
236 = Naturschule Deutschland e.V., Göttingen
238 = Geopark Porphyrland. Steinreich in Sachsen e.V., Grimma
Offen: ab 242
http://nachhaltiges-leipzig.de/Data/Akteur.2
http://nachhaltiges-leipzig.de/Data/Akteur.3
http://nachhaltiges-leipzig.de/Data/Akteur.4
http://nachhaltiges-leipzig.de/Data/Akteur.5
http://nachhaltiges-leipzig.de/Data/Akteur.6
http://nachhaltiges-leipzig.de/Data/Akteur.8
http://nachhaltiges-leipzig.de/Data/Akteur.10
http://nachhaltiges-leipzig.de/Data/Akteur.11
http://nachhaltiges-leipzig.de/Data/Akteur.12
http://nachhaltiges-leipzig.de/Data/Akteur.13
http://nachhaltiges-leipzig.de/Data/Akteur.14
http://nachhaltiges-leipzig.de/Data/Akteur.15
http://nachhaltiges-leipzig.de/Data/Akteur.16
http://nachhaltiges-leipzig.de/Data/Akteur.18
http://nachhaltiges-leipzig.de/Data/Akteur.19
http://nachhaltiges-leipzig.de/Data/Akteur.21
http://nachhaltiges-leipzig.de/Data/Akteur.22
http://nachhaltiges-leipzig.de/Data/Akteur.23
http://nachhaltiges-leipzig.de/Data/Akteur.24
http://nachhaltiges-leipzig.de/Data/Akteur.25
http://nachhaltiges-leipzig.de/Data/Akteur.26
http://nachhaltiges-leipzig.de/Data/Akteur.27
http://nachhaltiges-leipzig.de/Data/Akteur.28
http://nachhaltiges-leipzig.de/Data/Akteur.29
http://nachhaltiges-leipzig.de/Data/Akteur.30
http://nachhaltiges-leipzig.de/Data/Akteur.32
http://nachhaltiges-leipzig.de/Data/Akteur.33
http://nachhaltiges-leipzig.de/Data/Akteur.34
http://nachhaltiges-leipzig.de/Data/Akteur.35
http://nachhaltiges-leipzig.de/Data/Akteur.36
http://nachhaltiges-leipzig.de/Data/Akteur.37
http://nachhaltiges-leipzig.de/Data/Akteur.38
http://nachhaltiges-leipzig.de/Data/Akteur.39
http://nachhaltiges-leipzig.de/Data/Akteur.40
http://nachhaltiges-leipzig.de/Data/Akteur.41
http://nachhaltiges-leipzig.de/Data/Akteur.42
http://nachhaltiges-leipzig.de/Data/Akteur.43
http://nachhaltiges-leipzig.de/Data/Akteur.45
http://nachhaltiges-leipzig.de/Data/Akteur.46
http://nachhaltiges-leipzig.de/Data/Akteur.47
http://nachhaltiges-leipzig.de/Data/Akteur.48
http://nachhaltiges-leipzig.de/Data/Akteur.49
http://nachhaltiges-leipzig.de/Data/Akteur.50
http://nachhaltiges-leipzig.de/Data/Akteur.51
http://nachhaltiges-leipzig.de/Data/Akteur.52
http://nachhaltiges-leipzig.de/Data/Akteur.53
http://nachhaltiges-leipzig.de/Data/Akteur.54
http://nachhaltiges-leipzig.de/Data/Akteur.55
http://nachhaltiges-leipzig.de/Data/Akteur.56
http://nachhaltiges-leipzig.de/Data/Akteur.57
http://nachhaltiges-leipzig.de/Data/Akteur.58
http://nachhaltiges-leipzig.de/Data/Akteur.59
http://nachhaltiges-leipzig.de/Data/Akteur.60
http://nachhaltiges-leipzig.de/Data/Akteur.61
http://nachhaltiges-leipzig.de/Data/Akteur.62
http://nachhaltiges-leipzig.de/Data/Akteur.63
http://nachhaltiges-leipzig.de/Data/Akteur.64
http://nachhaltiges-leipzig.de/Data/Akteur.66
http://nachhaltiges-leipzig.de/Data/Akteur.67
http://nachhaltiges-leipzig.de/Data/Akteur.68
http://nachhaltiges-leipzig.de/Data/Akteur.69
http://nachhaltiges-leipzig.de/Data/Akteur.70
http://nachhaltiges-leipzig.de/Data/Akteur.71
http://nachhaltiges-leipzig.de/Data/Akteur.72
http://nachhaltiges-leipzig.de/Data/Akteur.73
http://nachhaltiges-leipzig.de/Data/Akteur.74
http://nachhaltiges-leipzig.de/Data/Akteur.75
http://nachhaltiges-leipzig.de/Data/Akteur.76
http://nachhaltiges-leipzig.de/Data/Akteur.77
http://nachhaltiges-leipzig.de/Data/Akteur.78
http://nachhaltiges-leipzig.de/Data/Akteur.79
http://nachhaltiges-leipzig.de/Data/Akteur.80
http://nachhaltiges-leipzig.de/Data/Akteur.81
http://nachhaltiges-leipzig.de/Data/Akteur.83
http://nachhaltiges-leipzig.de/Data/Akteur.84
http://nachhaltiges-leipzig.de/Data/Akteur.85
http://nachhaltiges-leipzig.de/Data/Akteur.86
http://nachhaltiges-leipzig.de/Data/Akteur.87
http://nachhaltiges-leipzig.de/Data/Akteur.88
http://nachhaltiges-leipzig.de/Data/Akteur.89
http://nachhaltiges-leipzig.de/Data/Akteur.90
http://nachhaltiges-leipzig.de/Data/Akteur.91
http://nachhaltiges-leipzig.de/Data/Akteur.92
http://nachhaltiges-leipzig.de/Data/Akteur.93
http://nachhaltiges-leipzig.de/Data/Akteur.94
http://nachhaltiges-leipzig.de/Data/Akteur.95
http://nachhaltiges-leipzig.de/Data/Akteur.96
http://nachhaltiges-leipzig.de/Data/Akteur.97
http://nachhaltiges-leipzig.de/Data/Akteur.98
http://nachhaltiges-leipzig.de/Data/Akteur.99
http://nachhaltiges-leipzig.de/Data/Akteur.100
http://nachhaltiges-leipzig.de/Data/Akteur.101
http://nachhaltiges-leipzig.de/Data/Akteur.102
http://nachhaltiges-leipzig.de/Data/Akteur.103
http://nachhaltiges-leipzig.de/Data/Akteur.104
http://nachhaltiges-leipzig.de/Data/Akteur.105
http://nachhaltiges-leipzig.de/Data/Akteur.106
http://nachhaltiges-leipzig.de/Data/Akteur.108
http://nachhaltiges-leipzig.de/Data/Akteur.109
http://nachhaltiges-leipzig.de/Data/Akteur.110
http://nachhaltiges-leipzig.de/Data/Akteur.111
http://nachhaltiges-leipzig.de/Data/Akteur.112
http://nachhaltiges-leipzig.de/Data/Akteur.113
http://nachhaltiges-leipzig.de/Data/Akteur.114
http://nachhaltiges-leipzig.de/Data/Akteur.115
http://nachhaltiges-leipzig.de/Data/Akteur.116
http://nachhaltiges-leipzig.de/Data/Akteur.117
http://nachhaltiges-leipzig.de/Data/Akteur.118
http://nachhaltiges-leipzig.de/Data/Akteur.120
http://nachhaltiges-leipzig.de/Data/Akteur.122
http://nachhaltiges-leipzig.de/Data/Akteur.123
http://nachhaltiges-leipzig.de/Data/Akteur.124
http://nachhaltiges-leipzig.de/Data/Akteur.125
http://nachhaltiges-leipzig.de/Data/Akteur.126
http://nachhaltiges-leipzig.de/Data/Akteur.127
http://nachhaltiges-leipzig.de/Data/Akteur.128
http://nachhaltiges-leipzig.de/Data/Akteur.129
http://nachhaltiges-leipzig.de/Data/Akteur.130
http://nachhaltiges-leipzig.de/Data/Akteur.131
http://nachhaltiges-leipzig.de/Data/Akteur.133
http://nachhaltiges-leipzig.de/Data/Akteur.134
http://nachhaltiges-leipzig.de/Data/Akteur.135
http://nachhaltiges-leipzig.de/Data/Akteur.136
http://nachhaltiges-leipzig.de/Data/Akteur.137
http://nachhaltiges-leipzig.de/Data/Akteur.138
http://nachhaltiges-leipzig.de/Data/Akteur.139
http://nachhaltiges-leipzig.de/Data/Akteur.141
http://nachhaltiges-leipzig.de/Data/Akteur.142
http://nachhaltiges-leipzig.de/Data/Akteur.143
http://nachhaltiges-leipzig.de/Data/Akteur.144
http://nachhaltiges-leipzig.de/Data/Akteur.145
http://nachhaltiges-leipzig.de/Data/Akteur.146
http://nachhaltiges-leipzig.de/Data/Akteur.147
http://nachhaltiges-leipzig.de/Data/Akteur.148
http://nachhaltiges-leipzig.de/Data/Akteur.149
http://nachhaltiges-leipzig.de/Data/Akteur.150
http://nachhaltiges-leipzig.de/Data/Akteur.151
http://nachhaltiges-leipzig.de/Data/Akteur.152
http://nachhaltiges-leipzig.de/Data/Akteur.153
http://nachhaltiges-leipzig.de/Data/Akteur.154
http://nachhaltiges-leipzig.de/Data/Akteur.155
http://nachhaltiges-leipzig.de/Data/Akteur.156
http://nachhaltiges-leipzig.de/Data/Akteur.157
http://nachhaltiges-leipzig.de/Data/Akteur.159
http://nachhaltiges-leipzig.de/Data/Akteur.160
http://nachhaltiges-leipzig.de/Data/Akteur.162
http://nachhaltiges-leipzig.de/Data/Akteur.163
http://nachhaltiges-leipzig.de/Data/Akteur.164
http://nachhaltiges-leipzig.de/Data/Akteur.165
http://nachhaltiges-leipzig.de/Data/Akteur.166
http://nachhaltiges-leipzig.de/Data/Akteur.167
http://nachhaltiges-leipzig.de/Data/Akteur.168
http://nachhaltiges-leipzig.de/Data/Akteur.170
http://nachhaltiges-leipzig.de/Data/Akteur.171
http://nachhaltiges-leipzig.de/Data/Akteur.172
http://nachhaltiges-leipzig.de/Data/Akteur.173
http://nachhaltiges-leipzig.de/Data/Akteur.174
http://nachhaltiges-leipzig.de/Data/Akteur.175
http://nachhaltiges-leipzig.de/Data/Akteur.176
http://nachhaltiges-leipzig.de/Data/Akteur.177
http://nachhaltiges-leipzig.de/Data/Akteur.178
http://nachhaltiges-leipzig.de/Data/Akteur.179
http://nachhaltiges-leipzig.de/Data/Akteur.181
http://nachhaltiges-leipzig.de/Data/Akteur.182
http://nachhaltiges-leipzig.de/Data/Akteur.183
http://nachhaltiges-leipzig.de/Data/Akteur.184
http://nachhaltiges-leipzig.de/Data/Akteur.185
http://nachhaltiges-leipzig.de/Data/Akteur.186
http://nachhaltiges-leipzig.de/Data/Akteur.187
http://nachhaltiges-leipzig.de/Data/Akteur.188
http://nachhaltiges-leipzig.de/Data/Akteur.189
http://nachhaltiges-leipzig.de/Data/Akteur.190
http://nachhaltiges-leipzig.de/Data/Akteur.191
http://nachhaltiges-leipzig.de/Data/Akteur.192
http://nachhaltiges-leipzig.de/Data/Akteur.193
http://nachhaltiges-leipzig.de/Data/Akteur.194
http://nachhaltiges-leipzig.de/Data/Akteur.195
http://nachhaltiges-leipzig.de/Data/Akteur.196
http://nachhaltiges-leipzig.de/Data/Akteur.197
http://nachhaltiges-leipzig.de/Data/Akteur.198
http://nachhaltiges-leipzig.de/Data/Akteur.199
http://nachhaltiges-leipzig.de/Data/Akteur.200
http://nachhaltiges-leipzig.de/Data/Akteur.201
http://nachhaltiges-leipzig.de/Data/Akteur.202
http://nachhaltiges-leipzig.de/Data/Akteur.203
http://nachhaltiges-leipzig.de/Data/Akteur.204
http://nachhaltiges-leipzig.de/Data/Akteur.207
http://nachhaltiges-leipzig.de/Data/Akteur.208
http://nachhaltiges-leipzig.de/Data/Akteur.209
http://nachhaltiges-leipzig.de/Data/Akteur.210
http://nachhaltiges-leipzig.de/Data/Akteur.211
http://nachhaltiges-leipzig.de/Data/Akteur.212
http://nachhaltiges-leipzig.de/Data/Akteur.214
http://nachhaltiges-leipzig.de/Data/Akteur.215
http://nachhaltiges-leipzig.de/Data/Akteur.216
http://nachhaltiges-leipzig.de/Data/Akteur.217
http://nachhaltiges-leipzig.de/Data/Akteur.218
http://nachhaltiges-leipzig.de/Data/Akteur.219
http://nachhaltiges-leipzig.de/Data/Akteur.220
http://nachhaltiges-leipzig.de/Data/Akteur.221
http://nachhaltiges-leipzig.de/Data/Akteur.223
http://nachhaltiges-leipzig.de/Data/Akteur.224
http://nachhaltiges-leipzig.de/Data/Akteur.226
http://nachhaltiges-leipzig.de/Data/Akteur.227
http://nachhaltiges-leipzig.de/Data/Akteur.228
http://nachhaltiges-leipzig.de/Data/Akteur.229
http://nachhaltiges-leipzig.de/Data/Akteur.231