-
Notifications
You must be signed in to change notification settings - Fork 2
/
NL-Akteure.ttl
2504 lines (2246 loc) · 117 KB
/
NL-Akteure.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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix org: <http://www.w3.org/ns/org#> .
@prefix ld: <http://leipzig-data.de/Data/Model/> .
@prefix nl: <http://nachhaltiges-leipzig.de/Data/Model#> .
@prefix ical: <http://www.w3.org/2002/12/cal/ical#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix gsp: <http://www.opengis.net/ont/geosparql#> .
<http://nachhaltiges-leipzig.de/Data/Akteure/> a owl:Ontology ;
rdfs:comment "Dump aus der Datenbank";
dct:created "2019-02-24" ;
rdfs:label "Nachhaltiges Leipzig - Akteure" .
<http://nachhaltiges-leipzig.de/Data/Akteur.277> a nl:Akteur ;
nl:hasFullAddress "Prager Straße 118-136, 04317 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04317.Leipzig.PragerStrasse.118> ;
foaf:mbox "[email protected]" ;
rdfs:label "Michael Schulze" ;
foaf:homepage <http://www.leipzig.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#other> ;
gsp:asWKT "Point(12.3998 51.3265)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.276> a nl:Akteur ;
nl:hasFullAddress "Gabelsbergerstr.1a, 04317 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04317.Leipzig.GabelsbergerStrasse.1AA> ;
foaf:mbox "[email protected]" ;
rdfs:label "culturtraeger" ;
foaf:homepage <http://www.leipziggruen.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#other> ;
gsp:asWKT "Point(12.3959 51.3397)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.275> a nl:Akteur ;
foaf:mbox "[email protected]" ;
rdfs:label "Kulturhaus Beucha e.v." ;
foaf:homepage <http://www.kulturhaus-beucha.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.274> a nl:Akteur ;
nl:hasFullAddress "Reichelstraße 7, 04109 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04109.Leipzig.Reichelstrasse.7> ;
foaf:mbox "[email protected]" ;
rdfs:label "Atelier Latent" ;
foaf:homepage <http://www.atelier-latent.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#freelancer> ;
gsp:asWKT "Point(12.3672 51.3368)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.273> a nl:Akteur ;
nl:hasFullAddress "Lene-Voigt-Park, Höhe Reichpietschstraße 53-55, 04317 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04317.Leipzig.Reichpietschstrasse.53> ;
foaf:mbox "[email protected]" ;
rdfs:label "VAGaBUND Lene" ;
foaf:homepage <https://www.bund-leipzig.de/themen-und-projekte/urban-gardening/vagabund-lene/> ;
a <http://nachhaltiges-leipzig.de/Data/Model#initiative> ;
gsp:asWKT "Point(12.3954 51.3352)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.272> a nl:Akteur ;
nl:hasFullAddress "Wintergartenstraße 2, 04103 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04103.Leipzig.Wintergartenstrasse.2> ;
foaf:mbox "[email protected]" ;
rdfs:label "Notenspur Leipzig e.V." ;
foaf:homepage <http://www.notenspur-leipzig.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.384 51.3427)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.271> a nl:Akteur ;
nl:hasFullAddress "c/o B.Weisshaar; Reichelstraße 7, 04109 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04109.Leipzig.Reichelstrasse.7> ;
foaf:mbox "[email protected]" ;
rdfs:label "FUSS e.V." ;
foaf:homepage <http://www.leipzig-zu-fuss.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.3784 51.3422)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.270> a nl:Akteur ;
nl:hasFullAddress "Pittlerstraße 21 - 25, 04159 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04159.Leipzig.Pittlerstrasse.21> ;
foaf:mbox "[email protected]" ;
rdfs:label "Hof Igelgasse" ;
foaf:homepage <http://www.hof-igelgasse.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#initiative> ;
gsp:asWKT "Point(12.314 51.3782)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.269> a nl:Akteur ;
nl:hasFullAddress "Lutherstraße 10, 04683 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04683.Leipzig.Lutherstrasse.10> ;
foaf:mbox "[email protected]" ;
rdfs:label "Burmeister" ;
foaf:homepage <http://www.viridosent.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#freelancer> ;
gsp:asWKT "Point(12.594 51.28)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.268> a nl:Akteur ;
nl:hasFullAddress "An der Schmiede 4, 04425 Taucha" ;
ld:proposedAddress <http://leipzig-data.de/Data/04425.Taucha.AnderSchmiede.4> ;
foaf:mbox "[email protected]" ;
rdfs:label "Werkstatt für nachhaltiges Leben und Arbeiten e.V." ;
foaf:homepage <http://www.schmiede4.net> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.54 51.3777)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.267> a nl:Akteur ;
nl:hasFullAddress "Hauptstraße 19, 04463 Großpösna" ;
ld:proposedAddress <http://leipzig-data.de/Data/04463.Grosspoesna.Hauptstrasse.19> ;
foaf:mbox "[email protected]" ;
rdfs:label "Soziokulturelles Zentrum KuHstall e.V." ;
foaf:homepage <http://www.kuhstall-grosspoesna.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.5014 51.2702)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.266> a nl:Akteur ;
nl:hasFullAddress "Am Anger 6, 04463 Großpösna" ;
ld:proposedAddress <http://leipzig-data.de/Data/04463.Grosspoesna.AmAnger.6> ;
foaf:mbox "[email protected]" ;
rdfs:label "Arbeitskreis Sachsens schönste Dörfer" ;
a <http://nachhaltiges-leipzig.de/Data/Model#other> ;
gsp:asWKT "Point(12.4648 51.2163)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.265> a nl:Akteur ;
nl:hasFullAddress "Lortzingstraße 3, 04105 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04105.Leipzig.Lortzingstrasse.3> ;
foaf:mbox "[email protected]" ;
rdfs:label "Naturkundemuseum Leipzig" ;
foaf:homepage <https://naturkundemuseum.leipzig.de/> ;
a <http://nachhaltiges-leipzig.de/Data/Model#other> ;
gsp:asWKT "Point(12.3709 51.345)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.264> a nl:Akteur ;
nl:hasFullAddress "An der Kirche 63, 04463 Großpösna" ;
ld:proposedAddress <http://leipzig-data.de/Data/04463.Grosspoesna.AnderKirche.63> ;
foaf:mbox "[email protected]" ;
rdfs:label "Frau" ;
foaf:homepage <http://www.uferleben.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.4681 51.2194)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.263> a nl:Akteur ;
nl:hasFullAddress "Sehliser Straße 11b, 04425 Taucha" ;
ld:proposedAddress <http://leipzig-data.de/Data/04425.Taucha.SehliserStrasse.11B> ;
foaf:mbox "[email protected]" ;
rdfs:label "Kleine Beete" ;
foaf:homepage <http://www.kleinebeete.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#other> ;
gsp:asWKT "Point(12.5359 51.379)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.262> a nl:Akteur ;
nl:hasFullAddress "Spechtweg 6, 04288 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04288.Leipzig.Spechtweg.6> ;
foaf:mbox "[email protected]" ;
rdfs:label "ANSTALT für Koch- und Lebensmittelkultur" ;
foaf:homepage <http://kochanstalt.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#initiative> ;
gsp:asWKT "Point(12.4528 51.3164)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.261> a nl:Akteur ;
nl:hasFullAddress "Marktstraße 12, 04425 Taucha" ;
ld:proposedAddress <http://leipzig-data.de/Data/04425.Taucha.Marktstrasse.12> ;
foaf:mbox "[email protected]" ;
rdfs:label "KoLa Leipzig" ;
foaf:homepage <http://www.kolaleipzig.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#initiative> ;
gsp:asWKT "Point(12.5023 51.38)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.260> a nl:Akteur ;
nl:hasFullAddress "Mühlstrasse 14 e.V., 04317 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04317.Leipzig.Muehlstrasse.14> ;
foaf:mbox "[email protected]" ;
rdfs:label "MÜHLSTRASSE 14 e.V." ;
foaf:homepage <https://www.muehlstrasse.de/> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.4008 51.3301)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.259> a nl:Akteur ;
nl:hasFullAddress "Löhrstraße 3-7, 04105 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04105.Leipzig.Loehrstrasse.3> ;
foaf:mbox "[email protected]" ;
rdfs:label "Volkshochschule Leipzig" ;
foaf:homepage <http://www.vhs-leipzig.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#educational> ;
gsp:asWKT "Point(12.3734 51.3454)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.258> a nl:Akteur ;
nl:hasFullAddress "Friedhofsweg 3, 04299 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04299.Leipzig.Friedhofsweg.3> ;
foaf:mbox "[email protected]" ;
rdfs:label "Amt für Stadtgrün und Gewässer, Abteilung Friedhoefe" ;
foaf:homepage <http://www.leipzig.de/friedhoefe> ;
a <http://nachhaltiges-leipzig.de/Data/Model#other> ;
gsp:asWKT "Point(12.4083 51.3127)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.257> a nl:Akteur ;
nl:hasFullAddress "Sternenzelt (Höhe Heinrichstrasse), 04317 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04317.Leipzig.Sternenzelt(HoeheHeinrichstrasse).XX> ;
foaf:mbox "[email protected]" ;
rdfs:label "Luise" ;
foaf:homepage <http://www.unterwegs-und-angekommen.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.4009 51.3369)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.256> a nl:Akteur ;
nl:hasFullAddress "Wiese gegenüber An der Aue 35, 04552 Borna" ;
ld:proposedAddress <http://leipzig-data.de/Data/04552.Borna.AnderAue.35> ;
foaf:mbox "[email protected]" ;
rdfs:label "Zukunftsgärtner(n) in Gnandorf" ;
foaf:homepage <http://www.nabu-zukunftsgarten.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.4978 51.1124)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.255> a nl:Akteur ;
nl:hasFullAddress "Bautzner Straße 45-47, 01099 Dresden" ;
ld:proposedAddress <http://leipzig-data.de/Data/01099.Dresden.BautznerStrasse.45> ;
foaf:mbox "[email protected]" ;
rdfs:label "Sächsischer Landesverband der Kita- und Schulfördervereine (SLSFV) e. V." ;
foaf:homepage <http://www.slsfv.de/chancenpatenschaften> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(13.7554 51.0632)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.254> a nl:Akteur ;
nl:hasFullAddress "Oststraße 115, 04299 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04299.Leipzig.Oststrasse.115> ;
foaf:mbox "[email protected]" ;
rdfs:label "Erna Primula - Blumen Studio" ;
foaf:homepage <http://www.erna-primula.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#freelancer> ;
gsp:asWKT "Point(12.4179 51.329)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.253> a nl:Akteur ;
nl:hasFullAddress "Könneritzstraße 82, 04229 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04229.Leipzig.Koenneritzstrasse.82> ;
foaf:mbox "[email protected]" ;
rdfs:label "Wilde Kräuterey" ;
foaf:homepage <http://wildekraeuterey.de/> ;
a <http://nachhaltiges-leipzig.de/Data/Model#corporation> ;
gsp:asWKT "Point(12.342 51.3211)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.252> a nl:Akteur ;
nl:hasFullAddress "Güterbahnhof Plagwitz, 04177 Leipzig" ;
foaf:mbox "[email protected]" ;
rdfs:label "Ulrike Biller" ;
foaf:homepage <http://www.hoopcityleipzig.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#freelancer> ;
gsp:asWKT "Point(12.3221 51.327)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.251> a nl:Akteur ;
nl:hasFullAddress "Jahnallee 61, 04177 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04177.Leipzig.Jahnallee.61> ;
foaf:mbox "[email protected]" ;
rdfs:label "Robyn Chamberlain" ;
foaf:homepage <http://www.robynchamberlain.com> ;
a <http://nachhaltiges-leipzig.de/Data/Model#corporation> ;
gsp:asWKT "Point(12.3421 51.3382)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.250> a nl:Akteur ;
nl:hasFullAddress "Hildgardstraße 49/ 51, 04315 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04315.Leipzig.Hildgardstrasse.49> ;
foaf:mbox "[email protected]" ;
rdfs:label "Hildes Bauernmarkt - Die Marktschwärmerei im Leipziger Osten" ;
foaf:homepage <https://marktschwaermer.de/de-DE/assemblies/7826> ;
a <http://nachhaltiges-leipzig.de/Data/Model#initiative> ;
gsp:asWKT "Point(12.4072 51.3458)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.249> a nl:Akteur ;
nl:hasFullAddress "PF 100920, 04009 Leipzig" ;
foaf:mbox "[email protected]" ;
rdfs:label "LSGM" ;
foaf:homepage <http://lsgm.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.3731 51.3397)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.248> a nl:Akteur ;
nl:hasFullAddress "Kreuzstrasse 3 B, 04103 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04103.Leipzig.Kreuzstrasse.3B> ;
foaf:mbox "[email protected]" ;
rdfs:label "Roger Schaumberg" ;
foaf:homepage <https://sachsen.mehr-demokratie.de/> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.3903 51.3413)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.247> a nl:Akteur ;
nl:hasFullAddress "William-Zipperer-Str. 36, 04177 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04177.Leipzig.William-Zipperer-Strasse.36> ;
foaf:mbox "[email protected]" ;
rdfs:label "Peter Dreißig - Nachtpeter Verlag" ;
foaf:homepage <http://www.nachtpeter.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#freelancer> ;
gsp:asWKT "Point(12.329 51.3406)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.246> a nl:Akteur ;
nl:hasFullAddress "Weißenfelser Str. 65H, 04229 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04229.Leipzig.WeissenfelserStrasse.65H> ;
foaf:mbox "[email protected]" ;
rdfs:label "Afeefa - Digitaler Zusammenhalt e.V." ;
foaf:homepage <http://www.leipzig.afeefa.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.3306 51.3292)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.245> a nl:Akteur ;
nl:hasFullAddress "Karl-Liebknecht-Str. 83, 04275 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04275.Leipzig.Karl-Liebknecht-Strasse.83> ;
foaf:mbox "[email protected]" ;
rdfs:label "Carls Laden" ;
a <http://nachhaltiges-leipzig.de/Data/Model#corporation> ;
gsp:asWKT "Point(12.3739 51.3227)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.244> a nl:Akteur ;
nl:hasFullAddress "Steinstraße 22, 04275 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04275.Leipzig.Steinstrasse.22> ;
foaf:mbox "[email protected]" ;
rdfs:label "hundert2grad - Konsumbewusste DIY-Workshops" ;
foaf:homepage <http://www.hundert2grad.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#freelancer> ;
gsp:asWKT "Point(12.3721 51.3176)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.243> a nl:Akteur ;
nl:hasFullAddress "Röckenerstraße 44, 04229 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04229.Leipzig.Roeckenerstrasse.44> ;
foaf:mbox "[email protected]" ;
rdfs:label "agnes reuter" ;
foaf:homepage <https://www.facebook.com/Hildegarten-Leipzig-1880750768814057/> ;
a <http://nachhaltiges-leipzig.de/Data/Model#initiative> ;
gsp:asWKT "Point(12.322 51.3197)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.241> a nl:Akteur ;
nl:hasFullAddress "Merseburger Str. 102, 04177 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04177.Leipzig.MerseburgerStrasse.102> ;
foaf:mbox "[email protected]" ;
rdfs:label "Café kaputt" ;
foaf:homepage <http://www.reparieren-in-leipig.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.326 51.3382)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.240> a nl:Akteur ;
nl:hasFullAddress "Friedrich-List-Platz 1, 04103 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04103.Leipzig.Friedrich-List-Platz.1> ;
foaf:mbox "[email protected]" ;
rdfs:label "Marco" ;
foaf:homepage <http://www.fairmeals.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#corporation> ;
gsp:asWKT "Point(12.3919 51.3457)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.239> a nl:Akteur ;
nl:hasFullAddress "Universitätsstraße 18, Gewerbe 2, 04019 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04019.Leipzig.Universitaetsstrasse.18> ;
foaf:mbox "[email protected]" ;
rdfs:label "Bohemian Kids Cafe/Bar" ;
foaf:homepage <https://www.facebook.com/BohemianKidsCafe/> ;
a <http://nachhaltiges-leipzig.de/Data/Model#corporation> ;
gsp:asWKT "Point(12.3776 51.3377)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.238> a nl:Akteur ;
nl:hasFullAddress "Leipziger Straße 17 a, 04668 Grimma" ;
ld:proposedAddress <http://leipzig-data.de/Data/04668.Grimma.LeipzigerStrasse.17A> ;
foaf:mbox "[email protected]" ;
rdfs:label "Geopark Porphyrland. Steinreich in Sachsen e.V." ;
foaf:homepage <https://www.geopark-porphyrland.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.7216 51.2335)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.237> a nl:Akteur ;
nl:hasFullAddress "Kickerlingsberg 8, 04105 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04105.Leipzig.Kickerlingsberg.8> ;
foaf:mbox "[email protected]" ;
rdfs:label "VITERA Solutions GmbH" ;
foaf:homepage <http://www.vitera.org> ;
a <http://nachhaltiges-leipzig.de/Data/Model#corporation> ;
gsp:asWKT "Point(12.3717 51.3519)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.236> a nl:Akteur ;
nl:hasFullAddress "Geiststr. 2, 37073 Göttingen" ;
ld:proposedAddress <http://leipzig-data.de/Data/37073.Goettingen.Geiststrasse.2> ;
foaf:mbox "[email protected]" ;
rdfs:label "Naturschule Deutschland e.V." ;
foaf:homepage <http://www.naturschule.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(9.92868 51.5346)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.235> a nl:Akteur ;
nl:hasFullAddress "Blücherstr. 37, 04159 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04159.Leipzig.Bluecherstrasse.37> ;
foaf:mbox "[email protected]" ;
rdfs:label "Global ESD" ;
foaf:homepage <http://www.globalesd.org> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.3397 51.37)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.234> a nl:Akteur ;
nl:hasFullAddress "Gohliser Straße 6, 04155 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04105.Leipzig.GohliserStrasse.6> ;
foaf:mbox "[email protected]" ;
rdfs:label "Naturdrogerie Sturm" ;
foaf:homepage <http://www.naturdrogerie-sturm.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#corporation> ;
gsp:asWKT "Point(12.3677 51.3583)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.233> a nl:Akteur ;
nl:hasFullAddress "Demmering Str. 49, 04177 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04177.Leipzig.Demmeringstrasse.49> ;
foaf:mbox "[email protected]" ;
rdfs:label "Code it!" ;
foaf:homepage <https://code-it-studio.de/> ;
a <http://nachhaltiges-leipzig.de/Data/Model#corporation> ;
gsp:asWKT "Point(12.3278 51.3363)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.232> a nl:Akteur ;
nl:hasFullAddress "Straße des 17. Juni 11, 04107 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04107.Leipzig.Strassedes17Juni.11> ;
foaf:mbox "[email protected]" ;
rdfs:label "KonsumGlobalLeipzig" ;
foaf:homepage <http://www.KonsumGlobal-Leipzig.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#initiative> ;
gsp:asWKT "Point(12.3721 51.3326)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.231> a nl:Akteur ;
nl:hasFullAddress "Kreuzstraße 1C, 04103 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04103.Leipzig.Kreuzstrasse.1C> ;
foaf:mbox "[email protected]" ;
rdfs:label "Stefan Härtel" ;
a <http://nachhaltiges-leipzig.de/Data/Model#other> ;
gsp:asWKT "Point(12.3899 51.3413)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.230> a nl:Akteur ;
nl:hasFullAddress "Bahrener Straße 12, 04668 Grimma" ;
ld:proposedAddress <http://leipzig-data.de/Data/04668.Grimma.BahrenerStrasse.12> ;
foaf:mbox "[email protected]" ;
rdfs:label "Annett Antonia Graeske" ;
foaf:homepage <http://www.offene-gartenpforte-muldental.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#initiative> ;
gsp:asWKT "Point(12.7401 51.2534)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.229> a nl:Akteur ;
nl:hasFullAddress "Georg-Schwarz-Straße 118, 04179 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04179.Leipzig.Georg-Schwarz-Strasse.118> ;
foaf:mbox "[email protected]" ;
rdfs:label "Ecofacture" ;
foaf:homepage <http://www.ecofacture.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#corporation> ;
gsp:asWKT "Point(12.3166 51.3466)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.228> a nl:Akteur ;
nl:hasFullAddress "Aurelienstraße 62, 04177 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04177.Leipzig.Aurelienstrasse.62> ;
foaf:mbox "[email protected]" ;
rdfs:label "the shop she loves" ;
foaf:homepage <http://www.theshopsheloves.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#corporation> ;
gsp:asWKT "Point(12.3269 51.3316)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.227> a nl:Akteur ;
nl:hasFullAddress "Pommernstraße 10, 04318 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04318.Leipzig.Pommernstrasse.10> ;
foaf:mbox "[email protected]" ;
rdfs:label "Bunte Gärten Leipzig e. V." ;
foaf:homepage <http://bunte-gaerten.org> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.4285 51.3293)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.226> a nl:Akteur ;
nl:hasFullAddress "Riemannstraße 28, 04107 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04107.Leipzig.Riemannstrasse.28> ;
foaf:mbox "[email protected]" ;
rdfs:label "Ramona Strohwald" ;
a <http://nachhaltiges-leipzig.de/Data/Model#freelancer> ;
gsp:asWKT "Point(12.3763 51.3311)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.224> a nl:Akteur ;
nl:hasFullAddress "Erdmannstraße 8, 04229 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04229.Leipzig.Erdmannstrasse.8> ;
foaf:mbox "[email protected]" ;
rdfs:label "Ackerdemia e.V." ;
foaf:homepage <http://www.gemueseackerdemie.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.3463 51.3315)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.223> a nl:Akteur ;
nl:hasFullAddress "Lützner Straße 108, 04177 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04177.Leipzig.LuetznerStrasse.108> ;
foaf:mbox "[email protected]" ;
rdfs:label "ANNALINDE Akademie" ;
foaf:homepage <http://annalinde-leipzig.de/> ;
a <http://nachhaltiges-leipzig.de/Data/Model#other> ;
gsp:asWKT "Point(12.3252 51.3342)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.222> a nl:Akteur ;
nl:hasFullAddress "Richard-Wagner-Straße 7A, 04509 Delitzsch" ;
ld:proposedAddress <http://leipzig-data.de/Data/04509.Delitzsch.Richard-Wagner-Strasse.7A> ;
foaf:mbox "[email protected]" ;
rdfs:label "Delitzscher Land e.V" ;
foaf:homepage <http://www.delitzscherland.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.3329 51.5172)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.221> a nl:Akteur ;
nl:hasFullAddress "Naumburger Straße 10, 04229 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04229.Leipzig.NaumburgerStrasse.10> ;
foaf:mbox "[email protected]" ;
rdfs:label "heldenküche" ;
foaf:homepage <http://www.heldenkueche.net> ;
a <http://nachhaltiges-leipzig.de/Data/Model#corporation> ;
gsp:asWKT "Point(12.3334 51.3263)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.220> a nl:Akteur ;
nl:hasFullAddress "Georg-Schumann-Straße 126, 04155 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04155.Leipzig.Georg-Schumann-Strasse.126> ;
foaf:mbox "[email protected]" ;
rdfs:label "Magistralenmanagement Georg-Schumann-Straße" ;
foaf:homepage <http://www.schumann-magistrale.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#other> ;
gsp:asWKT "Point(12.3575 51.3645)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.219> a nl:Akteur ;
nl:hasFullAddress "Ecksteinstraße 29, 04277 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04277.Leipzig.Ecksteinstrasse.29> ;
foaf:mbox "[email protected]" ;
rdfs:label "Solidarische Feldwirtschaft" ;
foaf:homepage <http://www.solidarischefeldwirtschaft.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.3793 51.3052)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.218> a nl:Akteur ;
nl:hasFullAddress "Apelsteinweg 12, 04316 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04316.Leipzig.Apelsteinweg.12> ;
foaf:mbox "[email protected]" ;
rdfs:label "mobile- apfelquetsche" ;
foaf:homepage <http://www.mobile-apfelquetsche.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#corporation> ;
gsp:asWKT "Point(12.4753 51.3219)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.217> a nl:Akteur ;
foaf:mbox "[email protected]" ;
rdfs:label "agra-Park" ;
foaf:homepage <http://www.agra-park.info> ;
a <http://nachhaltiges-leipzig.de/Data/Model#other> ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.216> a nl:Akteur ;
nl:hasFullAddress "Naumburger Straße 10, 04229 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04229.Leipzig.NaumburgerStrasse.10> ;
foaf:mbox "[email protected]" ;
rdfs:label "Ölmühle Leipzig" ;
foaf:homepage <http://www.leipspeis.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#corporation> ;
gsp:asWKT "Point(12.3334 51.3263)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.215> a nl:Akteur ;
nl:hasFullAddress "Kochstraße 132, 04277 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04277.Leipzig.Kochstrasse.132> ;
foaf:mbox "[email protected]" ;
rdfs:label "Cammerspiele Leipzig" ;
foaf:homepage <http://www.cammerspiele.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.3713 51.3101)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.214> a nl:Akteur ;
nl:hasFullAddress "Pfaffendorfer Straße 29, 04105 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04105.Leipzig.PfaffendorferStrasse.29> ;
foaf:mbox "[email protected]" ;
rdfs:label "Zoo Leipzig GmbH" ;
foaf:homepage <http://www.zoo-leipzig.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#other> ;
gsp:asWKT "Point(12.3713 51.3495)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.213> a nl:Akteur ;
nl:hasFullAddress "Rüdigsdorf 29, 04655 Kohren-Sahlis" ;
ld:proposedAddress <http://leipzig-data.de/Data/04655.Kohren-Sahlis.Ruedigsdorf.29> ;
foaf:mbox "[email protected]" ;
rdfs:label "GRÜNE LIGA Kohrener Land" ;
foaf:homepage <http://www.apfelkola.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.5994 51.0091)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.212> a nl:Akteur ;
nl:hasFullAddress "Karl-Tauchnitz-Straße 9-11, 04107 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04107.Leipzig.Karl-Tauchnitz-Strasse.9> ;
foaf:mbox "[email protected]" ;
rdfs:label "Galerie für Zeitgenössische Kunst" ;
foaf:homepage <http://www.gfzk.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#educational> ;
gsp:asWKT "Point(12.366 51.3341)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.211> a nl:Akteur ;
nl:hasFullAddress "Johannisplatz 5-11, 04103 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04103.Leipzig.Johannisplatz.5> ;
foaf:mbox "[email protected]" ;
rdfs:label "GRASSI Museum für Angewandte Kunst" ;
foaf:homepage <http://www.grassimuseum.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#educational> ;
gsp:asWKT "Point(12.3878 51.3369)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.210> a nl:Akteur ;
nl:hasFullAddress "Neustädter Straße 20, 04315 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04315.Leipzig.NeustaedterStrasse.20> ;
foaf:mbox "[email protected]" ;
rdfs:label "Querbeet Leipzig e.V." ;
foaf:homepage <http://www.querbeet-leipzig.de/> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.4004 51.3462)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.209> a nl:Akteur ;
nl:hasFullAddress "Ritterstraße 12, 04109 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04109.Leipzig.Ritterstrasse.12> ;
foaf:mbox "[email protected]" ;
rdfs:label "Notenspur Leipzig e.V." ;
foaf:homepage <http://www.notenspur-leipzig.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.3795 51.3405)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.208> a nl:Akteur ;
nl:hasFullAddress "Martin-Luther-Straße 37, 04808 Lossatal" ;
ld:proposedAddress <http://leipzig-data.de/Data/04808.Lossatal.Martin-Luther-Strasse.37> ;
foaf:mbox "[email protected]" ;
rdfs:label "Blütenreich" ;
foaf:homepage <https://bluetenreich.jimdo.com/> ;
a <http://nachhaltiges-leipzig.de/Data/Model#corporation> ;
gsp:asWKT "Point(12.861 51.4269)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.207> a nl:Akteur ;
nl:hasFullAddress "Karl-Liebknecht-Straße 112, 04275 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04275.Leipzig.Karl-Liebknecht-Strasse.112> ;
foaf:mbox "[email protected]" ;
rdfs:label "Cafe. Restaurant. Symbiose" ;
foaf:homepage <http://www.symbiose-leipzig.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#corporation> ;
gsp:asWKT "Point(12.3731 51.3165)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.206> a nl:Akteur ;
foaf:mbox "[email protected]" ;
rdfs:label "Graeske" ;
foaf:homepage <http://www.offene-gartenpforte-muldental.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#initiative> ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.205> a nl:Akteur ;
nl:hasFullAddress "Markt 3, 04509 Delitzsch" ;
ld:proposedAddress <http://leipzig-data.de/Data/04509.Delitzsch.Markt.3> ;
foaf:mbox "[email protected]" ;
rdfs:label "Stadt Delitzsch" ;
foaf:homepage <http://www.delitzsch.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#other> ;
gsp:asWKT "Point(12.3329 51.5221)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.204> a nl:Akteur ;
nl:hasFullAddress "Linnéstraße 1, 04103 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04103.Leipzig.Linnestrasse.1> ;
foaf:mbox "[email protected]" ;
rdfs:label "Wilde Leipziger" ;
foaf:homepage <http://www.wilde-leipziger.eu> ;
a <http://nachhaltiges-leipzig.de/Data/Model#initiative> ;
gsp:asWKT "Point(12.3926 51.3292)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.203> a nl:Akteur ;
nl:hasFullAddress "Angerstraße 40-42, 04177 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04177.Leipzig.Angerstrasse.40> ;
foaf:mbox "[email protected]" ;
rdfs:label "Hörspielsommer e.V." ;
foaf:homepage <https://hoerspielsommer.de/> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.337 51.3409)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.202> a nl:Akteur ;
nl:hasFullAddress "Luppenstraße 9, 04177 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04177.Leipzig.Luppenstrasse.9> ;
foaf:mbox "[email protected]" ;
rdfs:label "Zentrum für Fermentation" ;
foaf:homepage <http://www.zff-leipzig.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#other> ;
gsp:asWKT "Point(12.3413 51.3375)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.201> a nl:Akteur ;
nl:hasFullAddress "Lützowstraße 19, 04157 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04157.Leipzig.Luetzowstrasse.19> ;
foaf:mbox "[email protected]" ;
rdfs:label "Gohliser Verein zur Förderung von Kunst und Kultur e.V." ;
foaf:homepage <https://www.kuk-gohlis.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.3738 51.3638)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.200> a nl:Akteur ;
nl:hasFullAddress "Zschochersche Straße 62, 04229 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04229.Leipzig.ZschocherscheStrasse.62> ;
foaf:mbox "[email protected]" ;
rdfs:label "Stadtverband Leipzig der Kleingärtner e.V." ;
foaf:homepage <http://stadtverband-leipzig.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.3351 51.3268)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.199> a nl:Akteur ;
nl:hasFullAddress "Reichsstraße 2, 04109 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04109.Leipzig.Reichsstrasse.2> ;
foaf:mbox "[email protected]" ;
rdfs:label "Michael Schaaf" ;
foaf:homepage <http://www.leipzigdetails.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#corporation> ;
gsp:asWKT "Point(12.3769 51.3401)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.198> a nl:Akteur ;
nl:hasFullAddress "Aachener Straße 7, 04109 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04109.Leipzig.AachenerStrasse.7> ;
foaf:mbox "[email protected]" ;
rdfs:label "Dt. Kleingärtnermuseum" ;
foaf:homepage <http://www.kleingarten-museum.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.3569 51.3394)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.197> a nl:Akteur ;
nl:hasFullAddress "Giebnerstraße 18, 04279 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04279.Leipzig.Giebnerstrasse.18> ;
foaf:mbox "[email protected]" ;
rdfs:label "erleb-bar" ;
foaf:homepage <https://www.erleb-bar.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#corporation> ;
gsp:asWKT "Point(12.392 51.2924)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.196> a nl:Akteur ;
nl:hasFullAddress "Simildenstraße 20, 04277 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04277.Leipzig.Simildenstrasse.20> ;
foaf:mbox "[email protected]" ;
rdfs:label "Biomare II GmbH" ;
foaf:homepage <http://www.bio-mare.com> ;
a <http://nachhaltiges-leipzig.de/Data/Model#corporation> ;
gsp:asWKT "Point(12.3715 51.3084)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.195> a nl:Akteur ;
nl:hasFullAddress "Kreuzstraße 12, 04103 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04103.Leipzig.Kreuzstrasse.12> ;
foaf:mbox "[email protected]" ;
rdfs:label "Dirk Scheffler" ;
foaf:homepage <http://www.e-fect.de/> ;
a <http://nachhaltiges-leipzig.de/Data/Model#collective> ;
gsp:asWKT "Point(12.3912 51.341)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.194> a nl:Akteur ;
nl:hasFullAddress "Zschochersche Straße 62, 04229 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04229.Leipzig.ZschocherscheStrasse.62> ;
foaf:mbox "[email protected]" ;
rdfs:label "Stadtverband Leipzig der kleingärtner e.V." ;
foaf:homepage <http://www.stadtverband-leipzig.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.3351 51.3268)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.193> a nl:Akteur ;
foaf:mbox "[email protected]" ;
rdfs:label "Park- und Stadtführerin Daniela Neumann" ;
foaf:homepage <https://www.facebook.com/EntdecktinLeipzig> ;
a <http://nachhaltiges-leipzig.de/Data/Model#freelancer> ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.192> a nl:Akteur ;
nl:hasFullAddress "Am Eichwinkel 31, 04279 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04279.Leipzig.AmEichwinkel.31> ;
foaf:mbox "[email protected]" ;
rdfs:label "Winter Catherine" ;
foaf:homepage <http://www.slowfood.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.4005 51.2834)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.191> a nl:Akteur ;
nl:hasFullAddress "Lützner Straße 29, 04177 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04177.Leipzig.LuetznerStrasse.29> ;
foaf:mbox "[email protected]" ;
rdfs:label "Fabian" ;
foaf:homepage <https://www.studiobosco.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#freelancer> ;
gsp:asWKT "Point(12.3341 51.3358)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.190> a nl:Akteur ;
nl:hasFullAddress "Herderstraße 5, 04277 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04277.Leipzig.Herderstrasse.5> ;
foaf:mbox "[email protected]" ;
rdfs:label "Anja Hümmer" ;
foaf:homepage <http://www.naturnah.co> ;
a <http://nachhaltiges-leipzig.de/Data/Model#freelancer> ;
gsp:asWKT "Point(12.3741 51.3078)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.189> a nl:Akteur ;
nl:hasFullAddress "Eisenbahnstraße 157, 04315 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04315.Leipzig.Eisenbahnstrasse.157> ;
foaf:mbox "[email protected]" ;
rdfs:label "Hofmann" ;
foaf:homepage <http://buelowviertel.de/projekte/foerderverein-buelowgaerten-e-v/> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.4208 51.3449)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.188> a nl:Akteur ;
nl:hasFullAddress "Linnéstraße 1, 04103 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04103.Leipzig.Linnestrasse.1> ;
foaf:mbox "[email protected]" ;
rdfs:label "Botanischer Garten der Universität Leipzig" ;
foaf:homepage <http://www.bota.uni-leipzig.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#educational> ;
gsp:asWKT "Point(12.3926 51.3292)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.187> a nl:Akteur ;
nl:hasFullAddress "George-Bähr-Straße 11, 04328 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04328.Leipzig.George-Baehr-Strasse.11> ;
foaf:mbox "[email protected]" ;
rdfs:label "Bürgerverein Sellerhausen-Stünz" ;
foaf:homepage <http://www.bv-sellerhausen.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.4425 51.3476)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.186> a nl:Akteur ;
nl:hasFullAddress "Ecksteinstraße 54, 04277 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04277.Leipzig.Ecksteinstrasse.54> ;
foaf:mbox "[email protected]" ;
rdfs:label "Natur- und Wildnisschule Leipzig GbR" ;
foaf:homepage <http://www.natur-wildnisschule-leipzig.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#educational> ;
gsp:asWKT "Point(12.385 51.3065)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.185> a nl:Akteur ;
nl:hasFullAddress "Prager Straße 136, 04317 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04317.Leipzig.PragerStrasse.136> ;
foaf:mbox "[email protected]" ;
rdfs:label "Stadt Leipzig Umweltinformationszentrum" ;
foaf:homepage <http://www.leipzig.de/uiz> ;
a <http://nachhaltiges-leipzig.de/Data/Model#other> ;
gsp:asWKT "Point(12.4016 51.3244)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.184> a nl:Akteur ;
nl:hasFullAddress "Richard-Lehmann-Straße 108, 04275 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04275.Leipzig.Richard-Lehmann-Strasse.108> ;
foaf:mbox "[email protected]" ;
rdfs:label "Gartenfreunde Süd e. V." ;
foaf:homepage <http://www.gartenfreundesued.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.3847 51.3137)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.183> a nl:Akteur ;
nl:hasFullAddress "Karl-Liebknecht-Straße 79, 04275 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04275.Leipzig.Karl-Liebknecht-Strasse.79> ;
foaf:mbox "[email protected]" ;
rdfs:label "Luise Neugebauer Schmuck" ;
foaf:homepage <http://www.luiseneugebauer.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#freelancer> ;
gsp:asWKT "Point(12.3739 51.3233)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.182> a nl:Akteur ;
nl:hasFullAddress "Arndtstraße 63, 04275 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04275.Leipzig.Arndtstrasse.63> ;
foaf:mbox "[email protected]" ;
rdfs:label "Matthias Schmidt" ;
foaf:homepage <http://www.gold-schmied.com> ;
a <http://nachhaltiges-leipzig.de/Data/Model#corporation> ;
gsp:asWKT "Point(12.3799 51.3232)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.181> a nl:Akteur ;
nl:hasFullAddress "Deutscher Platz 6, 04103 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04103.Leipzig.DeutscherPlatz.6> ;
foaf:mbox "[email protected]" ;
rdfs:label "Orang-Utans in Not" ;
foaf:homepage <http://www.orang-utans-in-not.org> ;
a <http://nachhaltiges-leipzig.de/Data/Model#club> ;
gsp:asWKT "Point(12.3949 51.321)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.179> a nl:Akteur ;
nl:hasFullAddress "Gabelsbergerstraße 1A, 04317 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04317.Leipzig.Gabelsbergerstrasse.1A> ;
foaf:mbox "[email protected]" ;
rdfs:label "LeipzigGrün" ;
foaf:homepage <http://www.leipziggruen.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#initiative> ;
gsp:asWKT "Point(12.3959 51.3397)" ;
dct:modified "2019-02-24" .
<http://nachhaltiges-leipzig.de/Data/Akteur.178> a nl:Akteur ;
nl:hasFullAddress "Könneritzstraße 63, 04229 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04229.Leipzig.Koenneritzstrasse.63> ;
foaf:mbox "[email protected]" ;
rdfs:label "Fanö-Mode" ;
foaf:homepage <http://www.fanoe-mode.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#corporation> ;
gsp:asWKT "Point(12.3431 51.3223)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.177> a nl:Akteur ;
nl:hasFullAddress "Könneritzstraße 68, 04229 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04229.Leipzig.Koenneritzstrasse.68> ;
foaf:mbox "[email protected]" ;
rdfs:label "LUXAA" ;
foaf:homepage <http://www.luxaa.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#corporation> ;
gsp:asWKT "Point(12.3425 51.3221)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.176> a nl:Akteur ;
foaf:mbox "[email protected]" ;
rdfs:label "Vier Fährten - Wege in den wilden Wald" ;
foaf:homepage <http://www.vierfaehrten.de> ;
a <http://nachhaltiges-leipzig.de/Data/Model#freelancer> ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.175> a nl:Akteur ;
nl:hasFullAddress "Lützner Straße 68, 04177 Leipzig" ;
ld:proposedAddress <http://leipzig-data.de/Data/04177.Leipzig.LuetznerStrasse.68> ;
foaf:mbox "[email protected]" ;
rdfs:label "Sabrina Bollmann" ;
a <http://nachhaltiges-leipzig.de/Data/Model#other> ;
gsp:asWKT "Point(12.3307 51.336)" ;
dct:modified "2018-08-04" .
<http://nachhaltiges-leipzig.de/Data/Akteur.174> a nl:Akteur ;
nl:hasFullAddress "Eckenbergstraße 16A, 45307 Essen" ;
ld:proposedAddress <http://leipzig-data.de/Data/45307.Essen.Eckenbergstrasse.16A> ;
foaf:mbox "[email protected]" ;
rdfs:label "ALDI Einkauf GmbH & Co. oHG" ;
a <http://nachhaltiges-leipzig.de/Data/Model#other> ;