forked from AKSW/transform-bvl-pages-to-csv-file
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadressen.ttl
12427 lines (11036 loc) · 735 KB
/
adressen.ttl
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
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix leo: <http://le-online.de/ontology/place/ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
<http://le-online.de/place/157schule>
leo:address "Hans-Driesch-Straße 41, 04179 Leipzig"^^xsd:string ;
leo:fixedAddress "Hans-Driesch-Straße 41, 04179 Leipzig"^^xsd:string ;
leo:fixedPlaceName "157. Schule"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04179.Leipzig.Hans-Driesch-Strasse.41> ;
leo:placeName "157. Schule"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/157.-schule> .
<http://le-online.de/place/1autonomesfrauenhausleipzig>
leo:address "PF 31 07 16, 04211 Leipzig"^^xsd:string ;
leo:fixedPlaceName "1. Autonomes Frauenhaus Leipzig"^^xsd:string ;
leo:placeName "1. Autonomes Frauenhaus Leipzig"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/1.-autonomes-frauenhaus-leipzig> .
<http://le-online.de/place/24schule>
leo:address "Döllingstraße 25, 04328 Leipzig"^^xsd:string ;
leo:fixedAddress "Döllingstraße 25, 04328 Leipzig"^^xsd:string ;
leo:fixedPlaceName "24. Schule"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04328.Leipzig.Doellingstrasse.25> ;
leo:placeName "24. Schule"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/24.-schule> .
<http://le-online.de/place/31schule>
leo:address "Franzosenallee 21, 04289 Leipzig"^^xsd:string ;
leo:fixedAddress "Franzosenallee 21, 04289 Leipzig"^^xsd:string ;
leo:fixedPlaceName "31. Schule - Grundschule Probstheida"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04289.Leipzig.Franzosenallee.21> ;
leo:placeName "31. Schule"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/31.-schule> .
<http://le-online.de/place/31schulegrundschuleprobstheidaerdgeschoss>
leo:address "Franzosenallee 21, 04289 Leipzig"^^xsd:string ;
leo:fixedAddress "Franzosenallee 21, 04289 Leipzig"^^xsd:string ;
leo:fixedPlaceName "31. Schule - Grundschule Probstheida"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04289.Leipzig.Franzosenallee.21> ;
leo:placeName "31. Schule - Grundschule Probstheida (Erdgeschoss)"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/31.-schule---grundschule-probstheida-(erdgeschoss)> .
<http://le-online.de/place/33schule>
leo:address "Anhalter Straße 1, 04129 Leipzig"^^xsd:string ;
leo:fixedAddress "Anhalter Straße 1, 04129 Leipzig"^^xsd:string ;
leo:fixedPlaceName "33. Schule"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04129.Leipzig.AnhalterStrasse.1> ;
leo:placeName "33. Schule"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/33.-schule> .
<http://le-online.de/place/39schule>
leo:address "Gustav-Kühn-Straße 1, 04159 Leipzig"^^xsd:string ;
leo:fixedAddress "Gustav-Kühn-Straße 1, 04159 Leipzig"^^xsd:string ;
leo:fixedPlaceName "39. Schule"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04159.Leipzig.Gustav-Kuehn-Strasse.1> ;
leo:placeName "39. Schule"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/39.-schule> .
<http://le-online.de/place/3grundschule>
leo:address "Scharnhorststraße 24, 04275 Leipzig"^^xsd:string ;
leo:fixedAddress "Scharnhorststraße 24, 04275 Leipzig"^^xsd:string ;
leo:fixedPlaceName "3. Grundschule"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04275.Leipzig.Scharnhorststrasse.24> ;
leo:placeName "3. Grundschule"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/3.-grundschule> .
<http://le-online.de/place/68oberschule>
leo:address "Breitenfelder Straße 19, 04155 Leipzig"^^xsd:string ;
leo:fixedAddress "Breitenfelder Straße 19, 04155 Leipzig"^^xsd:string ;
leo:fixedPlaceName "68. Oberschule"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04155.Leipzig.BreitenfelderStrasse.19> ;
leo:placeName "68. Oberschule"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/68.-oberschule> .
<http://le-online.de/place/91schule>
leo:address "Uranusstraße 1, 04205 Leipzig"^^xsd:string ;
leo:fixedAddress "Uranusstraße 1, 04205 Leipzig"^^xsd:string ;
leo:fixedPlaceName "91. Schule"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04205.Leipzig.Uranusstrasse.1> ;
leo:placeName "91. Schule"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/91.-schule> .
<http://le-online.de/place/abendgymnasium>
leo:address "Czermaks Garten 8, 04103 Leipzig"^^xsd:string ;
leo:fixedAddress "Czermaks Garten 8, 04103 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Abendgymnasium"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04103.Leipzig.CzermaksGarten.8> ;
leo:placeName "Abendgymnasium"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/abendgymnasium> .
<http://le-online.de/place/abendoberschuleabendgymnasium>
leo:address "Czermaks Garten 8, 04103 Leipzig"^^xsd:string ;
leo:fixedAddress "Czermaks Garten 8, 04103 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Abendgymnasium"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04103.Leipzig.CzermaksGarten.8> ;
leo:placeName "Abendoberschule / Abendgymnasium"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/abendoberschule-_-abendgymnasium> .
<http://le-online.de/place/abteilungbauundausbildungsfoerderung>
leo:address "Georg-Schumann-Straße 357, 04159 Leipzig"^^xsd:string ;
leo:fixedAddress "Georg-Schumann-Straße 357, 04159 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Abteilung Bau und Ausbildungsförderung"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04159.Leipzig.Georg-Schumann-Strasse.357> ;
leo:placeName "Abteilung Bau und Ausbildungsförderung"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/abteilung-bau-und-ausbildungsfoerderung> .
<http://le-online.de/place/abteilungbildung>
leo:address "Georg-Schumann-Straße 357, 04159 Leipzig"^^xsd:string ;
leo:fixedAddress "Georg-Schumann-Straße 357, 04159 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Abteilung Bildung"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04159.Leipzig.Georg-Schumann-Strasse.357> ;
leo:placeName "Abteilung Bildung"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/abteilung-bildung> .
<http://le-online.de/place/abteilunghoheitlichejugendhilfe>
leo:address "Naumburger Straße 26 - Haus B, Zi. B 331 bis B 337, 04229 Leipzig"^^xsd:string ;
leo:fixedAddress "Naumburger Straße 26, 04229 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Abteilung Hoheitliche Jugendhilfe"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04229.Leipzig.NaumburgerStrasse.26> ;
leo:placeName "Abteilung Hoheitliche Jugendhilfe"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/abteilung-hoheitliche-jugendhilfe> .
<http://le-online.de/place/abtfriedhoefskanzlei>
leo:address "Friedhofsweg 3, Westtor des Süfriedhofs, 04299 Leipzig"^^xsd:string ;
leo:fixedAddress "Friedhofsweg 3, 04299 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Abt. Friedhofskanzlei"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04299.Leipzig.Friedhofsweg.3> ;
leo:placeName "Abt. Friedhöfskanzlei"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/abt.-friedhoefskanzlei> .
<http://le-online.de/place/abtstadtforstenuntereforstundjagdbehoerde>
leo:address "Teichstraße 20, 04277 Leipzig"^^xsd:string ;
leo:fixedAddress "Teichstraße 20, 04277 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Abt. Stadtforsten - Untere Forst- und Jagdbehörde"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04277.Leipzig.Teichstrasse.20> ;
leo:placeName "Abt. Stadtforsten - Untere Forst- und Jagdbehörde"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/abt.-stadtforsten---untere-forst--und-jagdbehoerde> .
<http://le-online.de/place/abtstrassenverwaltungstrassentwurfstrassenbauundunterhaltungbrueckenbauundunterhaltungstrassverkehrsbehoerdestadtbeleuchtung>
leo:address "Technisches Rathaus Haus C, Prager Straße 118, 04317 Leipzig"^^xsd:string ;
leo:fixedAddress "Prager Straße 118, 04317 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Technisches Rathaus Haus C, Abt. Straßenverwaltung, Straßentwurf, Straßenbau und Unterhaltung, Brückenbau und Unterhaltung, Straßverkehrsbehörde, Stadtbeleuchtung"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04317.Leipzig.PragerStrasse.118> ;
leo:placeName "Abt. Straßenverwaltung, Straßentwurf, Straßenbau und Unterhaltung, Brückenbau und Unterhaltung, Straßverkehrsbehörde, Stadtbeleuchtung"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/abt.-strassenverwaltung--strassentwurf--strassenbau-und-unterhaltung--brueckenbau-und-unterhaltung--strassverkehrsbehoerde--stadtbeleuchtung> .
<http://le-online.de/place/achatcomforthotelmesseleipzig>
leo:address "Salzhandelsstraße 2, 04158 Leipzig - Wiederitzsch"^^xsd:string ;
leo:fixedAddress "Salzhandelsstraße 2, 04158 Leipzig"^^xsd:string ;
leo:fixedPlaceName "ACHAT Comfort Hotel Messe-Leipzig"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04158.Leipzig.Salzhandelsstrasse.2> ;
leo:placeName "ACHAT Comfort Hotel Messe-Leipzig"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/achat-comfort-hotel-messe-leipzig> .
<http://le-online.de/place/adagioclub>
leo:address "Clubabende im Gewölbe, Hotelrestaurant Seeburgstraße 96, 04103 Leipzig"^^xsd:string ;
leo:fixedAddress "Seeburgstraße 96, 04103 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Adagio-Club, Clubabende im Gewölbe, Hotelrestaurant"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04103.Leipzig.Seeburgstrasse.96> ;
leo:placeName "Adagio - Club"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/adagio---club> .
<http://le-online.de/place/adlerapotheke>
leo:address "Hainstraße 9, 04109 Leipzig"^^xsd:string ;
leo:fixedAddress "Hainstraße 9, 04109 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Adler-Apotheke"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04109.Leipzig.Hainstrasse.9> ;
leo:placeName "Adler - Apotheke"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/adler---apotheke> .
<http://le-online.de/place/adolphdiesterwegschule>
leo:address "Portitzer Straße 1, 04318 Leipzig"^^xsd:string ;
leo:fixedAddress "Portitzer Straße 1, 04318 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Adolph-Diesterweg-Schule"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04318.Leipzig.PortitzerStrasse.1> ;
leo:placeName "Adolph-Diesterweg-Schule"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/adolph-diesterweg-schule> .
<http://le-online.de/place/aegyptischesmuseumaegyptologischesinstitutderuniversitaetleipzig>
leo:address "Goethestraße 2 (Kroch-Hochhaus), 04109 Leipzig"^^xsd:string ;
leo:fixedAddress "Goethestraße 2, 04109 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ägyptisches Museum / Ägyptologisches Institut der Universität Leipzig"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04109.Leipzig.Goethestrasse.2> ;
leo:placeName "Ägyptisches Museum / Ägyptologisches Institut der Universität Leipzig"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/aegyptisches-museum-_-aegyptologisches-institut-der-universitaet-leipzig> .
<http://le-online.de/place/aerztehausamdiakonissenhaus>
leo:address "Apotheke, Anästhesiologie, Chirurgie, Innere Medizin, Urologie, Zahnarzt Georg-Schwarz-Straße 53, 04179 Leipzig"^^xsd:string ;
leo:fixedAddress "Georg-Schwarz-Straße 53, 04179 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ärztehaus am Diakonissenhaus, Apotheke, Anästhesiologie, Chirurgie, Innere Medizin, Urologie, Zahnarzt"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04179.Leipzig.Georg-Schwarz-Strasse.53> ;
leo:placeName "Ärztehaus am Diakonissenhaus"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/aerztehaus-am-diakonissenhaus> .
<http://le-online.de/place/aerztehausamwasserturminmockau>
leo:address "Fachärzte für: Haut- und Geschlechtskrankheiten/Allergologie, Innere Medizin/hausarzt, Inneres/Pulmologie, Kindermedizin, Zahnheilkunde; Physiotherapie, Apotheke Tauchaer Straße 12, 04357 Leipzig"^^xsd:string ;
leo:fixedAddress "Tauchaer Straße 12, 04357 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ärztehaus am Wasserturm in Mockau"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04357.Leipzig.TauchaerStrasse.12> ;
leo:placeName "Ärztehaus am Wasserturm in Mockau"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/aerztehaus-am-wasserturm-in-mockau> .
<http://le-online.de/place/aerztehausbautzmannstrasse>
leo:address "Augenarzt, Urologe, Physiotherapie, Fußpflege, Apotheke Bautzmannstraße 6, 04315 Leipzig"^^xsd:string ;
leo:fixedAddress "Bautzmannstraße 6, 04315 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ärztehaus Bautzmannstraße"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04315.Leipzig.Bautzmannstrasse.6> ;
leo:placeName "Ärztehaus Bautzmannstraße"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/aerztehaus-bautzmannstrasse> .
<http://le-online.de/place/aerztehausbornaischestrasse>
leo:address "Fachärzte für: Allergologie/Naturheilverfahren, Allgemeinmedizin, Augenheilkunde, Gynäkologie, Kieferchirurgie, Zahnheilkunde; Physikalische und Sporttherapie; Reha-Sport; Leipziger Pflegedienst Löwenherz Bornaische Straße 18, 04277 Leipzig"^^xsd:string ;
leo:fixedAddress "Bornaische Straße 18, 04277 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ärztehaus Bornaische Straße"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04277.Leipzig.BornaischeStrasse.18> ;
leo:placeName "Ärztehaus Bornaische Straße"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/aerztehaus-bornaische-strasse> .
<http://le-online.de/place/aerztehauselsterparknonnenstrasse>
leo:address "Nonnenstraße 40-44 (B), 04229 Leipzig"^^xsd:string ;
leo:fixedAddress "Nonnenstraße 40-44, 04229 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ärztehaus Elsterpark - Nonnenstraße"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04229.Leipzig.Nonnenstrasse.40-44> ;
leo:placeName "Ärztehaus Elsterpark - Nonnenstraße"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/aerztehaus-elsterpark---nonnenstrasse> .
<http://le-online.de/place/aerztehaushainbuchenhofhainbuchenstrasse>
leo:address "Fachärzte für Gynäkologie, Hautkrankheiten/Allergologie, Kinderchirurgie, Orthopädie, Urologie, Tiermedizin Hainbuchenstraße 41, 04329 Leipzig"^^xsd:string ;
leo:fixedAddress "Hainbuchenstraße 41, 04329 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ärztehaus Hainbuchenhof - Hainbuchenstraße"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04329.Leipzig.Hainbuchenstrasse.41> ;
leo:placeName "Ärztehaus Hainbuchenhof - Hainbuchenstraße"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/aerztehaus-hainbuchenhof---hainbuchenstrasse> .
<http://le-online.de/place/aerztehaushainbuchenhofwaldkerbelstrasse>
leo:address "Fachärzte für: Allgemeinmdeizin/Homöopathie, Inneres, Kindermedizin, Zahnmedizin; Physiotherapie Waldkerbelstraße 12, 04329 Leipzig"^^xsd:string ;
leo:fixedAddress "Waldkerbelstraße 12, 04329 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ärztehaus Hainbuchenhof - Waldkerbelstraße"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04329.Leipzig.Waldkerbelstrasse.12> ;
leo:placeName "Ärztehaus Hainbuchenhof - Waldkerbelstraße"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/aerztehaus-hainbuchenhof---waldkerbelstrasse> .
<http://le-online.de/place/aerztehausimmockaucenter2etage>
leo:address "Fachärzte für: Allgemeinmedizin, Augenheilkunde, Chirurgie, Gynäkologie, Haut- und Geschlechtskrankheiten, HNO, Urologie, Zahnheilkunde; Hörgerätezentrum, Logopäden, Physiotherapie, Mockauer Straße 123, 04357 Leipzig"^^xsd:string ;
leo:fixedAddress "Mockauer Straße 123, 04357 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ärztehaus im Mockau Center (2. Etage)"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04357.Leipzig.MockauerStrasse.123> ;
leo:placeName "Ärztehaus im Mockau Center (2. Etage)"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/aerztehaus-im-mockau-center-(2.-etage)> .
<http://le-online.de/place/aerztehausimmockaucenter3etage>
leo:address "Fachärzte für Kardiologie und Inneres Mockauer Straße 123, 04357 Leipzig"^^xsd:string ;
leo:fixedAddress "Mockauer Straße 123, 04357 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ärztehaus im Mockau Center (3. Etage)"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04357.Leipzig.MockauerStrasse.123> ;
leo:placeName "Ärztehaus im Mockau Center (3. Etage)"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/aerztehaus-im-mockau-center-(3.-etage)> .
<http://le-online.de/place/aerztehauskaethekollwitzstr9>
leo:address "Fachärzte für Innere Medizin(Hausarzt), Rheumatologie, Endogrinologie; Zahnarzt - Oralchirurgie und Implantologie; Physiotherapie Käthe-Kollwitz-Straße 9, 04109 Leipzig"^^xsd:string ;
leo:fixedAddress "Käthe-Kollwitz-Straße 9, 04109 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ärztehaus Käthe-Kollwitz-Straße 9"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04109.Leipzig.Kaethe-Kollwitz-Strasse.9> ;
leo:placeName "Ärztehaus Käthe-Kollwitz-Straße 9"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/aerztehaus-kaethe-kollwitz-str.-9> .
<http://le-online.de/place/aerztehausmeusdorferstr61>
leo:address "Fachärzte für: Innere Medizin, Orthopädie/Chirotherapie, Allgemeinmedizin/Sportarzt, Zahnarzt, Physiotherapiepraxis Meusdorfer Straße 61, 04277 Leipzig"^^xsd:string ;
leo:fixedAddress "Meusdorfer Straße 61, 04277 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ärztehaus Meusdorfer Straße 61"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04277.Leipzig.MeusdorferStrasse.61> ;
leo:placeName "Ärztehaus Meusdorfer Straße 61"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/aerztehaus-meusdorfer-str.-61> .
<http://le-online.de/place/aerztehausstoetteritzholzhaeuserstr77>
leo:address "Naturheilverfahren, Chirotherapie, Akkapunktur, Yogastunden; Praxis für Gefäßkrankheiten; Zahnarzt; Physiotherapie; Logopädie Holzhäuser Straße 77, 04299 Leipzig"^^xsd:string ;
leo:fixedAddress "Holzhäuser Straße 77, 04299 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ärztehaus Stötteritz - Holzhäuser Straße 77"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04299.Leipzig.HolzhaeuserStrasse.77> ;
leo:placeName "Ärztehaus Stötteritz - Holzhäuser Straße 77"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/aerztehaus-stoetteritz---holzhaeuser-str.-77> .
<http://le-online.de/place/aerztehausstoetteritzholzhaeuserstr81>
leo:address "Apotheke; Hörgeräte; FA für Innere Medizin, Hausarzt; FA Allgemeinmed.; FA Kinder- und Jugendmed.; FA Neurologie und Psychiatrie; Ergotherapie; Med. Fußpflege und Kosmetik; Pflegedienst Holzhäuser Straße 81/ Rudolf-Herrmann-Straße 33, 04299 Leipzig"^^xsd:string ;
leo:fixedAddress "Holzhäuser Straße 81, 04299 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ärztehaus Stötteritz - Holzhäuser Straße 81"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04299.Leipzig.HolzhaeuserStrasse.81> ;
leo:placeName "Ärztehaus Stötteritz - Holzhäuser Straße 81"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/aerztehaus-stoetteritz---holzhaeuser-str.-81> .
<http://le-online.de/place/aerztehausstoetteritzrudolfherrmannstr33>
leo:address "Praktische Ärzte; Hautärztin, Allergologie, Phlebologie, Akkupunktur; FÄ für Frauenheilkunde und Geburtshilfe; FÄ für HNO, Orthopädie Rudolf-Herrmann-Straße 33, 04299 Leipzig"^^xsd:string ;
leo:fixedAddress "Rudolf-Herrmann-Straße 33, 04299 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ärztehaus Stötteritz - Rudolf-Herrmann-Straße 33"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04299.Leipzig.Rudolf-Herrmann-Strasse.33> ;
leo:placeName "Ärztehaus Stötteritz - Rudolf-Herrmann-Straße 33"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/aerztehaus-stoetteritz---rudolf-herrmann-str.-33> .
<http://le-online.de/place/aerztehausstuttgarterallee>
leo:address "Fachärzte für:Allgemeinmedizin, Augenheilkunde, HNO/Allergologie, Innere Medizin, Zahnheilkunde; Logopädie, Physiotherapie Stuttgarter Allee 6, 04209 Leipzig"^^xsd:string ;
leo:fixedAddress "Stuttgarter Allee 6, 04209 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ärztehaus Stuttgarter Allee"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04209.Leipzig.StuttgarterAllee.6> ;
leo:placeName "Ärztehaus Stuttgarter Allee"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/aerztehaus-stuttgarter-allee> .
<http://le-online.de/place/aerztehaussued>
leo:address "Fachärzte für: Innere Medizin; Allergologie; Neurologie und Psychiatrie; Chirugie; Urologie, Kinderheilkunde; Allgemeinmedizin; Praxen für: Physiotherapie; Ergotherapie, Fußpflege und Kosmetik August-Bebel-Straße 71, 04275 Leipzig"^^xsd:string ;
leo:fixedAddress "August-Bebel-Straße 71, 04275 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ärztehaus Süd"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04275.Leipzig.August-Bebel-Strasse.71> ;
leo:placeName "Ärztehaus Süd"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/aerztehaus-sued> .
<http://le-online.de/place/aerztehauszwickauerstrasse>
leo:address "Fachärzte für: Augehheilkunde, Urologie, Zahnheilkunde; Apotheke Zwickauer Straße 99a, 04277 Leipzig"^^xsd:string ;
leo:fixedAddress "Zwickauer Straße 99a, 04277 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ärztehaus Zwickauer Straße"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04277.Leipzig.ZwickauerStrasse.99a> ;
leo:placeName "Ärztehaus Zwickauer Straße"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/aerztehaus-zwickauer-strasse> .
<http://le-online.de/place/aerztezentrumgesundheitszentrumimwestbad>
leo:address "Marktstraße 2-6, 04177 Leipzig"^^xsd:string ;
leo:fixedAddress "Marktstraße 2-6, 04177 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ärztezentrum - Gesundheitszentrum im Westbad"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04177.Leipzig.Marktstrasse.2-6> ;
leo:placeName "Ärztezentrum - Gesundheitszentrum im Westbad"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/aerztezentrum---gesundheitszentrum-im-westbad> .
<http://le-online.de/place/aerztezentrumpraxisklinikamjohannisplatz>
leo:address "Johannisplatz 1, 04103 Leipzig"^^xsd:string ;
leo:fixedAddress "Johannisplatz 1, 04103 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ärztezentrum - Praxisklinik \"Am Johannisplatz\""^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04103.Leipzig.Johannisplatz.1> ;
leo:placeName "Ärztezentrum - Praxisklinik \"Am Johannisplatz\""^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/aerztezentrum---praxisklinik-am-johannisplatz> .
<http://le-online.de/place/aerztezentrumtelemannstrasse>
leo:address "Fachärzte für: Radiologie und Nuklearmedizin Telemannstraße 6, 04107 Leipzig"^^xsd:string ;
leo:fixedAddress "Telemannstraße 6, 04107 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ärztezentrum Telemannstraße"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04107.Leipzig.Telemannstrasse.6> ;
leo:placeName "Ärztezentrum Telemannstraße"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/aerztezentrum-telemannstrasse> .
<http://le-online.de/place/aerztezentrumwestluetznerstr162>
leo:address "Fachärzte für: Frauenheilkunde, Kinderzahnheilkunde; Hebamme Lützner Straße 162, 04179 Leipzig"^^xsd:string ;
leo:fixedAddress "Lützner Straße 162, 04179 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ärztezentrum West - Lützner Straße 162"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04179.Leipzig.LuetznerStrasse.162> ;
leo:placeName "Ärztezentrum West - Lützner Straße 162"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/aerztezentrum-west---luetzner-str.-162> .
<http://le-online.de/place/aerztezentrumwestluetznerstr164>
leo:address "Fachärzte für: Allgemeinmedizin, Augenheilkunde, Chirurgie, HNO, Innere Medizin, Kinderchirurgie, Kinderheilkunde, Praktische Medizin, Radiologische Diagnostik; Physiotherapie Lützner Straße 164, 04179 Leipzig"^^xsd:string ;
leo:fixedAddress "Lützner Straße 164, 04179 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ärztezentrum West - Lützner Straße 164"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04179.Leipzig.LuetznerStrasse.164> ;
leo:placeName "Ärztezentrum West - Lützner Straße 164"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/aerztezentrum-west---luetzner-str.-164> .
<http://le-online.de/place/aesculapapotheke>
leo:address "Landsberger Straße 50, 04157 Leipzig"^^xsd:string ;
leo:fixedAddress "Landsberger Straße 50, 04157 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Aesculap-Apotheke"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04157.Leipzig.LandsbergerStrasse.50> ;
leo:placeName "Aesculap-Apotheke"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/aesculap-apotheke> .
<http://le-online.de/place/agenturfuerarbeitarbeitsamt>
leo:address "Georg-Schumann-Straße 150, 04159 Leipzig Tel.: 01801 - 55 51 11 (für Arbeitsnehmer), 01801 - 66 44 66 (für Arbeitsgeber) Fax: (0341) 9 13 44 44"^^xsd:string ;
leo:fixedAddress "Georg-Schumann-Straße 150, 04159 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Agentur für Arbeit (Arbeitsamt)"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04159.Leipzig.Georg-Schumann-Strasse.150> ;
leo:placeName "Agentur für Arbeit (Arbeitsamt)"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/agentur-fuer-arbeit-(arbeitsamt)> .
<http://le-online.de/place/agushilfefuerangehoerigenachsuizid>
leo:address "Lützner Straße 75 (2. HH), 04177 Leipzig"^^xsd:string ;
leo:fixedAddress "Lützner Straße 75, 04177 Leipzig"^^xsd:string ;
leo:fixedPlaceName "AGUS - Hilfe für Angehörige nach Suizid"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04177.Leipzig.LuetznerStrasse.75> ;
leo:placeName "AGUS - Hilfe für Angehörige nach Suizid"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/agus---hilfe-fuer-angehoerige-nach-suizid> .
<http://le-online.de/place/aidshilfeleipzigev>
leo:address "Ossietzkystraße 18, 04347 Leipzig"^^xsd:string ;
leo:fixedAddress "Ossietzkystraße 18, 04347 Leipzig"^^xsd:string ;
leo:fixedPlaceName "AIDS-Hilfe Leipzig e.V."^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04347.Leipzig.Ossietzkystrasse.18> ;
leo:placeName "AIDS-Hilfe Leipzig e.V."^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/aids-hilfe-leipzig-e.v.> .
<http://le-online.de/place/aktiveseniorenleipzigev>
leo:address "Döllingstraße 31, 04328 Leipzig"^^xsd:string ;
leo:fixedAddress "Döllingstraße 31, 04328 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Aktive Senioren Leipzig e.V."^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04328.Leipzig.Doellingstrasse.31> ;
leo:placeName "Aktive Senioren Leipzig e.V."^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/aktive-senioren-leipzig-e.v.> .
<http://le-online.de/place/akzenthotelrestaurantimhoteldesaxe>
leo:address "Gohliser Straße 25, 04155 Leipzig"^^xsd:string ;
leo:fixedAddress "Gohliser Straße 25, 04155 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Akzent - Hotelrestaurant im Hotel de Saxe"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04155.Leipzig.GohliserStrasse.25> ;
leo:placeName "Akzent - Hotelrestaurant im Hotel de Saxe"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/akzent---hotelrestaurant-im-hotel-de-saxe> .
<http://le-online.de/place/albertschweitzerapotheke>
leo:address "Lidicestraße 5, 04349 Leipzig"^^xsd:string ;
leo:fixedAddress "Lidicestraße 5, 04349 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Albert-Schweitzer-Apotheke"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04349.Leipzig.Lidicestrasse.5> ;
leo:placeName "Albert-Schweitzer-Apotheke"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/albert-schweitzer-apotheke> .
<http://le-online.de/place/albertschweitzerhaus>
leo:address "Täubchenweg 14, 04317 Leipzig"^^xsd:string ;
leo:fixedAddress "Täubchenweg 14, 04317 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Albert- Schweitzer-Haus"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04317.Leipzig.Taeubchenweg.14> ;
leo:placeName "Albert- Schweitzer-Haus"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/albert--schweitzer-haus> .
<http://le-online.de/place/albertschweitzerschulefestsaal>
leo:address "An der Märchenwiese 3, 04277 Leipzig"^^xsd:string ;
leo:fixedAddress "An der Märchenwiese 3, 04277 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Albert-Schweitzer-Schule - Festsaal"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04277.Leipzig.AnderMaerchenwiese.3> ;
leo:placeName "Albert-Schweitzer-Schule - Festsaal"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/albert-schweitzer-schule---festsaal> .
<http://le-online.de/place/albertschweitzerschulefoerderschulefuerkoerperbehinderte>
leo:address "An der Märchenwiese 3, 04277 Leipzig"^^xsd:string ;
leo:fixedAddress "An der Märchenwiese 3, 04277 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Albert-Schweitzer-Schule - Förderschule für Körperbehinderte"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04277.Leipzig.AnderMaerchenwiese.3> ;
leo:placeName "Albert-Schweitzer-Schule - Förderschule für Körperbehinderte"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/albert-schweitzer-schule---foerderschule-fuer-koerperbehinderte> .
<http://le-online.de/place/alfredkunzesportplatzfussball>
leo:address "Am Sportpark 2, 04179 Leipzig"^^xsd:string ;
leo:fixedAddress "Am Sportpark 2, 04179 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Alfred-Kunze-Sportplatz (Fußball)"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04179.Leipzig.AmSportpark.2> ;
leo:placeName "Alfred-Kunze-Sportplatz (Fußball)"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/alfred-kunze-sportplatz-(fussball)> .
<http://le-online.de/place/alleinerziehendemitbehindertenkindern>
leo:address "Lützner Straße 36; 04177 Leipzig"^^xsd:string ;
leo:fixedAddress "Lützner Straße 36, 04177 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Alleinerziehende mit behinderten Kindern"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04177.Leipzig.LuetznerStrasse.36> ;
leo:placeName "Alleinerziehende mit behinderten Kindern"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/alleinerziehende-mit-behinderten-kindern> .
<http://le-online.de/place/allgemeinersozialdienstsozialbezirkaltwest>
leo:address "Georg-Schwarz-Straße 140 (Rathaus Leutzsch), 04179 Leipzig"^^xsd:string ;
leo:fixedAddress "Georg-Schwarz-Straße 140, 04179 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Allgemeiner Sozialdienst Sozialbezirk Alt-West"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04179.Leipzig.Georg-Schwarz-Strasse.140> ;
leo:placeName "Allgemeiner Sozialdienst Sozialbezirk Alt-West"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/allgemeiner-sozialdienst-sozialbezirk-alt-west> .
<http://le-online.de/place/allgemeinersozialdienstsozialbezirkmitte>
leo:address "Elsbethstraße 19-25 (Gohlis-Center), 04155 Leipzig"^^xsd:string ;
leo:fixedAddress "Elsbethstraße 19-25, 04155 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Allgemeiner Sozialdienst Sozialbezirk Mitte"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04155.Leipzig.Elsbethstrasse.19-25> ;
leo:placeName "Allgemeiner Sozialdienst Sozialbezirk Mitte"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/allgemeiner-sozialdienst-sozialbezirk-mitte> .
<http://le-online.de/place/allgemeinersozialdienstsozialbezirknord>
leo:address "Elsbethstraße 19-25 (Gohlis-Center), 04155 Leipzig"^^xsd:string ;
leo:fixedAddress "Elsbethstraße 19-25, 04155 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Allgemeiner Sozialdienst Sozialbezirk Nord"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04155.Leipzig.Elsbethstrasse.19-25> ;
leo:placeName "Allgemeiner Sozialdienst Sozialbezirk Nord"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/allgemeiner-sozialdienst-sozialbezirk-nord> .
<http://le-online.de/place/allgemeinersozialdienstsozialbezirknordost>
leo:address "Ossietzkystraße 37 ( Rathaus Schönefeld), 04347 Leipzig"^^xsd:string ;
leo:fixedAddress "Ossietzkystraße 37, 04347 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Allgemeiner Sozialdienst Sozialbezirk Nordost"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04347.Leipzig.Ossietzkystrasse.37> ;
leo:placeName "Allgemeiner Sozialdienst Sozialbezirk Nordost"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/allgemeiner-sozialdienst-sozialbezirk-nordost> .
<http://le-online.de/place/allgemeinersozialdienstsozialbezirkost>
leo:address "Hermann-Liebmann-Straße 73 (Kleeblatt), 04315 Leipzig"^^xsd:string ;
leo:fixedAddress "Hermann-Liebmann-Straße 73, 04315 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Allgemeiner Sozialdienst Sozialbezirk Ost"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04315.Leipzig.Hermann-Liebmann-Strasse.73> ;
leo:placeName "Allgemeiner Sozialdienst Sozialbezirk Ost"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/allgemeiner-sozialdienst-sozialbezirk-ost> .
<http://le-online.de/place/allgemeinersozialdienstsozialbezirksuedaussenstellesued>
leo:address "Bornaische Straße 27, 04277 Leipzig"^^xsd:string ;
leo:fixedAddress "Bornaische Straße 27, 04277 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Allgemeiner Sozialdienst Sozialbezirk Süd Außenstelle Süd"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04277.Leipzig.BornaischeStrasse.27> ;
leo:placeName "Allgemeiner Sozialdienst Sozialbezirk Süd Außenstelle Süd"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/allgemeiner-sozialdienst-sozialbezirk-sued-aussenstelle-sued> .
<http://le-online.de/place/allgemeinersozialdienstsozialbezirksuedostaussenstellesuedost>
leo:address "Riebeckstraße 51 a, 04299 Leipzig"^^xsd:string ;
leo:fixedAddress "Riebeckstraße 51a, 04299 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Allgemeiner Sozialdienst Sozialbezirk Südost Außenstelle Südost"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04299.Leipzig.Riebeckstrasse.51a> ;
leo:placeName "Allgemeiner Sozialdienst Sozialbezirk Südost Außenstelle Südost"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/allgemeiner-sozialdienst-sozialbezirk-suedost-aussenstelle-suedost> .
<http://le-online.de/place/allgemeinersozialdienstsozialbezirksuedwest>
leo:address "Naumburger Straße 26, 04229 Leipzig"^^xsd:string ;
leo:fixedAddress "Naumburger Straße 26, 04229 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Allgemeiner Sozialdienst Sozialbezirk Südwest"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04229.Leipzig.NaumburgerStrasse.26> ;
leo:placeName "Allgemeiner Sozialdienst Sozialbezirk Südwest"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/allgemeiner-sozialdienst-sozialbezirk-suedwest> .
<http://le-online.de/place/allgemeinersozialdienstsozialbezirkwest>
leo:address "Kiewer Straße 1 - 3 (Ratzelbogen), 04207 Leipzig"^^xsd:string ;
leo:fixedAddress "Kiewer Straße 1-3, 04207 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Allgemeiner Sozialdienst Sozialbezirk West"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04207.Leipzig.KiewerStrasse.1-3> ;
leo:placeName "Allgemeiner Sozialdienst Sozialbezirk West"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/allgemeiner-sozialdienst-sozialbezirk-west> .
<http://le-online.de/place/allgemeinesozialeberatungfuermenscheninbesonderenlebenslagen>
leo:address "Elsterstraße 15 (Agneshaus), 04109 Leipzig"^^xsd:string ;
leo:fixedAddress "Elsterstraße 15, 04109 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Allgemeine Soziale Beratung für Menschen in besonderen Lebenslagen"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04109.Leipzig.Elsterstrasse.15> ;
leo:placeName "Allgemeine Soziale Beratung für Menschen in besonderen Lebenslagen"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/allgemeine-soziale-beratung-fuer-menschen-in-besonderen-lebenslagen> .
<http://le-online.de/place/allgemeinesozialeberatungfuermenschenmitbehinderungderenangehoerigeundfreunde>
leo:address "Träger: Caritasverband Leipzig e.V. Johannisplatz 2, 04103 Leipzig"^^xsd:string ;
leo:fixedAddress "Johannisplatz 2, 04103 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Allgemeine Soziale Beratung für Menschen mit Behinderung, deren Angehörige und Freunde"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04103.Leipzig.Johannisplatz.2> ;
leo:placeName "Allgemeine Soziale Beratung für Menschen mit Behinderung, deren Angehörige und Freunde"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/allgemeine-soziale-beratung-fuer-menschen-mit-behinderung--deren-angehoerige-und-freunde> .
<http://le-online.de/place/alltoursreisecenter>
leo:address "Knopstraße 17, 04159 Leipzig"^^xsd:string ;
leo:fixedAddress "Knopstraße 17, 04159 Leipzig"^^xsd:string ;
leo:fixedPlaceName "alltours Reisecenter"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04159.Leipzig.Knopstrasse.17> ;
leo:placeName "alltours Reisecenter"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/alltours-reisecenter> .
<http://le-online.de/place/altavolo>
leo:address "Hotelrestaurant im Hotel Accento Tauchaer Straße 260, 04349 Leipzig"^^xsd:string ;
leo:fixedAddress "Tauchaer Straße 260, 04349 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Al Tavolo"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04349.Leipzig.TauchaerStrasse.260> ;
leo:placeName "Al Tavolo"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/al-tavolo> .
<http://le-online.de/place/altenikolaischuleaula>
leo:address "Nikolaikirchhof 2, 04109 Leipzig"^^xsd:string ;
leo:fixedAddress "Nikolaikirchhof 2, 04109 Leipzig"^^xsd:string ;
leo:fixedPlaceName "ALTE NIKOLAISCHULE - AULA"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04109.Leipzig.Nikolaikirchhof.2> ;
leo:placeName "ALTE NIKOLAISCHULE - AULA"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/alte-nikolaischule---aula> .
<http://le-online.de/place/altenikolaischulekulturcafe>
leo:address "Nikolaikirchhof 1, 04109 Leipzig"^^xsd:string ;
leo:fixedAddress "Nikolaikirchhof 1, 04109 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Alte Nikolaischule - Kultur-Café"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04109.Leipzig.Nikolaikirchhof.1> ;
leo:placeName "Alte Nikolaischule - Kultur-Café"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/alte-nikolaischule---kultur-caf-and-e> .
<http://le-online.de/place/altenikolaischulereinhardtsgastronomie>
leo:address "Nikolaikirchhof 2, 04109 Leipzig"^^xsd:string ;
leo:fixedAddress "Nikolaikirchhof 2, 04109 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Alte Nikolaischule - Reinhardts Gastronomie"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04109.Leipzig.Nikolaikirchhof.2> ;
leo:placeName "Alte Nikolaischule - Reinhardts Gastronomie"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/alte-nikolaischule---reinhardts-gastronomie> .
<http://le-online.de/place/altenpflegeheimamdiakonissenhaus>
leo:address "Ahlfeldstraße 4, 04177 Leipzig"^^xsd:string ;
leo:fixedAddress "Ahlfeldstraße 4, 04177 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Altenpflegeheim am Diakonissenhaus"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04177.Leipzig.Ahlfeldstrasse.4> ;
leo:placeName "Altenpflegeheim am Diakonissenhaus"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/altenpflegeheim-am-diakonissenhaus> .
<http://le-online.de/place/altenpflegeheimbethanien>
leo:address "Erich-Zeigner-Allee 9, 04229 Leipzig"^^xsd:string ;
leo:fixedAddress "Erich-Zeigner-Allee 9, 04229 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Altenpflegeheim \"Bethanien\""^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04229.Leipzig.Erich-Zeigner-Allee.9> ;
leo:placeName "Altenpflegeheim \"Bethanien\""^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/altenpflegeheim-bethanien> .
<http://le-online.de/place/altenpflegeheimemmaus>
leo:address "Zum Kleingartenpark 25/26, 04318 Leipzig"^^xsd:string ;
leo:fixedAddress "Zum Kleingartenpark 25-26, 04318 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Altenpflegeheim \"Emmaus\""^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04318.Leipzig.ZumKleingartenpark.25-26> ;
leo:placeName "Altenpflegeheim \"Emmaus\""^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/altenpflegeheim-emmaus> .
<http://le-online.de/place/altenpflegeheimgeborgenheit>
leo:address "Zschochersche Allee 68, 04207 Leipzig"^^xsd:string ;
leo:fixedAddress "Zschochersche Allee 68, 04207 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Altenpflegeheim \"Geborgenheit\""^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04207.Leipzig.ZschocherscheAllee.68> ;
leo:placeName "Altenpflegeheim \"Geborgenheit\""^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/altenpflegeheim-geborgenheit> .
<http://le-online.de/place/altenpflegeheimmatthaeistift>
leo:address "Kommandant-Prendel-Allee 85, 04299 Leipzig"^^xsd:string ;
leo:fixedAddress "Kommandant-Prendel-Allee 85, 04299 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Altenpflegeheim Matthäistift"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04299.Leipzig.Kommandant-Prendel-Allee.85> ;
leo:placeName "Altenpflegeheim Matthäistift"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/altenpflegeheim-matthaeistift> .
<http://le-online.de/place/altenpflegeheimtaucha>
leo:address "DRK Kreisverband Leipzig-Land e.V. Am Veitsberg 2-6, 04425 Taucha"^^xsd:string ;
leo:fixedAddress "Am Veitsberg 2-6, 04425 Taucha"^^xsd:string ;
leo:fixedPlaceName "Altenpflegeheim Taucha"^^xsd:string ;
leo:placeName "Altenpflegeheim Taucha"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/altenpflegeheim-taucha> .
<http://le-online.de/place/altenpflegeheimzwenkau>
leo:address "DRK Kreisverband Leipzig-Land e.V. Schulstraße 17, 04442 Zwenkau"^^xsd:string ;
leo:fixedAddress "Schulstraße 17, 04442 Zwenkau"^^xsd:string ;
leo:fixedPlaceName "Altenpflegeheim Zwenkau"^^xsd:string ;
leo:placeName "Altenpflegeheim Zwenkau"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/altenpflegeheim-zwenkau> .
<http://le-online.de/place/altenundpflegeheimmarienheim>
leo:address "Chopinstraße 14, 04103 Leipzig"^^xsd:string ;
leo:fixedAddress "Chopinstraße 14, 04103 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Alten- und Pflegeheim \"Marienheim\""^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04103.Leipzig.Chopinstrasse.14> ;
leo:placeName "Alten- und Pflegeheim \"Marienheim\""^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/alten--und-pflegeheim-marienheim> .
<http://le-online.de/place/altenundpflegeheimmarthahaus>
leo:address "Löhrstraße 9, 04105 Leipzig"^^xsd:string ;
leo:fixedAddress "Löhrstraße 9, 04105 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Alten- und Pflegeheim \"Marthahaus\""^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04105.Leipzig.Loehrstrasse.9> ;
leo:placeName "Alten- und Pflegeheim \"Marthahaus\""^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/alten--und-pflegeheim-marthahaus> .
<http://le-online.de/place/alterjohannisfriedhof>
leo:address "Prager Straße (Grassimuseum), 04103 Leipzig"^^xsd:string ;
leo:fixedAddress "Prager Straße, 04103 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Alter Johannisfriedhof"^^xsd:string ;
leo:placeName "Alter Johannisfriedhof"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/alter-johannisfriedhof> .
<http://le-online.de/place/altesrathaus>
leo:address "Markt 1, 04109 Leipzig"^^xsd:string ;
leo:fixedAddress "Markt 1, 04109 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Altes Rathaus"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04109.Leipzig.Markt.1> ;
leo:placeName "Altes Rathaus"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/altes-rathaus> .
<http://le-online.de/place/altestrasse>
leo:address "Alte Straße 2, 04229 Leipzig"^^xsd:string ;
leo:fixedAddress "Alte Straße 2, 04229 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Alte Straße"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04229.Leipzig.AlteStrasse.2> ;
leo:placeName "Alte Straße"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/alte-strasse> .
<http://le-online.de/place/altstadtreisebuerolausengruenau>
leo:address "Karlsruher Straße 38, 04209 Leipzig"^^xsd:string ;
leo:fixedAddress "Karlsruher Straße 38, 04209 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Altstadt - Reisebüro Lausen-Grünau"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04209.Leipzig.KarlsruherStrasse.38> ;
leo:placeName "Altstadt - Reisebüro Lausen-Grünau"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/altstadt---reisebuero-lausen-gruenau> .
<http://le-online.de/place/alzheimerinformationsundberatungsstellederuniversitaetleipzig>
leo:address "Semmelweisstraße 10, 04103 Leipzig"^^xsd:string ;
leo:fixedAddress "Semmelweisstraße 10, 04103 Leipzig"^^xsd:string ;
leo:fixedPlaceName "ALZHEIMER Informations- und Beratungsstelle der Universität Leipzig"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04103.Leipzig.Semmelweisstrasse.10> ;
leo:placeName "ALZHEIMER Informations- und Beratungsstelle der Universität Leipzig"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/alzheimer-informations--und-beratungsstelle-der-universitaet-leipzig> .
<http://le-online.de/place/amadeorestaurantbistro>
leo:address "im Balance Hotel Leipzig Alte Messe Breslauer Straße 33 (Wasserturmstraße), 04299 Leipzig"^^xsd:string ;
leo:fixedAddress "Breslauer Straße 33, 04299 Leipzig"^^xsd:string ;
leo:fixedPlaceName "AMADEO - Restaurant & Bistro"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04299.Leipzig.BreslauerStrasse.33> ;
leo:placeName "AMADEO - Restaurant & Bistro"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/amadeo---restaurant--and--bistro> .
<http://le-online.de/place/amadler>
leo:address "Münztoilette Am Adler, 04229 Leipzig"^^xsd:string ;
leo:fixedAddress "Am Adler, 04229 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Am Adler"^^xsd:string ;
leo:placeName "Am Adler"^^xsd:string ;
a leo:Toilette ;
owl:sameAs <http://le-online.de/place/am-adler> .
<http://le-online.de/place/ambulantbetreuteswohnenberatungassistenz>
leo:address "Angerstraße 40 - 42, 04177 Leipzig"^^xsd:string ;
leo:fixedAddress "Angerstraße 40-42, 04177 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ambulant Betreutes Wohnen, Beratung, Assistenz"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04177.Leipzig.Angerstrasse.40-42> ;
leo:placeName "Ambulant Betreutes Wohnen, Beratung, Assistenz"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/ambulant-betreutes-wohnen--beratung--assistenz> .
<http://le-online.de/place/ambulantbetreuteswohnenfuerchronischpsychischbehindertemenschen>
leo:address "Dohnanyistraße 24-26, 04103 Leipzig"^^xsd:string ;
leo:fixedAddress "Dohnanyistraße 24-26, 04103 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ambulant betreutes Wohnen für chronisch psychisch behinderte Menschen"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04103.Leipzig.Dohnanyistrasse.24-26> ;
leo:placeName "Ambulant betreutes Wohnen für chronisch psychisch behinderte Menschen"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/ambulant-betreutes-wohnen-fuer-chronisch-psychisch-behinderte-menschen> .
<http://le-online.de/place/ambulantbetreuteswohnenfuerchronischpsychischkranke>
leo:address "ABW Süd, Arndtstraße 66, 04275 Leipzig Tel.: (0341) 2 21 41 66, Fax: (0341) 22 53 67 46 ABW Südwest / Altwest, Siemensstraße 18 (Bootshaus), 04229 Leipzig"^^xsd:string, "Wohnprojekt Schönefeld Volksgartenstraße 18, 04347 Leipzig"^^xsd:string ;
leo:fixedAddress "Arndtstraße 66, 04275 Leipzig"^^xsd:string, "Siemensstraße 18, 04229 Leipzig"^^xsd:string, "Volksgartenstraße 18, 04347 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ambulant betreutes Wohnen für chronisch psychisch Kranke"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04229.Leipzig.Siemensstrasse.18>, <http://leipzig-data.de/Data/04275.Leipzig.Arndtstrasse.66>, <http://leipzig-data.de/Data/04347.Leipzig.Volksgartenstrasse.18> ;
leo:placeName "Ambulant betreutes Wohnen für chronisch psychisch Kranke"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/ambulant-betreutes-wohnen-fuer-chronisch-psychisch-kranke> .
<http://le-online.de/place/ambulantbetreuteswohnenfuerchronischpsychischkrankeunduebergangswohnen>
leo:address "Mainzer Straße 7, 04109 Leipzig"^^xsd:string ;
leo:fixedAddress "Mainzer Straße 7, 04109 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ambulant betreutes Wohnen für chronisch psychisch Kranke und Übergangswohnen"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04109.Leipzig.MainzerStrasse.7> ;
leo:placeName "Ambulant betreutes Wohnen für chronisch psychisch Kranke und Übergangswohnen"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/ambulant-betreutes-wohnen-fuer-chronisch-psychisch-kranke-und-uebergangswohnen> .
<http://le-online.de/place/ambulantbetreuteswohnenfuergeistigbehindertemenschen>
leo:address "Wohnstätte Am Vorwerk Am Vorwerk 2a, 04329 Leipzig"^^xsd:string ;
leo:fixedAddress "Am Vorwerk 2a, 04329 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ambulant betreutes Wohnen für geistig behinderte Menschen"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04329.Leipzig.AmVorwerk.2a> ;
leo:placeName "Ambulant betreutes Wohnen für geistig behinderte Menschen"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/ambulant-betreutes-wohnen-fuer-geistig-behinderte-menschen> .
<http://le-online.de/place/ambulantbetreuteswohnenfuerkoerperundmehrfachbehindertemenschen>
leo:address "Breisgaustraße 53, 04209 Leipzig"^^xsd:string, "Pragerstraße 224, 04289 Leipzig"^^xsd:string ;
leo:fixedAddress "Breisgaustraße 53, 04209 Leipzig"^^xsd:string, "Prager Straße 224, 04289 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ambulant betreutes Wohnen für körper- und mehrfachbehinderte Menschen"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04209.Leipzig.Breisgaustrasse.53>, <http://leipzig-data.de/Data/04289.Leipzig.PragerStrasse.224> ;
leo:placeName "Ambulant betreutes Wohnen für körper- und mehrfachbehinderte Menschen"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/ambulant-betreutes-wohnen-fuer-koerper--und-mehrfachbehinderte-menschen> .
<http://le-online.de/place/ambulantbetreuteswohnenfuerpsychischkranke>
leo:address "Trägerwerk Soziale Dienste in Sachsen e.V. Ringstraße 215, 04209 Leipzig"^^xsd:string ;
leo:fixedAddress "Ringstraße 215, 04209 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ambulant betreutes Wohnen für psychisch Kranke"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04209.Leipzig.Ringstrasse.215> ;
leo:placeName "Ambulant betreutes Wohnen für psychisch Kranke"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/ambulant-betreutes-wohnen-fuer-psychisch-kranke> .
<http://le-online.de/place/ambulantbetreuteswohnenfuerseelischerkranktemenschen>
leo:address "Eisenacher Straße 44 (EG links), 04155 Leipzig"^^xsd:string ;
leo:fixedAddress "Eisenacher Straße 44, 04155 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ambulant betreutes Wohnen für seelisch erkrankte Menschen"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04155.Leipzig.EisenacherStrasse.44> ;
leo:placeName "Ambulant betreutes Wohnen für seelisch erkrankte Menschen"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/ambulant-betreutes-wohnen-fuer-seelisch-erkrankte-menschen> .
<http://le-online.de/place/ambulantbetreuteswohnenfuerseelischkrankemenschen>
leo:address "Lützner Straße 75 (1. HH), 04177 Leipzig"^^xsd:string ;
leo:fixedAddress "Lützner Straße 75, 04177 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ambulant Betreutes Wohnen für seelisch kranke Menschen"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04177.Leipzig.LuetznerStrasse.75> ;
leo:placeName "Ambulant Betreutes Wohnen für seelisch kranke Menschen"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/ambulant-betreutes-wohnen-fuer-seelisch-kranke-menschen> .
<http://le-online.de/place/ambulantebehindertenhilfe>
leo:address "Demmeringstraße 20, 04177 Leipzig"^^xsd:string ;
leo:fixedAddress "Demmeringstraße 20, 04177 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ambulante Behindertenhilfe"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04177.Leipzig.Demmeringstrasse.20> ;
leo:placeName "Ambulante Behindertenhilfe"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/ambulante-behindertenhilfe> .
<http://le-online.de/place/ambulanterhospizdienstadvenaadh>
leo:address "Birkenstraße 16, 04177 Leipzig"^^xsd:string ;
leo:fixedAddress "Birkenstraße 16, 04177 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ambulanter Hospizdienst Advena (ADH)"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04177.Leipzig.Birkenstrasse.16> ;
leo:placeName "Ambulanter Hospizdienst Advena (ADH)"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/ambulanter-hospizdienst-advena-(adh)> .
<http://le-online.de/place/ambulantesozialehilfenimwohnumfeldmitambulanterassistenz>
leo:address "Heinrichstraße 9, 04317 Leipzig"^^xsd:string ;
leo:fixedAddress "Heinrichstraße 9, 04317 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ambulante soziale Hilfen im Wohnumfeld mit ambulanter Assistenz"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04317.Leipzig.Heinrichstrasse.9> ;
leo:placeName "Ambulante soziale Hilfen im Wohnumfeld mit ambulanter Assistenz"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/ambulante-soziale-hilfen-im-wohnumfeld-mit-ambulanter-assistenz> .
<http://le-online.de/place/ambulantestherapiecentrummvzamnrzundsachsenklinik>
leo:address "Waldstraße 14, 04105 Leipzig"^^xsd:string ;
leo:fixedAddress "Waldstraße 14, 04105 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Ambulantes Therapie Centrum - MVZ am NRZ und Sachsenklinik"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04105.Leipzig.Waldstrasse.14> ;
leo:placeName "Ambulantes Therapie Centrum - MVZ am NRZ und Sachsenklinik"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/ambulantes-therapie-centrum---mvz-am-nrz-und-sachsenklinik> .
<http://le-online.de/place/amkulkwitzersee>
leo:address "Zingster Straße 2 c, 04207 Leipzig"^^xsd:string ;
leo:fixedAddress "Zingster Straße 2c, 04207 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Am Kulkwitzer See"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04207.Leipzig.ZingsterStrasse.2c> ;
leo:placeName "Am Kulkwitzer See"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/am-kulkwitzer-see> .
<http://le-online.de/place/amneuenrathaus>
leo:address "Münztoilette Martin-Luther-Ring / Petersstraße, 04109 Leipzig"^^xsd:string ;
leo:fixedAddress "Martin-Luther-Ring/Petersstraße, 04109 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Am Neuen Rathaus"^^xsd:string ;
leo:placeName "Am Neuen Rathaus"^^xsd:string ;
a leo:Toilette ;
owl:sameAs <http://le-online.de/place/am-neuen-rathaus> .
<http://le-online.de/place/amtfuergemeindedienst>
leo:address "Burgstraße 1 - 5, 04109 Leipzig"^^xsd:string ;
leo:fixedAddress "Burgstraße 1-5, 04109 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Amt für Gemeindedienst"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04109.Leipzig.Burgstrasse.1-5> ;
leo:placeName "Amt für Gemeindedienst"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/amt-fuer-gemeindedienst> .
<http://le-online.de/place/amtfuerjugendfamilieundbildung>
leo:address "Naumburger Straße 26, 04229 Leipzig"^^xsd:string ;
leo:fixedAddress "Naumburger Straße 26, 04229 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Amt für Jugend, Familie und Bildung"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04229.Leipzig.NaumburgerStrasse.26> ;
leo:placeName "Amt für Jugend, Familie und Bildung"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/amt-fuer-jugend--familie-und-bildung> .
<http://le-online.de/place/amtsgerichtleipzig>
leo:address "Bernhard-Göring-Straße 64, 04275 Leipzig"^^xsd:string ;
leo:fixedAddress "Bernhard-Göring-Straße 64, 04275 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Amtsgericht Leipzig"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04275.Leipzig.Bernhard-Goering-Strasse.64> ;
leo:placeName "Amtsgericht Leipzig"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/amtsgericht-leipzig> .
<http://le-online.de/place/amviadukt>
leo:address "Horst-Heilmann-Straße 4, 04159 Leipzig"^^xsd:string ;
leo:fixedAddress "Horst-Heilmann-Straße 4, 04159 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Am Viadukt"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04159.Leipzig.Horst-Heilmann-Strasse.4> ;
leo:placeName "Am Viadukt"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/am-viadukt> .
<http://le-online.de/place/anderlehde>
leo:address "Stadt Leipzig Amt für Jugend, Familie und Bildung An der Lehde 12/14, 04179 Leipzig"^^xsd:string ;
leo:fixedAddress "An der Lehde 12-14, 04179 Leipzig"^^xsd:string ;
leo:fixedPlaceName "An der Lehde"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04179.Leipzig.AnderLehde.12-14> ;
leo:placeName "An der Lehde"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/an-der-lehde> .
<http://le-online.de/place/andreaskircheevluth>
leo:address "Scharnhorststraße 29, 04275 Leipzig"^^xsd:string ;
leo:fixedAddress "Scharnhorststraße 29, 04275 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Andreaskirche (Ev.-Luth.)"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04275.Leipzig.Scharnhorststrasse.29> ;
leo:placeName "Andreaskirche (Ev.-Luth.)"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/andreaskirche-(ev.-luth.)> .
<http://le-online.de/place/angelikastiftaltenpflegeheim>
leo:address "Bornaische Straße 82, 04277 Leipzig"^^xsd:string ;
leo:fixedAddress "Bornaische Straße 82, 04277 Leipzig"^^xsd:string ;
leo:fixedPlaceName "Angelika - Stift - Altenpflegeheim"^^xsd:string ;
leo:ldAddress <http://leipzig-data.de/Data/04277.Leipzig.BornaischeStrasse.82> ;
leo:placeName "Angelika - Stift - Altenpflegeheim"^^xsd:string ;
a leo:Place ;
owl:sameAs <http://le-online.de/place/angelika---stift---altenpflegeheim> .
<http://le-online.de/place/antidiskriminierungsbueroev>
leo:address "Kochstraße 14, 04275 Leipzig"^^xsd:string ;
leo:fixedAddress "Kochstraße 14, 04275 Leipzig"^^xsd:string ;