-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathmap.osm
2026 lines (2026 loc) · 130 KB
/
map.osm
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
<?xml version='1.0' encoding='UTF-8'?>
<osm version='0.6' generator='JOSM'>
<bounds minlat='51.2386527' minlon='7.1587622' maxlat='51.2396939' maxlon='7.1599531' origin='CGImap 0.7.5 (16169 thorn-03.openstreetmap.org)' />
<bounds minlat='51.2382967' minlon='7.1597815' maxlat='51.2392304' maxlon='7.1615624' origin='CGImap 0.7.5 (15088 thorn-01.openstreetmap.org)' />
<bounds minlat='51.238908' minlon='7.161262' maxlat='51.2396804' maxlon='7.1633434' origin='CGImap 0.7.5 (15088 thorn-01.openstreetmap.org)' />
<bounds minlat='51.2391297' minlon='7.1625924' maxlat='51.2402917' maxlon='7.164191' origin='CGImap 0.7.5 (15064 thorn-01.openstreetmap.org)' />
<bounds minlat='51.2394319' minlon='7.1641588' maxlat='51.2398551' maxlon='7.1650064' origin='CGImap 0.7.5 (12589 thorn-02.openstreetmap.org)' />
<bounds minlat='51.2393379' minlon='7.1604145' maxlat='51.2394924' maxlon='7.1614873' origin='CGImap 0.7.5 (16154 thorn-03.openstreetmap.org)' />
<bounds minlat='51.2389617' minlon='7.1594489' maxlat='51.2393916' maxlon='7.1602696' origin='CGImap 0.7.5 (15091 thorn-01.openstreetmap.org)' />
<node id='274402983' timestamp='2014-03-15T09:45:47Z' uid='503347' user='bilderhobbit' visible='true' version='6' changeset='21113676' lat='51.2404677' lon='7.1642379' />
<node id='274402987' timestamp='2011-06-13T15:55:50Z' uid='469881' user='Klaus Warmuth' visible='true' version='2' changeset='8426935' lat='51.239902' lon='7.1638461' />
<node id='274402988' timestamp='2011-06-13T15:55:50Z' uid='469881' user='Klaus Warmuth' visible='true' version='2' changeset='8426935' lat='51.2396157' lon='7.1634523' />
<node id='274402991' timestamp='2011-10-15T15:43:56Z' uid='105837' user='maxried' visible='true' version='3' changeset='9564552' lat='51.2391176' lon='7.1619947' />
<node id='274402996' timestamp='2011-10-15T15:43:56Z' uid='105837' user='maxried' visible='true' version='3' changeset='9564552' lat='51.2385576' lon='7.1603261' />
<node id='298512694' timestamp='2011-06-13T15:55:49Z' uid='469881' user='Klaus Warmuth' visible='true' version='3' changeset='8426935' lat='51.2395019' lon='7.1631398' />
<node id='298513309' timestamp='2011-10-15T15:43:57Z' uid='105837' user='maxried' visible='true' version='4' changeset='9564552' lat='51.2393665' lon='7.1627364' />
<node id='298513495' timestamp='2011-10-15T15:43:57Z' uid='105837' user='maxried' visible='true' version='5' changeset='9564552' lat='51.2392454' lon='7.1623755' />
<node id='298513790' timestamp='2011-10-15T15:43:57Z' uid='105837' user='maxried' visible='true' version='3' changeset='9564552' lat='51.2389587' lon='7.1615212' />
<node id='298514585' timestamp='2011-10-15T15:43:57Z' uid='105837' user='maxried' visible='true' version='4' changeset='9564552' lat='51.2388186' lon='7.1611038' />
<node id='298514587' timestamp='2011-10-15T15:43:57Z' uid='105837' user='maxried' visible='true' version='3' changeset='9564552' lat='51.238264' lon='7.1613605' />
<node id='298514597' timestamp='2012-03-06T14:15:58Z' uid='503347' user='bilderhobbit' visible='true' version='6' changeset='10889946' lat='51.2387062' lon='7.1607675' />
<node id='298515311' timestamp='2012-03-07T10:47:34Z' uid='503347' user='bilderhobbit' visible='true' version='5' changeset='10897142' lat='51.2394632' lon='7.1627754' />
<node id='298515314' timestamp='2011-10-15T15:43:57Z' uid='105837' user='maxried' visible='true' version='3' changeset='9564552' lat='51.2393983' lon='7.162831' />
<node id='506811099' timestamp='2011-10-15T15:43:57Z' uid='105837' user='maxried' visible='true' version='2' changeset='9564552' lat='51.2383429' lon='7.1602291' />
<node id='506811100' timestamp='2011-10-15T15:43:58Z' uid='105837' user='maxried' visible='true' version='2' changeset='9564552' lat='51.2382158' lon='7.1603354' />
<node id='506811101' timestamp='2011-10-15T15:43:58Z' uid='105837' user='maxried' visible='true' version='2' changeset='9564552' lat='51.2381982' lon='7.1597876' />
<node id='506811103' timestamp='2011-10-15T15:43:58Z' uid='105837' user='maxried' visible='true' version='2' changeset='9564552' lat='51.2380711' lon='7.1598939' />
<node id='616996551' timestamp='2019-03-03T19:46:53Z' uid='9494733' user='birkenlachs' visible='true' version='5' changeset='67745700' lat='51.2395742' lon='7.1631859'>
<tag k='highway' v='bus_stop' />
<tag k='name' v='Rainer-Gruenter-Straße' />
<tag k='operator' v='Wuppertaler Stadtwerke (WSW)' />
<tag k='shelter' v='no' />
</node>
<node id='616996555' timestamp='2019-03-03T19:46:53Z' uid='9494733' user='birkenlachs' visible='true' version='5' changeset='67745700' lat='51.2391383' lon='7.162162'>
<tag k='highway' v='bus_stop' />
<tag k='name' v='Rainer-Gruenter-Straße' />
<tag k='operator' v='Wuppertaler Stadtwerke (WSW)' />
<tag k='shelter' v='no' />
<tag k='wheelchair' v='yes' />
</node>
<node id='616996558' timestamp='2014-02-22T15:28:53Z' uid='40029' user='janmeese' visible='true' version='5' changeset='20715656' lat='51.2384227' lon='7.1609617'>
<tag k='highway' v='bus_stop' />
<tag k='name' v='Campus Freudenberg' />
<tag k='operator' v='Wuppertaler Stadtwerke (WSW)' />
<tag k='shelter' v='no' />
<tag k='wheelchair' v='yes' />
</node>
<node id='616996564' timestamp='2013-09-19T17:30:56Z' uid='290680' user='wheelmap_visitor' visible='true' version='2' changeset='17926072' lat='51.2389335' lon='7.1628338'>
<tag k='amenity' v='parking' />
<tag k='wheelchair' v='yes' />
</node>
<node id='616996567' timestamp='2013-09-19T17:30:51Z' uid='290680' user='wheelmap_visitor' visible='true' version='2' changeset='17926072' lat='51.2390644' lon='7.162984'>
<tag k='amenity' v='parking' />
<tag k='wheelchair' v='yes' />
</node>
<node id='616996574' timestamp='2018-07-19T19:10:59Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='60881636' lat='51.2395876' lon='7.1645531'>
<tag k='amenity' v='parking' />
</node>
<node id='616996652' timestamp='2011-06-13T15:55:51Z' uid='469881' user='Klaus Warmuth' visible='true' version='2' changeset='8426935' lat='51.2397445' lon='7.1636921' />
<node id='616996673' timestamp='2014-03-17T18:04:16Z' uid='503347' user='bilderhobbit' visible='true' version='4' changeset='21159799' lat='51.2393926' lon='7.1641103' />
<node id='616996676' timestamp='2011-10-15T15:43:58Z' uid='105837' user='maxried' visible='true' version='3' changeset='9564552' lat='51.2392673' lon='7.1642114' />
<node id='616996683' timestamp='2018-07-19T19:10:59Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='60881636' lat='51.2396488' lon='7.1649189' />
<node id='616996702' timestamp='2014-10-15T17:17:13Z' uid='53007' user='musekusz' visible='true' version='3' changeset='26100864' lat='51.2396878' lon='7.1602113' />
<node id='915595353' timestamp='2019-11-04T19:28:31Z' uid='8457538' user='Recoil16' visible='true' version='5' changeset='76610502' lat='51.2390371' lon='7.1641562' />
<node id='1323899280' timestamp='2012-05-04T23:34:52Z' uid='351730' user='rassss' visible='true' version='2' changeset='11503261' lat='51.238934' lon='7.1592863' />
<node id='1323899284' timestamp='2011-06-13T15:55:47Z' uid='469881' user='Klaus Warmuth' visible='true' version='1' changeset='8426935' lat='51.239012' lon='7.15902' />
<node id='1323899294' timestamp='2012-05-04T23:34:52Z' uid='351730' user='rassss' visible='true' version='2' changeset='11503261' lat='51.2389706' lon='7.1591611' />
<node id='1323899297' timestamp='2012-05-04T23:34:52Z' uid='351730' user='rassss' visible='true' version='2' changeset='11503261' lat='51.2386102' lon='7.1590554' />
<node id='1323899298' timestamp='2012-05-04T23:34:52Z' uid='351730' user='rassss' visible='true' version='2' changeset='11503261' lat='51.238689' lon='7.1587943' />
<node id='1468337598' timestamp='2011-10-15T15:43:49Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2380457' lon='7.1609438' />
<node id='1468337600' timestamp='2011-10-15T15:43:49Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2381259' lon='7.1611769' />
<node id='1468337603' timestamp='2011-10-15T15:43:49Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2382661' lon='7.1616551' />
<node id='1468337606' timestamp='2011-10-15T15:43:50Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2383443' lon='7.1618877' />
<node id='1468337609' timestamp='2011-10-15T15:43:50Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2385228' lon='7.1605251' />
<node id='1468337610' timestamp='2011-10-15T15:43:50Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.238603' lon='7.1607581' />
<node id='1468337614' timestamp='2011-10-15T15:43:50Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2387625' lon='7.1612292' />
<node id='1468337615' timestamp='2011-10-15T15:43:50Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2387632' lon='7.1620589' />
<node id='1468337617' timestamp='2011-10-15T15:43:50Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2388157' lon='7.1632912' />
<node id='1468337618' timestamp='2011-10-15T15:43:50Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2388407' lon='7.1614617' />
<node id='1468337620' timestamp='2011-10-15T15:43:50Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2388951' lon='7.1635301' />
<node id='1468337621' timestamp='2011-10-15T15:43:50Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2389038' lon='7.161939' />
<node id='1468337623' timestamp='2011-10-15T15:43:50Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2389578' lon='7.1626419' />
<node id='1468337624' timestamp='2011-10-15T15:43:50Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2390098' lon='7.1636615' />
<node id='1468337625' timestamp='2011-10-15T15:43:50Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2390151' lon='7.1637454' />
<node id='1468337626' timestamp='2011-10-15T15:43:50Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2390255' lon='7.1635373' />
<node id='1468337627' timestamp='2011-10-15T15:43:50Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.239056' lon='7.1640009' />
<node id='1468337628' timestamp='2011-10-15T15:43:50Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2390694' lon='7.163821' />
<node id='1468337629' timestamp='2011-10-15T15:43:51Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.23908' lon='7.161387' />
<node id='1468337631' timestamp='2011-10-15T15:43:51Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2390985' lon='7.1625221' />
<node id='1468337632' timestamp='2011-10-15T15:43:51Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2391291' lon='7.1638538' />
<node id='1468337633' timestamp='2011-10-15T15:43:51Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2391294' lon='7.1615351' />
<node id='1468337634' timestamp='2011-10-15T15:43:51Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2391354' lon='7.1642399' />
<node id='1468337636' timestamp='2011-10-15T15:43:51Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2391691' lon='7.1616489' />
<node id='1468337637' timestamp='2011-10-15T15:43:51Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2391856' lon='7.1614873' />
<node id='1468337638' timestamp='2011-10-15T15:43:51Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2392026' lon='7.1611134' />
<node id='1468337639' timestamp='2011-10-15T15:43:51Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2392192' lon='7.1617992' />
<node id='1468337641' timestamp='2011-10-15T15:43:51Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.239224' lon='7.1616022' />
<node id='1468337642' timestamp='2011-10-15T15:43:51Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2392394' lon='7.1614403' />
<node id='1468337643' timestamp='2011-10-15T15:43:51Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2392466' lon='7.1612452' />
<node id='1468337644' timestamp='2011-10-15T15:43:51Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2392776' lon='7.1615547' />
<node id='1468337645' timestamp='2011-10-15T15:43:51Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2392957' lon='7.1613924' />
<node id='1468337647' timestamp='2011-10-15T15:43:51Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.239315' lon='7.1628679' />
<node id='1468337648' timestamp='2011-10-15T15:43:51Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2393317' lon='7.1615086' />
<node id='1468337651' timestamp='2011-10-15T15:43:51Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2393758' lon='7.160966' />
<node id='1468337652' timestamp='2011-10-15T15:43:51Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2393824' lon='7.1616603' />
<node id='1468337654' timestamp='2011-10-15T15:43:51Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2393944' lon='7.1631068' />
<node id='1468337655' timestamp='2011-10-15T15:43:51Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2394249' lon='7.1617879' />
<node id='1468337656' timestamp='2011-10-15T15:43:51Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2394689' lon='7.161245' />
<node id='1468337657' timestamp='2011-10-15T15:43:52Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2395049' lon='7.1613612' />
<node id='1468337658' timestamp='2011-10-15T15:43:52Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2395553' lon='7.1635776' />
<node id='1468337660' timestamp='2011-10-15T15:43:52Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.239598' lon='7.1616405' />
<node id='1468337662' timestamp='2011-10-15T15:43:52Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2396347' lon='7.1638166' />
<node id='1468337663' timestamp='2011-10-15T15:43:52Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2396785' lon='7.1629685' />
<node id='1468337664' timestamp='2011-10-15T15:43:52Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2396979' lon='7.1638137' />
<node id='1468337666' timestamp='2011-10-15T15:43:52Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2397738' lon='7.1632476' />
<node id='1468337667' timestamp='2011-10-15T15:43:52Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2398075' lon='7.1632182' />
<node id='1468337668' timestamp='2011-10-15T15:43:52Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2398094' lon='7.1632864' />
<node id='1468337670' timestamp='2011-10-15T15:43:52Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2398259' lon='7.163272' />
<node id='1468337671' timestamp='2011-10-15T15:43:52Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2398375' lon='7.1633688' />
<node id='1468337672' timestamp='2011-10-15T15:43:52Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2399989' lon='7.1630516' />
<node id='1468337673' timestamp='2011-10-15T15:43:52Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.240043' lon='7.1626512' />
<node id='1468337674' timestamp='2011-10-15T15:43:52Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2400454' lon='7.1631878' />
<node id='1468337675' timestamp='2011-10-15T15:43:52Z' uid='105837' user='maxried' visible='true' version='1' changeset='9564552' lat='51.2401382' lon='7.1629304' />
<node id='1662408071' timestamp='2012-03-06T14:15:54Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10889946' lat='51.2383235' lon='7.161441' />
<node id='1662408078' timestamp='2012-03-06T14:15:54Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10889946' lat='51.2383907' lon='7.161447' />
<node id='1662408084' timestamp='2012-12-03T08:31:46Z' uid='368910' user='korpi' visible='true' version='2' changeset='14135744' lat='51.238431' lon='7.1614173' />
<node id='1662408100' timestamp='2012-03-06T14:15:55Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10889946' lat='51.2383085' lon='7.1610983' />
<node id='1662408115' timestamp='2012-03-06T14:15:56Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10889946' lat='51.2383605' lon='7.161447' />
<node id='1662408122' timestamp='2012-03-06T14:15:56Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10889946' lat='51.2382672' lon='7.1611844' />
<node id='1662408125' timestamp='2012-03-06T14:15:56Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10889946' lat='51.238285' lon='7.1611332' />
<node id='1662408134' timestamp='2012-03-06T14:15:56Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10889946' lat='51.2382554' lon='7.1613077' />
<node id='1662408139' timestamp='2012-03-06T14:15:56Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10889946' lat='51.2382866' lon='7.1613988' />
<node id='1662408150' timestamp='2012-03-06T14:15:57Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10889946' lat='51.2382547' lon='7.1612511' />
<node id='1664026468' timestamp='2012-03-07T09:03:30Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2379189' lon='7.1594702'>
<tag k='highway' v='turning_circle' />
</node>
<node id='1664041918' timestamp='2012-03-07T09:28:00Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2388097' lon='7.1595743' />
<node id='1664041919' timestamp='2012-03-07T09:28:00Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2381153' lon='7.1595775' />
<node id='1664041920' timestamp='2012-03-07T09:28:00Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.238433' lon='7.1604199' />
<node id='1664041922' timestamp='2012-03-07T09:28:00Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2382127' lon='7.1597223' />
<node id='1664041924' timestamp='2012-03-07T09:28:00Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2380717' lon='7.159548' />
<node id='1664041928' timestamp='2012-03-07T09:28:00Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2381422' lon='7.159615' />
<node id='1664041930' timestamp='2012-03-07T09:28:00Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.238033' lon='7.1595346' />
<node id='1664041931' timestamp='2012-03-07T09:28:00Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2385419' lon='7.1591322' />
<node id='1664041932' timestamp='2014-03-27T08:43:46Z' uid='2004369' user='Junias' visible='true' version='3' changeset='21340348' lat='51.2379877' lon='7.1594863'>
<tag k='barrier' v='cycle_barrier' />
<tag k='bicycle' v='yes' />
<tag k='foot' v='yes' />
<tag k='motor_vehicle' v='no' />
</node>
<node id='1664041933' timestamp='2012-03-07T09:28:00Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2381875' lon='7.159666' />
<node id='1664041944' timestamp='2012-03-07T09:28:01Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.238886' lon='7.1596296' />
<node id='1664041945' timestamp='2012-03-07T09:28:01Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2384848' lon='7.1593361' />
<node id='1664041946' timestamp='2012-03-07T09:28:01Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.238942' lon='7.1594324' />
<node id='1664041947' timestamp='2012-03-07T09:28:01Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2388657' lon='7.1593771' />
<node id='1664041948' timestamp='2012-03-07T09:28:01Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2379911' lon='7.1607523' />
<node id='1664064172' timestamp='2012-03-07T09:59:38Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2388198' lon='7.1599656' />
<node id='1664064174' timestamp='2012-03-07T09:59:38Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.239415' lon='7.1603961' />
<node id='1664064176' timestamp='2012-03-08T08:05:49Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='10906453' lat='51.2392485' lon='7.1601477' />
<node id='1664064178' timestamp='2012-03-07T09:59:38Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2393143' lon='7.1595372' />
<node id='1664064179' timestamp='2012-03-08T08:05:49Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='10906453' lat='51.2394636' lon='7.1589898' />
<node id='1664064180' timestamp='2012-03-08T08:05:49Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='10906453' lat='51.2392807' lon='7.1592047' />
<node id='1664064181' timestamp='2012-03-07T09:59:38Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2390689' lon='7.1589729' />
<node id='1664064182' timestamp='2012-03-08T08:05:49Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='10906453' lat='51.2393303' lon='7.1590939' />
<node id='1664064183' timestamp='2012-03-08T08:05:49Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='10906453' lat='51.2393713' lon='7.1596283' />
<node id='1664064184' timestamp='2012-03-07T09:59:38Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2391057' lon='7.1605775' />
<node id='1664064185' timestamp='2012-03-07T09:59:38Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2385889' lon='7.1601756' />
<node id='1664064186' timestamp='2012-03-07T10:19:34Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='10897142' lat='51.2386921' lon='7.1599964' />
<node id='1664064187' timestamp='2012-03-08T08:05:49Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='10906453' lat='51.2393662' lon='7.1600221' />
<node id='1664064188' timestamp='2012-03-07T09:59:38Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2393933' lon='7.1590357' />
<node id='1664064189' timestamp='2012-03-07T09:59:39Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2386309' lon='7.1600871' />
<node id='1664064190' timestamp='2012-03-07T09:59:39Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2391783' lon='7.1587058' />
<node id='1664064191' timestamp='2012-03-07T09:59:39Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2394017' lon='7.1597491' />
<node id='1664064200' timestamp='2012-03-07T09:59:39Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2394017' lon='7.1598967' />
<node id='1664064202' timestamp='2012-03-07T09:59:39Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2399944' lon='7.1594916' />
<node id='1664064203' timestamp='2012-03-07T09:59:39Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2394603' lon='7.1605299' />
<node id='1664064204' timestamp='2012-03-07T10:19:34Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='10897142' lat='51.2385738' lon='7.1602429' />
<node id='1664064205' timestamp='2012-03-07T09:59:39Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.239262' lon='7.1607015' />
<node id='1664064206' timestamp='2012-03-07T09:59:39Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2392166' lon='7.1605677' />
<node id='1664064207' timestamp='2012-03-08T08:05:49Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='10906453' lat='51.2393075' lon='7.160111' />
<node id='1664064208' timestamp='2012-03-07T09:59:39Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2395897' lon='7.1590008' />
<node id='1664064209' timestamp='2012-03-07T09:59:39Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2387577' lon='7.1599656' />
<node id='1664064210' timestamp='2012-03-07T09:59:39Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2387148' lon='7.1587089' />
<node id='1664064219' timestamp='2012-03-07T09:59:40Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2391068' lon='7.1588431' />
<node id='1664064221' timestamp='2012-03-07T09:59:40Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2392875' lon='7.1594434' />
<node id='1664064223' timestamp='2012-03-07T09:59:40Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2391825' lon='7.1601453' />
<node id='1664064224' timestamp='2012-03-07T09:59:40Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2390255' lon='7.1586763' />
<node id='1664064226' timestamp='2012-03-07T09:59:40Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2388954' lon='7.159987' />
<node id='1664064228' timestamp='2012-03-07T09:59:40Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2391128' lon='7.1586763' />
<node id='1664064230' timestamp='2012-03-07T09:59:40Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2389037' lon='7.1610037' />
<node id='1664064232' timestamp='2012-03-07T09:59:40Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2387528' lon='7.1585791' />
<node id='1664064234' timestamp='2012-03-07T09:59:40Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2391719' lon='7.1607797' />
<node id='1664064235' timestamp='2012-03-07T09:59:40Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2388375' lon='7.1608015' />
<node id='1664095993' timestamp='2012-03-07T10:19:33Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2386769' lon='7.159799' />
<node id='1664095994' timestamp='2012-03-07T10:19:33Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.238709' lon='7.1598136' />
<node id='1664095995' timestamp='2012-03-07T10:19:33Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2386242' lon='7.1597089' />
<node id='1664095996' timestamp='2012-03-07T10:19:33Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2386275' lon='7.159745' />
<node id='1664095997' timestamp='2012-03-07T10:19:33Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2386401' lon='7.1597724' />
<node id='1664095998' timestamp='2012-03-07T10:42:31Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='10897142' lat='51.2387518' lon='7.1598929' />
<node id='1664096008' timestamp='2012-03-07T10:19:34Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2386745' lon='7.1594809' />
<node id='1664096010' timestamp='2012-03-07T10:19:34Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2387415' lon='7.1598566' />
<node id='1664096012' timestamp='2012-03-07T10:19:34Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2386292' lon='7.1596633' />
<node id='1664096013' timestamp='2012-03-07T10:19:34Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2387258' lon='7.1598246' />
<node id='1664123116' timestamp='2012-03-07T10:47:33Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2395128' lon='7.1607117' />
<node id='1664123117' timestamp='2012-03-07T10:47:33Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2394961' lon='7.1628756' />
<node id='1664123118' timestamp='2012-03-07T10:47:33Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2393418' lon='7.1608548' />
<node id='1664123119' timestamp='2012-03-07T10:47:33Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2392028' lon='7.1619814' />
<node id='1664123120' timestamp='2012-03-07T10:47:33Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2396018' lon='7.1616475' />
<node id='1664123121' timestamp='2012-03-07T10:47:33Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.240066' lon='7.1623988' />
<node id='1664128195' timestamp='2012-03-07T10:51:26Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2389046' lon='7.1631365' />
<node id='1664128196' timestamp='2012-03-07T10:51:26Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142' lat='51.2383958' lon='7.162029' />
<node id='1665544601' timestamp='2012-03-08T08:05:49Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10906453' lat='51.2394544' lon='7.1589203' />
<node id='1665544606' timestamp='2012-03-08T08:05:49Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10906453' lat='51.2392688' lon='7.1593302' />
<node id='1665544607' timestamp='2012-03-08T08:05:49Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10906453' lat='51.2392313' lon='7.1593118' />
<node id='1665544608' timestamp='2012-03-08T08:05:49Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10906453' lat='51.2395254' lon='7.1589818' />
<node id='1665556699' timestamp='2012-03-08T08:18:30Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10906453' lat='51.2400004' lon='7.1639351' />
<node id='1665556700' timestamp='2012-03-08T08:18:30Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10906453' lat='51.2400011' lon='7.1636652' />
<node id='1665556701' timestamp='2018-03-04T12:20:55Z' uid='10927' user='Skywave' visible='true' version='3' changeset='56869286' lat='51.2402827' lon='7.1641421'>
<tag k='barrier' v='lift_gate' />
<tag k='bus' v='yes' />
<tag k='emergency' v='yes' />
</node>
<node id='1665556702' timestamp='2012-03-08T08:18:30Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10906453' lat='51.2391614' lon='7.1607817' />
<node id='1665556703' timestamp='2012-03-08T08:18:30Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10906453' lat='51.2401959' lon='7.1636733' />
<node id='1665556704' timestamp='2012-03-08T08:18:30Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10906453' lat='51.240283' lon='7.1637344' />
<node id='1665556705' timestamp='2012-03-08T08:18:30Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10906453' lat='51.240125' lon='7.1639309' />
<node id='1665556706' timestamp='2012-03-08T08:18:30Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10906453' lat='51.2391917' lon='7.1608676' />
<node id='1665556708' timestamp='2012-03-08T08:18:30Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10906453' lat='51.2399926' lon='7.1638072' />
<node id='1665556709' timestamp='2012-03-08T08:18:30Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10906453' lat='51.240033' lon='7.1635713' />
<node id='1665556710' timestamp='2012-03-08T08:18:30Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10906453' lat='51.2401555' lon='7.1640754' />
<node id='1665556711' timestamp='2012-03-08T08:18:31Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10906453' lat='51.2390553' lon='7.1608771' />
<node id='1665556712' timestamp='2012-03-08T08:18:31Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10906453' lat='51.2402122' lon='7.1639921' />
<node id='1665556713' timestamp='2012-03-08T08:18:31Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10906453' lat='51.2390842' lon='7.160956' />
<node id='1740886211' timestamp='2012-05-04T23:27:30Z' uid='351730' user='rassss' visible='true' version='1' changeset='11503229' lat='51.2395025' lon='7.1606341' />
<node id='1740886213' timestamp='2012-05-04T23:27:30Z' uid='351730' user='rassss' visible='true' version='1' changeset='11503229' lat='51.2388452' lon='7.1611829' />
<node id='1740887124' timestamp='2012-05-04T23:29:03Z' uid='351730' user='rassss' visible='true' version='1' changeset='11503235' lat='51.2392338' lon='7.1605124' />
<node id='1740887125' timestamp='2012-05-04T23:29:03Z' uid='351730' user='rassss' visible='true' version='1' changeset='11503235' lat='51.2392607' lon='7.1602508' />
<node id='1740887126' timestamp='2012-05-04T23:29:03Z' uid='351730' user='rassss' visible='true' version='1' changeset='11503235' lat='51.2391786' lon='7.1605906' />
<node id='1740887127' timestamp='2012-05-04T23:29:03Z' uid='351730' user='rassss' visible='true' version='1' changeset='11503235' lat='51.2391861' lon='7.1607031' />
<node id='1740887128' timestamp='2012-05-04T23:29:03Z' uid='351730' user='rassss' visible='true' version='1' changeset='11503235' lat='51.2392724' lon='7.1603796' />
<node id='1740887129' timestamp='2012-05-04T23:29:03Z' uid='351730' user='rassss' visible='true' version='1' changeset='11503235' lat='51.2392351' lon='7.1608573' />
<node id='1740887425' timestamp='2012-05-04T23:30:33Z' uid='351730' user='rassss' visible='true' version='1' changeset='11503243' lat='51.239531' lon='7.1596313' />
<node id='1740887426' timestamp='2012-05-04T23:30:33Z' uid='351730' user='rassss' visible='true' version='1' changeset='11503243' lat='51.2393876' lon='7.1596929' />
<node id='1740887428' timestamp='2012-05-04T23:30:33Z' uid='351730' user='rassss' visible='true' version='1' changeset='11503243' lat='51.2398752' lon='7.1600898' />
<node id='1740887802' timestamp='2012-05-04T23:31:47Z' uid='351730' user='rassss' visible='true' version='1' changeset='11503248' lat='51.2391784' lon='7.1612109' />
<node id='1740887804' timestamp='2014-03-17T18:06:25Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='21159836' lat='51.2390272' lon='7.1613388' />
<node id='1740887805' timestamp='2012-05-04T23:31:47Z' uid='351730' user='rassss' visible='true' version='1' changeset='11503248' lat='51.2393656' lon='7.1617395' />
<node id='1740887806' timestamp='2012-05-04T23:31:47Z' uid='351730' user='rassss' visible='true' version='1' changeset='11503248' lat='51.2392069' lon='7.1618654' />
<node id='1740887808' timestamp='2014-03-17T18:06:25Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='21159836' lat='51.2391189' lon='7.1616267' />
<node id='1740887810' timestamp='2014-03-17T18:06:25Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='21159836' lat='51.2390235' lon='7.1617157' />
<node id='2106010005' timestamp='2013-01-11T17:23:21Z' uid='466903' user='Medevac71' visible='true' version='1' changeset='14612671' lat='51.2394932' lon='7.1634614'>
<tag k='amenity' v='bicycle_parking' />
</node>
<node id='2106010006' timestamp='2013-01-11T17:23:21Z' uid='466903' user='Medevac71' visible='true' version='1' changeset='14612671' lat='51.2396796' lon='7.1627024'>
<tag k='amenity' v='bicycle_parking' />
</node>
<node id='2106010010' timestamp='2013-01-11T17:23:21Z' uid='466903' user='Medevac71' visible='true' version='1' changeset='14612671' lat='51.2392799' lon='7.1627077'>
<tag k='amenity' v='bicycle_parking' />
</node>
<node id='2269939141' timestamp='2014-03-17T18:04:15Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='21159799' lat='51.2397544' lon='7.1645471' />
<node id='2269939146' timestamp='2014-03-17T18:04:15Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='21159799' lat='51.2399969' lon='7.1645403' />
<node id='2269939148' timestamp='2014-03-17T18:04:15Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='21159799' lat='51.2399915' lon='7.1643391' />
<node id='2269939149' timestamp='2013-04-16T20:16:19Z' uid='466903' user='Medevac71' visible='true' version='1' changeset='15754990' lat='51.2393682' lon='7.1646737' />
<node id='2269939150' timestamp='2014-03-17T18:04:15Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='21159799' lat='51.2398289' lon='7.1643518' />
<node id='2269939151' timestamp='2013-04-16T20:16:19Z' uid='466903' user='Medevac71' visible='true' version='1' changeset='15754990' lat='51.2399576' lon='7.1600819' />
<node id='2269939152' timestamp='2013-04-16T20:16:19Z' uid='466903' user='Medevac71' visible='true' version='1' changeset='15754990' lat='51.240102' lon='7.1598217' />
<node id='2269939153' timestamp='2013-04-16T20:16:19Z' uid='466903' user='Medevac71' visible='true' version='1' changeset='15754990' lat='51.2396402' lon='7.1650331' />
<node id='2269939154' timestamp='2013-04-16T20:16:19Z' uid='466903' user='Medevac71' visible='true' version='1' changeset='15754990' lat='51.2396671' lon='7.1592182' />
<node id='2269939155' timestamp='2014-03-17T18:04:15Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='21159799' lat='51.2398165' lon='7.1645428' />
<node id='2269939156' timestamp='2014-03-17T18:04:15Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='21159799' lat='51.2399467' lon='7.1648104' />
<node id='2269939157' timestamp='2014-03-17T18:04:16Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='21159799' lat='51.2397488' lon='7.1641506' />
<node id='2269939158' timestamp='2013-04-16T20:16:20Z' uid='466903' user='Medevac71' visible='true' version='1' changeset='15754990' lat='51.2395394' lon='7.1594811' />
<node id='2269939159' timestamp='2014-03-17T18:04:16Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='21159799' lat='51.2398239' lon='7.1648188' />
<node id='2269939160' timestamp='2014-03-17T18:04:16Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='21159799' lat='51.2399395' lon='7.1645443' />
<node id='2269939161' timestamp='2014-03-17T18:04:16Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='21159799' lat='51.2398262' lon='7.1641481' />
<node id='2269939163' timestamp='2013-04-16T20:16:20Z' uid='466903' user='Medevac71' visible='true' version='1' changeset='15754990' lat='51.2395255' lon='7.1651405' />
<node id='2269939164' timestamp='2013-04-16T20:16:20Z' uid='466903' user='Medevac71' visible='true' version='1' changeset='15754990' lat='51.2394869' lon='7.1645746' />
<node id='2271132044' timestamp='2013-04-17T21:16:33Z' uid='466903' user='Medevac71' visible='true' version='1' changeset='15767440' lat='51.2382566' lon='7.1587832' />
<node id='2271132046' timestamp='2019-11-04T19:28:31Z' uid='8457538' user='Recoil16' visible='true' version='3' changeset='76610502' lat='51.2390682' lon='7.1642677' />
<node id='2271132048' timestamp='2013-04-17T21:16:33Z' uid='466903' user='Medevac71' visible='true' version='1' changeset='15767440' lat='51.2388342' lon='7.1584828' />
<node id='2271132050' timestamp='2013-04-17T21:16:33Z' uid='466903' user='Medevac71' visible='true' version='1' changeset='15767440' lat='51.2384238' lon='7.1594404' />
<node id='2271132051' timestamp='2014-10-15T17:17:13Z' uid='53007' user='musekusz' visible='true' version='2' changeset='26100864' lat='51.2395906' lon='7.1607625' />
<node id='2271132053' timestamp='2013-04-17T21:16:34Z' uid='466903' user='Medevac71' visible='true' version='1' changeset='15767440' lat='51.2401239' lon='7.159899' />
<node id='2271132055' timestamp='2013-04-17T21:16:34Z' uid='466903' user='Medevac71' visible='true' version='1' changeset='15767440' lat='51.2399375' lon='7.1648831' />
<node id='2271132056' timestamp='2013-04-17T21:16:34Z' uid='466903' user='Medevac71' visible='true' version='1' changeset='15767440' lat='51.2392641' lon='7.1585794' />
<node id='2271132058' timestamp='2013-04-17T21:16:34Z' uid='466903' user='Medevac71' visible='true' version='1' changeset='15767440' lat='51.2401037' lon='7.1622486' />
<node id='2271132059' timestamp='2013-04-17T21:16:34Z' uid='466903' user='Medevac71' visible='true' version='1' changeset='15767440' lat='51.2384305' lon='7.162305' />
<node id='2271132061' timestamp='2013-04-17T21:16:34Z' uid='466903' user='Medevac71' visible='true' version='1' changeset='15767440' lat='51.2401642' lon='7.1595557' />
<node id='2271132062' timestamp='2013-04-17T21:16:34Z' uid='466903' user='Medevac71' visible='true' version='1' changeset='15767440' lat='51.2398149' lon='7.1590407' />
<node id='2271132064' timestamp='2013-04-17T21:16:34Z' uid='466903' user='Medevac71' visible='true' version='1' changeset='15767440' lat='51.2406203' lon='7.1626161' />
<node id='2271132066' timestamp='2013-04-17T21:16:34Z' uid='466903' user='Medevac71' visible='true' version='1' changeset='15767440' lat='51.2402102' lon='7.1643772' />
<node id='2271132067' timestamp='2013-04-17T21:16:34Z' uid='466903' user='Medevac71' visible='true' version='1' changeset='15767440' lat='51.2377326' lon='7.1600707' />
<node id='2271132071' timestamp='2015-01-04T18:03:51Z' uid='111529' user='ReinerMeyer' visible='true' version='2' changeset='27916033' lat='51.2395233' lon='7.1652904' />
<node id='2271132072' timestamp='2013-04-17T21:16:34Z' uid='466903' user='Medevac71' visible='true' version='1' changeset='15767440' lat='51.2403455' lon='7.1638794' />
<node id='2423048739' timestamp='2014-09-07T12:56:59Z' uid='368910' user='korpi' visible='true' version='2' changeset='25286210' lat='51.2394017' lon='7.1627045'>
<tag k='barrier' v='lift_gate' />
<tag k='emergency' v='yes' />
</node>
<node id='2423048742' timestamp='2019-05-23T21:57:06Z' uid='8457538' user='Recoil16' visible='true' version='2' changeset='70567153' lat='51.2395308' lon='7.1626375' />
<node id='2723869855' timestamp='2014-03-17T18:04:12Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='21159799' lat='51.2394515' lon='7.1642512' />
<node id='2723869862' timestamp='2014-03-17T18:04:12Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='21159799' lat='51.2397514' lon='7.1643543' />
<node id='3131574302' timestamp='2014-10-15T17:17:11Z' uid='53007' user='musekusz' visible='true' version='1' changeset='26100864' lat='51.2394117' lon='7.1602566' />
<node id='3131574303' timestamp='2014-10-15T17:17:11Z' uid='53007' user='musekusz' visible='true' version='1' changeset='26100864' lat='51.2396214' lon='7.1598697' />
<node id='3131574308' timestamp='2014-10-15T17:17:12Z' uid='53007' user='musekusz' visible='true' version='1' changeset='26100864' lat='51.2399043' lon='7.1602666' />
<node id='4773334499' timestamp='2018-07-19T18:54:36Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='60881285' lat='51.2385273' lon='7.1599704' />
<node id='4773334500' timestamp='2018-07-19T18:54:36Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='60881285' lat='51.2384178' lon='7.1600646' />
<node id='4773334501' timestamp='2018-07-19T18:54:36Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='60881285' lat='51.2381916' lon='7.1593863' />
<node id='4773334502' timestamp='2018-07-19T18:54:36Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='60881285' lat='51.2382998' lon='7.1592932' />
<node id='4773334503' timestamp='2018-07-19T18:54:36Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='60881285' lat='51.2383146' lon='7.1597584' />
<node id='4773334504' timestamp='2018-07-19T18:54:36Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='60881285' lat='51.2382963' lon='7.1596967' />
<node id='4773334505' timestamp='2018-07-19T18:54:36Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='60881285' lat='51.2384056' lon='7.159607' />
<node id='4773334506' timestamp='2018-07-19T18:54:36Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='60881285' lat='51.2384236' lon='7.1596629' />
<node id='4773334507' timestamp='2018-07-19T18:54:36Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='60881285' lat='51.2383398' lon='7.1597367' />
<node id='4773334508' timestamp='2018-07-19T18:54:36Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='60881285' lat='51.2383196' lon='7.1596767' />
<node id='4773334509' timestamp='2018-07-19T18:54:36Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='60881285' lat='51.2383892' lon='7.1596212' />
<node id='4773334510' timestamp='2018-07-19T18:54:36Z' uid='503347' user='bilderhobbit' visible='true' version='2' changeset='60881285' lat='51.2384078' lon='7.1596765' />
<node id='5771490106' timestamp='2018-07-19T18:54:36Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='60881285' lat='51.2382346' lon='7.1597815' />
<node id='5771523494' timestamp='2018-07-19T19:10:58Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='60881636' lat='51.2398123' lon='7.163263' />
<node id='5771523495' timestamp='2018-07-19T19:10:58Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='60881636' lat='51.2397426' lon='7.16333' />
<node id='5771523496' timestamp='2018-07-19T19:10:58Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='60881636' lat='51.2397476' lon='7.1633488' />
<node id='5771523497' timestamp='2018-07-19T19:10:58Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='60881636' lat='51.2396265' lon='7.1634723' />
<node id='5771523498' timestamp='2018-07-19T19:10:58Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='60881636' lat='51.2396737' lon='7.1629317' />
<node id='5771523499' timestamp='2018-07-19T19:10:58Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='60881636' lat='51.2394896' lon='7.163103' />
<node id='5771523500' timestamp='2018-07-19T19:10:58Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='60881636' lat='51.2398316' lon='7.1627775' />
<node id='5771523501' timestamp='2018-07-19T19:10:58Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='60881636' lat='51.2397849' lon='7.162634' />
<node id='5771523502' timestamp='2018-07-19T19:10:58Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='60881636' lat='51.2394974' lon='7.1644941' />
<node id='5771523503' timestamp='2018-07-19T19:10:58Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='60881636' lat='51.2395066' lon='7.1643721' />
<node id='5771523504' timestamp='2018-07-19T19:10:58Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='60881636' lat='51.2394991' lon='7.1643077' />
<node id='5771523505' timestamp='2018-07-19T19:10:58Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='60881636' lat='51.2398358' lon='7.1641199' />
<node id='5771523506' timestamp='2018-07-19T19:10:58Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='60881636' lat='51.2393824' lon='7.1643452' />
<node id='5771523507' timestamp='2018-07-19T19:10:58Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='60881636' lat='51.2393681' lon='7.1643895' />
<node id='5771523508' timestamp='2018-07-19T19:10:58Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='60881636' lat='51.2393639' lon='7.1644364' />
<node id='5771523509' timestamp='2018-07-19T19:10:58Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='60881636' lat='51.2393681' lon='7.164478' />
<node id='5771523510' timestamp='2018-07-19T19:10:58Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='60881636' lat='51.2394025' lon='7.1646' />
<node id='5771523511' timestamp='2018-07-19T19:10:58Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='60881636' lat='51.2397283' lon='7.1644002' />
<node id='5771523512' timestamp='2018-07-19T19:10:58Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='60881636' lat='51.2396838' lon='7.1644016' />
<node id='5771523513' timestamp='2018-07-19T19:10:58Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='60881636' lat='51.2399197' lon='7.1643023' />
<node id='5771523514' timestamp='2018-07-19T19:10:58Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='60881636' lat='51.2398736' lon='7.1641467' />
<node id='5771523515' timestamp='2018-07-19T19:10:58Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='60881636' lat='51.2397921' lon='7.1641092' />
<node id='5771523516' timestamp='2018-07-19T19:10:58Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='60881636' lat='51.2396712' lon='7.1641213' />
<node id='5771523517' timestamp='2018-07-19T19:10:58Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='60881636' lat='51.2395612' lon='7.1641561' />
<node id='6101756130' timestamp='2018-11-29T04:40:36Z' uid='1214027' user='axelr' visible='true' version='1' changeset='64995970' lat='51.238463' lon='7.1609224' />
<node id='6101756131' timestamp='2018-11-29T04:40:36Z' uid='1214027' user='axelr' visible='true' version='1' changeset='64995970' lat='51.2383619' lon='7.1610539'>
<tag k='bus' v='yes' />
<tag k='name' v='Campus Freudenberg' />
<tag k='public_transport' v='stop_position' />
</node>
<node id='6101756132' timestamp='2018-11-29T04:40:36Z' uid='1214027' user='axelr' visible='true' version='1' changeset='64995970' lat='51.2383342' lon='7.1610306' />
<node id='6314808939' timestamp='2019-03-03T19:43:31Z' uid='9494733' user='birkenlachs' visible='true' version='1' changeset='67745619' lat='51.2396636' lon='7.1600617' />
<node id='6314808940' timestamp='2019-03-03T19:43:31Z' uid='9494733' user='birkenlachs' visible='true' version='1' changeset='67745619' lat='51.2396873' lon='7.1600025' />
<node id='6314808941' timestamp='2019-03-03T19:43:31Z' uid='9494733' user='birkenlachs' visible='true' version='1' changeset='67745619' lat='51.239687' lon='7.1598391' />
<node id='6314817736' timestamp='2019-03-03T19:46:53Z' uid='9494733' user='birkenlachs' visible='true' version='1' changeset='67745700' lat='51.2391051' lon='7.1620662' />
<node id='6314817737' timestamp='2019-03-03T19:46:53Z' uid='9494733' user='birkenlachs' visible='true' version='1' changeset='67745700' lat='51.2391584' lon='7.1622256' />
<node id='6314817738' timestamp='2019-03-03T19:46:53Z' uid='9494733' user='birkenlachs' visible='true' version='1' changeset='67745700' lat='51.2395206' lon='7.1630426' />
<node id='6314817739' timestamp='2019-03-03T19:46:53Z' uid='9494733' user='birkenlachs' visible='true' version='1' changeset='67745700' lat='51.2395967' lon='7.1632461' />
<node id='6496384788' timestamp='2019-05-23T21:57:05Z' uid='8457538' user='Recoil16' visible='true' version='1' changeset='70567153' lat='51.2394197' lon='7.1627044'>
<tag k='direction' v='backward' />
<tag k='highway' v='stop' />
</node>
<node id='6496384789' timestamp='2019-05-23T21:57:05Z' uid='8457538' user='Recoil16' visible='true' version='1' changeset='70567153' lat='51.2392984' lon='7.1620338' />
<node id='6496384790' timestamp='2019-05-23T21:57:05Z' uid='8457538' user='Recoil16' visible='true' version='1' changeset='70567153' lat='51.239408' lon='7.1619447' />
<node id='6496384791' timestamp='2019-05-23T21:57:05Z' uid='8457538' user='Recoil16' visible='true' version='1' changeset='70567153' lat='51.2394235' lon='7.1619044' />
<node id='6496384792' timestamp='2019-05-23T21:57:05Z' uid='8457538' user='Recoil16' visible='true' version='1' changeset='70567153' lat='51.2397172' lon='7.1616595' />
<node id='6496384793' timestamp='2019-05-23T21:57:05Z' uid='8457538' user='Recoil16' visible='true' version='1' changeset='70567153' lat='51.2394546' lon='7.1609603' />
<node id='6496384794' timestamp='2019-05-23T21:57:05Z' uid='8457538' user='Recoil16' visible='true' version='1' changeset='70567153' lat='51.2396872' lon='7.1616335' />
<node id='6496384795' timestamp='2019-05-23T21:57:05Z' uid='8457538' user='Recoil16' visible='true' version='1' changeset='70567153' lat='51.2397438' lon='7.1616825' />
<node id='6496384796' timestamp='2019-05-23T21:57:05Z' uid='8457538' user='Recoil16' visible='true' version='1' changeset='70567153' lat='51.2394998' lon='7.1625456' />
<node id='6496384797' timestamp='2019-05-23T21:57:05Z' uid='8457538' user='Recoil16' visible='true' version='1' changeset='70567153' lat='51.2399027' lon='7.1622112' />
<node id='6496384798' timestamp='2019-05-23T21:57:05Z' uid='8457538' user='Recoil16' visible='true' version='1' changeset='70567153' lat='51.2394321' lon='7.1623447' />
<node id='6496384799' timestamp='2019-05-23T21:57:05Z' uid='8457538' user='Recoil16' visible='true' version='1' changeset='70567153' lat='51.2398387' lon='7.1619648' />
<node id='6496384800' timestamp='2019-05-23T21:57:05Z' uid='8457538' user='Recoil16' visible='true' version='1' changeset='70567153' lat='51.2398358' lon='7.1620104' />
<node id='6496384801' timestamp='2019-05-23T21:57:05Z' uid='8457538' user='Recoil16' visible='true' version='1' changeset='70567153' lat='51.2399437' lon='7.1623342' />
<node id='6496384802' timestamp='2019-05-23T21:57:05Z' uid='8457538' user='Recoil16' visible='true' version='1' changeset='70567153' lat='51.2399449' lon='7.1623966' />
<node id='6496384803' timestamp='2019-05-23T21:57:05Z' uid='8457538' user='Recoil16' visible='true' version='1' changeset='70567153' lat='51.2399374' lon='7.1624342' />
<node id='6496384804' timestamp='2019-05-23T21:57:05Z' uid='8457538' user='Recoil16' visible='true' version='1' changeset='70567153' lat='51.239641' lon='7.1626715' />
<node id='6496384805' timestamp='2019-05-23T21:57:05Z' uid='8457538' user='Recoil16' visible='true' version='1' changeset='70567153' lat='51.2395553' lon='7.1627104' />
<node id='6496384806' timestamp='2019-05-23T21:57:05Z' uid='8457538' user='Recoil16' visible='true' version='1' changeset='70567153' lat='51.2393656' lon='7.1621472' />
<node id='6496384807' timestamp='2019-05-23T21:57:05Z' uid='8457538' user='Recoil16' visible='true' version='1' changeset='70567153' lat='51.2397799' lon='7.1617911' />
<way id='41436459' timestamp='2017-04-03T17:42:36Z' uid='3022894' user='Lukas458' visible='true' version='6' changeset='47419818'>
<nd ref='506811099' />
<nd ref='506811101' />
<nd ref='506811103' />
<nd ref='506811100' />
<nd ref='506811099' />
<tag k='addr:city' v='Wuppertal' />
<tag k='addr:housename' v='FM' />
<tag k='addr:housenumber' v='40' />
<tag k='addr:postcode' v='42119' />
<tag k='addr:street' v='Rainer-Gruenter-Straße' />
<tag k='building' v='university' />
<tag k='operator' v='Bergische Universität Wuppertal' />
</way>
<way id='48575334' timestamp='2012-09-02T13:11:37Z' uid='852359' user='nthtry' visible='true' version='3' changeset='12954033'>
<nd ref='616996652' />
<nd ref='1468337664' />
<nd ref='616996673' />
<nd ref='616996676' />
<tag k='highway' v='service' />
<tag k='maxspeed' v='20' />
</way>
<way id='48575335' timestamp='2018-07-19T19:10:59Z' uid='503347' user='bilderhobbit' visible='true' version='4' changeset='60881636'>
<nd ref='616996673' />
<nd ref='2723869855' />
<nd ref='5771523504' />
<nd ref='5771523503' />
<nd ref='5771523502' />
<nd ref='616996683' />
<tag k='highway' v='service' />
<tag k='maxspeed' v='20' />
</way>
<way id='117530803' timestamp='2012-09-02T13:11:37Z' uid='852359' user='nthtry' visible='true' version='4' changeset='12954033'>
<nd ref='1323899294' />
<nd ref='1323899280' />
<nd ref='1323899297' />
<nd ref='1323899298' />
<nd ref='1323899284' />
<nd ref='1323899294' />
<nd ref='1665544607' />
<nd ref='1665544606' />
<tag k='highway' v='service' />
<tag k='maxspeed' v='20' />
</way>
<way id='133389920' timestamp='2019-05-23T21:57:06Z' uid='8457538' user='Recoil16' visible='true' version='10' changeset='70567153'>
<nd ref='298512694' />
<nd ref='274402988' />
<nd ref='5771523497' />
<nd ref='616996652' />
<nd ref='274402987' />
<nd ref='1665556699' />
<nd ref='1665556710' />
<nd ref='1665556701' />
<nd ref='274402983' />
<tag k='foot' v='yes' />
<tag k='highway' v='service' />
<tag k='maxspeed' v='30' />
<tag k='name' v='Rainer-Gruenter-Straße' />
<tag k='psv' v='yes' />
<tag k='source:maxspeed' v='DE:zone30' />
</way>
<way id='133389922' timestamp='2019-05-23T21:57:06Z' uid='8457538' user='Recoil16' visible='true' version='8' changeset='70567153'>
<nd ref='274402996' />
<nd ref='298514597' />
<tag k='highway' v='service' />
<tag k='maxspeed' v='30' />
<tag k='name' v='Rainer-Gruenter-Straße' />
<tag k='source:maxspeed' v='DE:zone30' />
</way>
<way id='133389925' timestamp='2019-05-23T21:57:06Z' uid='8457538' user='Recoil16' visible='true' version='3' changeset='70567153'>
<nd ref='298512694' />
<nd ref='1468337626' />
<nd ref='1468337624' />
<nd ref='1468337625' />
<nd ref='1468337628' />
<nd ref='1468337632' />
<nd ref='274402988' />
<tag k='highway' v='service' />
<tag k='maxspeed' v='30' />
<tag k='oneway' v='yes' />
<tag k='source:maxspeed' v='DE:zone30' />
</way>
<way id='133389926' timestamp='2017-04-03T17:42:37Z' uid='3022894' user='Lukas458' visible='true' version='3' changeset='47419818'>
<nd ref='1468337629' />
<nd ref='1468337633' />
<nd ref='1468337637' />
<nd ref='1468337641' />
<nd ref='1468337636' />
<nd ref='1468337639' />
<nd ref='1468337652' />
<nd ref='1468337648' />
<nd ref='1468337644' />
<nd ref='1468337642' />
<nd ref='1468337645' />
<nd ref='1468337643' />
<nd ref='1468337629' />
<tag k='addr:city' v='Wuppertal' />
<tag k='addr:country' v='DE' />
<tag k='addr:housenumber' v='20' />
<tag k='addr:postcode' v='42119' />
<tag k='addr:street' v='Rainer-Gruenter-Straße' />
<tag k='building' v='university' />
</way>
<way id='133389927' timestamp='2017-04-03T17:42:36Z' uid='3022894' user='Lukas458' visible='true' version='7' changeset='47419818'>
<nd ref='1468337614' />
<nd ref='1468337618' />
<nd ref='1468337606' />
<nd ref='1468337603' />
<nd ref='1468337614' />
<tag k='addr:city' v='Wuppertal' />
<tag k='addr:housename' v='FE' />
<tag k='addr:housenumber' v='21' />
<tag k='addr:postcode' v='42119' />
<tag k='addr:street' v='Rainer-Gruenter-Straße' />
<tag k='building' v='university' />
<tag k='operator' v='Bergische Universität Wuppertal' />
<tag k='wheelchair' v='yes' />
<tag k='wheelchair:description' v='Fahrtstuhl zu allen Etagen, am Eingang ist eine Treppe.Beim Hausmeister bekommt man einen Schlüssel für den Treppenlift.' />
</way>
<way id='133389929' timestamp='2017-04-03T17:42:37Z' uid='3022894' user='Lukas458' visible='true' version='6' changeset='47419818'>
<nd ref='1468337647' />
<nd ref='1468337654' />
<nd ref='1468337620' />
<nd ref='1468337617' />
<nd ref='1468337647' />
<tag k='addr:city' v='Wuppertal' />
<tag k='addr:housename' v='FD' />
<tag k='addr:housenumber' v='21' />
<tag k='addr:postcode' v='42119' />
<tag k='addr:street' v='Rainer-Gruenter-Straße' />
<tag k='building' v='university' />
<tag k='operator' v='Bergische Universität Wuppertal' />
<tag k='wheelchair' v='yes' />
<tag k='wheelchair:description' v='Fahrstuhl zu allen Etagen, am Eingang ist eine Treppe.Beim Hausmeister bekommt man einen Schlüssel für den Treppenlift.' />
</way>
<way id='133389932' timestamp='2017-04-03T17:42:36Z' uid='3022894' user='Lukas458' visible='true' version='6' changeset='47419818'>
<nd ref='1468337621' />
<nd ref='1468337631' />
<nd ref='1468337623' />
<nd ref='1468337615' />
<nd ref='1468337621' />
<tag k='addr:city' v='Wuppertal' />
<tag k='addr:housename' v='FME' />
<tag k='addr:housenumber' v='21' />
<tag k='addr:postcode' v='42119' />
<tag k='addr:street' v='Rainer-Gruenter-Straße' />
<tag k='building' v='university' />
<tag k='operator' v='Bergische Universität Wuppertal' />
<tag k='wheelchair' v='yes' />
<tag k='wheelchair:description' v='über einen Fahrstuhl sind alle Etagen erreichbar' />
</way>
<way id='133389933' timestamp='2017-04-03T17:42:37Z' uid='3022894' user='Lukas458' visible='true' version='6' changeset='47419818'>
<nd ref='1468337658' />
<nd ref='1468337662' />
<nd ref='1468337634' />
<nd ref='1468337627' />
<nd ref='1468337658' />
<tag k='addr:city' v='Wuppertal' />
<tag k='addr:housename' v='FC' />
<tag k='addr:housenumber' v='21' />
<tag k='addr:postcode' v='42119' />
<tag k='addr:street' v='Rainer-Gruenter-Straße' />
<tag k='building' v='university' />
<tag k='operator' v='Bergische Universität Wuppertal' />
<tag k='wheelchair' v='yes' />
<tag k='wheelchair:description' v='Fahrstuhl zu allen Etagen, am Eingang ist eine Treppe.Beim Hausmeister bekommt man einen Schlüssel für den Treppenlift.' />
</way>
<way id='133389936' timestamp='2017-05-01T16:51:42Z' uid='3022894' user='Lukas458' visible='true' version='7' changeset='48312555'>
<nd ref='1468337609' />
<nd ref='1468337610' />
<nd ref='1468337600' />
<nd ref='1468337598' />
<nd ref='1468337609' />
<tag k='addr:city' v='Wuppertal' />
<tag k='addr:housename' v='FG' />
<tag k='addr:housenumber' v='21' />
<tag k='addr:postcode' v='42119' />
<tag k='addr:street' v='Rainer-Gruenter-Straße' />
<tag k='building' v='university' />
<tag k='operator' v='Bergische Universität Wuppertal' />
<tag k='wheelchair' v='yes' />
<tag k='wheelchair:description' v='Fahrstuhl zu allen Etagen, am Eingang ist eine Treppe.Beim Hausmeister bekommt man einen Schlüssel für den Treppenlift.' />
</way>
<way id='133389937' timestamp='2017-04-03T17:42:37Z' uid='3022894' user='Lukas458' visible='true' version='4' changeset='47419818'>
<nd ref='1468337638' />
<nd ref='1468337643' />
<nd ref='1468337645' />
<nd ref='1468337656' />
<nd ref='1468337651' />
<nd ref='1468337638' />
<tag k='addr:housename' v='FO' />
<tag k='building' v='university' />
</way>
<way id='133389939' timestamp='2017-04-03T17:42:37Z' uid='3022894' user='Lukas458' visible='true' version='4' changeset='47419818'>
<nd ref='1468337648' />
<nd ref='1468337652' />
<nd ref='1468337655' />
<nd ref='1468337660' />
<nd ref='1468337657' />
<nd ref='1468337648' />
<tag k='addr:housename' v='FO' />
<tag k='building' v='university' />
</way>
<way id='133389940' timestamp='2017-04-03T17:42:37Z' uid='3022894' user='Lukas458' visible='true' version='6' changeset='47419818'>
<nd ref='1468337673' />
<nd ref='1468337675' />
<nd ref='1468337672' />
<nd ref='1468337667' />
<nd ref='1468337666' />
<nd ref='1468337663' />
<nd ref='1468337673' />
<tag k='addr:housename' v='FZH' />
<tag k='building' v='university' />
<tag k='operator' v='Bergische Universität Wuppertal' />
<tag k='wheelchair' v='yes' />
<tag k='wheelchair:description' v='Rollstuhlgerechte Toiletten' />
</way>
<way id='133389942' timestamp='2017-04-03T17:42:37Z' uid='3022894' user='Lukas458' visible='true' version='2' changeset='47419818'>
<nd ref='1468337672' />
<nd ref='1468337674' />
<nd ref='1468337671' />
<nd ref='1468337668' />
<nd ref='1468337670' />
<nd ref='1468337667' />
<nd ref='1468337672' />
<tag k='building' v='university' />
</way>
<way id='153589078' timestamp='2019-05-23T21:57:06Z' uid='8457538' user='Recoil16' visible='true' version='9' changeset='70567153'>
<nd ref='298514597' />
<nd ref='6101756131' />
<tag k='foot' v='yes' />
<tag k='highway' v='service' />
<tag k='maxspeed' v='30' />
<tag k='psv' v='yes' />
<tag k='source:maxspeed' v='DE:zone30' />
</way>
<way id='153589081' timestamp='2019-05-23T21:57:06Z' uid='8457538' user='Recoil16' visible='true' version='10' changeset='70567153'>
<nd ref='6101756131' />
<nd ref='1662408100' />
<nd ref='1662408125' />
<nd ref='1662408122' />
<nd ref='1662408150' />
<nd ref='1662408134' />
<nd ref='298514587' />
<nd ref='1662408139' />
<nd ref='1662408071' />
<nd ref='1662408115' />
<nd ref='1662408078' />
<nd ref='1662408084' />
<nd ref='298514585' />
<tag k='foot' v='yes' />
<tag k='highway' v='service' />
<tag k='maxspeed' v='30' />
<tag k='psv' v='yes' />
<tag k='source:maxspeed' v='DE:zone30' />
</way>
<way id='153759143' timestamp='2017-04-03T17:42:36Z' uid='3022894' user='Lukas458' visible='true' version='4' changeset='47419818'>
<nd ref='1664041947' />
<nd ref='1664041918' />
<nd ref='1664041945' />
<nd ref='1664041931' />
<nd ref='1664041947' />
<tag k='addr:city' v='Wuppertal' />
<tag k='addr:housename' v='FH' />
<tag k='addr:housenumber' v='21' />
<tag k='addr:postcode' v='42119' />
<tag k='addr:street' v='Rainer-Gruenter-Straße' />
<tag k='building' v='university' />
<tag k='wheelchair' v='yes' />
<tag k='wheelchair:description' v='Die Hörsäle im Gebäude sind voll rollstuhlgerecht, ebenso die Toiletten. Der ebenfalls im Gebäude untergebrachte Lehrstuhl für elektrische Maschinen ist nur teilweise rollstuhlgerecht.' />
</way>
<way id='153759144' timestamp='2018-07-19T18:55:26Z' uid='503347' user='bilderhobbit' visible='true' version='4' changeset='60881298'>
<nd ref='1664041920' />
<nd ref='5771490106' />
<nd ref='1664041922' />
<nd ref='1664041933' />
<nd ref='1664041928' />
<nd ref='1664041919' />
<nd ref='1664041924' />
<nd ref='1664041930' />
<nd ref='1664041932' />
<nd ref='1664026468' />
<tag k='bicycle' v='yes' />
<tag k='foot' v='yes' />
<tag k='highway' v='path' />
<tag k='incline' v='yes' />
<tag k='motor_vehicle' v='no' />
<tag k='surface' v='paved' />
</way>
<way id='153759145' timestamp='2012-03-07T09:28:01Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142'>
<nd ref='1664041946' />
<nd ref='1664041944' />
<nd ref='1664041918' />
<nd ref='1664041947' />
<nd ref='1664041946' />
<tag k='building' v='yes' />
</way>
<way id='153759146' timestamp='2019-05-23T21:57:06Z' uid='8457538' user='Recoil16' visible='true' version='6' changeset='70567153'>
<nd ref='1664041948' />
<nd ref='1664041920' />
<nd ref='274402996' />
<nd ref='1664064204' />
<nd ref='1664064185' />
<nd ref='1664064189' />
<nd ref='1664064186' />
<nd ref='1664064209' />
<nd ref='1664064172' />
<nd ref='1664064226' />
<nd ref='1664064223' />
<nd ref='1664064176' />
<nd ref='1664064207' />
<nd ref='1664064187' />
<nd ref='1664064200' />
<nd ref='1664064191' />
<nd ref='1740887426' />
<nd ref='1664064183' />
<nd ref='1664064178' />
<nd ref='1664064221' />
<nd ref='1665544606' />
<nd ref='1664064180' />
<nd ref='1664064182' />
<nd ref='1664064188' />
<nd ref='1664064179' />
<nd ref='1665544608' />
<nd ref='1664064208' />
<nd ref='1664064202' />
<tag k='highway' v='service' />
<tag k='maxspeed' v='30' />
<tag k='name' v='Rainer-Gruenter-Straße' />
<tag k='source:maxspeed' v='DE:zone30' />
</way>
<way id='153761049' timestamp='2012-09-02T13:11:37Z' uid='852359' user='nthtry' visible='true' version='3' changeset='12954033'>
<nd ref='1664064224' />
<nd ref='1664064228' />
<nd ref='1664064190' />
<nd ref='1665544601' />
<nd ref='1665544608' />
<tag k='highway' v='service' />
<tag k='maxspeed' v='20' />
</way>
<way id='153761050' timestamp='2017-04-03T17:42:36Z' uid='3022894' user='Lukas458' visible='true' version='4' changeset='47419818'>
<nd ref='1664064219' />
<nd ref='1664064232' />
<nd ref='1664064210' />
<nd ref='1664064181' />
<nd ref='1664064219' />
<tag k='addr:city' v='Wuppertal' />
<tag k='addr:housename' v='FK' />
<tag k='addr:housenumber' v='21' />
<tag k='addr:postcode' v='42119' />
<tag k='addr:street' v='Rainer-Gruenter-Straße' />
<tag k='building' v='university' />
</way>
<way id='153761051' timestamp='2014-03-27T09:02:25Z' uid='2004369' user='Junias' visible='true' version='5' changeset='21340592'>
<nd ref='1664064184' />
<nd ref='1664064234' />
<nd ref='1665556711' />
<nd ref='1664064230' />
<nd ref='1664064235' />
<nd ref='1664064184' />
<tag k='addr:city' v='Wuppertal' />
<tag k='addr:housename' v='FF' />
<tag k='addr:housenumber' v='21' />
<tag k='addr:postcode' v='42119' />
<tag k='addr:street' v='Rainer-Gruenter-Straße' />
<tag k='building' v='house' />
</way>
<way id='153761052' timestamp='2017-04-03T17:42:37Z' uid='3022894' user='Lukas458' visible='true' version='4' changeset='47419818'>
<nd ref='1664064174' />
<nd ref='1664064203' />
<nd ref='1664064205' />
<nd ref='1664064206' />
<nd ref='1664064174' />
<tag k='addr:housename' v='FTZ' />
<tag k='building' v='university' />
</way>
<way id='153762716' timestamp='2012-03-07T10:19:34Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142'>
<nd ref='1664096012' />
<nd ref='1664095995' />
<nd ref='1664095996' />
<nd ref='1664095997' />
<nd ref='1664095993' />
<nd ref='1664095994' />
<nd ref='1664096013' />
<nd ref='1664096010' />
<nd ref='1664095998' />
<nd ref='1664064209' />
<tag k='highway' v='footway' />
</way>
<way id='153762717' timestamp='2012-03-07T10:19:34Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10897142'>
<nd ref='1664096008' />
<nd ref='1664096012' />
<tag k='bridge' v='yes' />
<tag k='highway' v='footway' />
</way>
<way id='153769232' timestamp='2018-07-19T19:11:00Z' uid='503347' user='bilderhobbit' visible='true' version='8' changeset='60881636'>
<nd ref='1664123116' />
<nd ref='1664123121' />
<nd ref='5771523501' />
<nd ref='1664123117' />
<nd ref='298515311' />
<nd ref='1664123119' />
<nd ref='1664123120' />
<nd ref='1664123118' />
<nd ref='1664123116' />
<tag k='amenity' v='parking' />
<tag k='name' v='Campus Freudenberg' />
<tag k='wheelchair' v='yes' />
</way>
<way id='153770430' timestamp='2019-05-23T21:57:06Z' uid='8457538' user='Recoil16' visible='true' version='2' changeset='70567153'>
<nd ref='1664128196' />
<nd ref='298513790' />
<tag k='highway' v='service' />
<tag k='maxspeed' v='30' />
<tag k='source:maxspeed' v='DE:zone30' />
</way>
<way id='153770431' timestamp='2019-05-23T21:57:07Z' uid='8457538' user='Recoil16' visible='true' version='3' changeset='70567153'>
<nd ref='1664128195' />
<nd ref='298513309' />
<tag k='highway' v='service' />
<tag k='maxspeed' v='30' />
<tag k='source:maxspeed' v='DE:zone30' />
</way>
<way id='153942271' timestamp='2012-03-08T08:18:31Z' uid='503347' user='bilderhobbit' visible='true' version='1' changeset='10906453'>
<nd ref='1665556706' />
<nd ref='1665556702' />
<nd ref='1665556711' />
<nd ref='1665556713' />
<nd ref='1665556706' />
<tag k='building' v='yes' />
</way>
<way id='153942272' timestamp='2014-10-15T17:21:46Z' uid='53007' user='musekusz' visible='true' version='4' changeset='26100941'>
<nd ref='1665556704' />
<nd ref='1665556712' />
<nd ref='1665556705' />
<nd ref='1665556703' />
<nd ref='1665556704' />
<tag k='addr:city' v='Wuppertal' />
<tag k='addr:country' v='DE' />
<tag k='addr:housename' v='FB' />
<tag k='addr:housenumber' v='60' />
<tag k='addr:postcode' v='42119' />
<tag k='addr:street' v='Am Freudenberg' />
<tag k='building' v='yes' />
</way>
<way id='153942273' timestamp='2012-09-02T13:11:38Z' uid='852359' user='nthtry' visible='true' version='2' changeset='12954033'>
<nd ref='1665556709' />
<nd ref='1665556700' />
<nd ref='1665556708' />
<nd ref='1665556699' />
<tag k='highway' v='service' />
<tag k='maxspeed' v='20' />
</way>
<way id='162153759' timestamp='2012-09-02T13:11:37Z' uid='852359' user='nthtry' visible='true' version='3' changeset='12954033'>
<nd ref='1740886211' />
<nd ref='1740887129' />
<nd ref='1740886213' />
<tag k='highway' v='service' />
<tag k='maxspeed' v='20' />
</way>
<way id='162153932' timestamp='2012-05-04T23:29:03Z' uid='351730' user='rassss' visible='true' version='1' changeset='11503235'>
<nd ref='1664064176' />
<nd ref='1740887125' />
<nd ref='1740887128' />
<nd ref='1740887124' />
<nd ref='1740887126' />
<nd ref='1740887127' />
<nd ref='1740887129' />
<tag k='highway' v='steps' />
</way>
<way id='162153951' timestamp='2019-03-03T19:43:31Z' uid='9494733' user='birkenlachs' visible='true' version='3' changeset='67745619'>
<nd ref='1740887428' />
<nd ref='6314808941' />
<nd ref='1740887425' />
<nd ref='1740887426' />
<tag k='highway' v='service' />
<tag k='maxspeed' v='20' />
</way>
<way id='162153975' timestamp='2012-09-02T13:11:38Z' uid='852359' user='nthtry' visible='true' version='2' changeset='12954033'>
<nd ref='1740887810' />
<nd ref='1740887808' />
<tag k='highway' v='service' />
<tag k='maxspeed' v='20' />
</way>
<way id='162153976' timestamp='2012-09-02T13:11:38Z' uid='852359' user='nthtry' visible='true' version='2' changeset='12954033'>
<nd ref='1740887802' />
<nd ref='1740887804' />
<nd ref='1740887808' />
<nd ref='1740887806' />
<nd ref='1740887805' />
<tag k='highway' v='service' />
<tag k='maxspeed' v='20' />
</way>
<way id='193138673' timestamp='2019-05-23T21:57:07Z' uid='8457538' user='Recoil16' visible='true' version='8' changeset='70567153'>
<nd ref='298514585' />
<nd ref='1740886213' />
<nd ref='298513790' />
<nd ref='1740887810' />
<nd ref='274402991' />
<nd ref='298513495' />
<nd ref='298513309' />
<nd ref='298515314' />
<nd ref='5771523499' />
<nd ref='298512694' />
<tag k='foot' v='yes' />
<tag k='highway' v='service' />
<tag k='maxspeed' v='30' />
<tag k='name' v='Rainer-Gruenter-Straße' />
<tag k='psv' v='yes' />
<tag k='source:maxspeed' v='DE:zone30' />
</way>
<way id='193138676' timestamp='2019-05-23T21:57:07Z' uid='8457538' user='Recoil16' visible='true' version='6' changeset='70567153'>
<nd ref='298514597' />
<nd ref='298514585' />
<tag k='highway' v='service' />
<tag k='maxspeed' v='30' />
<tag k='name' v='Rainer-Gruenter-Straße' />
<tag k='psv' v='yes' />
<tag k='source:maxspeed' v='DE:zone30' />
</way>
<way id='217684834' timestamp='2017-04-03T17:42:37Z' uid='3022894' user='Lukas458' visible='true' version='4' changeset='47419818'>
<nd ref='2269939153' />
<nd ref='2269939164' />
<nd ref='2269939149' />
<nd ref='2269939163' />
<nd ref='2269939153' />
<tag k='addr:housename' v='FBZ' />
<tag k='amenity' v='library' />
<tag k='building' v='university' />
<tag k='name' v='Fachbibliothek' />
<tag k='wheelchair' v='yes' />
<tag k='wheelchair:description' v='Am Eingang ist eine Treppe.Beim Hausmeister bekommt man einen Schlüssel für den Treppenlift.' />
</way>
<way id='217684835' timestamp='2017-04-03T17:42:38Z' uid='3022894' user='Lukas458' visible='true' version='5' changeset='47419818'>
<nd ref='2269939150' />
<nd ref='2269939161' />
<nd ref='2269939157' />
<nd ref='2723869862' />
<nd ref='2269939150' />
<tag k='addr:city' v='Wuppertal' />
<tag k='addr:country' v='DE' />
<tag k='addr:housename' v='FA' />
<tag k='addr:housenumber' v='5' />
<tag k='addr:postcode' v='42119' />
<tag k='addr:street' v='Rainer-Gruenter-Straße' />
<tag k='building' v='yes' />
<tag k='name' v='Gästehaus' />
<tag k='operator' v='Bergische Universität Wuppertal' />
</way>
<way id='217684836' timestamp='2017-04-03T17:43:35Z' uid='3022894' user='Lukas458' visible='true' version='4' changeset='47419841'>
<nd ref='2269939152' />
<nd ref='2269939154' />
<nd ref='2269939158' />
<nd ref='2269939151' />
<nd ref='2269939152' />
<tag k='addr:city' v='Wuppertal' />
<tag k='addr:housename' v='FL' />
<tag k='addr:housenumber' v='21' />
<tag k='addr:postcode' v='42119' />
<tag k='addr:street' v='Rainer-Gruenter-Straße' />
<tag k='building' v='university' />
<tag k='operator' v='Bergische Universität Wuppertal' />
</way>
<way id='217809193' timestamp='2017-09-18T13:46:31Z' uid='3746603' user='Norbosm' visible='true' version='3' changeset='52145911'>
<nd ref='2271132061' />
<nd ref='2271132062' />
<nd ref='2271132056' />
<nd ref='2271132048' />
<nd ref='2271132044' />
<nd ref='2271132050' />
<nd ref='2271132067' />
<nd ref='2271132059' />
<nd ref='915595353' />
<nd ref='2271132046' />
<nd ref='2271132071' />
<nd ref='2271132055' />
<nd ref='2271132066' />
<nd ref='2271132072' />
<nd ref='2271132064' />
<nd ref='2271132058' />
<nd ref='2271132051' />
<nd ref='3131574302' />
<nd ref='3131574303' />
<nd ref='3131574308' />
<nd ref='2271132053' />
<nd ref='2271132061' />
<tag k='amenity' v='university' />
<tag k='name' v='Bergische Universität Wuppertal - Campus Freudenberg' />
</way>
<way id='233997781' timestamp='2019-07-19T06:04:03Z' uid='10154746' user='stadt-wuppertal_TR' visible='true' version='4' changeset='72414536'>
<nd ref='298513309' />
<nd ref='6496384788' />
<nd ref='2423048742' />
<tag k='access' v='customers' />
<tag k='highway' v='service' />
<tag k='maxspeed' v='30' />
<tag k='oneway' v='no' />
<tag k='source:maxspeed' v='DE:zone30' />
</way>
<way id='266887594' timestamp='2017-04-03T17:42:38Z' uid='3022894' user='Lukas458' visible='true' version='3' changeset='47419818'>
<nd ref='2723869862' />
<nd ref='2269939141' />
<nd ref='2269939155' />
<nd ref='2269939159' />
<nd ref='2269939156' />
<nd ref='2269939160' />
<nd ref='2269939146' />
<nd ref='2269939148' />
<nd ref='2269939150' />
<nd ref='2723869862' />
<tag k='addr:city' v='Wuppertal' />
<tag k='addr:country' v='DE' />
<tag k='addr:housename' v='FA' />
<tag k='addr:housenumber' v='3' />
<tag k='addr:postcode' v='42119' />
<tag k='addr:street' v='Rainer-Gruenter-Straße' />
<tag k='building' v='yes' />
<tag k='name' v='Gästehaus' />
<tag k='operator' v='Bergische Universität Wuppertal' />
</way>
<way id='484584345' timestamp='2017-04-03T17:42:35Z' uid='3022894' user='Lukas458' visible='true' version='1' changeset='47419818'>
<nd ref='4773334499' />