-
Notifications
You must be signed in to change notification settings - Fork 0
/
bahnhoefe_rni.nt
2430 lines (2430 loc) · 345 KB
/
bahnhoefe_rni.nt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<https://portal.limbo-project.org/bahnhof/8263> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/8263> <http://www.w3.org/2000/01/rdf-schema#label> "Ahnatal-Casselbreite" .
<https://portal.limbo-project.org/bahnhof/8263> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#0/object> .
<https://portal.limbo-project.org/bahnhof/8263> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/FATC> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#0/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#0/object> <http://schema.org/addressRegion> "Hessen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#0/object> <http://schema.org/addressLocality> "Ahnatal" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#0/object> <http://schema.org/streetAddress> "Casselbreite" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#0/object> <http://schema.org/postalCode> "34292"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/2616> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/2616> <http://www.w3.org/2000/01/rdf-schema#label> "Ahnatal-Heckershausen" .
<https://portal.limbo-project.org/bahnhof/2616> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#1/object> .
<https://portal.limbo-project.org/bahnhof/2616> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/FHEH> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#1/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#1/object> <http://schema.org/addressRegion> "Hessen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#1/object> <http://schema.org/addressLocality> "Ahnatal" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#1/object> <http://schema.org/streetAddress> "Bahnhofstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#1/object> <http://schema.org/postalCode> "34292"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/6618> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/6618> <http://www.w3.org/2000/01/rdf-schema#label> "Ahnatal-Weimar" .
<https://portal.limbo-project.org/bahnhof/6618> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#2/object> .
<https://portal.limbo-project.org/bahnhof/6618> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/FWEI> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#2/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#2/object> <http://schema.org/addressRegion> "Hessen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#2/object> <http://schema.org/addressLocality> "Ahnatal" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#2/object> <http://schema.org/streetAddress> "Raiffeisenplatz" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#2/object> <http://schema.org/postalCode> "34292"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/33> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/33> <http://www.w3.org/2000/01/rdf-schema#label> "Aich (Niederbay)" .
<https://portal.limbo-project.org/bahnhof/33> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#3/object> .
<https://portal.limbo-project.org/bahnhof/33> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MAIC> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#3/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#3/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#3/object> <http://schema.org/addressLocality> "Bodenkirchen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#3/object> <http://schema.org/streetAddress> "Am Bahnberg 1" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#3/object> <http://schema.org/postalCode> "84155"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/102> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/102> <http://www.w3.org/2000/01/rdf-schema#label> "Altenhasungen" .
<https://portal.limbo-project.org/bahnhof/102> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#4/object> .
<https://portal.limbo-project.org/bahnhof/102> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/FAHN> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#4/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#4/object> <http://schema.org/addressRegion> "Hessen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#4/object> <http://schema.org/addressLocality> "Wolfhagen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#4/object> <http://schema.org/streetAddress> "Hardtstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#4/object> <http://schema.org/postalCode> "34466"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/106> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/106> <http://www.w3.org/2000/01/rdf-schema#label> "Altenmarkt (Alz)" .
<https://portal.limbo-project.org/bahnhof/106> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#5/object> .
<https://portal.limbo-project.org/bahnhof/106> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MATM> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#5/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#5/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#5/object> <http://schema.org/addressLocality> "Altenmarkt a.d. Alz" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#5/object> <http://schema.org/streetAddress> "Margaretenstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#5/object> <http://schema.org/postalCode> "83352"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/127> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/127> <http://www.w3.org/2000/01/rdf-schema#label> "Altötting" .
<https://portal.limbo-project.org/bahnhof/127> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#6/object> .
<https://portal.limbo-project.org/bahnhof/127> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MAT> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#6/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#6/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#6/object> <http://schema.org/addressLocality> "Altötting" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#6/object> <http://schema.org/streetAddress> "Bahnhofsplatz 1" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#6/object> <http://schema.org/postalCode> "84503"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/138> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/138> <http://www.w3.org/2000/01/rdf-schema#label> "Amorbach" .
<https://portal.limbo-project.org/bahnhof/138> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#7/object> .
<https://portal.limbo-project.org/bahnhof/138> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/NAMB> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#7/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#7/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#7/object> <http://schema.org/addressLocality> "Amorbach" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#7/object> <http://schema.org/streetAddress> "Am Bahnhof" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#7/object> <http://schema.org/postalCode> "63916"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/153> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/153> <http://www.w3.org/2000/01/rdf-schema#label> "Annaberg-Buchholz Mitte" .
<https://portal.limbo-project.org/bahnhof/153> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#8/object> .
<https://portal.limbo-project.org/bahnhof/153> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DABM> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#8/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#8/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#8/object> <http://schema.org/addressLocality> "Annaberg-Buchholz" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#8/object> <http://schema.org/streetAddress> "Talstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#8/object> <http://schema.org/postalCode> "9456"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/154> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/154> <http://www.w3.org/2000/01/rdf-schema#label> "Annaberg-Buchholz Süd" .
<https://portal.limbo-project.org/bahnhof/154> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#9/object> .
<https://portal.limbo-project.org/bahnhof/154> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DAB> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#9/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#9/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#9/object> <http://schema.org/addressLocality> "Annaberg-Buchholz" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#9/object> <http://schema.org/streetAddress> "Schneeberger Straße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#9/object> <http://schema.org/postalCode> "9456"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/155> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/155> <http://www.w3.org/2000/01/rdf-schema#label> "Annaberg-Buchholz unt Bahnhof" .
<https://portal.limbo-project.org/bahnhof/155> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#10/object> .
<https://portal.limbo-project.org/bahnhof/155> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DABU> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#10/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#10/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#10/object> <http://schema.org/addressLocality> "Annaberg-Buchholz" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#10/object> <http://schema.org/streetAddress> "Bahnhofsplatz" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#10/object> <http://schema.org/postalCode> "9456"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/162> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/162> <http://www.w3.org/2000/01/rdf-schema#label> "Antonsthal" .
<https://portal.limbo-project.org/bahnhof/162> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#11/object> .
<https://portal.limbo-project.org/bahnhof/162> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DATL> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#11/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#11/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#11/object> <http://schema.org/addressLocality> "Breitenbrunn" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#11/object> <http://schema.org/streetAddress> "Talstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#11/object> <http://schema.org/postalCode> "8359"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/165> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/165> <http://www.w3.org/2000/01/rdf-schema#label> "Anzenkirchen" .
<https://portal.limbo-project.org/bahnhof/165> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#12/object> .
<https://portal.limbo-project.org/bahnhof/165> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MAK> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#12/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#12/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#12/object> <http://schema.org/addressLocality> "Triftern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#12/object> <http://schema.org/streetAddress> "Bahnhofstr." .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#12/object> <http://schema.org/postalCode> "84371"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/4666> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/4666> <http://www.w3.org/2000/01/rdf-schema#label> "Aschaffenburg-Obernau" .
<https://portal.limbo-project.org/bahnhof/4666> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#13/object> .
<https://portal.limbo-project.org/bahnhof/4666> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/NOBN> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#13/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#13/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#13/object> <http://schema.org/addressLocality> "Aschaffenburg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#13/object> <http://schema.org/streetAddress> "Obernheimweg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#13/object> <http://schema.org/postalCode> "63743"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/205> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/205> <http://www.w3.org/2000/01/rdf-schema#label> "Aue (Sachs)" .
<https://portal.limbo-project.org/bahnhof/205> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#14/object> .
<https://portal.limbo-project.org/bahnhof/205> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DAU> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#14/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#14/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#14/object> <http://schema.org/addressLocality> "Aue" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#14/object> <http://schema.org/streetAddress> "Lößnitzer Straße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#14/object> <http://schema.org/postalCode> "8280"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/8216> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/8216> <http://www.w3.org/2000/01/rdf-schema#label> "Aue (Sachs) Erzgebirgsstadion" .
<https://portal.limbo-project.org/bahnhof/8216> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#15/object> .
<https://portal.limbo-project.org/bahnhof/8216> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DAUS> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#15/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#15/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#15/object> <http://schema.org/addressLocality> "Aue" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#15/object> <http://schema.org/streetAddress> "Lößnitzer Straße (Am Stadion)" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#15/object> <http://schema.org/postalCode> "8280"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/7463> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/7463> <http://www.w3.org/2000/01/rdf-schema#label> "Bad Arolsen" .
<https://portal.limbo-project.org/bahnhof/7463> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#16/object> .
<https://portal.limbo-project.org/bahnhof/7463> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/FAR> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#16/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#16/object> <http://schema.org/addressRegion> "Hessen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#16/object> <http://schema.org/addressLocality> "Bad Arolsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#16/object> <http://schema.org/streetAddress> "Am Bahnhof 1" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#16/object> <http://schema.org/postalCode> "34454"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/255> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/255> <http://www.w3.org/2000/01/rdf-schema#label> "Bad Birnbach" .
<https://portal.limbo-project.org/bahnhof/255> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#17/object> .
<https://portal.limbo-project.org/bahnhof/255> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MBIB> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#17/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#17/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#17/object> <http://schema.org/addressLocality> "Bad Birnbach" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#17/object> <http://schema.org/streetAddress> "Bahnhofstraße 10" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#17/object> <http://schema.org/postalCode> "84364"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/270> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/270> <http://www.w3.org/2000/01/rdf-schema#label> "Bad Empfing" .
<https://portal.limbo-project.org/bahnhof/270> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#18/object> .
<https://portal.limbo-project.org/bahnhof/270> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MBEP> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#18/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#18/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#18/object> <http://schema.org/addressLocality> "Fürstenzell" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#18/object> <http://schema.org/streetAddress> "Obersulzbach" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#18/object> <http://schema.org/postalCode> "94081"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/283> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/283> <http://www.w3.org/2000/01/rdf-schema#label> "Bad Höhenstadt" .
<https://portal.limbo-project.org/bahnhof/283> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#19/object> .
<https://portal.limbo-project.org/bahnhof/283> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MBHT> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#19/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#19/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#19/object> <http://schema.org/addressLocality> "Bad Laasphe" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#19/object> <http://schema.org/streetAddress> "Bahnhofstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#19/object> <http://schema.org/postalCode> "57334"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/3487> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/3487> <http://www.w3.org/2000/01/rdf-schema#label> "Bad Laasphe" .
<https://portal.limbo-project.org/bahnhof/3487> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#20/object> .
<https://portal.limbo-project.org/bahnhof/3487> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/ELSP> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#20/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#20/object> <http://schema.org/addressRegion> "Nordrhein-Westfalen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#20/object> <http://schema.org/addressLocality> "Bad Laasphe" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#20/object> <http://schema.org/streetAddress> "Entenbergstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#20/object> <http://schema.org/postalCode> "57334"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/8223> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/8223> <http://www.w3.org/2000/01/rdf-schema#label> "Bad Laasphe-Niederlaasphe" .
<https://portal.limbo-project.org/bahnhof/8223> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#21/object> .
<https://portal.limbo-project.org/bahnhof/8223> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/ENL> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#21/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#21/object> <http://schema.org/addressRegion> "Nordrhein-Westfalen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#21/object> <http://schema.org/addressLocality> "Bad Mergentheim" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#21/object> <http://schema.org/streetAddress> "Bahnhofsplatz" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#21/object> <http://schema.org/postalCode> "97980"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/305> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/305> <http://www.w3.org/2000/01/rdf-schema#label> "Bad Mergentheim" .
<https://portal.limbo-project.org/bahnhof/305> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#22/object> .
<https://portal.limbo-project.org/bahnhof/305> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/TBMR> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#22/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#22/object> <http://schema.org/addressRegion> "Baden-Württemberg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#22/object> <http://schema.org/addressLocality> "Bad Schlema" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#22/object> <http://schema.org/streetAddress> "Hauptstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#22/object> <http://schema.org/postalCode> "8301"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/5587> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/5587> <http://www.w3.org/2000/01/rdf-schema#label> "Bad Schlema" .
<https://portal.limbo-project.org/bahnhof/5587> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#23/object> .
<https://portal.limbo-project.org/bahnhof/5587> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DSUB> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#23/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#23/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#23/object> <http://schema.org/addressLocality> "Bad Wildungen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#23/object> <http://schema.org/streetAddress> "Bahnhofstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#23/object> <http://schema.org/postalCode> "34537"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/362> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/362> <http://www.w3.org/2000/01/rdf-schema#label> "Bad Wildungen" .
<https://portal.limbo-project.org/bahnhof/362> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#24/object> .
<https://portal.limbo-project.org/bahnhof/362> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/FBWD> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#24/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#24/object> <http://schema.org/addressRegion> "Hessen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#24/object> <http://schema.org/addressLocality> "Bärenstein" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#24/object> <http://schema.org/streetAddress> "Bahnhofstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#24/object> <http://schema.org/postalCode> "9471"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/407> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/407> <http://www.w3.org/2000/01/rdf-schema#label> "Bärenstein (Kr Annaberg)" .
<https://portal.limbo-project.org/bahnhof/407> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#25/object> .
<https://portal.limbo-project.org/bahnhof/407> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DBS> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#25/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#25/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#25/object> <http://schema.org/addressLocality> "Bayerbach" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#25/object> <http://schema.org/streetAddress> "Bahnhofstraße 28" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#25/object> <http://schema.org/postalCode> "94137"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/434> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/434> <http://www.w3.org/2000/01/rdf-schema#label> "Bayerbach" .
<https://portal.limbo-project.org/bahnhof/434> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#26/object> .
<https://portal.limbo-project.org/bahnhof/434> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MBYB> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#26/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#26/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#26/object> <http://schema.org/addressLocality> "Bechstedt" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#26/object> <http://schema.org/streetAddress> "Ortsstraße 45" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#26/object> <http://schema.org/postalCode> "7426"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/445> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/445> <http://www.w3.org/2000/01/rdf-schema#label> "Bechstedt-Trippstein" .
<https://portal.limbo-project.org/bahnhof/445> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#27/object> .
<https://portal.limbo-project.org/bahnhof/445> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/UBET> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#27/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#27/object> <http://schema.org/addressRegion> "Thüringen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#27/object> <http://schema.org/addressLocality> "Ruhpolding" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#27/object> <http://schema.org/streetAddress> "Bibelöd 6" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#27/object> <http://schema.org/postalCode> "83324"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/8217> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/8217> <http://www.w3.org/2000/01/rdf-schema#label> "Bibelöd" .
<https://portal.limbo-project.org/bahnhof/8217> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#28/object> .
<https://portal.limbo-project.org/bahnhof/8217> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MBID> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#28/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#28/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#28/object> <http://schema.org/addressLocality> "Biedenkopf" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#28/object> <http://schema.org/streetAddress> "Am Bahnhof" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#28/object> <http://schema.org/postalCode> "35216"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/620> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/620> <http://www.w3.org/2000/01/rdf-schema#label> "Biedenkopf" .
<https://portal.limbo-project.org/bahnhof/620> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#29/object> .
<https://portal.limbo-project.org/bahnhof/620> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/FBIK> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#29/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#29/object> <http://schema.org/addressRegion> "Hessen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#29/object> <http://schema.org/addressLocality> "Biedenkopf" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#29/object> <http://schema.org/streetAddress> "Vater-Jahn-Straße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#29/object> <http://schema.org/postalCode> "35216"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/8218> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/8218> <http://www.w3.org/2000/01/rdf-schema#label> "Biedenkopf Schulzentrum" .
<https://portal.limbo-project.org/bahnhof/8218> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#30/object> .
<https://portal.limbo-project.org/bahnhof/8218> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/FBIZ> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#30/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#30/object> <http://schema.org/addressRegion> "Hessen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#30/object> <http://schema.org/addressLocality> "Biedenkopf" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#30/object> <http://schema.org/streetAddress> "Bahnhofstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#30/object> <http://schema.org/postalCode> "35216"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/6502> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/6502> <http://www.w3.org/2000/01/rdf-schema#label> "Biedenkopf-Wallau" .
<https://portal.limbo-project.org/bahnhof/6502> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#31/object> .
<https://portal.limbo-project.org/bahnhof/6502> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/FWA> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#31/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#31/object> <http://schema.org/addressRegion> "Hessen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#31/object> <http://schema.org/addressLocality> "Burgwald" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#31/object> <http://schema.org/streetAddress> "Bahnhofstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#31/object> <http://schema.org/postalCode> "35099"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/657> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/657> <http://www.w3.org/2000/01/rdf-schema#label> "Birkenbringhausen" .
<https://portal.limbo-project.org/bahnhof/657> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#32/object> .
<https://portal.limbo-project.org/bahnhof/657> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/FBBH> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#32/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#32/object> <http://schema.org/addressRegion> "Hessen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#32/object> <http://schema.org/addressLocality> "Blaufelden" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#32/object> <http://schema.org/streetAddress> "Bahnhofstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#32/object> <http://schema.org/postalCode> "74572"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/697> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/697> <http://www.w3.org/2000/01/rdf-schema#label> "Blaufelden" .
<https://portal.limbo-project.org/bahnhof/697> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#33/object> .
<https://portal.limbo-project.org/bahnhof/697> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/TBLF> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#33/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#33/object> <http://schema.org/addressRegion> "Baden-Württemberg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#33/object> <http://schema.org/addressLocality> "Olbernhau" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#33/object> <http://schema.org/streetAddress> "Hauptstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#33/object> <http://schema.org/postalCode> "9526"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/711> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/711> <http://www.w3.org/2000/01/rdf-schema#label> "Blumenau" .
<https://portal.limbo-project.org/bahnhof/711> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#34/object> .
<https://portal.limbo-project.org/bahnhof/711> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DBLU> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#34/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#34/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#34/object> <http://schema.org/addressLocality> "Buchen (Odenwald)" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#34/object> <http://schema.org/streetAddress> "Bahnhofsweg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#34/object> <http://schema.org/postalCode> "74722"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/745> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/745> <http://www.w3.org/2000/01/rdf-schema#label> "Bödigheim" .
<https://portal.limbo-project.org/bahnhof/745> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#35/object> .
<https://portal.limbo-project.org/bahnhof/745> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/RBGH> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#35/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#35/object> <http://schema.org/addressRegion> "Baden-Württemberg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#35/object> <http://schema.org/addressLocality> "Breitenbrunn" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#35/object> <http://schema.org/streetAddress> "Schachtstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#35/object> <http://schema.org/postalCode> "8359"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/848> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/848> <http://www.w3.org/2000/01/rdf-schema#label> "Breitenbrunn (Erzgeb)" .
<https://portal.limbo-project.org/bahnhof/848> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#36/object> .
<https://portal.limbo-project.org/bahnhof/848> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DBRE> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#36/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#36/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#36/object> <http://schema.org/addressLocality> "Buchen (Odenwald)" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#36/object> <http://schema.org/streetAddress> "Eisenbahnstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#36/object> <http://schema.org/postalCode> "74722"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/930> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/930> <http://www.w3.org/2000/01/rdf-schema#label> "Buchen im Odenwald" .
<https://portal.limbo-project.org/bahnhof/930> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#37/object> .
<https://portal.limbo-project.org/bahnhof/930> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/RBUN> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#37/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#37/object> <http://schema.org/addressRegion> "Baden-Württemberg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#37/object> <http://schema.org/addressLocality> "Buchen (Odenwald)" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#37/object> <http://schema.org/streetAddress> "Am Wartberg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#37/object> <http://schema.org/postalCode> "74722"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/931> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/931> <http://www.w3.org/2000/01/rdf-schema#label> "Buchen Ost" .
<https://portal.limbo-project.org/bahnhof/931> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#38/object> .
<https://portal.limbo-project.org/bahnhof/931> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/RBUO> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#38/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#38/object> <http://schema.org/addressRegion> "Baden-Württemberg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#38/object> <http://schema.org/addressLocality> "Dautphetal" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#38/object> <http://schema.org/streetAddress> "Elmshäuser Straße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#38/object> <http://schema.org/postalCode> "35232"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/932> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/932> <http://www.w3.org/2000/01/rdf-schema#label> "Buchenau (Lahn)" .
<https://portal.limbo-project.org/bahnhof/932> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#39/object> .
<https://portal.limbo-project.org/bahnhof/932> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/FBNU> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#39/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#39/object> <http://schema.org/addressRegion> "Hessen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#39/object> <http://schema.org/addressLocality> "Burghausen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#39/object> <http://schema.org/streetAddress> "Berliner Platz 2" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#39/object> <http://schema.org/postalCode> "84489"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/985> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/985> <http://www.w3.org/2000/01/rdf-schema#label> "Burghausen" .
<https://portal.limbo-project.org/bahnhof/985> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#40/object> .
<https://portal.limbo-project.org/bahnhof/985> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MBUH> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#40/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#40/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#40/object> <http://schema.org/addressLocality> "Burgkirchen a.d.Alz" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#40/object> <http://schema.org/streetAddress> "Rupertusstraße 16-26" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#40/object> <http://schema.org/postalCode> "84508"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/990> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/990> <http://www.w3.org/2000/01/rdf-schema#label> "Burgkirchen" .
<https://portal.limbo-project.org/bahnhof/990> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#41/object> .
<https://portal.limbo-project.org/bahnhof/990> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MBGK> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#41/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#41/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#41/object> <http://schema.org/addressLocality> "Burkhardtsdorf" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#41/object> <http://schema.org/streetAddress> "Bahnhofstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#41/object> <http://schema.org/postalCode> "9235"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1001> <http://www.w3.org/2000/01/rdf-schema#label> "Burkhardtsdorf" .
<https://portal.limbo-project.org/bahnhof/1001> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#42/object> .
<https://portal.limbo-project.org/bahnhof/1001> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DBUF> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#42/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#42/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#42/object> <http://schema.org/addressLocality> "Burkhardtsdorf" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#42/object> <http://schema.org/streetAddress> "Ahnerweg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#42/object> <http://schema.org/postalCode> "9235"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/8219> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/8219> <http://www.w3.org/2000/01/rdf-schema#label> "Burkhardtsdorf Mitte" .
<https://portal.limbo-project.org/bahnhof/8219> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#43/object> .
<https://portal.limbo-project.org/bahnhof/8219> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DBUM> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#43/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#43/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#43/object> <http://schema.org/addressLocality> "Zwickau" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#43/object> <http://schema.org/streetAddress> "Am Hammerwald" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#43/object> <http://schema.org/postalCode> "8064"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1018> <http://www.w3.org/2000/01/rdf-schema#label> "Cainsdorf" .
<https://portal.limbo-project.org/bahnhof/1018> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#44/object> .
<https://portal.limbo-project.org/bahnhof/1018> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DCDF> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#44/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#44/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#44/object> <http://schema.org/addressLocality> "Lahntal" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#44/object> <http://schema.org/streetAddress> "Zum Wollenberg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#44/object> <http://schema.org/postalCode> "35094"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1023> <http://www.w3.org/2000/01/rdf-schema#label> "Caldern" .
<https://portal.limbo-project.org/bahnhof/1023> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#45/object> .
<https://portal.limbo-project.org/bahnhof/1023> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/FCLD> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#45/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#45/object> <http://schema.org/addressRegion> "Hessen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#45/object> <http://schema.org/addressLocality> "Chemnitz" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#45/object> <http://schema.org/streetAddress> "Paul-Franke-Straße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#45/object> <http://schema.org/postalCode> "9125"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1047> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1047> <http://www.w3.org/2000/01/rdf-schema#label> "Chemnitz-Erfenschlag" .
<https://portal.limbo-project.org/bahnhof/1047> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#46/object> .
<https://portal.limbo-project.org/bahnhof/1047> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DCE> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#46/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#46/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#46/object> <http://schema.org/addressLocality> "Chemnitz" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#46/object> <http://schema.org/streetAddress> "Erfenschlager Straße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#46/object> <http://schema.org/postalCode> "9125"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1051> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1051> <http://www.w3.org/2000/01/rdf-schema#label> "Chemnitz-Reichenhain" .
<https://portal.limbo-project.org/bahnhof/1051> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#47/object> .
<https://portal.limbo-project.org/bahnhof/1051> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DCRE> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#47/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#47/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#47/object> <http://schema.org/addressLocality> "Collenberg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#47/object> <http://schema.org/streetAddress> "Bahnhofstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#47/object> <http://schema.org/postalCode> "97903"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/5210> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/5210> <http://www.w3.org/2000/01/rdf-schema#label> "Collenberg" .
<https://portal.limbo-project.org/bahnhof/5210> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#48/object> .
<https://portal.limbo-project.org/bahnhof/5210> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/NRF> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#48/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#48/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#48/object> <http://schema.org/addressLocality> "Cursdorf" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#48/object> <http://schema.org/streetAddress> "Bahnhofstraße 6" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#48/object> <http://schema.org/postalCode> "98744"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1094> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1094> <http://www.w3.org/2000/01/rdf-schema#label> "Cursdorf" .
<https://portal.limbo-project.org/bahnhof/1094> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#49/object> .
<https://portal.limbo-project.org/bahnhof/1094> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/UCF> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#49/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#49/object> <http://schema.org/addressRegion> "Thüringen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#49/object> <http://schema.org/addressLocality> "Tauberbischofsheim" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#49/object> <http://schema.org/streetAddress> "Baumgartenweg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#49/object> <http://schema.org/postalCode> "97941"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1228> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1228> <http://www.w3.org/2000/01/rdf-schema#label> "Distelhausen" .
<https://portal.limbo-project.org/bahnhof/1228> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#50/object> .
<https://portal.limbo-project.org/bahnhof/1228> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/TDIH> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#50/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#50/object> <http://schema.org/addressRegion> "Baden-Württemberg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#50/object> <http://schema.org/addressLocality> "Amtsberg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#50/object> <http://schema.org/streetAddress> "Bahnhofstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#50/object> <http://schema.org/postalCode> "9439"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1232> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1232> <http://www.w3.org/2000/01/rdf-schema#label> "Dittersdorf" .
<https://portal.limbo-project.org/bahnhof/1232> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#51/object> .
<https://portal.limbo-project.org/bahnhof/1232> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DDF> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#51/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#51/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#51/object> <http://schema.org/addressLocality> "Tauberbischofsheim" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#51/object> <http://schema.org/streetAddress> "Frombergstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#51/object> <http://schema.org/postalCode> "97941"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1233> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1233> <http://www.w3.org/2000/01/rdf-schema#label> "Dittigheim" .
<https://portal.limbo-project.org/bahnhof/1233> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#52/object> .
<https://portal.limbo-project.org/bahnhof/1233> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/TDM> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#52/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#52/object> <http://schema.org/addressRegion> "Baden-Württemberg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#52/object> <http://schema.org/addressLocality> "Zwönitz" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#52/object> <http://schema.org/streetAddress> "An der Bahn" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#52/object> <http://schema.org/postalCode> "9619"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1267> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1267> <http://www.w3.org/2000/01/rdf-schema#label> "Dorfchemnitz (b Zwönitz)" .
<https://portal.limbo-project.org/bahnhof/1267> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#53/object> .
<https://portal.limbo-project.org/bahnhof/1267> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DDCH> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#53/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#53/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#53/object> <http://schema.org/addressLocality> "Dorfprozelten" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#53/object> <http://schema.org/streetAddress> "Bahnstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#53/object> <http://schema.org/postalCode> "97904"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1272> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1272> <http://www.w3.org/2000/01/rdf-schema#label> "Dorfprozelten" .
<https://portal.limbo-project.org/bahnhof/1272> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#54/object> .
<https://portal.limbo-project.org/bahnhof/1272> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/NDP> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#54/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#54/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#54/object> <http://schema.org/addressLocality> "Bad Mergentheim" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#54/object> <http://schema.org/streetAddress> "Wilhelm-Frank-Straße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#54/object> <http://schema.org/postalCode> "97980"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1460> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1460> <http://www.w3.org/2000/01/rdf-schema#label> "Edelfingen" .
<https://portal.limbo-project.org/bahnhof/1460> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#55/object> .
<https://portal.limbo-project.org/bahnhof/1460> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/TED> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#55/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#55/object> <http://schema.org/addressRegion> "Baden-Württemberg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#55/object> <http://schema.org/addressLocality> "Edling" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#55/object> <http://schema.org/streetAddress> "Bahnstraße 3-15" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#55/object> <http://schema.org/postalCode> "83533"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1466> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1466> <http://www.w3.org/2000/01/rdf-schema#label> "Edling" .
<https://portal.limbo-project.org/bahnhof/1466> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#56/object> .
<https://portal.limbo-project.org/bahnhof/1466> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MEDL> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#56/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#56/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#56/object> <http://schema.org/addressLocality> "Eggenfelden" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#56/object> <http://schema.org/streetAddress> "Bahnhofstraße 3-8" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#56/object> <http://schema.org/postalCode> "84307"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1474> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1474> <http://www.w3.org/2000/01/rdf-schema#label> "Eggenfelden" .
<https://portal.limbo-project.org/bahnhof/1474> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#57/object> .
<https://portal.limbo-project.org/bahnhof/1474> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MEGF> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#57/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#57/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#57/object> <http://schema.org/addressLocality> "Eggenfelden" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#57/object> <http://schema.org/streetAddress> "Spirknerallee 2-6" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#57/object> <http://schema.org/postalCode> "84307"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/8209> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/8209> <http://www.w3.org/2000/01/rdf-schema#label> "Eggenfelden Mitte" .
<https://portal.limbo-project.org/bahnhof/8209> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#58/object> .
<https://portal.limbo-project.org/bahnhof/8209> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MEFM> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#58/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#58/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#58/object> <http://schema.org/addressLocality> "Egglkofen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#58/object> <http://schema.org/streetAddress> "Bahnhofstraße 13" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#58/object> <http://schema.org/postalCode> "84546"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1477> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1477> <http://www.w3.org/2000/01/rdf-schema#label> "Egglkofen" .
<https://portal.limbo-project.org/bahnhof/1477> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#59/object> .
<https://portal.limbo-project.org/bahnhof/1477> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MEGK> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#59/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#59/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#59/object> <http://schema.org/addressLocality> "Volkmarsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#59/object> <http://schema.org/streetAddress> "Niederelsunger Straße 33" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#59/object> <http://schema.org/postalCode> "34471"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1490> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1490> <http://www.w3.org/2000/01/rdf-schema#label> "Ehringen" .
<https://portal.limbo-project.org/bahnhof/1490> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#60/object> .
<https://portal.limbo-project.org/bahnhof/1490> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/FEGN> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#60/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#60/object> <http://schema.org/addressRegion> "Hessen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#60/object> <http://schema.org/addressLocality> "Chemnitz" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#60/object> <http://schema.org/streetAddress> "Am Einsiedler Bahnhof" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#60/object> <http://schema.org/postalCode> "9123"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1524> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1524> <http://www.w3.org/2000/01/rdf-schema#label> "Einsiedel" .
<https://portal.limbo-project.org/bahnhof/1524> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#61/object> .
<https://portal.limbo-project.org/bahnhof/1524> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DED> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#61/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#61/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#61/object> <http://schema.org/addressLocality> "Chemnitz" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#61/object> <http://schema.org/streetAddress> "Einsiedler Hauptstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#61/object> <http://schema.org/postalCode> "9123"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/8220> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/8220> <http://www.w3.org/2000/01/rdf-schema#label> "Einsiedel Gymnasium" .
<https://portal.limbo-project.org/bahnhof/8220> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#62/object> .
<https://portal.limbo-project.org/bahnhof/8220> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DEDH> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#62/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#62/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#62/object> <http://schema.org/addressLocality> "Siegsdorf" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#62/object> <http://schema.org/streetAddress> "Dorfstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#62/object> <http://schema.org/postalCode> "83313"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1531> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1531> <http://www.w3.org/2000/01/rdf-schema#label> "Eisenärzt" .
<https://portal.limbo-project.org/bahnhof/1531> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#63/object> .
<https://portal.limbo-project.org/bahnhof/1531> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MEZT> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#63/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#63/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#63/object> <http://schema.org/addressLocality> "Weikersheim" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#63/object> <http://schema.org/streetAddress> "Deutschordenstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#63/object> <http://schema.org/postalCode> "97990"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1559> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1559> <http://www.w3.org/2000/01/rdf-schema#label> "Elpersheim" .
<https://portal.limbo-project.org/bahnhof/1559> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#64/object> .
<https://portal.limbo-project.org/bahnhof/1559> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/TELP> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#64/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#64/object> <http://schema.org/addressRegion> "Baden-Württemberg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#64/object> <http://schema.org/addressLocality> "Fürstenzell" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#64/object> <http://schema.org/streetAddress> "Raiffeisenstraße 22" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#64/object> <http://schema.org/postalCode> "94081"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1600> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1600> <http://www.w3.org/2000/01/rdf-schema#label> "Engertsham" .
<https://portal.limbo-project.org/bahnhof/1600> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#65/object> .
<https://portal.limbo-project.org/bahnhof/1600> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MEGH> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#65/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#65/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#65/object> <http://schema.org/addressLocality> "Augustusburg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#65/object> <http://schema.org/streetAddress> "Am Bahnhof" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#65/object> <http://schema.org/postalCode> "9573"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1629> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1629> <http://www.w3.org/2000/01/rdf-schema#label> "Erdmannsdorf-Augustusburg" .
<https://portal.limbo-project.org/bahnhof/1629> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#66/object> .
<https://portal.limbo-project.org/bahnhof/1629> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DEA> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#66/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#66/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#66/object> <http://schema.org/addressLocality> "Schwarzenberg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#66/object> <http://schema.org/streetAddress> "Karlsbader Straße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#66/object> <http://schema.org/postalCode> "8340"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1648> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1648> <http://www.w3.org/2000/01/rdf-schema#label> "Erla" .
<https://portal.limbo-project.org/bahnhof/1648> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#67/object> .
<https://portal.limbo-project.org/bahnhof/1648> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DERA> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#67/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#67/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#67/object> <http://schema.org/addressLocality> "Erlabrunn" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#67/object> <http://schema.org/streetAddress> "Schwarzenberger Straße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#67/object> <http://schema.org/postalCode> "8359"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1649> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1649> <http://www.w3.org/2000/01/rdf-schema#label> "Erlabrunn (Erzgeb)" .
<https://portal.limbo-project.org/bahnhof/1649> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#68/object> .
<https://portal.limbo-project.org/bahnhof/1649> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DERB> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#68/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#68/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#68/object> <http://schema.org/addressLocality> "Erlenbach a.Main" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#68/object> <http://schema.org/streetAddress> "Bahnhofstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#68/object> <http://schema.org/postalCode> "63906"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1656> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1656> <http://www.w3.org/2000/01/rdf-schema#label> "Erlenbach am Main" .
<https://portal.limbo-project.org/bahnhof/1656> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#69/object> .
<https://portal.limbo-project.org/bahnhof/1656> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/NERL> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#69/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#69/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#69/object> <http://schema.org/addressLocality> "Burgwald" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#69/object> <http://schema.org/streetAddress> "Marburger Straße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#69/object> <http://schema.org/postalCode> "35099"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1661> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1661> <http://www.w3.org/2000/01/rdf-schema#label> "Ernsthausen (Kr Frankenberg)" .
<https://portal.limbo-project.org/bahnhof/1661> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#70/object> .
<https://portal.limbo-project.org/bahnhof/1661> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/FERH> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#70/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#70/object> <http://schema.org/addressRegion> "Hessen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#70/object> <http://schema.org/addressLocality> "Langenweißbach" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#70/object> <http://schema.org/streetAddress> "Bahnhofstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#70/object> <http://schema.org/postalCode> "8134"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1745> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1745> <http://www.w3.org/2000/01/rdf-schema#label> "Fährbrücke" .
<https://portal.limbo-project.org/bahnhof/1745> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#71/object> .
<https://portal.limbo-project.org/bahnhof/1745> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DFBE> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#71/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#71/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#71/object> <http://schema.org/addressLocality> "Falkenau" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#71/object> <http://schema.org/streetAddress> "Am Haltepunkt" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#71/object> <http://schema.org/postalCode> "9557"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1750> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1750> <http://www.w3.org/2000/01/rdf-schema#label> "Falkenau (Sachs)" .
<https://portal.limbo-project.org/bahnhof/1750> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#72/object> .
<https://portal.limbo-project.org/bahnhof/1750> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DFU> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#72/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#72/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#72/object> <http://schema.org/addressLocality> "Faulbach" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#72/object> <http://schema.org/streetAddress> "Hauptstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#72/object> <http://schema.org/postalCode> "97906"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1766> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1766> <http://www.w3.org/2000/01/rdf-schema#label> "Faulbach (Main)" .
<https://portal.limbo-project.org/bahnhof/1766> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#73/object> .
<https://portal.limbo-project.org/bahnhof/1766> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/NFCH> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#73/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#73/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#73/object> <http://schema.org/addressLocality> "Bad Laasphe" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#73/object> <http://schema.org/streetAddress> "Sieg-Lahn-Straße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#73/object> <http://schema.org/postalCode> "57334"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1786> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1786> <http://www.w3.org/2000/01/rdf-schema#label> "Feudingen" .
<https://portal.limbo-project.org/bahnhof/1786> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#74/object> .
<https://portal.limbo-project.org/bahnhof/1786> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/EFEU> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#74/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#74/object> <http://schema.org/addressRegion> "Nordrhein-Westfalen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#74/object> <http://schema.org/addressLocality> "Flöha" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#74/object> <http://schema.org/streetAddress> "Augustusburger Straße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#74/object> <http://schema.org/postalCode> "9557"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/8221> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/8221> <http://www.w3.org/2000/01/rdf-schema#label> "Flöha-Plaue" .
<https://portal.limbo-project.org/bahnhof/8221> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#75/object> .
<https://portal.limbo-project.org/bahnhof/8221> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DFLP> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#75/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#75/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#75/object> <http://schema.org/addressLocality> "Wildenstein" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#75/object> <http://schema.org/streetAddress> "Mühlenstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#75/object> <http://schema.org/postalCode> "9579"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1820> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1820> <http://www.w3.org/2000/01/rdf-schema#label> "Floßmühle" .
<https://portal.limbo-project.org/bahnhof/1820> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#76/object> .
<https://portal.limbo-project.org/bahnhof/1820> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DFM> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#76/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#76/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#76/object> <http://schema.org/addressLocality> "Pfaffing" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#76/object> <http://schema.org/streetAddress> "Bahnweg 3" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#76/object> <http://schema.org/postalCode> "83539"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1837> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1837> <http://www.w3.org/2000/01/rdf-schema#label> "Forsting" .
<https://portal.limbo-project.org/bahnhof/1837> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#77/object> .
<https://portal.limbo-project.org/bahnhof/1837> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MFOS> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#77/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#77/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#77/object> <http://schema.org/addressLocality> "Frankenberg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#77/object> <http://schema.org/streetAddress> "Am Bahnhof" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#77/object> <http://schema.org/postalCode> "35066"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1841> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1841> <http://www.w3.org/2000/01/rdf-schema#label> "Frankenberg (Eder)" .
<https://portal.limbo-project.org/bahnhof/1841> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#78/object> .
<https://portal.limbo-project.org/bahnhof/1841> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/FFRK> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#78/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#78/object> <http://schema.org/addressRegion> "Hessen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#78/object> <http://schema.org/addressLocality> "Frankenberg / Eder" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#78/object> <http://schema.org/streetAddress> "Otto-Stölker-Straße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#78/object> <http://schema.org/postalCode> "35066"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/8302> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/8302> <http://www.w3.org/2000/01/rdf-schema#label> "Frankenberg (Eder) Goßberg" .
<https://portal.limbo-project.org/bahnhof/8302> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#79/object> .
<https://portal.limbo-project.org/bahnhof/8302> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/FFRG> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#79/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#79/object> <http://schema.org/addressRegion> "Hessen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#79/object> <http://schema.org/addressLocality> "Frankenberg (Eder)" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#79/object> <http://schema.org/streetAddress> "Am Schmittenbach" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#79/object> <http://schema.org/postalCode> "35066"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/7512> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/7512> <http://www.w3.org/2000/01/rdf-schema#label> "Frankenberg (Eder) Viermünden" .
<https://portal.limbo-project.org/bahnhof/7512> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#80/object> .
<https://portal.limbo-project.org/bahnhof/7512> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/FVI> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#80/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#80/object> <http://schema.org/addressRegion> "Hessen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#80/object> <http://schema.org/addressLocality> "Collenberg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#80/object> <http://schema.org/streetAddress> "Am Bahnhof" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#80/object> <http://schema.org/postalCode> "97896"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1920> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1920> <http://www.w3.org/2000/01/rdf-schema#label> "Freudenberg-Kirschfurt" .
<https://portal.limbo-project.org/bahnhof/1920> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#81/object> .
<https://portal.limbo-project.org/bahnhof/1920> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/NFM> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#81/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#81/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#81/object> <http://schema.org/addressLocality> "Fridolfing" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#81/object> <http://schema.org/streetAddress> "Wiesenweg 10" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#81/object> <http://schema.org/postalCode> "83413"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1928> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1928> <http://www.w3.org/2000/01/rdf-schema#label> "Fridolfing" .
<https://portal.limbo-project.org/bahnhof/1928> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#82/object> .
<https://portal.limbo-project.org/bahnhof/1928> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MFDF> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#82/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#82/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#82/object> <http://schema.org/addressLocality> "Dautphetal" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#82/object> <http://schema.org/streetAddress> "Wilhelmshütter Straße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#82/object> <http://schema.org/postalCode> "35232"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1933> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1933> <http://www.w3.org/2000/01/rdf-schema#label> "Friedensdorf (Lahn)" .
<https://portal.limbo-project.org/bahnhof/1933> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#83/object> .
<https://portal.limbo-project.org/bahnhof/1933> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/FFRD> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#83/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#83/object> <http://schema.org/addressRegion> "Hessen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#83/object> <http://schema.org/addressLocality> "Fritzlar" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#83/object> <http://schema.org/streetAddress> "Am Güterbahnhof" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#83/object> <http://schema.org/postalCode> "34560"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1964> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1964> <http://www.w3.org/2000/01/rdf-schema#label> "Fritzlar" .
<https://portal.limbo-project.org/bahnhof/1964> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#84/object> .
<https://portal.limbo-project.org/bahnhof/1964> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/FFZ> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#84/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#84/object> <http://schema.org/addressRegion> "Hessen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#84/object> <http://schema.org/addressLocality> "Calden" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#84/object> <http://schema.org/streetAddress> "Bahnhofstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#84/object> <http://schema.org/postalCode> "34379"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1979> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1979> <http://www.w3.org/2000/01/rdf-schema#label> "Fürstenwald" .
<https://portal.limbo-project.org/bahnhof/1979> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#85/object> .
<https://portal.limbo-project.org/bahnhof/1979> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/FFNW> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#85/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#85/object> <http://schema.org/addressRegion> "Hessen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#85/object> <http://schema.org/addressLocality> "Fürstenzell" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#85/object> <http://schema.org/streetAddress> "Aspertsham 55" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#85/object> <http://schema.org/postalCode> "94081"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/1982> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/1982> <http://www.w3.org/2000/01/rdf-schema#label> "Fürstenzell" .
<https://portal.limbo-project.org/bahnhof/1982> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#86/object> .
<https://portal.limbo-project.org/bahnhof/1982> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MFZL> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#86/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#86/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#86/object> <http://schema.org/addressLocality> "Werbach" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#86/object> <http://schema.org/streetAddress> "Bahnhofstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#86/object> <http://schema.org/postalCode> "97956"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/2004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/2004> <http://www.w3.org/2000/01/rdf-schema#label> "Gamburg" .
<https://portal.limbo-project.org/bahnhof/2004> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#87/object> .
<https://portal.limbo-project.org/bahnhof/2004> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/TGAM> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#87/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#87/object> <http://schema.org/addressRegion> "Baden-Württemberg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#87/object> <http://schema.org/addressLocality> "Garching a.d. Alz" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#87/object> <http://schema.org/streetAddress> "Bahnhofstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#87/object> <http://schema.org/postalCode> "84518"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/2010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/2010> <http://www.w3.org/2000/01/rdf-schema#label> "Garching (Alz)" .
<https://portal.limbo-project.org/bahnhof/2010> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#88/object> .
<https://portal.limbo-project.org/bahnhof/2010> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MGA> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#88/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#88/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#88/object> <http://schema.org/addressLocality> "Gars a. Inn" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#88/object> <http://schema.org/streetAddress> "Fortlschusterstr. 12" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#88/object> <http://schema.org/postalCode> "83536"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/2015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/2015> <http://www.w3.org/2000/01/rdf-schema#label> "Gars (Inn)" .
<https://portal.limbo-project.org/bahnhof/2015> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#89/object> .
<https://portal.limbo-project.org/bahnhof/2015> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MGS> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#89/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#89/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#89/object> <http://schema.org/addressLocality> "Geisenhausen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#89/object> <http://schema.org/streetAddress> "Bahnhofstraße 39" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#89/object> <http://schema.org/postalCode> "84144"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/2041> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/2041> <http://www.w3.org/2000/01/rdf-schema#label> "Geisenhausen" .
<https://portal.limbo-project.org/bahnhof/2041> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#90/object> .
<https://portal.limbo-project.org/bahnhof/2041> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MGHS> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#90/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#90/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#90/object> <http://schema.org/addressLocality> "Burgkirchen a.d.Alz" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#90/object> <http://schema.org/streetAddress> "Industriepark" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#90/object> <http://schema.org/postalCode> "84508"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/7547> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/7547> <http://www.w3.org/2000/01/rdf-schema#label> "Gendorf" .
<https://portal.limbo-project.org/bahnhof/7547> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#91/object> .
<https://portal.limbo-project.org/bahnhof/7547> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MGND> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#91/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#91/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#91/object> <http://schema.org/addressLocality> "Erlenbach a.Main" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#91/object> <http://schema.org/streetAddress> "Glanzstoffstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#91/object> <http://schema.org/postalCode> "63785"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/2137> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/2137> <http://www.w3.org/2000/01/rdf-schema#label> "Glanzstoffwerke" .
<https://portal.limbo-project.org/bahnhof/2137> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#92/object> .
<https://portal.limbo-project.org/bahnhof/2137> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/NGLW> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#92/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#92/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#92/object> <http://schema.org/addressLocality> "Lahntal" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#92/object> <http://schema.org/streetAddress> "Bahnhofstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#92/object> <http://schema.org/postalCode> "35094"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/2205> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/2205> <http://www.w3.org/2000/01/rdf-schema#label> "Goßfelden" .
<https://portal.limbo-project.org/bahnhof/2205> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#93/object> .
<https://portal.limbo-project.org/bahnhof/2205> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/FGOF> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#93/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#93/object> <http://schema.org/addressRegion> "Hessen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#93/object> <http://schema.org/addressLocality> "Wildenstein" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#93/object> <http://schema.org/streetAddress> "Am Güterbahnhof" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#93/object> <http://schema.org/postalCode> "9579"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/2396> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/2396> <http://www.w3.org/2000/01/rdf-schema#label> "Grünhainichen-Borstendorf" .
<https://portal.limbo-project.org/bahnhof/2396> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#94/object> .
<https://portal.limbo-project.org/bahnhof/2396> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DGRB> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#94/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#94/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#94/object> <http://schema.org/addressLocality> "Schwarzenberg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#94/object> <http://schema.org/streetAddress> "Am Bahnhof" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#94/object> <http://schema.org/postalCode> "8340"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/2404> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/2404> <http://www.w3.org/2000/01/rdf-schema#label> "Grünstädtel" .
<https://portal.limbo-project.org/bahnhof/2404> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#95/object> .
<https://portal.limbo-project.org/bahnhof/2404> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DGS> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#95/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#95/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#95/object> <http://schema.org/addressLocality> "Buchen (Odenwald)" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#95/object> <http://schema.org/streetAddress> "Bahnhofstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#95/object> <http://schema.org/postalCode> "74722"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/2481> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/2481> <http://www.w3.org/2000/01/rdf-schema#label> "Hainstadt (Baden)" .
<https://portal.limbo-project.org/bahnhof/2481> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#96/object> .
<https://portal.limbo-project.org/bahnhof/2481> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/RHAI> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#96/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#96/object> <http://schema.org/addressRegion> "Baden-Württemberg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#96/object> <http://schema.org/addressLocality> "Hartenstein" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#96/object> <http://schema.org/streetAddress> "Bahnhofstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#96/object> <http://schema.org/postalCode> "8118"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/2567> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/2567> <http://www.w3.org/2000/01/rdf-schema#label> "Hartenstein" .
<https://portal.limbo-project.org/bahnhof/2567> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#97/object> .
<https://portal.limbo-project.org/bahnhof/2567> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DHST> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#97/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#97/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#97/object> <http://schema.org/addressLocality> "Hasloch" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#97/object> <http://schema.org/streetAddress> "Bahnhofstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#97/object> <http://schema.org/postalCode> "97907"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/2578> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/2578> <http://www.w3.org/2000/01/rdf-schema#label> "Hasloch am Main" .
<https://portal.limbo-project.org/bahnhof/2578> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#98/object> .
<https://portal.limbo-project.org/bahnhof/2578> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/NHCH> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#98/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#98/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#98/object> <http://schema.org/addressLocality> "Hebertsfelden" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#98/object> <http://schema.org/streetAddress> "Bahnhofstraße 3" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#98/object> <http://schema.org/postalCode> "84332"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/2612> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/2612> <http://www.w3.org/2000/01/rdf-schema#label> "Hebertsfelden" .
<https://portal.limbo-project.org/bahnhof/2612> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#99/object> .
<https://portal.limbo-project.org/bahnhof/2612> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MHEF> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#99/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#99/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#99/object> <http://schema.org/addressLocality> "Tüßling" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#99/object> <http://schema.org/streetAddress> "Marsstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#99/object> <http://schema.org/postalCode> "84557"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/7549> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/7549> <http://www.w3.org/2000/01/rdf-schema#label> "Heiligenstatt" .
<https://portal.limbo-project.org/bahnhof/7549> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#100/object> .
<https://portal.limbo-project.org/bahnhof/7549> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MHEI> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#100/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#100/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#100/object> <http://schema.org/addressLocality> "Augustusburg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#100/object> <http://schema.org/streetAddress> "Bahnhofstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#100/object> <http://schema.org/postalCode> "9573"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/2690> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/2690> <http://www.w3.org/2000/01/rdf-schema#label> "Hennersdorf (Sachs)" .
<https://portal.limbo-project.org/bahnhof/2690> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#101/object> .
<https://portal.limbo-project.org/bahnhof/2690> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DHRF> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#101/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#101/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#101/object> <http://schema.org/addressLocality> "Flöha" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#101/object> <http://schema.org/streetAddress> "Lindenstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#101/object> <http://schema.org/postalCode> "9557"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/2754> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/2754> <http://www.w3.org/2000/01/rdf-schema#label> "Hetzdorf (Flöhatal)" .
<https://portal.limbo-project.org/bahnhof/2754> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#102/object> .
<https://portal.limbo-project.org/bahnhof/2754> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DHZF> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#102/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#102/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#102/object> <http://schema.org/addressLocality> "Tauberbischofsheim" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#102/object> <http://schema.org/streetAddress> "Landstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#102/object> <http://schema.org/postalCode> "97941"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/2801> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/2801> <http://www.w3.org/2000/01/rdf-schema#label> "Hochhausen" .
<https://portal.limbo-project.org/bahnhof/2801> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#103/object> .
<https://portal.limbo-project.org/bahnhof/2801> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/THO> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#103/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#103/object> <http://schema.org/addressRegion> "Baden-Württemberg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#103/object> <http://schema.org/addressLocality> "Leubsdorf+Hohenfichte" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#103/object> <http://schema.org/streetAddress> "Bahnhofstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#103/object> <http://schema.org/postalCode> "9573"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/2845> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/2845> <http://www.w3.org/2000/01/rdf-schema#label> "Hohenfichte" .
<https://portal.limbo-project.org/bahnhof/2845> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#104/object> .
<https://portal.limbo-project.org/bahnhof/2845> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DHOF> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#104/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#104/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#104/object> <http://schema.org/addressLocality> "Siegsdorf" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#104/object> <http://schema.org/streetAddress> "Ruhpoldinger Straße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#104/object> <http://schema.org/postalCode> "83313"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/2899> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/2899> <http://www.w3.org/2000/01/rdf-schema#label> "Höpfling" .
<https://portal.limbo-project.org/bahnhof/2899> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#105/object> .
<https://portal.limbo-project.org/bahnhof/2899> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MHPF> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#105/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#105/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#105/object> <http://schema.org/addressLocality> "Traunreut" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#105/object> <http://schema.org/streetAddress> "Mühlweg 10" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#105/object> <http://schema.org/postalCode> "83301"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/2918> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/2918> <http://www.w3.org/2000/01/rdf-schema#label> "Hörpolding" .
<https://portal.limbo-project.org/bahnhof/2918> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#106/object> .
<https://portal.limbo-project.org/bahnhof/2918> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MHPD> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#106/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#106/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#106/object> <http://schema.org/addressLocality> "Surberg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#106/object> <http://schema.org/streetAddress> "Waginger Straße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#106/object> <http://schema.org/postalCode> "83362"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/2940> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/2940> <http://www.w3.org/2000/01/rdf-schema#label> "Hufschlag" .
<https://portal.limbo-project.org/bahnhof/2940> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#107/object> .
<https://portal.limbo-project.org/bahnhof/2940> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MHUF> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#107/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#107/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#107/object> <http://schema.org/addressLocality> "Igersheim" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#107/object> <http://schema.org/streetAddress> "Bahnhofstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#107/object> <http://schema.org/postalCode> "97999"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/2968> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/2968> <http://www.w3.org/2000/01/rdf-schema#label> "Igersheim" .
<https://portal.limbo-project.org/bahnhof/2968> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#108/object> .
<https://portal.limbo-project.org/bahnhof/2968> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/TIH> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#108/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#108/object> <http://schema.org/addressRegion> "Baden-Württemberg" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#108/object> <http://schema.org/addressLocality> "Jettenbach" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#108/object> <http://schema.org/streetAddress> "Bahnhofstraße 2-4" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#108/object> <http://schema.org/postalCode> "84555"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/3052> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/3052> <http://www.w3.org/2000/01/rdf-schema#label> "Jettenbach" .
<https://portal.limbo-project.org/bahnhof/3052> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#109/object> .
<https://portal.limbo-project.org/bahnhof/3052> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/MJEB> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#109/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#109/object> <http://schema.org/addressRegion> "Bayern" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#109/object> <http://schema.org/addressLocality> "Johanngeorgenstadt" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#109/object> <http://schema.org/streetAddress> "Pachthausstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#109/object> <http://schema.org/postalCode> "8349"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/3059> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .
<https://portal.limbo-project.org/bahnhof/3059> <http://www.w3.org/2000/01/rdf-schema#label> "Johanngeorgenstadt" .
<https://portal.limbo-project.org/bahnhof/3059> <http://schema.org/address> <urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#110/object> .
<https://portal.limbo-project.org/bahnhof/3059> <http://linkedgeodata.org/ontology/RailwayThing> <https://portal.limbo-project.org/Betriebsstelle/DJ> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#110/object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/PostalAddress> .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#110/object> <http://schema.org/addressRegion> "Sachsen" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#110/object> <http://schema.org/addressLocality> "Julbach" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#110/object> <http://schema.org/streetAddress> "Flurstraße" .
<urn:instance:1537953247771_DBRNI_Uebersicht_Bahnhoefe_Stand2018_01csv#110/object> <http://schema.org/postalCode> "84387"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/bahnhof/8222> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://linkedgeodata.org/ontology/RailwayStation> .