-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstops.txt
1103 lines (1103 loc) · 98.3 KB
/
stops.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"stop_id","stop_code","stop_name","stop_lat","stop_lon","zone_id","stop_url","location_type","parent_station","stop_timezone","wheelchair_boarding"
"100210","100210","Stollenweg","50.7822619","6.1557408","","","0","","Europe/Berlin","0"
"215972","215972","Brockenberg","50.7539369","6.22667","","","0","","Europe/Berlin","0"
"100551","100551","Barbarossaplatz","50.7643005","6.0751172","","","0","","Europe/Berlin","0"
"100381","100381","Erberichshofstraße","50.7578775","6.1724391","","","0","","Europe/Berlin","0"
"210711","210711","Mühlenbachstraße","50.8395522","6.0708663","","","0","","Europe/Berlin","0"
"100901","100901","Steinebrück","50.7434749","6.1735477","","","0","","Europe/Berlin","0"
"210735","210735","Kohlscheid Markt","50.8346844","6.0902494","","","0","","Europe/Berlin","0"
"213401","213401","Aachener Straße","50.8227575","6.2449847","","","0","","Europe/Berlin","0"
"213313","213313","Kreisaltenheim","50.8161047","6.2537613","","","0","","Europe/Berlin","0"
"100000","100000","Aachen Bushof","50.7775936","6.0908191","","","0","","Europe/Berlin","0"
"100209","100209","Hansmannstraße","50.7845138","6.1547805","","","0","","Europe/Berlin","0"
"100624","100624","Melatener Straße","50.7766972","6.0588186","","","0","","Europe/Berlin","0"
"215713","215713","Hastenrather Str.","50.771333","6.2477488","","","0","","Europe/Berlin","0"
"213231","213231","St. Johannes","50.8198466","6.3218402","","","0","","Europe/Berlin","0"
"213121","213121","Dürwiß Schule","50.8358633","6.2753688","","","0","","Europe/Berlin","0"
"213012","213012","Peter-Paul-Straße","50.8222666","6.2678444","","","0","","Europe/Berlin","0"
"100749","100749","Lütterbüschgen","50.8183761","6.0487825","","","0","","Europe/Berlin","0"
"380014","380014","Forsths. Bovenberg","50.7919444","6.3150277","","","0","","Europe/Berlin","0"
"709203","709203","Dr. Ackensplein","50.8512044","6.0669647","","","0","","Europe/Berlin","0"
"415041","415041","Rimburger Acker","50.9203319","6.1020488","","","0","","Europe/Berlin","0"
"100376","100376","Gut Weide","50.7636963","6.1509166","","","0","","Europe/Berlin","0"
"210543","210543","Auf dem Kick","50.8630266","6.1018805","","","0","","Europe/Berlin","0"
"100544","100544","Bildchen Grenze","50.7265022","6.0338436","","","0","","Europe/Berlin","0"
"215853","215853","Poststraße","50.7716588","6.3003155","","","0","","Europe/Berlin","0"
"100410","100410","Fuchserde","50.75087","6.1097688","","","0","","Europe/Berlin","0"
"100703","100703","Wildbach","50.7934672","6.0664277","","","0","","Europe/Berlin","0"
"100602","100602","Kuckelkorn","50.7700072","6.0626944","","","0","","Europe/Berlin","0"
"215811","215811","Vicht Kirche","50.7430805","6.2637502","","","0","","Europe/Berlin","0"
"100435","100435","Beverau","50.7593802","6.112425","","","0","","Europe/Berlin","0"
"213108","213108","Dürwiß","50.8351952","6.2784655","","","0","","Europe/Berlin","0"
"210705","210705","Technologiepark","50.8283988","6.0810825","","","0","","Europe/Berlin","0"
"215849","215849","Quellstraße","50.7687672","6.3095391","","","0","","Europe/Berlin","0"
"100403","100403","Marienhospital","50.7625847","6.0977208","","","0","","Europe/Berlin","0"
"100505","100505","Am Friedrich","50.76345","6.0527638","","","0","","Europe/Berlin","0"
"100841","100841","Karolingerstraße","50.7859208","6.0921122","","","0","","Europe/Berlin","0"
"100815","100815","Feldchen","50.7971852","6.1069133","","","0","","Europe/Berlin","0"
"100710","100710","Schönauer Friede","50.816588","6.0652263","","","0","","Europe/Berlin","0"
"100935","100935","Kroitzheider Weg","50.7212505","6.1496894","","","0","","Europe/Berlin","0"
"100352","100352","Danziger Straße","50.7547802","6.1427963","","","0","","Europe/Berlin","0"
"211315","211315","Begau Paulstraße","0.0","0.0","","","0","","Europe/Berlin","0"
"100472","100472","Augustinerweg","50.7249172","6.0896686","","","0","","Europe/Berlin","0"
"415016","415016","Talstraße","50.9199","6.1210616","","","0","","Europe/Berlin","0"
"211282","211282","Alsdorf Zopp","0.0","0.0","","","0","","Europe/Berlin","0"
"211309","211309","Warden Feld","50.8644088","6.21546","","","0","","Europe/Berlin","0"
"215901","215901","Von-Werner-Straße","50.7714336","6.2248552","","","0","","Europe/Berlin","0"
"214425","214425","Fidelisstraße","50.9117261","6.179123","","","0","","Europe/Berlin","0"
"210605","210605","Boscheler Berg","50.8982597","6.1326041","","","0","","Europe/Berlin","0"
"100421","100421","Bayernallee","50.7554763","6.0952966","","","0","","Europe/Berlin","0"
"210655","210655","Merkstein Humboldtstraße","0.0","0.0","","","0","","Europe/Berlin","0"
"210714","210714","Bachstraße","50.8326122","6.0711822","","","0","","Europe/Berlin","0"
"215856","215856","Gracht","50.7728333","6.3236944","","","0","","Europe/Berlin","0"
"100951","100951","Schmithof Schule","50.6886383","6.1683636","","","0","","Europe/Berlin","0"
"100009","100009","Normaluhr","50.7680616","6.094883","","","0","","Europe/Berlin","0"
"100031","100031","Wallstraße","50.7708961","6.0913022","","","0","","Europe/Berlin","0"
"380011","380011","Heistern Friedhof","50.7888802","6.32452","","","0","","Europe/Berlin","0"
"100143","100143","Waldstraße","50.793913","6.1615947","","","0","","Europe/Berlin","0"
"210741","210741","Ebertstraße","50.8332152","6.083575","","","0","","Europe/Berlin","0"
"212028","212028","Bardenberg Pley","50.8489","6.0968372","","","0","","Europe/Berlin","0"
"211322","211322","Alb-Schweitzer-Str","50.8553833","6.1951952","","","0","","Europe/Berlin","0"
"210615","210615","An der Herrenstraß","50.8855927","6.1079694","","","0","","Europe/Berlin","0"
"872206","872206","Liberme","50.6515869","6.05152","","","0","","Europe/Berlin","0"
"215705","215705","Anemonenweg","50.7800244","6.2440802","","","0","","Europe/Berlin","0"
"100728","100728","Kackertstraße","50.7909166","6.0620277","","","0","","Europe/Berlin","0"
"873150","873150","Kelmis Friedhof","50.7166894","6.0182325","","","0","","Europe/Berlin","0"
"100631","100631","Kastanienweg","50.7854908","6.0547602","","","0","","Europe/Berlin","0"
"215944","215944","Breinig Siedlung","50.7372638","6.2390694","","","0","","Europe/Berlin","0"
"100051","100051","Scheibenstraße","50.7744208","6.10152","","","0","","Europe/Berlin","0"
"100609","100609","Püngelerstraße","50.7690688","6.0247316","","","0","","Europe/Berlin","0"
"213227","213227","Lindenallee","50.8271524","6.3194636","","","0","","Europe/Berlin","0"
"100902","100902","Rollefbachweg","50.7392927","6.1749488","","","0","","Europe/Berlin","0"
"100938","100938","Walheim Friedhof","50.7102197","6.175888","","","0","","Europe/Berlin","0"
"100905","100905","Kornelimünster","50.7280388","6.1839722","","","0","","Europe/Berlin","0"
"380003","380003","An der Kante","50.7945805","6.3367994","","","0","","Europe/Berlin","0"
"210643","210643","Wildnis Anfang","0.0","0.0","","","0","","Europe/Berlin","0"
"210649","210649","Plitschard Dorf","0.0","0.0","","","0","","Europe/Berlin","0"
"212071","212071","Wurmtal","50.8405475","6.0987363","","","0","","Europe/Berlin","0"
"210515","210515","Bierstraß Anfang","0.0","0.0","","","0","","Europe/Berlin","0"
"210552","210552","Pricksteenweg","50.8555855","6.0760744","","","0","","Europe/Berlin","0"
"100113","100113","Prager Ring","50.7921488","6.1186305","","","0","","Europe/Berlin","0"
"214412","214412","Oidtweiler Kapelle","50.8982858","6.180123","","","0","","Europe/Berlin","0"
"100462","100462","Hauptstraße","50.7658272","6.0899033","","","0","","Europe/Berlin","0"
"210505","210505","Vier Jahreszeiten","50.8510347","6.1120072","","","0","","Europe/Berlin","0"
"213232","213232","Wilhelmshöhe","50.8208644","6.3243163","","","0","","Europe/Berlin","0"
"100434","100434","Zwanzigmorgen","50.7630833","6.1108055","","","0","","Europe/Berlin","0"
"100407","100407","Forster Weg","50.7572336","6.1008272","","","0","","Europe/Berlin","0"
"100323","100323","Niederforstbach","50.7415197","6.1578152","","","0","","Europe/Berlin","0"
"213324","213324","Sticher Berg","50.8114488","6.2534666","","","0","","Europe/Berlin","0"
"213402","213402","Schwan","50.8221827","6.2403411","","","0","","Europe/Berlin","0"
"875011","875011","Belven 96","50.6709816","6.0757588","","","0","","Europe/Berlin","0"
"211307","211307","Schillerstraße","50.8660644","6.2096577","","","0","","Europe/Berlin","0"
"212099","212099","Drischer Straße","50.81764","6.1370572","","","0","","Europe/Berlin","0"
"211211","211211","Anna I","50.8722472","6.1597638","","","0","","Europe/Berlin","0"
"100512","100512","Schillerstraße","50.7629322","6.0782047","","","0","","Europe/Berlin","0"
"211353","211353","Industriepark","50.8802499","6.219","","","0","","Europe/Berlin","0"
"215805","215805","Vicht Brücke","50.7451302","6.2637336","","","0","","Europe/Berlin","0"
"210650","210650","Plitschard Friedhof","0.0","0.0","","","0","","Europe/Berlin","0"
"213008","213008","Eschw. Friedhof","50.8175522","6.2773105","","","0","","Europe/Berlin","0"
"100985","100985","Schleckheimer Str.","50.7236208","6.1651047","","","0","","Europe/Berlin","0"
"213251","213251","Auf dem Pesch","50.8270208","6.3084291","","","0","","Europe/Berlin","0"
"100732","100732","Richterich Kirche","50.8150363","6.0585836","","","0","","Europe/Berlin","0"
"100121","100121","Haaren Denkmal","50.7983069","6.126873","","","0","","Europe/Berlin","0"
"215503","215503","Mühlener Brücke","50.778593","6.222763","","","0","","Europe/Berlin","0"
"213423","213423","Westerwaldstraße","50.8403222","6.2363175","","","0","","Europe/Berlin","0"
"100232","100232","Eisenbahnweg","50.7725633","6.1253713","","","0","","Europe/Berlin","0"
"100120","100120","Birkenweg","50.7979983","6.129553","","","0","","Europe/Berlin","0"
"708006","708006","Bradleystraat","50.870973","5.9955933","","","0","","Europe/Berlin","0"
"100930","100930","Hundskaulweg","50.7160661","6.1648022","","","0","","Europe/Berlin","0"
"210613","210613","Sommerweg","50.8842208","6.1041722","","","0","","Europe/Berlin","0"
"213007","213007","Raths./City-Center","50.8173677","6.2715766","","","0","","Europe/Berlin","0"
"210603","210603","Goethestraße","50.8904574","6.1243105","","","0","","Europe/Berlin","0"
"215935","215935","Fuchskaul","50.7414227","6.1976097","","","0","","Europe/Berlin","0"
"100224","100224","Rheingold","50.7770802","6.1712197","","","0","","Europe/Berlin","0"
"214413","214413","Kloshaus","50.896275","6.1784238","","","0","","Europe/Berlin","0"
"100441","100441","Hasencleverstraße","50.7662147","6.1187772","","","0","","Europe/Berlin","0"
"100543","100543","Bildchen Zollamt","50.7306169","6.0406025","","","0","","Europe/Berlin","0"
"385018","385018","Weiler-Hausen","50.8725788","6.2679486","","","0","","Europe/Berlin","0"
"370007","370007","Abzw. Bourheim","50.9089425","6.3202088","","","0","","Europe/Berlin","0"
"215973","215973","Hassenberg","50.7498397","6.2257008","","","0","","Europe/Berlin","0"
"385012","385012","Aldenhoven Kapelle","50.8943336","6.2826991","","","0","","Europe/Berlin","0"
"100382","100382","Am Tiergarten","50.755833","6.1689597","","","0","","Europe/Berlin","0"
"100017","100017","Willy-Brandt-Platz","50.77579","6.09133","","","0","","Europe/Berlin","0"
"100982","100982","Steinkaulweid","50.7307824","6.1731325","","","0","","Europe/Berlin","0"
"100768","100768","Lemiers","50.7869166","5.9987222","","","0","","Europe/Berlin","0"
"100301","100301","Goerdelerstraße","50.7709491","6.112793","","","0","","Europe/Berlin","0"
"211324","211324","Am Neuen Markt","50.8589166","6.1847777","","","0","","Europe/Berlin","0"
"211231","211231","Alsdorf Rathaus","50.8738455","6.1674411","","","0","","Europe/Berlin","0"
"215982","215982","Grüner Weg","50.7599627","6.2204633","","","0","","Europe/Berlin","0"
"215502","215502","Salmstraße","50.7769372","6.2236483","","","0","","Europe/Berlin","0"
"100105","100105","Hüls Friedhof","50.7864566","6.1391083","","","0","","Europe/Berlin","0"
"215905","215905","Münsterb. Schule","50.7707205","6.2120936","","","0","","Europe/Berlin","0"
"100763","100763","Kirschbäumchen","50.8005574","6.0278552","","","0","","Europe/Berlin","0"
"875009","875009","Grossenbusch","50.7082966","6.0885466","","","0","","Europe/Berlin","0"
"211224","211224","Neuweiler","50.8872047","6.1726619","","","0","","Europe/Berlin","0"
"100006","100006","Ehrenmal/Lousberg","50.78203","6.0835983","","","0","","Europe/Berlin","0"
"213312","213312","Ringofen","50.8104902","6.2560044","","","0","","Europe/Berlin","0"
"210734","210734","Nordstraße","50.8359541","6.0873558","","","0","","Europe/Berlin","0"
"100661","100661","Floriansdorf","50.7878169","6.0473888","","","0","","Europe/Berlin","0"
"100008","100008","Augustastraße","50.7731333","6.0959027","","","0","","Europe/Berlin","0"
"212033","212033","Kaisersruh","50.8121155","6.1171775","","","0","","Europe/Berlin","0"
"213102","213102","Jülicher Straße","50.8379305","6.2735416","","","0","","Europe/Berlin","0"
"100481","100481","Lichtenb. Kirche","50.7119586","6.1242461","","","0","","Europe/Berlin","0"
"211308","211308","Goethestraße","50.8679019","6.2125638","","","0","","Europe/Berlin","0"
"211213","211213","Alsdorf Weiher","50.8657475","6.1535624","","","0","","Europe/Berlin","0"
"213306","213306","Pumpe","50.8037222","6.2425833","","","0","","Europe/Berlin","0"
"211223","211223","Gesamtschule","50.8809394","6.1725108","","","0","","Europe/Berlin","0"
"100225","100225","Bayerhaus","50.7780102","6.1803255","","","0","","Europe/Berlin","0"
"213222","213222","Lynenwerk","50.8209488","6.2995394","","","0","","Europe/Berlin","0"
"725109","725109","Flats","50.7689986","6.0142136","","","0","","Europe/Berlin","0"
"100756","100756","Niersteiner Höfe","50.8103383","6.0442816","","","0","","Europe/Berlin","0"
"875033","875033","Hauset Kapelle","50.7017502","6.064768","","","0","","Europe/Berlin","0"
"100746","100746","Vetschauer Berg","50.8071586","6.0458763","","","0","","Europe/Berlin","0"
"213258","213258","H.-Hollerith-Str.","50.8359611","6.2956111","","","0","","Europe/Berlin","0"
"215827","215827","Industriestraße","50.7677783","6.2736702","","","0","","Europe/Berlin","0"
"100522","100522","Reimser Straße","50.7396038","6.0472402","","","0","","Europe/Berlin","0"
"100971","100971","Baumgartsweg","50.69625","6.1433833","","","0","","Europe/Berlin","0"
"213206","213206","Allensteiner Str.","50.8237686","6.2790361","","","0","","Europe/Berlin","0"
"215833","215833","Krewinkel","50.7626694","6.2860844","","","0","","Europe/Berlin","0"
"212019","212019","Klosterstraße","50.8184141","6.1282474","","","0","","Europe/Berlin","0"
"100007","100007","Eurogress","50.7807852","6.0900738","","","0","","Europe/Berlin","0"
"100362","100362","Brander Feld","50.7467461","6.1481983","","","0","","Europe/Berlin","0"
"213011","213011","Krankenhaus","50.8187088","6.2630986","","","0","","Europe/Berlin","0"
"100001","100001","Elisenbrunnen","50.7747372","6.0879925","","","0","","Europe/Berlin","0"
"212107","212107","Neusen Kreuz","50.8404061","6.1850102","","","0","","Europe/Berlin","0"
"100377","100377","Debyestraße","50.7614805","6.1544102","","","0","","Europe/Berlin","0"
"100625","100625","Halifaxstraße","50.7796908","6.0588083","","","0","","Europe/Berlin","0"
"210506","210506","Am Hillenberg","50.8582769","6.1055769","","","0","","Europe/Berlin","0"
"100812","100812","Am Gut Wolf","50.7889263","6.1046397","","","0","","Europe/Berlin","0"
"100921","100921","Krauthausen","50.7408025","6.1868263","","","0","","Europe/Berlin","0"
"872207","872207","Gut Luft","50.6553697","6.0554272","","","0","","Europe/Berlin","0"
"215508","215508","Finkensief","50.7605258","6.2314072","","","0","","Europe/Berlin","0"
"100711","100711","Uersfeld","50.819928","6.0720425","","","0","","Europe/Berlin","0"
"215712","215712","Brandweiher","50.7691691","6.2422658","","","0","","Europe/Berlin","0"
"370000","370000","Jülich Bahnhof/ZOB","50.919743","6.3674544","","","0","","Europe/Berlin","0"
"213201","213201","Südstraße","50.8206147","6.2822244","","","0","","Europe/Berlin","0"
"100427","100427","Lichtenb. Broich","50.7152936","6.1219138","","","0","","Europe/Berlin","0"
"100144","100144","Kelmesbergweg","50.79222","6.1637588","","","0","","Europe/Berlin","0"
"215913","215913","Buschstraße","50.7798138","6.2141058","","","0","","Europe/Berlin","0"
"215841","215841","Brunnenweg","50.7801002","6.2822069","","","0","","Europe/Berlin","0"
"100964","100964","Gewerbegebiet","50.7110441","6.1379625","","","0","","Europe/Berlin","0"
"100903","100903","Klause","50.7339188","6.173753","","","0","","Europe/Berlin","0"
"100302","100302","Bahnhof Rothe Erde","50.7699361","6.1178416","","","0","","Europe/Berlin","0"
"213323","213323","Röthgener Straße","50.8143072","6.2576252","","","0","","Europe/Berlin","0"
"215814","215814","Sägewerk","50.7228919","6.2550833","","","0","","Europe/Berlin","0"
"213107","213107","Am Hochhaus","50.8347952","6.2802519","","","0","","Europe/Berlin","0"
"210525","210525","Straß","50.8570122","6.0798544","","","0","","Europe/Berlin","0"
"210744","210744","Kircheichstraße","50.8271788","6.0898233","","","0","","Europe/Berlin","0"
"214435","214435","Setterich Siedlung","50.9266597","6.2096891","","","0","","Europe/Berlin","0"
"213407","213407","St. Jöris Schule","50.8352986","6.2123019","","","0","","Europe/Berlin","0"
"100205","100205","Fringsgraben","50.7766724","6.1400277","","","0","","Europe/Berlin","0"
"100054","100054","Hohenzollernplatz","50.776298","6.1125508","","","0","","Europe/Berlin","0"
"100222","100222","Kirchfeld","50.776108","6.1527997","","","0","","Europe/Berlin","0"
"210737","210737","Forstheider Straße","50.8290283","6.0926227","","","0","","Europe/Berlin","0"
"100515","100515","Yorckstraße","50.7569444","6.0735555","","","0","","Europe/Berlin","0"
"100542","100542","Pumpstation","50.733753","6.0438633","","","0","","Europe/Berlin","0"
"875026","875026","Driesch","50.6765633","6.1104716","","","0","","Europe/Berlin","0"
"213243","213243","Bohl","50.8023583","6.2780997","","","0","","Europe/Berlin","0"
"100952","100952","Schmithofer Straße","50.6912222","6.1592025","","","0","","Europe/Berlin","0"
"100704","100704","Laurensberg","50.7970016","6.0632413","","","0","","Europe/Berlin","0"
"215855","215855","Gressenich Kapelle","50.7727011","6.3039938","","","0","","Europe/Berlin","0"
"875042","875042","Hauset Heide","50.7127686","6.083005","","","0","","Europe/Berlin","0"
"100206","100206","Josefstraße","50.7790669","6.1448697","","","0","","Europe/Berlin","0"
"212027","212027","Kamper Gracht","50.8461808","6.1019997","","","0","","Europe/Berlin","0"
"100466","100466","St. Vither Straße","50.7528197","6.0901616","","","0","","Europe/Berlin","0"
"100727","100727","Ritterstraße","50.788308","6.0651441","","","0","","Europe/Berlin","0"
"100814","100814","Grüner Winkel","50.7956472","6.1079877","","","0","","Europe/Berlin","0"
"100355","100355","Sittarder Straße","50.75639","6.1395466","","","0","","Europe/Berlin","0"
"100473","100473","Köpfchen Alt.Zoll","50.7230111","6.0899341","","","0","","Europe/Berlin","0"
"210633","210633","Haus Worm","0.0","0.0","","","0","","Europe/Berlin","0"
"215846","215846","Hitzberg","50.7780694","6.2983527","","","0","","Europe/Berlin","0"
"100411","100411","Schöntal","50.7475033","6.1146775","","","0","","Europe/Berlin","0"
"100803","100803","Alter Tivoli","50.7906677","6.0971555","","","0","","Europe/Berlin","0"
"100821","100821","Bastei","50.7826466","6.0893261","","","0","","Europe/Berlin","0"
"210642","210642","Wildnis Ende","0.0","0.0","","","0","","Europe/Berlin","0"
"211323","211323","Holbeinstraße","50.8573869","6.1903608","","","0","","Europe/Berlin","0"
"875004","875004","Eynattener Feld","50.6866297","6.0796191","","","0","","Europe/Berlin","0"
"210715","210715","Bank","50.8272466","6.0696127","","","0","","Europe/Berlin","0"
"415010","415010","Finkenstraße","50.9157202","6.1294402","","","0","","Europe/Berlin","0"
"215945","215945","Breinigerberg","50.7396652","6.2428497","","","0","","Europe/Berlin","0"
"210771","210771","Altes Zollhaus","50.8458694","6.0740138","","","0","","Europe/Berlin","0"
"212123","212123","Straßenverkehrsamt","50.8054041","6.1527255","","","0","","Europe/Berlin","0"
"100632","100632","Hörnstieg","50.7843388","6.0575238","","","0","","Europe/Berlin","0"
"213101","213101","Heinrich-Heine-Str","50.834645","6.2715777","","","0","","Europe/Berlin","0"
"100406","100406","Rathenauallee","50.7574158","6.09788","","","0","","Europe/Berlin","0"
"212032","212032","Paulinenstraße","50.8161022","6.1215863","","","0","","Europe/Berlin","0"
"212108","212108","Fronhofstraße","50.8419397","6.1816375","","","0","","Europe/Berlin","0"
"100984","100984","Meischenfeld","50.7266197","6.1735844","","","0","","Europe/Berlin","0"
"415002","415002","C.-Magnus-Allee","50.9249386","6.1070655","","","0","","Europe/Berlin","0"
"215953","215953","Breinig Bahnhof","50.73138","6.2138275","","","0","","Europe/Berlin","0"
"210601","210601","Gesamtschule","50.8806111","6.1123333","","","0","","Europe/Berlin","0"
"215938","215938","Breinigerheide","50.7316755","6.2095088","","","0","","Europe/Berlin","0"
"385003","385003","Gewerbegebiet Ost","50.9028133","6.3097322","","","0","","Europe/Berlin","0"
"213000","213000","Eschweiler Bushof","50.8203727","6.262668","","","0","","Europe/Berlin","0"
"210612","210612","Alt-Merkstein","50.8829825","6.10191","","","0","","Europe/Berlin","0"
"210514","210514","Thiergarten","50.8764816","6.1038563","","","0","","Europe/Berlin","0"
"100508","100508","Jüdischer Friedhof","50.7670891","6.0724141","","","0","","Europe/Berlin","0"
"210772","210772","Pannesheide Schule","50.8470775","6.068478","","","0","","Europe/Berlin","0"
"215908","215908","Buschmühle","50.7725975","6.1976847","","","0","","Europe/Berlin","0"
"211269","211269","Bahnübergang","0.0","0.0","","","0","","Europe/Berlin","0"
"213216","213216","Nothberg Kirche","50.8105063","6.2912861","","","0","","Europe/Berlin","0"
"100112","100112","Liebigstraße","50.7893738","6.1160283","","","0","","Europe/Berlin","0"
"210501","210501","Dammstraße","50.8668152","6.0970733","","","0","","Europe/Berlin","0"
"708001","708001","Stadsschouwburg","50.8868272","5.9742613","","","0","","Europe/Berlin","0"
"215974","215974","Hostetstraße","50.7506158","6.2193283","","","0","","Europe/Berlin","0"
"213015","213015","Zechenstraße","50.8127966","6.2735933","","","0","","Europe/Berlin","0"
"380006","380006","Transvaal","50.7820927","6.3182625","","","0","","Europe/Berlin","0"
"100324","100324","Pützgasse","50.7362741","6.1611972","","","0","","Europe/Berlin","0"
"100331","100331","Hochstraße","50.7463941","6.162578","","","0","","Europe/Berlin","0"
"215981","215981","Marie-Juchacz-Park","50.7614383","6.2196625","","","0","","Europe/Berlin","0"
"213315","213315","Am Burgfeld","50.8131555","6.2606694","","","0","","Europe/Berlin","0"
"100738","100738","Zollmuseum","50.8453972","6.0199597","","","0","","Europe/Berlin","0"
"100626","100626","Auf der Hörn","50.7809777","6.0554638","","","0","","Europe/Berlin","0"
"215622","215622","Nikolausstraße","50.7851819","6.2229502","","","0","","Europe/Berlin","0"
"100601","100601","Gartenstraße","50.7704169","6.0695841","","","0","","Europe/Berlin","0"
"100311","100311","Kolpingstraße","50.7506691","6.1715483","","","0","","Europe/Berlin","0"
"872208","872208","Raerenpfad","50.6613266","6.0616572","","","0","","Europe/Berlin","0"
"211352","211352","O.-Lilienthal-Str.","50.8763333","6.2232777","","","0","","Europe/Berlin","0"
"875032","875032","Windmühle","50.6959208","6.0717375","","","0","","Europe/Berlin","0"
"214428","214428","Maarstraße","50.9114869","6.1825772","","","0","","Europe/Berlin","0"
"211244","211244","Schaufenberg Kirche","50.876928","6.1774219","","","0","","Europe/Berlin","0"
"875030","875030","Schöne Aussicht","50.6891513","6.0858358","","","0","","Europe/Berlin","0"
"100731","100731","Hander Weg","50.8131302","6.0597447","","","0","","Europe/Berlin","0"
"100747","100747","Bocholtzer Straße","50.8143602","6.0427052","","","0","","Europe/Berlin","0"
"725106","725106","Parklaan","50.7727027","6.0112377","","","0","","Europe/Berlin","0"
"215817","215817","Zweifall","50.7165838","6.2619727","","","0","","Europe/Berlin","0"
"215802","215802","Bernhardshammer","50.7544919","6.2454633","","","0","","Europe/Berlin","0"
"100212","100212","Eilendorf Markt","50.7794641","6.1637708","","","0","","Europe/Berlin","0"
"100940","100940","Kirchberg","50.7064713","6.1777311","","","0","","Europe/Berlin","0"
"380002","380002","Heistern","50.7962777","6.3356944","","","0","","Europe/Berlin","0"
"100374","100374","Rödgerbach","50.7688402","6.142258","","","0","","Europe/Berlin","0"
"100999","100999","ASA-Haltestelle / FGI-Haltestelle","0.0","0.0","","","0","","Europe/Berlin","0"
"875040","875040","Bergscheid","50.6720538","6.1163455","","","0","","Europe/Berlin","0"
"213307","213307","Friedrichstraße","50.8058186","6.2465272","","","0","","Europe/Berlin","0"
"215793","215793","Duffenter","50.7745252","6.2453072","","","0","","Europe/Berlin","0"
"872201","872201","Eupen Bahnhof","50.6345758","6.0357833","","","0","","Europe/Berlin","0"
"212015","212015","Ringstraße","50.8152311","6.1370077","","","0","","Europe/Berlin","0"
"100426","100426","Kohlshof","50.7204733","6.12645","","","0","","Europe/Berlin","0"
"100433","100433","Frankenberg","50.7667008","6.1090263","","","0","","Europe/Berlin","0"
"385015","385015","Niederm. Ortsmitte","50.8841413","6.2667788","","","0","","Europe/Berlin","0"
"370001","370001","Neues Rathaus","50.9214497","6.3620777","","","0","","Europe/Berlin","0"
"215826","215826","Diepenlinchen","50.7641463","6.2698786","","","0","","Europe/Berlin","0"
"213207","213207","Vöckelsberg","50.825888","6.2760683","","","0","","Europe/Berlin","0"
"100004","100004","Hauptbahnhof","50.7687027","6.0906277","","","0","","Europe/Berlin","0"
"708008","708008","Bautscherweg","50.8666672","6.0006363","","","0","","Europe/Berlin","0"
"215914","215914","Kohlbusch Spielpl.","50.7780747","6.2114747","","","0","","Europe/Berlin","0"
"100401","100401","Rosenquelle","50.7665505","6.0958438","","","0","","Europe/Berlin","0"
"100304","100304","Adenauerallee","50.766538","6.127538","","","0","","Europe/Berlin","0"
"100245","100245","Markusstraße","50.7834686","6.1542136","","","0","","Europe/Berlin","0"
"100106","100106","Hüls Gewerbegebiet","50.7812716","6.13536","","","0","","Europe/Berlin","0"
"213427","213427","Pferdegasse","50.8439388","6.2252061","","","0","","Europe/Berlin","0"
"100412","100412","Lintert Friedhof","50.7474294","6.1252472","","","0","","Europe/Berlin","0"
"210611","210611","Seniorenzentrum","50.8788283","6.1031797","","","0","","Europe/Berlin","0"
"100804","100804","Sportpark Soers","50.7938611","6.1004722","","","0","","Europe/Berlin","0"
"210526","210526","Kohlberg","50.8509466","6.076663","","","0","","Europe/Berlin","0"
"212124","212124","Mitterrandstraße","50.8101072","6.1675675","","","0","","Europe/Berlin","0"
"213408","213408","St. Jöris Kirche","50.8357508","6.2108986","","","0","","Europe/Berlin","0"
"100612","100612","Steinbergweg","50.7745277","6.0383333","","","0","","Europe/Berlin","0"
"210516","210516","Bierstraß","0.0","0.0","","","0","","Europe/Berlin","0"
"215923","215923","Aachener Straße","50.758498","6.2153119","","","0","","Europe/Berlin","0"
"385014","385014","Patterner Ring","50.8887694","6.2750763","","","0","","Europe/Berlin","0"
"210743","210743","Altes Rathaus","50.8294633","6.0882522","","","0","","Europe/Berlin","0"
"211351","211351","Konrad-Zuse-Straße","50.8735555","6.2238055","","","0","","Europe/Berlin","0"
"100653","100653","Lennestraße","50.7701922","6.0598308","","","0","","Europe/Berlin","0"
"875012","875012","Belven 60","50.6696555","6.0826313","","","0","","Europe/Berlin","0"
"213225","213225","Berliner Ring","50.8275983","6.3141725","","","0","","Europe/Berlin","0"
"100712","100712","Roder Weg","50.8173969","6.0653266","","","0","","Europe/Berlin","0"
"100604","100604","Westfriedhof","50.7692586","6.0497513","","","0","","Europe/Berlin","0"
"215500","215500","Mühlener Bahnhof","50.7734847","6.2240144","","","0","","Europe/Berlin","0"
"100933","100933","Oberforstb. Schule","50.7223202","6.1419558","","","0","","Europe/Berlin","0"
"210532","210532","Eygelshovener Str.","50.86779","6.09199","","","0","","Europe/Berlin","0"
"100145","100145","Schwester-Zita-Weg","50.7939102","6.1569427","","","0","","Europe/Berlin","0"
"100957","100957","Magelspfad","50.686285","6.1471438","","","0","","Europe/Berlin","0"
"213242","213242","Bergrath Schule","50.8054144","6.2782883","","","0","","Europe/Berlin","0"
"213238","213238","Weisweiler Bahnhof","50.8244161","6.3206258","","","0","","Europe/Berlin","0"
"210641","210641","Worm Brücke","0.0","0.0","","","0","","Europe/Berlin","0"
"211340","211340","Hoengen Kirche","50.8727166","6.210085","","","0","","Europe/Berlin","0"
"100464","100464","Ronheider Weg","50.7576602","6.0843463","","","0","","Europe/Berlin","0"
"100325","100325","Bau","50.7340769","6.1640366","","","0","","Europe/Berlin","0"
"100534","100534","Colynshof","50.7523772","6.0734402","","","0","","Europe/Berlin","0"
"100773","100773","Schönauer Hang","50.8119208","6.0681991","","","0","","Europe/Berlin","0"
"100514","100514","K.-Friedrich-Park","50.7589519","6.0751794","","","0","","Europe/Berlin","0"
"100467","100467","Jahnplatz","50.7499636","6.0868547","","","0","","Europe/Berlin","0"
"100207","100207","Kaiserstraße","50.7814275","6.1477269","","","0","","Europe/Berlin","0"
"100521","100521","Entenpfuhler Weg","50.7381922","6.0481597","","","0","","Europe/Berlin","0"
"100002","100002","Hansemannplatz","50.7784794","6.0959816","","","0","","Europe/Berlin","0"
"100380","100380","Hermann-Löns-Str.","50.761738","6.1694911","","","0","","Europe/Berlin","0"
"211305","211305","Altes Rathaus","50.8599891","6.2037788","","","0","","Europe/Berlin","0"
"215984","215984","Brauereistraße","50.7617638","6.2280119","","","0","","Europe/Berlin","0"
"212052","212052","Schweilbach","50.8231552","6.1193558","","","0","","Europe/Berlin","0"
"725101","725101","Bloemendal","50.7733316","6.014045","","","0","","Europe/Berlin","0"
"100822","100822","E.-Brändström-Str.","50.7851808","6.0901816","","","0","","Europe/Berlin","0"
"213021","213021","Auerbachstraße","50.8239466","6.2515783","","","0","","Europe/Berlin","0"
"211276","211276","Alsdorf Lindenplatz","0.0","0.0","","","0","","Europe/Berlin","0"
"215937","215937","Weiherstraße","50.732613","6.20804","","","0","","Europe/Berlin","0"
"213257","213257","Ernst-Abbe-Str. 34","50.8386138","6.2973944","","","0","","Europe/Berlin","0"
"100965","100965","Auf dem Bahnes","50.7135622","6.1443552","","","0","","Europe/Berlin","0"
"100817","100817","Schwarzer Weg","50.7945683","6.1112883","","","0","","Europe/Berlin","0"
"215952","215952","Breinig Denkmal","50.7312991","6.2185861","","","0","","Europe/Berlin","0"
"213103","213103","Dürwiß Kirche","50.8398694","6.2747455","","","0","","Europe/Berlin","0"
"100246","100246","Eilendorf Bahnhof","50.7855477","6.1521783","","","0","","Europe/Berlin","0"
"215621","215621","Kraftwerke","50.7827355","6.223605","","","0","","Europe/Berlin","0"
"380013","380013","Wenauer Höfchen","50.7934813","6.3313597","","","0","","Europe/Berlin","0"
"100943","100943","Sperberweg","50.7051188","6.1725847","","","0","","Europe/Berlin","0"
"100223","100223","Eilendorf Linde","50.7773336","6.1573975","","","0","","Europe/Berlin","0"
"873102","873102","Kelmis Bruch","50.7091036","6.0048511","","","0","","Europe/Berlin","0"
"215858","215858","Schevenh. Kirche","50.7692444","6.3256455","","","0","","Europe/Berlin","0"
"100541","100541","Hochgrundhaus","50.7501961","6.060273","","","0","","Europe/Berlin","0"
"100204","100204","Barbarakirche","50.7769108","6.1361438","","","0","","Europe/Berlin","0"
"215703","215703","Heidestraße","50.781595","6.2366586","","","0","","Europe/Berlin","0"
"211331","211331","Bendenstraße","50.8708327","6.2122505","","","0","","Europe/Berlin","0"
"100904","100904","Napoleonsberg","50.7300811","6.1792627","","","0","","Europe/Berlin","0"
"100956","100956","Wilbank","50.6880208","6.1465975","","","0","","Europe/Berlin","0"
"100760","100760","Ochsenstock","50.8003977","6.0109175","","","0","","Europe/Berlin","0"
"708013","708013","Graverstraat 68","50.8583769","6.0225502","","","0","","Europe/Berlin","0"
"100972","100972","Sief Abzweigung","50.6961088","6.13363","","","0","","Europe/Berlin","0"
"100474","100474","Goldbachstraße","50.7530477","6.0857408","","","0","","Europe/Berlin","0"
"875007","875007","Autobahn","50.7013497","6.0859713","","","0","","Europe/Berlin","0"
"875035","875035","Hauset Kirche","50.7084527","6.0709216","","","0","","Europe/Berlin","0"
"415001","415001","Mühlenweg","50.9247897","6.1028269","","","0","","Europe/Berlin","0"
"212113","212113","Euchen","50.8450241","6.1616166","","","0","","Europe/Berlin","0"
"100739","100739","Forsterheide Kreuz","50.8283769","6.0576636","","","0","","Europe/Berlin","0"
"415011","415011","Holthausen","50.91626","6.1368647","","","0","","Europe/Berlin","0"
"211326","211326","Oststraße","50.8493977","6.1834983","","","0","","Europe/Berlin","0"
"214474","214474","Puffendorf van Roy","0.0","0.0","","","0","","Europe/Berlin","0"
"875003","875003","Teeheide","50.6829813","6.0777736","","","0","","Europe/Berlin","0"
"100761","100761","Abzweigung Orsbach","50.8007483","6.0487638","","","0","","Europe/Berlin","0"
"100431","100431","Schlossstraße","50.7693866","6.101293","","","0","","Europe/Berlin","0"
"725107","725107","De Lange Akker","50.7711027","6.0099616","","","0","","Europe/Berlin","0"
"210716","210716","Amstelbach","50.8306427","6.0727688","","","0","","Europe/Berlin","0"
"100015","100015","Techn. Hochschule","50.7774722","6.0782222","","","0","","Europe/Berlin","0"
"211235","211235","Alsdf. Gewerbepark","50.8720033","6.1848375","","","0","","Europe/Berlin","0"
"100114","100114","Haaren Markt","50.7950447","6.1259705","","","0","","Europe/Berlin","0"
"215946","215946","Waldschenke","50.7437988","6.2477025","","","0","","Europe/Berlin","0"
"211318","211318","Warden Auf dem Bungart","0.0","0.0","","","0","","Europe/Berlin","0"
"100303","100303","Zeppelinstraße","50.7677477","6.1228494","","","0","","Europe/Berlin","0"
"215980","215980","Seniorenzentrum","50.7637063","6.2183266","","","0","","Europe/Berlin","0"
"215711","215711","Vogelsang","50.7675475","6.2353541","","","0","","Europe/Berlin","0"
"100705","100705","Rosenhügel","50.8006522","6.0617427","","","0","","Europe/Berlin","0"
"212128","212128","Ginsterweg","50.8113013","6.1592713","","","0","","Europe/Berlin","0"
"215975","215975","Kelmesberg","50.7518561","6.2288422","","","0","","Europe/Berlin","0"
"100782","100782","Schloss-Rahe-Str.","50.800298","6.0721561","","","0","","Europe/Berlin","0"
"211268","211268","Kellersberg Broicher Straße","0.0","0.0","","","0","","Europe/Berlin","0"
"100010","100010","Misereor","50.7685583","6.0833027","","","0","","Europe/Berlin","0"
"380005","380005","Auf'm Kutsch","50.7834613","6.3206397","","","0","","Europe/Berlin","0"
"709204","709204","Bleijerheide Grens","50.8471555","6.0730927","","","0","","Europe/Berlin","0"
"210504","210504","Niederbardenberg","50.8550358","6.1110511","","","0","","Europe/Berlin","0"
"211334","211334","Marienstraße","50.8692833","6.2041747","","","0","","Europe/Berlin","0"
"210524","210524","Pilgramsweg","50.8602469","6.0817347","","","0","","Europe/Berlin","0"
"100507","100507","Schwimmhalle West","50.768078","6.0556466","","","0","","Europe/Berlin","0"
"100211","100211","Hahnweg","50.7829947","6.1590047","","","0","","Europe/Berlin","0"
"215718","215718","Am Sender","50.7774911","6.2433013","","","0","","Europe/Berlin","0"
"210651","210651","Plitschard Siedlung","0.0","0.0","","","0","","Europe/Berlin","0"
"210773","210773","Heydenstraße","50.8463238","6.0660491","","","0","","Europe/Berlin","0"
"211274","211274","Alsdorf Saarstraße","0.0","0.0","","","0","","Europe/Berlin","0"
"875038","875038","Köpfchen Grenze","50.7207272","6.0906661","","","0","","Europe/Berlin","0"
"873153","873153","Hergenrather Weg","50.7245163","6.031208","","","0","","Europe/Berlin","0"
"215907","215907","Cockerillstraße","50.7736416","6.2072583","","","0","","Europe/Berlin","0"
"215706","215706","Tulpenweg","50.7840697","6.2483836","","","0","","Europe/Berlin","0"
"213111","213111","Freibad","50.8434108","6.2823338","","","0","","Europe/Berlin","0"
"214426","214426","CarlAlexanderPark","50.9096497","6.1730866","","","0","","Europe/Berlin","0"
"213326","213326","Waldstraße","50.7986041","6.2403475","","","0","","Europe/Berlin","0"
"100375","100375","Zieglerstraße","50.7661911","6.1473811","","","0","","Europe/Berlin","0"
"210511","210511","Herzogenr. Rathaus","50.8718175","6.1025675","","","0","","Europe/Berlin","0"
"100310","100310","Brand","50.7494283","6.16572","","","0","","Europe/Berlin","0"
"212042","212042","Gouleystraße","50.8317061","6.1310661","","","0","","Europe/Berlin","0"
"380001","380001","Fourne","50.8001919","6.3342744","","","0","","Europe/Berlin","0"
"100372","100372","Schwalbenweg","50.7664472","6.1350333","","","0","","Europe/Berlin","0"
"100987","100987","Steinkaulplatz","50.7293369","6.1788422","","","0","","Europe/Berlin","0"
"213237","213237","Ziegelei","50.8254738","6.325058","","","0","","Europe/Berlin","0"
"215623","215623","Velauer Berg","50.7876727","6.2224233","","","0","","Europe/Berlin","0"
"100663","100663","Wilfried-König-Str","50.7828","6.0443888","","","0","","Europe/Berlin","0"
"215829","215829","Am Wimblech","50.762768","6.2711888","","","0","","Europe/Berlin","0"
"709000","709000","Kerkr. Busstation","50.8660058","6.0663583","","","0","","Europe/Berlin","0"
"100948","100948","Schmithof Kirche","50.6935166","6.1618861","","","0","","Europe/Berlin","0"
"708009","708009","Rukker","50.8632602","6.0045849","","","0","","Europe/Berlin","0"
"210701","210701","Pannesheide","50.8462372","6.0752069","","","0","","Europe/Berlin","0"
"100627","100627","Hörn Brücke","50.7871194","6.051875","","","0","","Europe/Berlin","0"
"213314","213314","Waldfriedhof","50.8065811","6.2514825","","","0","","Europe/Berlin","0"
"100774","100774","Schönau","50.810815","6.0687083","","","0","","Europe/Berlin","0"
"875027","875027","Neuenbau","50.67887","6.1045913","","","0","","Europe/Berlin","0"
"215812","215812","Fischbachstraße","50.73893","6.2666311","","","0","","Europe/Berlin","0"
"100737","100737","Horbach","50.8361416","6.0411497","","","0","","Europe/Berlin","0"
"100447","100447","Heidbenden","50.7539405","6.1307911","","","0","","Europe/Berlin","0"
"215983","215983","Kranensterz","50.7599191","6.2244738","","","0","","Europe/Berlin","0"
"214422","214422","Jülicher Straße","50.9108802","6.1909208","","","0","","Europe/Berlin","0"
"215843","215843","Wehrstraße","50.7812261","6.2849077","","","0","","Europe/Berlin","0"
"100611","100611","Kullen","50.7733538","6.0351255","","","0","","Europe/Berlin","0"
"100343","100343","Kollenbruch","50.7427","6.1624377","","","0","","Europe/Berlin","0"
"211306","211306","Hans-Böckler-Str.","50.8625919","6.206148","","","0","","Europe/Berlin","0"
"875013","875013","Neustraße","50.6706255","6.095548","","","0","","Europe/Berlin","0"
"725105","725105","Maastrichterlaan","50.7723958","6.0197294","","","0","","Europe/Berlin","0"
"213215","213215","Nothberg Platz","50.8096952","6.2885144","","","0","","Europe/Berlin","0"
"213309","213309","Am Hang","50.8042208","6.2537394","","","0","","Europe/Berlin","0"
"100603","100603","Venskyhäuschen","50.7689588","6.0560022","","","0","","Europe/Berlin","0"
"213003","213003","Gutenbergstraße","50.818973","6.2533088","","","0","","Europe/Berlin","0"
"100950","100950","Vennbahn","50.6908469","6.1641825","","","0","","Europe/Berlin","0"
"215922","215922","Bischofstraße","50.7575197","6.2193038","","","0","","Europe/Berlin","0"
"213426","213426","Kinzweiler Burg","50.845538","6.2296355","","","0","","Europe/Berlin","0"
"100958","100958","Eisenhütte","50.7001138","6.1540888","","","0","","Europe/Berlin","0"
"215903","215903","Zinkhütter Hof","50.774115","6.2188147","","","0","","Europe/Berlin","0"
"100101","100101","Dresdener Straße","50.7803872","6.1223722","","","0","","Europe/Berlin","0"
"100309","100309","Ringstraße","50.7519583","6.160035","","","0","","Europe/Berlin","0"
"213220","213220","Buschhof","50.7999861","6.3077361","","","0","","Europe/Berlin","0"
"212000","212000","Würselen Parkhotel","50.8248277","6.1275027","","","0","","Europe/Berlin","0"
"211332","211332","Hoengen Markt","50.8711722","6.2085586","","","0","","Europe/Berlin","0"
"100805","100805","Polizeipräsidium","50.7991022","6.1046766","","","0","","Europe/Berlin","0"
"100766","100766","Orsbach Schule","50.7971","5.9958122","","","0","","Europe/Berlin","0"
"213241","213241","Knippmühle","50.8061375","6.2840947","","","0","","Europe/Berlin","0"
"873000","873000","Kelmis BBL","50.7149097","6.0156975","","","0","","Europe/Berlin","0"
"212125","212125","Marshallstraße","50.8087222","6.165","","","0","","Europe/Berlin","0"
"211277","211277","Alsdorf Herzogenrather Straße","0.0","0.0","","","0","","Europe/Berlin","0"
"215933","215933","Tiefental","50.7495966","6.2115019","","","0","","Europe/Berlin","0"
"100517","100517","Ronheide / J G H","50.7505941","6.0718075","","","0","","Europe/Berlin","0"
"100353","100353","Glatzer Straße","50.7510188","6.1385763","","","0","","Europe/Berlin","0"
"212105","212105","Ziegelei","50.8326338","6.1710122","","","0","","Europe/Berlin","0"
"210746","210746","Rumpen Brücke","50.8202911","6.0924636","","","0","","Europe/Berlin","0"
"100911","100911","Hahn Kirche","50.7113441","6.1977519","","","0","","Europe/Berlin","0"
"215971","215971","Bauschenberg","50.7557247","6.2226116","","","0","","Europe/Berlin","0"
"213248","213248","Scherpenseel","50.7894736","6.2940766","","","0","","Europe/Berlin","0"
"210519","210519","Noppenberg","0.0","0.0","","","0","","Europe/Berlin","0"
"100831","100831","Purweider Weg","50.7906947","6.0856825","","","0","","Europe/Berlin","0"
"708000","708000","Heerlen Station","50.8918791","5.9752819","","","0","","Europe/Berlin","0"
"100531","100531","Habsburgerallee","50.7632711","6.0822022","","","0","","Europe/Berlin","0"
"210523","210523","Aachener Straße","50.8644686","6.0862447","","","0","","Europe/Berlin","0"
"210721","210721","Finkenstraße","50.8252158","6.068318","","","0","","Europe/Berlin","0"
"708014","708014","Parkstad Stadion","50.86006","6.0076383","","","0","","Europe/Berlin","0"
"100425","100425","Grüne Eiche","50.7311955","6.1156572","","","0","","Europe/Berlin","0"
"100962","100962","Nerscheider Weg","50.7173763","6.1494788","","","0","","Europe/Berlin","0"
"100003","100003","Kaiserplatz","50.77451","6.09563","","","0","","Europe/Berlin","0"
"211221","211221","Schaufenberger Str","50.8781077","6.1664902","","","0","","Europe/Berlin","0"
"100483","100483","Kesselstraße","50.7123333","6.1319722","","","0","","Europe/Berlin","0"
"210616","210616","Römerplatz","50.8867838","6.1125766","","","0","","Europe/Berlin","0"
"213235","213235","Langerweher Straße","50.8241258","6.3313213","","","0","","Europe/Berlin","0"
"100524","100524","Walhorner Straße","50.7402155","6.0459377","","","0","","Europe/Berlin","0"
"213017","213017","Merkurstraße","50.8133097","6.277115","","","0","","Europe/Berlin","0"
"100115","100115","Tonbrennerstraße","50.7959122","6.1301286","","","0","","Europe/Berlin","0"
"213405","213405","Merzbrück Abzw.","50.8226536","6.2108111","","","0","","Europe/Berlin","0"
"100005","100005","Ponttor","50.7808611","6.0779722","","","0","","Europe/Berlin","0"
"100108","100108","Schönebergstraße","50.788933","6.1407027","","","0","","Europe/Berlin","0"
"874009","874009","Merols","50.6716583","6.072068","","","0","","Europe/Berlin","0"
"100533","100533","M.-Theresia-Allee","50.7556744","6.0766577","","","0","","Europe/Berlin","0"
"213214","213214","Nothberg Kreis","50.8104316","6.2852133","","","0","","Europe/Berlin","0"
"211335","211335","Langstraße","50.8681025","6.2059311","","","0","","Europe/Berlin","0"
"875034","875034","Hauset Brücke","50.7056394","6.0703794","","","0","","Europe/Berlin","0"
"100365","100365","Heussstraße","50.7515911","6.1553411","","","0","","Europe/Berlin","0"
"215912","215912","Schlossberg","50.7809138","6.2172441","","","0","","Europe/Berlin","0"
"100409","100409","Löwenstein-Kaserne","50.7519605","6.106838","","","0","","Europe/Berlin","0"
"100016","100016","Driescher Gässchen","50.7788866","6.080875","","","0","","Europe/Berlin","0"
"875008","875008","Eynattener Mühle","50.7056186","6.0875363","","","0","","Europe/Berlin","0"
"211251","211251","Freizeitpark","50.8637502","6.1513494","","","0","","Europe/Berlin","0"
"215804","215804","Nachtigällchen","50.7484727","6.2563561","","","0","","Europe/Berlin","0"
"875028","875028","Altenbau","50.6824452","6.0972419","","","0","","Europe/Berlin","0"
"213009","213009","Schwimmhalle","50.8191319","6.2547002","","","0","","Europe/Berlin","0"
"100540","100540","Grundhaus","50.7563086","6.0605927","","","0","","Europe/Berlin","0"
"213325","213325","Wilhelminenstraße","50.8085072","6.2502869","","","0","","Europe/Berlin","0"
"210604","210604","Stadion","50.8925944","6.1265333","","","0","","Europe/Berlin","0"
"212112","212112","Broich Gymnasium","50.84341","6.17645","","","0","","Europe/Berlin","0"
"100752","100752","Dellstraße","50.8180561","6.0600775","","","0","","Europe/Berlin","0"
"213245","213245","Bingen","50.7939169","6.2820775","","","0","","Europe/Berlin","0"
"100936","100936","Schleckh. Kapelle","50.7202458","6.1548688","","","0","","Europe/Berlin","0"
"100783","100783","Rahe","50.8010622","6.0678286","","","0","","Europe/Berlin","0"
"100922","100922","Krauth. Siedlung","50.7439597","6.1911175","","","0","","Europe/Berlin","0"
"212127","212127","Carlo-Schmid-Str.","50.8070319","6.1588452","","","0","","Europe/Berlin","0"
"100745","100745","Schulzentrum","50.8041944","6.0498055","","","0","","Europe/Berlin","0"
"100052","100052","Josefskirche","50.7746669","6.1074288","","","0","","Europe/Berlin","0"
"210652","210652","Merkstein Floeßer Straße","0.0","0.0","","","0","","Europe/Berlin","0"
"100641","100641","Westbahnhof","50.7805372","6.0719672","","","0","","Europe/Berlin","0"
"213421","213421","Am Römerberg","50.8277941","6.2392913","","","0","","Europe/Berlin","0"
"100706","100706","Haus Linde","50.8049675","6.0608547","","","0","","Europe/Berlin","0"
"100030","100030","Theater","50.7718961","6.0886958","","","0","","Europe/Berlin","0"
"211236","211236","Alsdorf Siedlung Ost","50.8695738","6.1805377","","","0","","Europe/Berlin","0"
"214473","214473","Loverich Puffendorfer Straße","0.0","0.0","","","0","","Europe/Berlin","0"
"215857","215857","Farmweg","50.7714516","6.3107336","","","0","","Europe/Berlin","0"
"215719","215719","Höhenstraße","50.7757672","6.2466525","","","0","","Europe/Berlin","0"
"215602","215602","Schneidmühle","50.7847038","6.2190627","","","0","","Europe/Berlin","0"
"215704","215704","Donnerberg Kirche","50.7796825","6.2400375","","","0","","Europe/Berlin","0"
"100912","100912","Friesenrath","50.6982238","6.1823666","","","0","","Europe/Berlin","0"
"385016","385016","Am Merzbach","50.8802283","6.2641561","","","0","","Europe/Berlin","0"
"875002","875002","Eynatten Loos","50.6791261","6.0758147","","","0","","Europe/Berlin","0"
"215631","215631","Büchel","50.7914938","6.2174352","","","0","","Europe/Berlin","0"
"100525","100525","Montzener Straße","50.7379516","6.0425497","","","0","","Europe/Berlin","0"
"213104","213104","Dürwiß Friedhof","50.8418827","6.2785622","","","0","","Europe/Berlin","0"
"725102","725102","Heuvel","50.7772963","6.0078363","","","0","","Europe/Berlin","0"
"100725","100725","Teichwinkel","50.7954377","6.0630125","","","0","","Europe/Berlin","0"
"215844","215844","Werth Markt","50.7820241","6.289393","","","0","","Europe/Berlin","0"
"100408","100408","Vinzenzplatz","50.7548772","6.1020833","","","0","","Europe/Berlin","0"
"872203","872203","Schöne Aussicht","50.6394727","6.0428411","","","0","","Europe/Berlin","0"
"100200","100200","Kennedypark","50.7737861","6.116358","","","0","","Europe/Berlin","0"
"210717","210717","Kohlscheid Bahnhof","50.8320075","6.0749852","","","0","","Europe/Berlin","0"
"100470","100470","Neu-Linzensh.","50.7401638","6.088678","","","0","","Europe/Berlin","0"
"215934","215934","Hahnenkreuz","50.743023","6.2027027","","","0","","Europe/Berlin","0"
"100518","100518","Ronheider Berg","50.7488702","6.0685036","","","0","","Europe/Berlin","0"
"100432","100432","Viktoriaallee","50.7700819","6.1077444","","","0","","Europe/Berlin","0"
"100811","100811","Carolus Thermen","50.784258","6.0977519","","","0","","Europe/Berlin","0"
"380004","380004","Wenau","50.7913333","6.3359722","","","0","","Europe/Berlin","0"
"100986","100986","Aachener Straße","50.7203444","6.1580583","","","0","","Europe/Berlin","0"
"100468","100468","Diepenbenden","50.7459713","6.0879097","","","0","","Europe/Berlin","0"
"100213","100213","Apolloniaweg","50.7793861","6.1681941","","","0","","Europe/Berlin","0"
"872202","872202","Schnellewindgasse","50.6363544","6.0397286","","","0","","Europe/Berlin","0"
"100475","100475","Pius-Gymnasium","50.75452","6.0857994","","","0","","Europe/Berlin","0"
"214421","214421","Parkstraße","50.9079791","6.1895158","","","0","","Europe/Berlin","0"
"213002","213002","Lederfabrik","50.8227361","6.2507605","","","0","","Europe/Berlin","0"
"100816","100816","Eulersweg","50.7992425","6.0983225","","","0","","Europe/Berlin","0"
"100501","100501","Franziskushospital","50.7647352","6.0702561","","","0","","Europe/Berlin","0"
"215842","215842","Werth Kirche","50.7807822","6.2826505","","","0","","Europe/Berlin","0"
"213228","213228","Weißer Weg","50.8243052","6.3218566","","","0","","Europe/Berlin","0"
"100312","100312","Eilendorfer Straße","50.7518747","6.1769938","","","0","","Europe/Berlin","0"
"214455","214455","CAP Kreisverkehr","50.9135247","6.1662825","","","0","","Europe/Berlin","0"
"214451","214451","Roskaul","50.9043588","6.1766777","","","0","","Europe/Berlin","0"
"100107","100107","Hüls Schulzentrum","50.7902825","6.1240575","","","0","","Europe/Berlin","0"
"100934","100934","Oberforstbach","50.7242488","6.1458469","","","0","","Europe/Berlin","0"
"215940","215940","Schützheide","50.7382433","6.2162813","","","0","","Europe/Berlin","0"
"385002","385002","Industriestraße","50.9005741","6.3032922","","","0","","Europe/Berlin","0"
"210736","210736","Am Wacholder","50.8307825","6.0911786","","","0","","Europe/Berlin","0"
"214423","214423","Gymnasium","50.911983","6.1872144","","","0","","Europe/Berlin","0"
"215919","215919","Am Haselbusch","50.7671925","6.2142888","","","0","","Europe/Berlin","0"
"212013","212013","Würselen Markt","50.8180136","6.132858","","","0","","Europe/Berlin","0"
"100379","100379","Kellershaustraße","50.7656033","6.1634527","","","0","","Europe/Berlin","0"
"100122","100122","Am Haarberg","50.8017255","6.1323294","","","0","","Europe/Berlin","0"
"213414","213414","Auestraße","50.8067088","6.2377219","","","0","","Europe/Berlin","0"
"212024","212024","Steinbusch","50.8401858","6.1108738","","","0","","Europe/Berlin","0"
"211310","211310","Warden Kirche","50.8608397","6.2204855","","","0","","Europe/Berlin","0"
"100931","100931","Laschet","50.7160844","6.1326391","","","0","","Europe/Berlin","0"
"215859","215859","Hotel Roeb","50.7658683","6.3275355","","","0","","Europe/Berlin","0"
"213223","213223","Elektrowerk","50.8238963","6.3068247","","","0","","Europe/Berlin","0"
"215904","215904","Münsterbusch Kreuz","50.7717477","6.2155997","","","0","","Europe/Berlin","0"
"100606","100606","Reutershag","50.7698647","6.0396447","","","0","","Europe/Berlin","0"
"875039","875039","Eynattener Heide","50.7127002","6.0902258","","","0","","Europe/Berlin","0"
"212068","212068","Kapellenfeldchen","50.8112963","6.1480591","","","0","","Europe/Berlin","0"
"213105","213105","Dürwiß Festhalle","50.8397022","6.2807355","","","0","","Europe/Berlin","0"
"210528","210528","Wiesenstraße","50.8656497","6.0931788","","","0","","Europe/Berlin","0"
"211293","211293","Alt-Ofden Ende","50.8547022","6.1589694","","","0","","Europe/Berlin","0"
"211242","211242","Pommernstraße","50.8699269","6.1790616","","","0","","Europe/Berlin","0"
"210745","210745","Kämpchen","50.8249655","6.0922599","","","0","","Europe/Berlin","0"
"100243","100243","Am Tunnel","50.7874722","6.1614166","","","0","","Europe/Berlin","0"
"210702","210702","Forensberger Str.","50.8392166","6.0753519","","","0","","Europe/Berlin","0"
"100516","100516","Brüsseler Ring","50.7539661","6.0701547","","","0","","Europe/Berlin","0"
"100029","100029","Audimax","50.7802655","6.0752138","","","0","","Europe/Berlin","0"
"100775","100775","Siebweg","50.8077197","6.0734705","","","0","","Europe/Berlin","0"
"211229","211229","Im Brühl","50.8823938","6.1675713","","","0","","Europe/Berlin","0"
"211241","211241","Franzstraße","50.873733","6.1765616","","","0","","Europe/Berlin","0"
"213301","213301","Stadtwald","50.7891572","6.2485525","","","0","","Europe/Berlin","0"
"100955","100955","Pfeiferweg","50.6913511","6.1502163","","","0","","Europe/Berlin","0"
"875015","875015","Neudorf","50.6679275","6.1072969","","","0","","Europe/Berlin","0"
"215821","215821","Wingertsberg","50.7478844","6.2699833","","","0","","Europe/Berlin","0"
"211234","211234","Hagfeld","50.8741936","6.1867641","","","0","","Europe/Berlin","0"
"213236","213236","Wasserfeld","50.8246147","6.3300902","","","0","","Europe/Berlin","0"
"100909","100909","Walheim","50.7075611","6.1827","","","0","","Europe/Berlin","0"
"213308","213308","Waldschule","50.8038433","6.2496377","","","0","","Europe/Berlin","0"
"215624","215624","Velau","50.7893811","6.2223038","","","0","","Europe/Berlin","0"
"100102","100102","A S E A G","50.7849483","6.1307266","","","0","","Europe/Berlin","0"
"215601","215601","Eisenbahnstraße","50.7825094","6.2195913","","","0","","Europe/Berlin","0"
"415000","415000","Palenberg Bahnhof","50.9231672","6.0976463","","","0","","Europe/Berlin","0"
"100342","100342","Vennblick","50.7420649","6.166473","","","0","","Europe/Berlin","0"
"210647","210647","Herbach Feld","0.0","0.0","","","0","","Europe/Berlin","0"
"100662","100662","Maria-Lipp-Straße","50.7863888","6.043833","","","0","","Europe/Berlin","0"
"415012","415012","Brünestraße","50.9125472","6.1370386","","","0","","Europe/Berlin","0"
"708003","708003","Bernardinuscollege","50.8810847","5.9845661","","","0","","Europe/Berlin","0"
"215955","215955","Alt-Breinig","50.7247794","6.2150719","","","0","","Europe/Berlin","0"
"214432","214432","Im Weinkeller","50.9194347","6.1981519","","","0","","Europe/Berlin","0"
"213113","213113","Ringstraße","50.8561491","6.2965983","","","0","","Europe/Berlin","0"
"210502","210502","Grünstraße","50.8644477","6.100733","","","0","","Europe/Berlin","0"
"100020","100020","Karman-Auditorium","50.7771388","6.0800277","","","0","","Europe/Berlin","0"
"210602","210602","August-Schmidt-Pl.","50.8869486","6.1186736","","","0","","Europe/Berlin","0"
"215939","215939","Barbarastraße","50.7343677","6.2120705","","","0","","Europe/Berlin","0"
"100824","100824","Soerser Winkel","50.792795","6.0900688","","","0","","Europe/Berlin","0"
"100721","100721","Süsterfeld","50.7845763","6.0672233","","","0","","Europe/Berlin","0"
"100116","100116","Endstraße","50.797248","6.1549966","","","0","","Europe/Berlin","0"
"100642","100642","Mies-v-d-Rohe-Str.","50.7805483","6.0684652","","","0","","Europe/Berlin","0"
"100614","100614","Philipp-Neri-Weg","50.77062","6.0389508","","","0","","Europe/Berlin","0"
"100023","100023","Paulusstraße","50.7741055","6.0788047","","","0","","Europe/Berlin","0"
"100767","100767","Lemiers Weiher","50.7895311","5.996238","","","0","","Europe/Berlin","0"
"211333","211333","Hoengen Altenheim","50.8705744","6.2060838","","","0","","Europe/Berlin","0"
"708102","708102","Business Center","50.8295833","6.0177222","","","0","","Europe/Berlin","0"
"215506","215506","Stolberg Rathaus","50.7695202","6.2287016","","","0","","Europe/Berlin","0"
"215925","215925","Büsbach Kirche","50.7514783","6.2147552","","","0","","Europe/Berlin","0"
"709016","709016","Pleinstraat","50.8551675","6.0248919","","","0","","Europe/Berlin","0"
"872000","872000","Eupen Bushof","50.6333369","6.030355","","","0","","Europe/Berlin","0"
"725104","725104","Sint Jozefkerk","50.7745633","6.0129819","","","0","","Europe/Berlin","0"
"213221","213221","Wetterschacht","50.8198711","6.2921533","","","0","","Europe/Berlin","0"
"212106","212106","Linden Kirche","50.8368661","6.1781538","","","0","","Europe/Berlin","0"
"213406","213406","Am Klosterweiher","50.8332236","6.2115116","","","0","","Europe/Berlin","0"
"708011","708011","Kruispunt/Maar","50.8627369","6.0218991","","","0","","Europe/Berlin","0"
"100906","100906","Venwegener Straße","50.7268575","6.1883144","","","0","","Europe/Berlin","0"
"100305","100305","Schönforst","50.7626019","6.1345288","","","0","","Europe/Berlin","0"
"100744","100744","Laurensberg Kirche","50.8015199","6.0516441","","","0","","Europe/Berlin","0"
"100771","100771","Parkstraße","50.8083088","6.0652855","","","0","","Europe/Berlin","0"
"210722","210722","Bank Siedlung","50.8279222","6.0672861","","","0","","Europe/Berlin","0"
"215816","215816","Zweifall Kirche","50.7189163","6.2560811","","","0","","Europe/Berlin","0"
"100424","100424","Waldfriedhof","50.7457388","6.1079858","","","0","","Europe/Berlin","0"
"213208","213208","Preyerstraße","50.8223038","6.2750538","","","0","","Europe/Berlin","0"
"215909","215909","Buschmühle Friedh.","50.7745144","6.1910155","","","0","","Europe/Berlin","0"
"213316","213316","Burgstraße","50.8131244","6.2573275","","","0","","Europe/Berlin","0"
"708103","708103","World Trade Center","50.8283055","6.0191666","","","0","","Europe/Berlin","0"
"212111","212111","Mozartstraße","50.8400561","6.1804719","","","0","","Europe/Berlin","0"
"215603","215603","Atsch Dreieck","50.7870219","6.2148336","","","0","","Europe/Berlin","0"
"213016","213016","Marienstraße","50.8173352","6.2662694","","","0","","Europe/Berlin","0"
"211200","211200","Alsdorf Annapark","50.8708483","6.1573013","","","0","","Europe/Berlin","0"
"100600","100600","Uniklinik","50.7756388","6.04425","","","0","","Europe/Berlin","0"
"100523","100523","Preuswald","50.7393447","6.0431744","","","0","","Europe/Berlin","0"
"370003","370003","Brückenkopfpark","50.9195783","6.3508713","","","0","","Europe/Berlin","0"
"370002","370002","Walramplatz","50.920535","6.3555716","","","0","","Europe/Berlin","0"
"100385","100385","Brahmsstraße","50.7567486","6.1635494","","","0","","Europe/Berlin","0"
"212044","212044","Birk","50.8425319","6.1363213","","","0","","Europe/Berlin","0"
"210731","210731","Gut Forensberg","50.8407047","6.0814305","","","0","","Europe/Berlin","0"
"212104","212104","Vorweiden","50.8298791","6.1676522","","","0","","Europe/Berlin","0"
"100012","100012","Schanz","50.76891","6.074498","","","0","","Europe/Berlin","0"
"100963","100963","Pascalstraße","50.7121558","6.1404291","","","0","","Europe/Berlin","0"
"100628","100628","Forckenbeckstraße","50.78534","6.05054","","","0","","Europe/Berlin","0"
"100532","100532","Im Brockenfeld","50.7582663","6.0788913","","","0","","Europe/Berlin","0"
"215716","215716","Stolberg Friedhof","50.7725275","6.2354077","","","0","","Europe/Berlin","0"
"215924","215924","Büsbach Markt","50.7557252","6.2174675","","","0","","Europe/Berlin","0"
"100776","100776","Hasenwaldstraße","50.8099513","6.069913","","","0","","Europe/Berlin","0"
"100373","100373","Meisenweg","50.7675691","6.1377325","","","0","","Europe/Berlin","0"
"215845","215845","Werth Kreuzung","50.7830569","6.2933413","","","0","","Europe/Berlin","0"
"385017","385017","Marcel-Breuer-Str.","50.8853333","6.2703888","","","0","","Europe/Berlin","0"
"100366","100366","Vennbahnbogen","50.7427491","6.1532533","","","0","","Europe/Berlin","0"
"100378","100378","Zentis","50.7638991","6.1606972","","","0","","Europe/Berlin","0"
"100621","100621","Am Weißenberg","50.7760094","6.0675369","","","0","","Europe/Berlin","0"
"100422","100422","Siegel","50.7523466","6.0969058","","","0","","Europe/Berlin","0"
"100214","100214","Schubertstraße","50.7817416","6.1740161","","","0","","Europe/Berlin","0"
"215992","215992","Hauptschule","50.7623597","6.2209491","","","0","","Europe/Berlin","0"
"215823","215823","Mausbach Kirche","50.7575344","6.2757927","","","0","","Europe/Berlin","0"
"100806","100806","Strangenhäuschen","50.8035286","6.1101625","","","0","","Europe/Berlin","0"
"100439","100439","Buschhausen","50.7535091","6.1039508","","","0","","Europe/Berlin","0"
"100791","100791","Seffent","50.7886819","6.039598","","","0","","Europe/Berlin","0"
"100502","100502","Preusweg","50.7609527","6.0670047","","","0","","Europe/Berlin","0"
"100469","100469","Zweiweiherweg","50.7433744","6.0866438","","","0","","Europe/Berlin","0"
"212023","212023","Grindelstraße","50.8378161","6.1167594","","","0","","Europe/Berlin","0"
"213213","213213","Feldenendstraße","50.8094441","6.2809086","","","0","","Europe/Berlin","0"
"211256","211256","Bergschlösschen","50.8581016","6.1536155","","","0","","Europe/Berlin","0"
"210521","210521","Schütz-v-Rode-Str.","50.8656386","6.0958636","","","0","","Europe/Berlin","0"
"100221","100221","Karlstraße","50.7770419","6.146678","","","0","","Europe/Berlin","0"
"215828","215828","Werther Heide","50.769953","6.2777086","","","0","","Europe/Berlin","0"
"415013","415013","Roermonder Straße","50.9083402","6.1372394","","","0","","Europe/Berlin","0"
"210644","210644","Wildnis Zollhaus","0.0","0.0","","","0","","Europe/Berlin","0"
"100306","100306","Trierer Platz","50.7602225","6.1398791","","","0","","Europe/Berlin","0"
"212016","212016","Krankenhaus","50.8141472","6.1412044","","","0","","Europe/Berlin","0"
"100941","100941","Prämienstraße","50.7048444","6.1778388","","","0","","Europe/Berlin","0"
"100605","100605","Steppenberg","50.7696838","6.0427633","","","0","","Europe/Berlin","0"
"215701","215701","Birkengang","50.7808825","6.2289275","","","0","","Europe/Berlin","0"
"214431","214431","Place de Montesson","50.9141022","6.1940055","","","0","","Europe/Berlin","0"
"100707","100707","Berensberger Str.","50.8087069","6.0607177","","","0","","Europe/Berlin","0"
"100636","100636","Hainbuchenstraße","50.7781944","6.06325","","","0","","Europe/Berlin","0"
"100242","100242","Eilendorf Rathaus","50.7806913","6.153708","","","0","","Europe/Berlin","0"
"100519","100519","Waldschenke","50.7450805","6.0616122","","","0","","Europe/Berlin","0"
"875014","875014","Knoppenburg","50.6681752","6.1015972","","","0","","Europe/Berlin","0"
"100202","100202","Am Rott","50.7788475","6.1246225","","","0","","Europe/Berlin","0"
"215852","215852","Gressenich Kirche","50.7724444","6.2991944","","","0","","Europe/Berlin","0"
"100939","100939","Hochhausring","50.7094883","6.1780088","","","0","","Europe/Berlin","0"
"213001","213001","Steinstraße","50.8217711","6.2563325","","","0","","Europe/Berlin","0"
"100446","100446","Neuhaus","50.7560786","6.1321008","","","0","","Europe/Berlin","0"
"999901","999901",".","0.0","0.0","","","0","","Europe/Berlin","0"
"100724","100724","Viadukt","50.7945961","6.0563594","","","0","","Europe/Berlin","0"
"100751","100751","Gierstraße","50.8172769","6.0543152","","","0","","Europe/Berlin","0"
"100784","100784","Tittardshang","50.8020702","6.0654044","","","0","","Europe/Berlin","0"
"100504","100504","Am Backes","50.7642397","6.0554722","","","0","","Europe/Berlin","0"
"213202","213202","Dahlienweg","50.8179463","6.285245","","","0","","Europe/Berlin","0"
"875031","875031","Rothausstraße","50.693545","6.0759513","","","0","","Europe/Berlin","0"
"215911","215911","Dienstleistungsztr","50.7752341","6.2163388","","","0","","Europe/Berlin","0"
"415009","415009","Übach Markt","50.9163522","6.1267686","","","0","","Europe/Berlin","0"
"210542","210542","Herz. Waldfriedhof","50.861923","6.0995772","","","0","","Europe/Berlin","0"
"213321","213321","Talbahnhof","50.8148969","6.2632191","","","0","","Europe/Berlin","0"
"212126","212126","Metro","50.809753","6.1542577","","","0","","Europe/Berlin","0"
"213411","213411","Röhe Villa","50.8187436","6.2385922","","","0","","Europe/Berlin","0"
"100055","100055","Europaplatz","50.7790336","6.1094947","","","0","","Europe/Berlin","0"
"215954","215954","Stockemer Straße","50.7282677","6.2099327","","","0","","Europe/Berlin","0"
"210646","210646","Hofstadt Anfang","0.0","0.0","","","0","","Europe/Berlin","0"
"100908","100908","Schmittchen","50.7126052","6.1853688","","","0","","Europe/Berlin","0"
"725000","725000","Vaals Busstation","50.772108","6.0210191","","","0","","Europe/Berlin","0"
"212021","212021","Morsbach","50.8300236","6.1242911","","","0","","Europe/Berlin","0"
"213328","213328","Steinkohlenfeld","50.7974394","6.2340438","","","0","","Europe/Berlin","0"
"100757","100757","Vetschau Schmiede","50.8183747","6.0407072","","","0","","Europe/Berlin","0"
"213246","213246","Hastenrath Kirche","50.7910008","6.2835063","","","0","","Europe/Berlin","0"
"211316","211316","Begau Gartenstraße","0.0","0.0","","","0","","Europe/Berlin","0"
"875036","875036","Getenberg","50.7106102","6.0706416","","","0","","Europe/Berlin","0"
"213217","213217","Nothberg Kreuz","50.8097497","6.2954811","","","0","","Europe/Berlin","0"
"708101","708101","Hof Bohr","50.8283611","6.0226388","","","0","","Europe/Berlin","0"
"210653","210653","Naturfreundehaus","0.0","0.0","","","0","","Europe/Berlin","0"
"210712","210712","An Speenbruch","50.8373408","6.0706358","","","0","","Europe/Berlin","0"
"211303","211303","Mariadorf Kreuz","50.8610852","6.1936","","","0","","Europe/Berlin","0"
"100946","100946","Mütschenpfuhl","50.7012288","6.1708291","","","0","","Europe/Berlin","0"
"100709","100709","Schl.-Schönau-Str.","50.8135152","6.0623558","","","0","","Europe/Berlin","0"
"213212","213212","Hubertusstraße","50.8096744","6.278583","","","0","","Europe/Berlin","0"
"708002","708002","Akerstraat","50.8856777","5.9806569","","","0","","Europe/Berlin","0"
"385001","385001","Jülicher Straße","50.8977705","6.2923288","","","0","","Europe/Berlin","0"
"214452","214452","CasinoPark","50.911158","6.1709388","","","0","","Europe/Berlin","0"
"213004","213004","Odilienstr/Hp.West","50.8174294","6.2521369","","","0","","Europe/Berlin","0"
"213302","213302","Waldsiedlung","50.7918805","6.24444","","","0","","Europe/Berlin","0"
"214424","214424","Urweg","50.9126988","6.1836766","","","0","","Europe/Berlin","0"
"212014","212014","Würselen Kirche","50.8164472","6.1346841","","","0","","Europe/Berlin","0"
"100913","100913","Freizeitgelände","50.7048016","6.1813427","","","0","","Europe/Berlin","0"
"100438","100438","Wilhelm-Pitz-Weg","50.7616022","6.1009641","","","0","","Europe/Berlin","0"
"215632","215632","Hauptbahnhof","50.7944308","6.2187822","","","0","","Europe/Berlin","0"
"100228","100228","Breitbenden","50.7749166","6.1634444","","","0","","Europe/Berlin","0"
"100011","100011","Luisenhospital","50.7683883","6.077685","","","0","","Europe/Berlin","0"
"100823","100823","Soerser Au","50.7887141","6.0894936","","","0","","Europe/Berlin","0"
"213112","213112","Zum Hagelkreuz","50.8481969","6.29527","","","0","","Europe/Berlin","0"
"100981","100981","Auf der Gallich","50.7318116","6.1701477","","","0","","Europe/Berlin","0"
"211325","211325","Randsiedlung","50.8538736","6.1839419","","","0","","Europe/Berlin","0"
"100445","100445","Forster Linde","50.76061","6.1313483","","","0","","Europe/Berlin","0"
"213233","213233","Hermann-Löns-Str.","50.8228966","6.3273533","","","0","","Europe/Berlin","0"
"100772","100772","Landgraben","50.8075788","6.0685191","","","0","","Europe/Berlin","0"
"211294","211294","Entenweg","50.857408","6.1563669","","","0","","Europe/Berlin","0"
"215902","215902","Lohrstraße","50.7721313","6.2219808","","","0","","Europe/Berlin","0"
"215801","215801","Binsfeldhammer","50.7578797","6.2373747","","","0","","Europe/Berlin","0"
"215806","215806","Sportp. Dörenberg","50.7495888","6.272475","","","0","","Europe/Berlin","0"
"211328","211328","Alter Bahnhof","50.861923","6.1897608","","","0","","Europe/Berlin","0"
"100764","100764","Gut Orth","50.8004605","6.0183797","","","0","","Europe/Berlin","0"
"100833","100833","Soers","50.7978966","6.0837527","","","0","","Europe/Berlin","0"
"100383","100383","Erlöserkirche","50.75406","6.1640361","","","0","","Europe/Berlin","0"
"100643","100643","Seffenter Weg","50.7820069","6.0644119","","","0","","Europe/Berlin","0"
"100907","100907","Iternberg","50.7207655","6.1865338","","","0","","Europe/Berlin","0"
"215717","215717","Malmedyer Straße","50.77547","6.2383005","","","0","","Europe/Berlin","0"
"100341","100341","Rollefer Berg","50.7452847","6.1654077","","","0","","Europe/Berlin","0"
"215931","215931","Liester","50.7660541","6.2174586","","","0","","Europe/Berlin","0"
"212103","212103","Weiden Kirche","50.8233133","6.1640808","","","0","","Europe/Berlin","0"
"210553","210553","Schummerstraat","50.8509566","6.0751011","","","0","","Europe/Berlin","0"
"213106","213106","Karl-Arnold-Straße","50.8377594","6.2812208","","","0","","Europe/Berlin","0"
"100629","100629","Campus Melaten","50.78247","6.05053","","","0","","Europe/Berlin","0"
"213254","213254","RWE-Kraftwerk","50.8362191","6.3174244","","","0","","Europe/Berlin","0"
"100664","100664","Rabentalweg","50.7802219","6.0474719","","","0","","Europe/Berlin","0"
"872205","872205","Kettenis Dorf","50.6467705","6.0470611","","","0","","Europe/Berlin","0"
"873151","873151","Hattich","50.719655","6.023105","","","0","","Europe/Berlin","0"
"385011","385011","Aldenhoven Kirche","50.8955547","6.2832041","","","0","","Europe/Berlin","0"
"100722","100722","Europadorf","50.7871136","6.0631711","","","0","","Europe/Berlin","0"
"215791","215791","Hochwegerhof","50.7752822","6.2546694","","","0","","Europe/Berlin","0"
"210517","210517","Bierstraß Schule","0.0","0.0","","","0","","Europe/Berlin","0"
"211304","211304","Im Boisch","50.8601897","6.196863","","","0","","Europe/Berlin","0"
"100736","100736","Horbach Kirche","50.8330477","6.0452633","","","0","","Europe/Berlin","0"
"210761","210761","Rolandstraße","50.826213","6.0984277","","","0","","Europe/Berlin","0"
"213226","213226","Frankenplatz","50.8287577","6.3175441","","","0","","Europe/Berlin","0"
"215813","215813","Jägersfahrt","50.7316116","6.2670708","","","0","","Europe/Berlin","0"
"210704","210704","Weststraße","50.8317272","6.0776958","","","0","","Europe/Berlin","0"
"210522","210522","Burgstraße","50.8659227","6.0888186","","","0","","Europe/Berlin","0"
"100028","100028","Königstraße","50.7750063","6.0758575","","","0","","Europe/Berlin","0"
"708104","708104","Honold","50.8308888","6.0185","","","0","","Europe/Berlin","0"
"370008","370008","Jülich City","50.9214316","6.3650216","","","0","","Europe/Berlin","0"
"100423","100423","Bismarckturm","50.7473519","6.1033563","","","0","","Europe/Berlin","0"
"210645","210645","Hofstadt Ende","0.0","0.0","","","0","","Europe/Berlin","0"
"213014","213014","Insel","50.8149369","6.2732083","","","0","","Europe/Berlin","0"
"100022","100022","Markt (Judengasse)","50.7755419","6.0813305","","","0","","Europe/Berlin","0"
"708017","708017","Locht Zollamt","50.8466288","6.0184694","","","0","","Europe/Berlin","0"
"214400","214400","In der Schaf","50.9051719","6.1855947","","","0","","Europe/Berlin","0"
"100463","100463","Sebastianstraße","50.7616047","6.0868055","","","0","","Europe/Berlin","0"
"212022","212022","Von-Görschen-Str.","50.833793","6.1215472","","","0","","Europe/Berlin","0"
"100792","100792","Senserbachweg","50.7795911","6.0150775","","","0","","Europe/Berlin","0"
"370004","370004","Landstraße","50.9120508","6.3368377","","","0","","Europe/Berlin","0"
"215917","215917","Münsterb. Friedhof","50.7690894","6.2093361","","","0","","Europe/Berlin","0"
"213431","213431","Eschw. Glücksburg","50.8155208","6.2157744","","","0","","Europe/Berlin","0"
"875017","875017","Botz","50.6691197","6.1198888","","","0","","Europe/Berlin","0"
"215991","215991","Schulzentrum","50.7682188","6.2243261","","","0","","Europe/Berlin","0"
"100461","100461","Kapitelstraße","50.7675233","6.0936061","","","0","","Europe/Berlin","0"
"100608","100608","Keltenstraße","50.7690502","6.0276094","","","0","","Europe/Berlin","0"
"215860","215860","Lamersiefen","50.7628963","6.3294425","","","0","","Europe/Berlin","0"
"100452","100452","Eich","50.7325555","6.1429444","","","0","","Europe/Berlin","0"
"210733","210733","Hoheneichstraße","50.8388372","6.09074","","","0","","Europe/Berlin","0"
"100313","100313","Goertzbrunnstraße","50.7526244","6.1804261","","","0","","Europe/Berlin","0"
"213010","213010","Langwahn","50.8177355","6.2601133","","","0","","Europe/Berlin","0"
"100363","100363","Schagenstraße","50.7483158","6.1507961","","","0","","Europe/Berlin","0"
"100743","100743","Laurentiusstraße","50.8028133","6.0541847","","","0","","Europe/Berlin","0"
"215910","215910","Sebastianusweg","50.7754455","6.1879288","","","0","","Europe/Berlin","0"
"215604","215604","Atsch Schule","50.7875552","6.2082136","","","0","","Europe/Berlin","0"
"215822","215822","Fleuth","50.7519044","6.2769358","","","0","","Europe/Berlin","0"
"212043","212043","Immeln","50.8338622","6.13208","","","0","","Europe/Berlin","0"
"100233","100233","Pongs","50.7725688","6.1285466","","","0","","Europe/Berlin","0"
"213247","213247","Schwarzer Weg","50.7922811","6.2893288","","","0","","Europe/Berlin","0"
"100511","100511","Reumontstraße","50.7657886","6.0813844","","","0","","Europe/Berlin","0"
"100929","100929","Kiefernweg","50.7172575","6.1412924","","","0","","Europe/Berlin","0"
"211399","211399","Begau Bahnübergang","0.0","0.0","","","0","","Europe/Berlin","0"
"210654","210654","Merkstein Eintrachtstraße","0.0","0.0","","","0","","Europe/Berlin","0"
"215702","215702","Goepelschacht","50.7831444","6.2349933","","","0","","Europe/Berlin","0"
"100708","100708","Richterich Rathaus","50.8110172","6.0606925","","","0","","Europe/Berlin","0"
"214434","214434","Neue Mitte","50.923475","6.2061902","","","0","","Europe/Berlin","0"
"100750","100750","Pfalzgrafenstraße","50.8176286","6.0521305","","","0","","Europe/Berlin","0"
"100226","100226","Freunder Straße","50.7772641","6.1685125","","","0","","Europe/Berlin","0"
"100131","100131","Gut-Knapp-Straße","50.7984188","6.1532983","","","0","","Europe/Berlin","0"
"211232","211232","Feuerwehrhaus","50.8743852","6.1732963","","","0","","Europe/Berlin","0"
"214475","214475","Puffendorf von Ameln","0.0","0.0","","","0","","Europe/Berlin","0"
"100785","100785","Am Beulardstein","50.8045594","6.0671811","","","0","","Europe/Berlin","0"
"210541","210541","Herz. Schulzentrum","50.8642111","6.1053944","","","0","","Europe/Berlin","0"
"100826","100826","Berensberg","50.81079","6.0917494","","","0","","Europe/Berlin","0"
"215707","215707","Distelweg","50.7840247","6.2440586","","","0","","Europe/Berlin","0"
"215927","215927","Elgermühle","50.75483","6.2004438","","","0","","Europe/Berlin","0"
"100813","100813","Lukasstraße","50.7918444","6.1082058","","","0","","Europe/Berlin","0"
"210551","210551","Im Straßer Feld","50.8611755","6.0778163","","","0","","Europe/Berlin","0"
"100503","100503","Am Neuenhof","50.7661883","6.0598827","","","0","","Europe/Berlin","0"
"215721","215721","Breslauer Straße","50.7825394","6.2273474","","","0","","Europe/Berlin","0"
"215851","215851","Gressenich Schule","50.7748202","6.3014133","","","0","","Europe/Berlin","0"
"213203","213203","Königsbenden","50.8178786","6.290878","","","0","","Europe/Berlin","0"
"215818","215818","Solchbachtal","50.7100513","6.2725261","","","0","","Europe/Berlin","0"
"215507","215507","Stolberg Altstadt","50.7654055","6.2320975","","","0","","Europe/Berlin","0"
"213424","213424","Kambach","50.8410336","6.23121","","","0","","Europe/Berlin","0"
"211327","211327","Greifswalder Str.","50.8469355","6.1830058","","","0","","Europe/Berlin","0"
"100351","100351","Tilsiter Straße","50.7575058","6.1413308","","","0","","Europe/Berlin","0"
"214427","214427","Reyplatz","50.9108108","6.1780958","","","0","","Europe/Berlin","0"
"100947","100947","Ardennenstraße","50.6952555","6.1641722","","","0","","Europe/Berlin","0"
"875005","875005","Eynatten Depot","50.6905208","6.0816636","","","0","","Europe/Berlin","0"
"215932","215932","Prämienstraße","50.7635113","6.2167241","","","0","","Europe/Berlin","0"
"210513","210513","Ritzerfeld Siedl.","50.8764672","6.1095963","","","0","","Europe/Berlin","0"
"708012","708012","Pastor Theelenstr.","50.8602377","6.0225938","","","0","","Europe/Berlin","0"
"100314","100314","Freund","50.7531063","6.1826952","","","0","","Europe/Berlin","0"
"100142","100142","Großheidstraße","50.7942791","6.1633405","","","0","","Europe/Berlin","0"
"100307","100307","Königsberger Str.","50.7569527","6.1472138","","","0","","Europe/Berlin","0"
"213412","213412","Werk Aue","50.8121563","6.2377213","","","0","","Europe/Berlin","0"
"215942","215942","Entengasse","50.7321741","6.221763","","","0","","Europe/Berlin","0"
"100444","100444","Staudenweg","50.7628883","6.1276555","","","0","","Europe/Berlin","0"
"211247","211247","Nordstraße","50.8794169","6.1801111","","","0","","Europe/Berlin","0"
"210713","210713","Auf'm Schif","50.8342125","6.0708013","","","0","","Europe/Berlin","0"
"213311","213311","Oberdorf","50.8080444","6.2599333","","","0","","Europe/Berlin","0"
"100321","100321","Schwimmhalle","50.7465627","6.1578322","","","0","","Europe/Berlin","0"
"100019","100019","Minoritenstraße","50.7784961","6.0858869","","","0","","Europe/Berlin","0"
"415005","415005","Friedr.-Ebert-Str.","50.9212975","6.1170263","","","0","","Europe/Berlin","0"
"210747","210747","Rumpen Schule","50.8160233","6.0898158","","","0","","Europe/Berlin","0"
"211317","211317","Begau Auf der Weide","0.0","0.0","","","0","","Europe/Berlin","0"
"211292","211292","Alt-Ofden Mitte","50.8568541","6.1592916","","","0","","Europe/Berlin","0"
"100832","100832","Soers Kloster","50.7923316","6.0844516","","","0","","Europe/Berlin","0"
"999902","999902",".","0.0","0.0","","","0","","Europe/Berlin","0"
"100111","100111","Talbot","50.7845802","6.1093236","","","0","","Europe/Berlin","0"
"100056","100056","Wiesental","50.7818055","6.1060275","","","0","","Europe/Berlin","0"
"215715","215715","Sportplatz Krakau","50.7720819","6.2379005","","","0","","Europe/Berlin","0"
"100973","100973","Broichhausen","50.7007955","6.13077","","","0","","Europe/Berlin","0"
"100027","100027","Annastraße","50.7725855","6.0800072","","","0","","Europe/Berlin","0"
"100651","100651","Welkenrather Str.","50.7721547","6.064455","","","0","","Europe/Berlin","0"
"100014","100014","Turmstraße","50.77473","6.0724119","","","0","","Europe/Berlin","0"
"100053","100053","Elsassstraße","50.7723686","6.1136894","","","0","","Europe/Berlin","0"
"213327","213327","Am Ginsterbusch","50.7967524","6.2358841","","","0","","Europe/Berlin","0"
"100734","100734","Forsterheide","50.8273733","6.0511194","","","0","","Europe/Berlin","0"
"213303","213303","Alte Rodung","50.7940822","6.2448486","","","0","","Europe/Berlin","0"
"211300","211300","Mariadorf Dreieck","50.8590175","6.2042861","","","0","","Europe/Berlin","0"
"212026","212026","Wilhelmstein","50.84375","6.106268","","","0","","Europe/Berlin","0"
"210762","210762","Waldschänke","50.824845","6.104118","","","0","","Europe/Berlin","0"
"100808","100808","S T A W A G","50.7830513","6.1000608","","","0","","Europe/Berlin","0"
"213329","213329","Stolberger Straße","50.8000555","6.2385833","","","0","","Europe/Berlin","0"
"211301","211301","Mariagrube","50.8646827","6.1869533","","","0","","Europe/Berlin","0"
"100630","100630","Stiewistraße","50.78029","6.05058","","","0","","Europe/Berlin","0"
"214454","214454","Geilenk. Straße","50.9144155","6.1765655","","","0","","Europe/Berlin","0"
"100437","100437","Juttastraße","50.7597191","6.105623","","","0","","Europe/Berlin","0"
"100100","100100","Zentralbetriebshof","0.0","0.0","","","0","","Europe/Berlin","0"
"709201","709201","Stationsstraat 6","50.8633966","6.0624466","","","0","","Europe/Berlin","0"
"100241","100241","St. Severin","50.7799116","6.1519475","","","0","","Europe/Berlin","0"
"213218","213218","Nothberg Siedlung","50.8061455","6.2987494","","","0","","Europe/Berlin","0"
"100623","100623","Muffet","50.7747113","6.0574694","","","0","","Europe/Berlin","0"
"215825","215825","Rothe Gasse","50.76025","6.2639444","","","0","","Europe/Berlin","0"
"100735","100735","Horbach Linde","50.8314466","6.0482425","","","0","","Europe/Berlin","0"
"100405","100405","Heißberg","50.7590727","6.0945105","","","0","","Europe/Berlin","0"
"100371","100371","Drosselweg","50.7645019","6.1316144","","","0","","Europe/Berlin","0"
"100109","100109","Elleter Feld","50.7900869","6.1381391","","","0","","Europe/Berlin","0"
"210703","210703","Feldstraße","50.8360063","6.076908","","","0","","Europe/Berlin","0"
"875037","875037","Frepert","50.7117569","6.0768022","","","0","","Europe/Berlin","0"
"213322","213322","Karlstraße","50.8153533","6.2601425","","","0","","Europe/Berlin","0"
"100448","100448","Schießstand","50.7511194","6.1292813","","","0","","Europe/Berlin","0"
"708004","708004","Burg Waszinkstraat","50.8776333","5.9875369","","","0","","Europe/Berlin","0"
"215613","215613","Im Rehgrund","50.7808827","6.1994497","","","0","","Europe/Berlin","0"
"370005","370005","Akazienstraße","50.9042872","6.3326872","","","0","","Europe/Berlin","0"
"100482","100482","Lichtenbuscher Weg","50.7112222","6.1263611","","","0","","Europe/Berlin","0"
"213404","213404","Röhe Wasserwerk","50.821545","6.2267569","","","0","","Europe/Berlin","0"
"213005","213005","Hauptbahnhof","50.8138161","6.2520888","","","0","","Europe/Berlin","0"
"100953","100953","Radermacher","50.6923786","6.1550455","","","0","","Europe/Berlin","0"
"213253","213253","E W V","50.8339213","6.3127672","","","0","","Europe/Berlin","0"
"875043","875043","Schnellenwind","50.6990875","6.0679633","","","0","","Europe/Berlin","0"
"214433","214433","Bahnstraße","50.9213266","6.2009188","","","0","","Europe/Berlin","0"
"875041","875041","Titfeld","50.6740525","6.1133375","","","0","","Europe/Berlin","0"
"215918","215918","Am Südhang","50.7661944","6.2098611","","","0","","Europe/Berlin","0"
"100723","100723","Süsterau","50.789308","6.0608627","","","0","","Europe/Berlin","0"
"213211","213211","Bergrath Kapelle","50.8092963","6.2750625","","","0","","Europe/Berlin","0"
"212121","212121","De-Gasperi-Straße","50.8096072","6.1488661","","","0","","Europe/Berlin","0"
"100025","100025","Jakobsplatz","50.770728","6.0752266","","","0","","Europe/Berlin","0"
"212018","212018","Kaninsberg","50.8084366","6.1432441","","","0","","Europe/Berlin","0"
"872204","872204","Kettenis Tal","50.64287","6.0448094","","","0","","Europe/Berlin","0"
"415014","415014","Mommertzhäuschen","50.9034138","6.137438","","","0","","Europe/Berlin","0"
"100765","100765","Düserhofstraße","50.7960752","5.9984927","","","0","","Europe/Berlin","0"
"212011","212011","Bahnhofstraße","50.8230961","6.1296652","","","0","","Europe/Berlin","0"
"100910","100910","Steinbruch","50.7088472","6.1912008","","","0","","Europe/Berlin","0"
"100201","100201","G.-Scholl-Gymn.","50.7758416","6.1195391","","","0","","Europe/Berlin","0"
"215512","215512","Krankenhs (Parkpl)","50.7732444","6.2319097","","","0","","Europe/Berlin","0"
"100937","100937","Nütheim","50.7167341","6.1657175","","","0","","Europe/Berlin","0"
"100451","100451","Hitfeld","50.73587","6.1325677","","","0","","Europe/Berlin","0"
"212102","212102","Wersch","50.8183955","6.1579616","","","0","","Europe/Berlin","0"
"385000","385000","Aldenhoven Markt","50.895408","6.2880216","","","0","","Europe/Berlin","0"
"215612","215612","Nordstraße","50.7836855","6.205715","","","0","","Europe/Berlin","0"
"100742","100742","Pannhauser Straße","50.7990286","6.0545066","","","0","","Europe/Berlin","0"
"100607","100607","Schmiedgasse","50.7686708","6.0338744","","","0","","Europe/Berlin","0"
"875016","875016","Pley","50.6679283","6.1156","","","0","","Europe/Berlin","0"
"210732","210732","Klinkheide","50.8409166","6.0868399","","","0","","Europe/Berlin","0"
"215605","215605","Schwarzenbruch","50.7854636","6.1853458","","","0","","Europe/Berlin","0"
"100103","100103","Hüls","50.7855333","6.13468","","","0","","Europe/Berlin","0"
"100647","100647","Worringer Weg","50.7759166","6.0478611","","","0","","Europe/Berlin","0"
"213229","213229","Tannenbergstraße","50.8211994","6.3202316","","","0","","Europe/Berlin","0"
"100825","100825","Sonnenweg","50.8011952","6.0957591","","","0","","Europe/Berlin","0"
"873152","873152","Zollamt Tulje","50.7221441","6.0272697","","","0","","Europe/Berlin","0"
"211215","211215","Schleibacher Hof","50.8535733","6.1415652","","","0","","Europe/Berlin","0"
"100801","100801","Ungarnplatz","50.7819383","6.09813","","","0","","Europe/Berlin","0"
"212031","212031","Neuhauser Straße","50.8207994","6.1253875","","","0","","Europe/Berlin","0"
"213013","213013","Liebfrauenstraße","50.8249522","6.2688105","","","0","","Europe/Berlin","0"
"215792","215792","Stadtgr(Allmannsh)","50.7804283","6.2656363","","","0","","Europe/Berlin","0"
"100810","100810","Lombardenstraße","50.7844636","6.0990994","","","0","","Europe/Berlin","0"
"100835","100835","Ferberberg","50.8091958","6.0838863","","","0","","Europe/Berlin","0"
"100361","100361","Gut Grauenhof","50.7480255","6.1385108","","","0","","Europe/Berlin","0"
"215861","215861","Helenasruh","50.7613205","6.3304233","","","0","","Europe/Berlin","0"
"100364","100364","Schulzentrum","50.7498933","6.1544427","","","0","","Europe/Berlin","0"
"709021","709021","Gracht Kerk","50.8513461","6.0283405","","","0","","Europe/Berlin","0"
"100026","100026","Alter Posthof","50.7722052","6.0837347","","","0","","Europe/Berlin","0"
"100384","100384","Brander Heide","50.7600347","6.1662819","","","0","","Europe/Berlin","0"
"215956","215956","Abzw. Venwegen","50.7196888","6.2093416","","","0","","Europe/Berlin","0"
"213244","213244","Volkenrath","50.79869","6.2822197","","","0","","Europe/Berlin","0"
"213210","213210","Grachtstraße","50.8099025","6.2696608","","","0","","Europe/Berlin","0"
"215723","215723","Hans-Böckler-Str.","50.7859686","6.2298316","","","0","","Europe/Berlin","0"
"100429","100429","Erlenpütz","50.71491","6.129875","","","0","","Europe/Berlin","0"
"100443","100443","Drimborn","50.7628238","6.1206536","","","0","","Europe/Berlin","0"
"215831","215831","Bürgermeisteramt","50.7600769","6.2802152","","","0","","Europe/Berlin","0"
"213230","213230","Hüchelner Straße","50.8192263","6.3185722","","","0","","Europe/Berlin","0"
"211279","211279","Busch Bahnhof","0.0","0.0","","","0","","Europe/Berlin","0"
"213234","213234","Am Schildchen","50.824648","6.3246263","","","0","","Europe/Berlin","0"
"100983","100983","Schulberg","50.7291388","6.1774444","","","0","","Europe/Berlin","0"
"215803","215803","Derichsberg","50.7525527","6.25268","","","0","","Europe/Berlin","0"
"100652","100652","Weststraße","50.7712311","6.0603286","","","0","","Europe/Berlin","0"
"100234","100234","Philips","50.7745083","6.1305227","","","0","","Europe/Berlin","0"
"100322","100322","Wolferskaul","50.7439086","6.1594241","","","0","","Europe/Berlin","0"
"215848","215848","Parkstraße","50.769565","6.3069927","","","0","","Europe/Berlin","0"
"100450","100450","Kreuzerdriesch","50.7428722","6.1248666","","","0","","Europe/Berlin","0"
"215941","215941","Auf der Geiß","50.7359183","6.2193586","","","0","","Europe/Berlin","0"
"212012","212012","Würselen Rathaus","50.8203075","6.1312894","","","0","","Europe/Berlin","0"
"100932","100932","Tannenallee","50.7184152","6.1381258","","","0","","Europe/Berlin","0"
"100315","100315","Hickelweg","50.7684494","6.1306758","","","0","","Europe/Berlin","0"
"215625","215625","Steinfurt","50.7937855","6.2271327","","","0","","Europe/Berlin","0"
"415015","415015","Alt Boscheln","50.9016988","6.1359547","","","0","","Europe/Berlin","0"
"100436","100436","Vogelsang","50.7571205","6.1065666","","","0","","Europe/Berlin","0"
"210752","210752","Bürgerhaus","50.8364519","6.094398","","","0","","Europe/Berlin","0"
"210622","210622","Ind-geb.Bosch.Berg","50.8980833","6.1297466","","","0","","Europe/Berlin","0"
"212025","212025","Krankenhaus","50.841868","6.1098272","","","0","","Europe/Berlin","0"
"211233","211233","Am Kreuzberg","50.8750216","6.1804024","","","0","","Europe/Berlin","0"
"100247","100247","Nirmer Platz","50.7876211","6.1546102","","","0","","Europe/Berlin","0"
"211278","211278","Anna II","0.0","0.0","","","0","","Europe/Berlin","0"
"210706","210706","Kircheich","50.8250741","6.079175","","","0","","Europe/Berlin","0"
"213425","213425","Pannesstraße","50.8451108","6.2287313","","","0","","Europe/Berlin","0"
"215854","215854","Königreich","50.7713872","6.3045525","","","0","","Europe/Berlin","0"
"211291","211291","Alt-Ofden Anfang","50.8590622","6.1604872","","","0","","Europe/Berlin","0"
"100118","100118","Forsthaus","50.7909988","6.175015","","","0","","Europe/Berlin","0"
"213100","213100","Am Rodelberg","50.8315277","6.2707222","","","0","","Europe/Berlin","0"
"100402","100402","Gillesbachtal","50.7643277","6.0987308","","","0","","Europe/Berlin","0"
"100506","100506","Kronenberg","50.7658861","6.0528944","","","0","","Europe/Berlin","0"
"215926","215926","Büsbach Friedhof","50.7512988","6.2096533","","","0","","Europe/Berlin","0"
"100013","100013","Lochnerstraße","50.7727116","6.0725086","","","0","","Europe/Berlin","0"
"214411","214411","Baesweiler Rathaus","50.9029358","6.1841075","","","0","","Europe/Berlin","0"
"100702","100702","Jupp-Müller-Straße","50.7872086","6.0699072","","","0","","Europe/Berlin","0"
"100208","100208","Stapperstraße","50.7837769","6.1521302","","","0","","Europe/Berlin","0"
"100786","100786","Rahe Im Ring","50.8032561","6.0671511","","","0","","Europe/Berlin","0"
"210656","210656","Hofstadt Wende","0.0","0.0","","","0","","Europe/Berlin","0"
"213224","213224","Zukunft","50.8263847","6.310815","","","0","","Europe/Berlin","0"
"100484","100484","Rasthaus","50.717275","6.1219683","","","0","","Europe/Berlin","0"
"100227","100227","Schlackstraße","50.7742047","6.1691944","","","0","","Europe/Berlin","0"
"214450","214450","Im Brühl","50.9000113","6.1803572","","","0","","Europe/Berlin","0"
"210500","210500","Herzogenr. Bahnhof","50.8701161","6.0945658","","","0","","Europe/Berlin","0"
"213310","213310","Stich Siedlung","50.8058944","6.2571816","","","0","","Europe/Berlin","0"
"210621","210621","Neumerberen","50.8956669","6.1281194","","","0","","Europe/Berlin","0"
"875006","875006","Eynatten Dorf","50.6928113","6.083833","","","0","","Europe/Berlin","0"
"210544","210544","Anna-Klöcker-Str.","50.8644038","6.0996391","","","0","","Europe/Berlin","0"
"100117","100117","Quinx","50.7947805","6.1647605","","","0","","Europe/Berlin","0"
"215722","215722","Friedr.-Ebert-Str.","50.7844538","6.2274702","","","0","","Europe/Berlin","0"