-
Notifications
You must be signed in to change notification settings - Fork 1
/
legend_roads.osm
1993 lines (1993 loc) · 121 KB
/
legend_roads.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='-24.9924206' minlon='135.0099529' maxlat='-24.985501' maxlon='135.0229846' origin='CGImap 0.6.0 (17096 thorn-02.openstreetmap.org)' />
<node id='29100000011' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101463' lat='-24.9850' lon='135.000' />
<node id='29100000012' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101463' lat='-24.9850' lon='135.010' />
<node id='29100000013' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101463' lat='-24.9850' lon='135.020' />
<node id='29100000014' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101463' lat='-24.9850' lon='135.030' />
<node id='29100000015' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101463' lat='-24.9850' lon='135.040' />
<node id='29100000016' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101463' lat='-24.9850' lon='135.050' />
<node id='29100000017' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101463' lat='-24.9850' lon='135.060' />
<node id='29100000018' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101463' lat='-24.9850' lon='135.070' />
<node id='29100000019' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101463' lat='-24.9850' lon='135.080' />
<node id='29100000020' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101463' lat='-24.9850' lon='135.090' />
<node id='29100000021' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9870' lon='135.000' />
<node id='29100000022' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9870' lon='135.010' />
<node id='29100000023' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9870' lon='135.020' />
<node id='29100000024' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9870' lon='135.030' />
<node id='29100000025' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9870' lon='135.040' />
<node id='29100000026' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9870' lon='135.050' />
<node id='29100000027' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9870' lon='135.060' />
<node id='29100000028' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9870' lon='135.070' />
<node id='29100000029' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9870' lon='135.080' />
<node id='29100000030' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9870' lon='135.090' />
<node id='29100000031' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9890' lon='135.000' />
<node id='29100000032' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9890' lon='135.010' />
<node id='29100000033' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9890' lon='135.020' />
<node id='29100000034' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9890' lon='135.030' />
<node id='29100000035' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9890' lon='135.040' />
<node id='29100000036' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9890' lon='135.050' />
<node id='29100000037' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9890' lon='135.060' />
<node id='29100000038' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9890' lon='135.070' />
<node id='29100000039' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9890' lon='135.080' />
<node id='29100000040' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9890' lon='135.090' />
<node id='29100000041' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9910' lon='135.000' />
<node id='29100000042' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9910' lon='135.010' />
<node id='29100000043' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9910' lon='135.020' />
<node id='29100000044' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9910' lon='135.030' />
<node id='29100000045' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9910' lon='135.040' />
<node id='29100000046' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9910' lon='135.050' />
<node id='29100000047' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9910' lon='135.060' />
<node id='29100000048' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9910' lon='135.070' />
<node id='29100000049' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9910' lon='135.080' />
<node id='29100000050' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9910' lon='135.090' />
<node id='29100000051' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9930' lon='135.000' />
<node id='29100000052' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9930' lon='135.010' />
<node id='29100000053' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9930' lon='135.020' />
<node id='29100000054' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9930' lon='135.030' />
<node id='29100000055' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9930' lon='135.040' />
<node id='29100000056' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9930' lon='135.050' />
<node id='29100000057' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9930' lon='135.060' />
<node id='29100000058' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9930' lon='135.070' />
<node id='29100000059' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9930' lon='135.080' />
<node id='29100000060' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9930' lon='135.090' />
<node id='29100000061' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9950' lon='135.000' />
<node id='29100000062' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9950' lon='135.010' />
<node id='29100000063' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464' lat='-24.9950' lon='135.020' />
<node id='29100000064' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9950' lon='135.030' />
<node id='29100000065' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9950' lon='135.040' />
<node id='29100000066' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9950' lon='135.050' />
<node id='29100000067' timestamp='2017-04-30T10:43:54Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9950' lon='135.060' />
<node id='29100000068' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-24.9950' lon='135.070' />
<node id='29100000069' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-24.9950' lon='135.080' />
<node id='29100000070' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-24.9950' lon='135.090' />
<node id='29100000071' timestamp='2017-04-30T10:50:38Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-24.9970' lon='135.000' />
<node id='29100000072' timestamp='2017-04-30T10:50:38Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-24.9970' lon='135.010' />
<node id='29100000073' timestamp='2017-04-30T10:50:38Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-24.9970' lon='135.020' />
<node id='29100000074' timestamp='2017-04-30T10:50:38Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-24.9970' lon='135.030' />
<node id='29100000075' timestamp='2017-04-30T10:50:38Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-24.9970' lon='135.040' />
<node id='29100000076' timestamp='2017-04-30T10:50:38Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-24.9970' lon='135.050' />
<node id='29100000077' timestamp='2017-04-30T10:50:38Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-24.9970' lon='135.060' />
<node id='29100000078' timestamp='2017-04-30T10:50:38Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-24.9970' lon='135.070' />
<node id='29100000079' timestamp='2017-04-30T10:50:38Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-24.9970' lon='135.080' />
<node id='29100000080' timestamp='2017-04-30T10:50:38Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-24.9970' lon='135.090' />
<node id='29100000081' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-24.9990' lon='135.000' />
<node id='29100000082' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-24.9990' lon='135.010' />
<node id='29100000083' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-24.9990' lon='135.020' />
<node id='29100000084' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-24.9990' lon='135.030' />
<node id='29100000085' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-24.9990' lon='135.040' />
<node id='29100000086' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-24.9990' lon='135.050' />
<node id='29100000087' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-24.9990' lon='135.060' />
<node id='29100000088' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-24.9990' lon='135.070' />
<node id='29100000089' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-24.9990' lon='135.080' />
<node id='29100000090' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-24.9990' lon='135.090' />
<node id='29100000091' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0010' lon='135.000' />
<node id='29100000092' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0010' lon='135.010' />
<node id='29100000093' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0010' lon='135.020' />
<node id='29100000094' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0010' lon='135.030' />
<node id='29100000095' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0010' lon='135.040' />
<node id='29100000096' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0010' lon='135.050' />
<node id='29100000097' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0010' lon='135.060' />
<node id='29100000098' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0010' lon='135.070' />
<node id='29100000099' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0010' lon='135.080' />
<node id='29100000100' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0010' lon='135.090' />
<node id='29100000101' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0028' lon='135.005'>
<tag k='place' v='locality' />
<tag k='name' v='Rail' />
</node>
<node id='29100000102' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0028' lon='135.015'>
<tag k='place' v='locality' />
<tag k='name' v='Tram' />
</node>
<node id='29100000103' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0028' lon='135.025'>
<tag k='place' v='locality' />
<tag k='name' v='Subway' />
</node>
<node id='29100000104' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0028' lon='135.035'>
<tag k='place' v='locality' />
<tag k='name' v='Light Rail' />
</node>
<node id='29100000105' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0028' lon='135.045'>
<tag k='place' v='locality' />
<tag k='name' v='Rail Tunnel' />
</node>
<node id='29100000106' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0028' lon='135.055'>
<tag k='place' v='locality' />
<tag k='name' v='Rail' />
</node>
<node id='29100000107' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0028' lon='135.065'>
<tag k='place' v='locality' />
<tag k='name' v='Rail Bridge' />
</node>
<node id='29100000108' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0028' lon='135.075'>
<tag k='place' v='locality' />
<tag k='name' v='Rail Embankment' />
</node>
<node id='29100000109' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0028' lon='135.085'>
<tag k='place' v='locality' />
<tag k='name' v='Rail' />
</node>
<node id='29100000111' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0030' lon='135.000' />
<node id='29100000112' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0030' lon='135.010' />
<node id='29100000113' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0030' lon='135.020' />
<node id='29100000114' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0030' lon='135.030' />
<node id='29100000115' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0030' lon='135.040' />
<node id='29100000116' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' c6angeset='101464' lat='-25.0030' lon='135.050' />
<node id='29100000117' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0030' lon='135.060' />
<node id='29100000118' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0030' lon='135.070' />
<node id='29100000119' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0030' lon='135.080' />
<node id='29100000120' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0030' lon='135.090' />
<node id='29100000121' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0048' lon='135.005'>
<tag k='place' v='locality' />
<tag k='name' v='Funicular' />
</node>
<node id='29100000122' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0048' lon='135.015'>
<tag k='place' v='locality' />
<tag k='name' v='Narrow Gauge' />
</node>
<node id='29100000123' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0048' lon='135.025'>
<tag k='place' v='locality' />
<tag k='name' v='Preserved' />
</node>
<node id='29100000124' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0048' lon='135.035'>
<tag k='place' v='locality' />
<tag k='name' v='Monorail' />
</node>
<node id='29100000125' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0048' lon='135.045'>
<tag k='place' v='locality' />
<tag k='name' v='Guideway Tunnel' />
</node>
<node id='29100000126' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0048' lon='135.055'>
<tag k='place' v='locality' />
<tag k='name' v='Bus Guideway' />
</node>
<node id='29100000127' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0048' lon='135.065'>
<tag k='place' v='locality' />
<tag k='name' v='Guideway Bridge' />
</node>
<node id='29100000128' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0048' lon='135.075'>
<tag k='place' v='locality' />
<tag k='name' v='Guideway Embankment' />
</node>
<node id='29100000129' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0048' lon='135.085'>
<tag k='place' v='locality' />
<tag k='name' v='Bus Guideway' />
</node>
<node id='29100000131' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0050' lon='135.000' />
<node id='29100000132' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0050' lon='135.010' />
<node id='29100000133' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0050' lon='135.020' />
<node id='29100000134' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0050' lon='135.030' />
<node id='29100000135' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0050' lon='135.040' />
<node id='29100000136' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0050' lon='135.050' />
<node id='29100000137' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0050' lon='135.060' />
<node id='29100000138' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0050' lon='135.070' />
<node id='29100000139' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0050' lon='135.080' />
<node id='29100000140' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0050' lon='135.090' />
<node id='29100000141' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0068' lon='135.005'>
<tag k='place' v='locality' />
<tag k='name' v='Disused' />
</node>
<node id='29100000142' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0068' lon='135.015'>
<tag k='place' v='locality' />
<tag k='name' v='Abandoned' />
</node>
<node id='29100000143' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0068' lon='135.025'>
<tag k='place' v='locality' />
<tag k='name' v='Dismantled / Razed' />
</node>
<node id='29100000144' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0068' lon='135.035'>
<tag k='place' v='locality' />
<tag k='name' v='Construction' />
</node>
<node id='29100000145' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0068' lon='135.045'>
<tag k='place' v='locality' />
<tag k='name' v='Proposed Rail Tunnel' />
</node>
<node id='29100000146' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0068' lon='135.055'>
<tag k='place' v='locality' />
<tag k='name' v='Disused Rail Bridge' />
</node>
<node id='29100000147' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0068' lon='135.065'>
<tag k='place' v='locality' />
<tag k='name' v='Proposed Rail Bridge' />
</node>
<node id='29100000148' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0068' lon='135.075'>
<tag k='place' v='locality' />
<tag k='name' v='Proposed Rail Embankment' />
</node>
<node id='29100000149' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0068' lon='135.085'>
<tag k='place' v='locality' />
<tag k='name' v='Proposed Rail' />
</node>
<node id='29100000151' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0070' lon='135.000' />
<node id='29100000152' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0070' lon='135.010' />
<node id='29100000153' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0070' lon='135.020' />
<node id='29100000154' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0070' lon='135.030' />
<node id='29100000155' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0070' lon='135.040' />
<node id='29100000156' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0070' lon='135.050' />
<node id='29100000157' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0070' lon='135.060' />
<node id='29100000158' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0070' lon='135.070' />
<node id='29100000159' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0070' lon='135.080' />
<node id='29100000160' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0070' lon='135.090' />
<node id='29100000161' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0090' lon='135.000' />
<node id='29100000162' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0090' lon='135.010' />
<node id='29100000163' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0090' lon='135.020' />
<node id='29100000164' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0090' lon='135.030' />
<node id='29100000165' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0090' lon='135.040' />
<node id='29100000166' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0090' lon='135.050' />
<node id='29100000167' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0090' lon='135.060' />
<node id='29100000168' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0090' lon='135.070' />
<node id='29100000169' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0090' lon='135.080' />
<node id='29100000170' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0090' lon='135.090' />
<node id='29100000171' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0110' lon='135.000' />
<node id='29100000172' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0110' lon='135.010' />
<node id='29100000173' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0110' lon='135.020' />
<node id='29100000174' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0110' lon='135.030' />
<node id='29100000175' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0110' lon='135.040' />
<node id='29100000176' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0110' lon='135.050' />
<node id='29100000177' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0110' lon='135.060' />
<node id='29100000178' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0110' lon='135.070' />
<node id='29100000179' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0110' lon='135.080' />
<node id='29100000180' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0110' lon='135.090' />
<node id='29100001001' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9850' lon='135.095' />
<node id='29100001005' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9850' lon='135.115' />
<node id='29100001007' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9850' lon='135.125' />
<node id='29100001009' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9850' lon='135.135' />
<node id='29100001011' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9850' lon='135.145' />
<node id='29100001015' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9850' lon='135.165' />
<node id='29100002001' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9870' lon='135.095' />
<node id='29100002002' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9870' lon='135.103' />
<node id='29100002003' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9870' lon='135.105' />
<node id='29100002004' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9870' lon='135.113' />
<node id='29100002005' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9870' lon='135.115' />
<node id='29100002007' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9870' lon='135.125' />
<node id='29100002009' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9870' lon='135.135' />
<node id='29100002011' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9870' lon='135.145' />
<node id='29100002013' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9870' lon='135.155' />
<node id='29100002015' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9870' lon='135.165' />
<node id='29100003001' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9890' lon='135.095' />
<node id='29100003002' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9890' lon='135.103' />
<node id='29100003003' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9890' lon='135.105' />
<node id='29100003004' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9890' lon='135.113' />
<node id='29100003005' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9890' lon='135.115' />
<node id='29100003007' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9890' lon='135.125' />
<node id='29100003009' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9890' lon='135.135' />
<node id='29100003011' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9890' lon='135.145' />
<node id='29100003013' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9890' lon='135.155' />
<node id='29100003015' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9890' lon='135.165' />
<node id='29100004001' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9910' lon='135.095' />
<node id='29100004002' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9910' lon='135.103' />
<node id='29100004003' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9910' lon='135.105' />
<node id='29100004004' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9910' lon='135.113' />
<node id='29100004005' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9910' lon='135.115' />
<node id='29100004007' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9910' lon='135.125' />
<node id='29100004009' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9910' lon='135.135' />
<node id='29100004011' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9910' lon='135.145' />
<node id='29100004013' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9910' lon='135.155' />
<node id='29100004015' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9910' lon='135.165' />
<node id='29100005001' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9930' lon='135.095' />
<node id='29100005002' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9930' lon='135.103' />
<node id='29100005003' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9930' lon='135.105' />
<node id='29100005004' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9930' lon='135.113' />
<node id='29100005005' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9930' lon='135.115' />
<node id='29100005007' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9930' lon='135.125' />
<node id='29100005009' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9930' lon='135.135' />
<node id='29100005011' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9930' lon='135.145' />
<node id='29100005013' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9930' lon='135.155' />
<node id='29100005015' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9930' lon='135.165' />
<node id='29100006001' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9950' lon='135.095' />
<node id='29100006002' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9950' lon='135.103' />
<node id='29100006003' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9950' lon='135.105' />
<node id='29100006004' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9950' lon='135.113' />
<node id='29100006005' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9950' lon='135.115' />
<node id='29100006007' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9950' lon='135.125' />
<node id='29100006009' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9950' lon='135.135' />
<node id='29100006011' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9950' lon='135.145' />
<node id='29100006013' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9950' lon='135.155' />
<node id='29100006015' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9950' lon='135.165' />
<node id='29100007001' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9970' lon='135.095' />
<node id='29100007002' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9970' lon='135.103' />
<node id='29100007003' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9970' lon='135.105' />
<node id='29100007004' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9970' lon='135.113' />
<node id='29100007005' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9970' lon='135.115' />
<node id='29100007007' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9970' lon='135.125' />
<node id='29100007009' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9970' lon='135.135' />
<node id='29100007011' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9970' lon='135.145' />
<node id='29100007013' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9970' lon='135.155' />
<node id='29100007015' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9970' lon='135.165' />
<node id='29100008001' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9990' lon='135.095' />
<node id='29100008002' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9990' lon='135.103' />
<node id='29100008003' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9990' lon='135.105' />
<node id='29100008004' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9990' lon='135.113' />
<node id='29100008005' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9990' lon='135.115' />
<node id='29100008007' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9990' lon='135.125' />
<node id='29100008009' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9990' lon='135.135' />
<node id='29100008011' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9990' lon='135.145' />
<node id='29100008013' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9990' lon='135.155' />
<node id='29100008015' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-24.9990' lon='135.165' />
<node id='29100009001' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0010' lon='135.095' />
<node id='29100009002' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0010' lon='135.103' />
<node id='29100009003' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0010' lon='135.105' />
<node id='29100009004' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0010' lon='135.113' />
<node id='29100009005' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0010' lon='135.115' />
<node id='29100009007' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0010' lon='135.125' />
<node id='29100009009' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0010' lon='135.135' />
<node id='29100009011' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0010' lon='135.145' />
<node id='29100009013' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0010' lon='135.155' />
<node id='29100009015' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0010' lon='135.165' />
<node id='29100010001' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0030' lon='135.095'/>
<node id='29100010002' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0030' lon='135.100'/>
<node id='29100010003' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0030' lon='135.105'/>
<node id='29100010004' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0030' lon='135.110'/>
<node id='29100010005' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0030' lon='135.115'/>
<node id='29100010006' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0030' lon='135.120'/>
<node id='29100010007' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0030' lon='135.125'/>
<node id='29100010008' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0030' lon='135.130'/>
<node id='29100010009' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0030' lon='135.135'/>
<node id='29100010010' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0030' lon='135.140'/>
<node id='29100010015' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0030' lon='135.165' />
<node id='29100012001' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0050' lon='135.095'/>
<node id='29100012002' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0050' lon='135.100'>
<tag k='highway' v='passing_place' />
</node>
<node id='29100012003' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0050' lon='135.105'>
<tag k='ford' v='yes' />
</node>
<node id='29100012004' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0050' lon='135.110'>
<tag k='railway' v='level_crossing' />
</node>
<node id='29100012005' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0050' lon='135.115'/>
<node id='29100012006' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0050' lon='135.120'/>
<node id='29100012007' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0050' lon='135.125'/>
<node id='29100012008' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0050' lon='135.130'/>
<node id='29100012009' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0050' lon='135.135'/>
<node id='29100012010' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0050' lon='135.140'/>
<node id='29100012011' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0050' lon='135.145'/>
<node id='29100012012' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0050' lon='135.150'/>
<node id='29100012013' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0050' lon='135.155'/>
<node id='29100012014' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0050' lon='135.160'/>
<node id='29100012015' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0050' lon='135.165'/>
<node id='29100013001' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0068' lon='135.0975'>
<tag k='place' v='locality' />
<tag k='name' v='Wall' />
</node>
<node id='29100013002' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0068' lon='135.1025'>
<tag k='place' v='locality' />
<tag k='name' v='Fence' />
</node>
<node id='29100013003' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0068' lon='135.1075'>
<tag k='place' v='locality' />
<tag k='name' v='Hedge' />
</node>
<node id='29100013004' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0068' lon='135.1125'>
<tag k='place' v='locality' />
<tag k='name' v='Gate' />
</node>
<node id='29100013005' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0068' lon='135.1175'>
<tag k='place' v='locality' />
<tag k='name' v='Stile' />
</node>
<node id='29100013006' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0068' lon='135.1225'>
<tag k='place' v='locality' />
<tag k='name' v='Cattle Grid' />
</node>
<node id='29100013007' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0068' lon='135.1275'>
<tag k='place' v='locality' />
<tag k='name' v='Cycle Barrier' />
</node>
<node id='29100013008' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0068' lon='135.1325'>
<tag k='place' v='locality' />
<tag k='name' v='Kerb' />
</node>
<node id='29100013009' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0068' lon='135.1375'>
<tag k='place' v='locality' />
<tag k='name' v='City Wall' />
</node>
<node id='29100013010' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0068' lon='135.1425'>
<tag k='place' v='locality' />
<tag k='name' v='Tank Trap' />
</node>
<node id='29100013011' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0068' lon='135.1475'>
<tag k='place' v='locality' />
<tag k='name' v='Guard Rail' />
</node>
<node id='29100013012' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0068' lon='135.1525'>
<tag k='place' v='locality' />
<tag k='name' v='Embankment' />
</node>
<node id='29100013013' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0068' lon='135.1575'>
<tag k='place' v='locality' />
<tag k='name' v='Horse Jump' />
</node>
<node id='29100013014' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464' lat='-25.0068' lon='135.1625'>
<tag k='place' v='locality' />
<tag k='name' v='Door' />
</node>
<node id='29100014001' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0070' lon='135.095'/>
<node id='29100014002' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0070' lon='135.100'/>
<node id='29100014003' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0070' lon='135.105'/>
<node id='29100014004' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0070' lon='135.110'/>
<node id='29100014005' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0070' lon='135.115'/>
<node id='29100014006' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0070' lon='135.120'/>
<node id='29100014007' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0070' lon='135.125'/>
<node id='29100014008' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0070' lon='135.130'/>
<node id='29100014009' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0070' lon='135.135'/>
<node id='29100014010' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0070' lon='135.140'/>
<node id='29100014011' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0070' lon='135.145'/>
<node id='29100014012' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0070' lon='135.150'/>
<node id='29100014013' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0070' lon='135.155'/>
<node id='29100014014' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0070' lon='135.160'/>
<node id='29100014015' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='3' changeset='101464' lat='-25.0070' lon='135.165'/>
<way id='9200000011' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000011' />
<nd ref='29100000012' />
<tag k='highway' v='motorway' />
<tag k='name' v='Motorway, sidewalk' />
<tag k='ref' v='Ref' />
<tag k='sidewalk' v='both' />
</way>
<way id='9200000012' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000012' />
<nd ref='29100000013' />
<tag k='highway' v='motorway' />
<tag k='name' v='Motorway, verge' />
<tag k='ref' v='Ref' />
<tag k='verge' v='both' />
</way>
<way id='9200000013' timestamp='2017-04-30T10:38:09Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000013' />
<nd ref='29100000015' />
<tag k='highway' v='motorway' />
<tag k='name' v='Motorway, no sidewalk or verge' />
<tag k='ref' v='Ref' />
</way>
<way id='9200000014' timestamp='2017-04-30T10:38:09Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000015' />
<nd ref='29100000016' />
<tag k='highway' v='motorway' />
<tag k='name' v='Motorway, tunnel' />
<tag k='ref' v='Ref' />
<tag k='tunnel' v='yes' />
</way>
<way id='9200000015' timestamp='2017-04-30T10:38:09Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000016' />
<nd ref='29100000017' />
<tag k='highway' v='motorway' />
<tag k='name' v='Motorway, ford' />
<tag k='ref' v='Ref' />
<tag k='ford' v='yes' />
</way>
<way id='9200000016' timestamp='2017-04-30T10:38:09Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000017' />
<nd ref='29100000018' />
<tag k='highway' v='motorway' />
<tag k='name' v='Motorway, bridge' />
<tag k='ref' v='Ref' />
<tag k='bridge' v='yes' />
</way>
<way id='9200000017' timestamp='2017-04-30T10:38:09Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000018' />
<nd ref='29100000019' />
<tag k='highway' v='motorway' />
<tag k='name' v='Motorway, Embankment' />
<tag k='ref' v='Ref' />
<tag k='embankment' v='yes' />
</way>
<way id='9200000018' timestamp='2017-04-30T10:38:09Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000019' />
<nd ref='29100000020' />
<tag k='highway' v='motorway' />
<tag k='name' v='Motorway' />
<tag k='ref' v='Ref' />
</way>
<way id='9200000021' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000021' />
<nd ref='29100000022' />
<tag k='highway' v='trunk' />
<tag k='name' v='Trunk, sidewalk' />
<tag k='ref' v='Ref' />
<tag k='sidewalk' v='both' />
</way>
<way id='9200000022' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000022' />
<nd ref='29100000023' />
<tag k='highway' v='trunk' />
<tag k='name' v='Trunk, verge' />
<tag k='ref' v='Ref' />
<tag k='verge' v='both' />
</way>
<way id='9200000023' timestamp='2017-04-30T10:38:09Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000023' />
<nd ref='29100000025' />
<tag k='highway' v='trunk' />
<tag k='name' v='Trunk, no sidewalk or verge' />
<tag k='ref' v='Ref' />
</way>
<way id='9200000024' timestamp='2017-04-30T10:38:09Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000025' />
<nd ref='29100000026' />
<tag k='highway' v='trunk' />
<tag k='name' v='Trunk, tunnel' />
<tag k='ref' v='Ref' />
<tag k='tunnel' v='yes' />
</way>
<way id='9200000025' timestamp='2017-04-30T10:38:09Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000026' />
<nd ref='29100000027' />
<tag k='highway' v='trunk' />
<tag k='name' v='Trunk, ford' />
<tag k='ref' v='Ref' />
<tag k='ford' v='yes' />
</way>
<way id='9200000026' timestamp='2017-04-30T10:38:09Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000027' />
<nd ref='29100000028' />
<tag k='highway' v='trunk' />
<tag k='name' v='Trunk, bridge' />
<tag k='ref' v='Ref' />
<tag k='bridge' v='yes' />
</way>
<way id='9200000027' timestamp='2017-04-30T10:38:09Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000028' />
<nd ref='29100000029' />
<tag k='highway' v='trunk' />
<tag k='name' v='Trunk, embankment' />
<tag k='ref' v='Ref' />
<tag k='embankment' v='yes' />
</way>
<way id='9200000028' timestamp='2017-04-30T10:38:09Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000029' />
<nd ref='29100000030' />
<tag k='highway' v='trunk' />
<tag k='name' v='Trunk' />
<tag k='ref' v='Ref' />
</way>
<way id='9200000031' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000031' />
<nd ref='29100000032' />
<tag k='highway' v='primary' />
<tag k='name' v='Primary, sidewalk' />
<tag k='ref' v='Ref' />
<tag k='sidewalk' v='both' />
</way>
<way id='9200000032' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000032' />
<nd ref='29100000033' />
<tag k='highway' v='primary' />
<tag k='name' v='Primary, verge' />
<tag k='ref' v='Ref' />
<tag k='verge' v='both' />
</way>
<way id='9200000033' timestamp='2017-04-30T10:38:09Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000033' />
<nd ref='29100000035' />
<tag k='highway' v='primary' />
<tag k='name' v='Primary, no sidewalk or verge' />
<tag k='ref' v='Ref' />
</way>
<way id='9200000034' timestamp='2017-04-30T10:38:09Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000035' />
<nd ref='29100000036' />
<tag k='highway' v='primary' />
<tag k='name' v='Primary, tunnel' />
<tag k='ref' v='Ref' />
<tag k='tunnel' v='yes' />
</way>
<way id='9200000035' timestamp='2017-04-30T10:38:09Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000036' />
<nd ref='29100000037' />
<tag k='highway' v='primary' />
<tag k='name' v='Primary, ford' />
<tag k='ref' v='Ref' />
<tag k='bridge' v='yes' />
</way>
<way id='9200000036' timestamp='2017-04-30T10:38:09Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000037' />
<nd ref='29100000038' />
<tag k='highway' v='primary' />
<tag k='name' v='Primary, bridge' />
<tag k='ref' v='Ref' />
<tag k='bridge' v='yes' />
</way>
<way id='9200000037' timestamp='2017-04-30T10:38:09Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000038' />
<nd ref='29100000039' />
<tag k='highway' v='primary' />
<tag k='name' v='Primary, embankment' />
<tag k='ref' v='Ref' />
<tag k='bridge' v='yes' />
</way>
<way id='9200000038' timestamp='2017-04-30T10:38:09Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000039' />
<nd ref='29100000040' />
<tag k='highway' v='primary' />
<tag k='name' v='Primary' />
<tag k='ref' v='Ref' />
</way>
<way id='9200000041' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000041' />
<nd ref='29100000042' />
<tag k='highway' v='secondary' />
<tag k='name' v='Secondary, sidewalk' />
<tag k='ref' v='Ref' />
<tag k='sidewalk' v='both' />
</way>
<way id='9200000042' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000042' />
<nd ref='29100000043' />
<tag k='highway' v='secondary' />
<tag k='name' v='Secondary, verge' />
<tag k='ref' v='Ref' />
<tag k='verge' v='both' />
</way>
<way id='9200000043' timestamp='2017-04-30T10:38:09Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000043' />
<nd ref='29100000045' />
<tag k='highway' v='secondary' />
<tag k='name' v='Secondary, no sidewalk or verge' />
<tag k='ref' v='Ref' />
</way>
<way id='9200000044' timestamp='2017-04-30T10:38:09Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000045' />
<nd ref='29100000046' />
<tag k='highway' v='secondary' />
<tag k='name' v='Secondary, tunnel' />
<tag k='ref' v='Ref' />
<tag k='tunnel' v='yes' />
</way>
<way id='9200000045' timestamp='2017-04-30T10:38:09Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000046' />
<nd ref='29100000047' />
<tag k='highway' v='secondary' />
<tag k='name' v='Secondary, ford' />
<tag k='ref' v='Ref' />
<tag k='ford' v='yes' />
</way>
<way id='9200000046' timestamp='2017-04-30T10:38:09Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000047' />
<nd ref='29100000048' />
<tag k='highway' v='secondary' />
<tag k='name' v='Secondary, bridge' />
<tag k='ref' v='Ref' />
<tag k='bridge' v='yes' />
</way>
<way id='9200000047' timestamp='2017-04-30T10:38:09Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000048' />
<nd ref='29100000049' />
<tag k='highway' v='secondary' />
<tag k='name' v='Secondary, embankment' />
<tag k='ref' v='Ref' />
<tag k='embankment' v='yes' />
</way>
<way id='9200000048' timestamp='2017-04-30T10:38:09Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000049' />
<nd ref='29100000050' />
<tag k='highway' v='secondary' />
<tag k='name' v='Secondary' />
<tag k='ref' v='Ref' />
</way>
<way id='9200000051' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000051' />
<nd ref='29100000052' />
<tag k='highway' v='tertiary' />
<tag k='name' v='Tertiary, sidewalk' />
<tag k='sidewalk' v='both' />
</way>
<way id='9200000052' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000052' />
<nd ref='29100000053' />
<tag k='highway' v='tertiary' />
<tag k='name' v='Tertiary, verge' />
<tag k='verge' v='both' />
</way>
<way id='9200000053' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000053' />
<nd ref='29100000055' />
<tag k='highway' v='tertiary' />
<tag k='name' v='Tertiary, no sidewalk or verge' />
</way>
<way id='9200000054' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000055' />
<nd ref='29100000056' />
<tag k='highway' v='tertiary' />
<tag k='name' v='Tertiary, tunnel' />
<tag k='tunnel' v='yes' />
</way>
<way id='9200000055' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000056' />
<nd ref='29100000057' />
<tag k='highway' v='tertiary' />
<tag k='name' v='Tertiary, ford' />
<tag k='ford' v='yes' />
</way>
<way id='9200000056' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000057' />
<nd ref='29100000058' />
<tag k='highway' v='tertiary' />
<tag k='name' v='Tertiary, bridge' />
<tag k='bridge' v='yes' />
</way>
<way id='9200000057' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000058' />
<nd ref='29100000059' />
<tag k='highway' v='tertiary' />
<tag k='name' v='Tertiary, embankment' />
<tag k='embankment' v='yes' />
</way>
<way id='9200000058' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000059' />
<nd ref='29100000060' />
<tag k='highway' v='tertiary' />
<tag k='name' v='Tertiary' />
</way>
<way id='9200000061' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000061' />
<nd ref='29100000062' />
<tag k='highway' v='unclassified' />
<tag k='name' v='Unclassified, sidewalk' />
<tag k='sidewalk' v='both' />
</way>
<way id='9200000062' timestamp='2017-04-30T10:29:40Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101463'>
<nd ref='29100000062' />
<nd ref='29100000063' />
<tag k='highway' v='unclassified' />
<tag k='name' v='Unclassified, verge' />
<tag k='verge' v='both' />
</way>
<way id='9200000063' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000063' />
<nd ref='29100000064' />
<tag k='highway' v='unclassified' />
<tag k='name' v='Unclassified, no sidewalk or verge' />
</way>
<way id='9200000064' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464'>
<nd ref='29100000064' />
<nd ref='29100000065' />
<tag k='highway' v='unclassified' />
<tag k='name' v='Unclassified, unpaved' />
<tag k='surface' v='gravel' />
</way>
<way id='9200000065' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464'>
<nd ref='29100000065' />
<nd ref='29100000066' />
<tag k='highway' v='unclassified' />
<tag k='name' v='Unclassified, tunnel' />
<tag k='tunnel' v='yes' />
</way>
<way id='9200000066' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464'>
<nd ref='29100000066' />
<nd ref='29100000067' />
<tag k='highway' v='unclassified' />
<tag k='name' v='Unclassified, ford' />
<tag k='ford' v='yes' />
</way>
<way id='9200000067' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464'>
<nd ref='29100000067' />
<nd ref='29100000068' />
<tag k='highway' v='unclassified' />
<tag k='name' v='Unclassified, bridge' />
<tag k='bridge' v='yes' />
</way>
<way id='9200000068' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464'>
<nd ref='29100000068' />
<nd ref='29100000069' />
<tag k='highway' v='unclassified' />
<tag k='name' v='Unclassified, embankment' />
<tag k='embankment' v='yes' />
</way>
<way id='9200000069' timestamp='2017-04-30T10:47:08Z' uid='112' user='SomeoneElse' visible='true' version='2' changeset='101464'>
<nd ref='29100000069' />
<nd ref='29100000070' />
<tag k='highway' v='unclassified' />
<tag k='name' v='Unclassified' />
</way>
<way id='9200000071' timestamp='2017-04-30T10:50:38Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000071' />
<nd ref='29100000072' />
<tag k='highway' v='residential' />
<tag k='name' v='Residential, sidewalk' />
<tag k='sidewalk' v='both' />
</way>
<way id='9200000072' timestamp='2017-04-30T10:50:38Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000072' />
<nd ref='29100000073' />
<tag k='highway' v='residential' />
<tag k='name' v='Residential, verge' />
<tag k='verge' v='both' />
</way>
<way id='9200000073' timestamp='2017-04-30T10:50:38Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000073' />
<nd ref='29100000074' />
<tag k='highway' v='residential' />
<tag k='name' v='Residential, no sidewalk or verge' />
</way>
<way id='9200000074' timestamp='2017-04-30T10:50:38Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000074' />
<nd ref='29100000075' />
<tag k='highway' v='residential' />
<tag k='name' v='Residential, unpaved' />
<tag k='surface' v='gravel' />
</way>
<way id='9200000075' timestamp='2017-04-30T10:50:38Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000075' />
<nd ref='29100000076' />
<tag k='highway' v='residential' />
<tag k='name' v='Residential, tunnel' />
<tag k='tunnel' v='yes' />
</way>
<way id='9200000076' timestamp='2017-04-30T10:50:38Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000076' />
<nd ref='29100000077' />
<tag k='highway' v='residential' />
<tag k='name' v='Residential, ford' />
<tag k='ford' v='yes' />
</way>
<way id='9200000077' timestamp='2017-04-30T10:50:38Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000077' />
<nd ref='29100000078' />
<tag k='highway' v='residential' />
<tag k='name' v='Residential, bridge' />
<tag k='bridge' v='yes' />
</way>
<way id='9200000078' timestamp='2017-04-30T10:50:38Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000078' />
<nd ref='29100000079' />
<tag k='highway' v='residential' />
<tag k='name' v='Residential, embankment' />
<tag k='embankment' v='yes' />
</way>
<way id='9200000079' timestamp='2017-04-30T10:50:38Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000079' />
<nd ref='29100000080' />
<tag k='highway' v='residential' />
<tag k='name' v='Residential' />
</way>
<way id='9200000081' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000081' />
<nd ref='29100000082' />
<tag k='highway' v='living_street' />
<tag k='name' v='Living Street / Quiet Lane, sidewalk' />
<tag k='sidewalk' v='both' />
</way>
<way id='9200000082' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000082' />
<nd ref='29100000083' />
<tag k='highway' v='living_street' />
<tag k='name' v='Living Street, verge' />
<tag k='verge' v='both' />
</way>
<way id='9200000083' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000083' />
<nd ref='29100000084' />
<tag k='highway' v='living_street' />
<tag k='name' v='Living Street, no sidewalk or verge' />
</way>
<way id='9200000084' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000084' />
<nd ref='29100000085' />
<tag k='highway' v='living_street' />
<tag k='name' v='Living Street, unpaved' />
<tag k='surface' v='gravel' />
</way>
<way id='9200000085' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000085' />
<nd ref='29100000086' />
<tag k='highway' v='living_street' />
<tag k='name' v='Living Street, tunnel' />
<tag k='tunnel' v='yes' />
</way>
<way id='9200000086' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000086' />
<nd ref='29100000087' />
<tag k='highway' v='living_street' />
<tag k='name' v='Living Street, ford' />
<tag k='ford' v='yes' />
</way>
<way id='9200000087' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000087' />
<nd ref='29100000088' />
<tag k='highway' v='living_street' />
<tag k='name' v='Living Street, bridge' />
<tag k='bridge' v='yes' />
</way>
<way id='9200000088' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000088' />
<nd ref='29100000089' />
<tag k='highway' v='living_street' />
<tag k='name' v='Living Street, embankment' />
<tag k='embankment' v='yes' />
</way>
<way id='9200000089' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000089' />
<nd ref='29100000090' />
<tag k='highway' v='living_street' />
<tag k='name' v='Living Street' />
</way>
<way id='9200000091' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000091' />
<nd ref='29100000092' />
<tag k='highway' v='service' />
<tag k='name' v='Service Road' />
<tag k='sidewalk' v='both' />
</way>
<way id='9200000092' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000092' />
<nd ref='29100000093' />
<tag k='highway' v='service' />
<tag k='name' v='Service Road' />
<tag k='verge' v='both' />
</way>
<way id='9200000093' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000093' />
<nd ref='29100000095' />
<tag k='highway' v='service' />
<tag k='name' v='Service Road' />
<tag k='sidewalk' v='none' />
</way>
<way id='9200000094' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000095' />
<nd ref='29100000096' />
<tag k='highway' v='service' />
<tag k='name' v='Service Road, tunnel' />
<tag k='tunnel' v='yes' />
</way>
<way id='9200000095' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000096' />
<nd ref='29100000097' />
<tag k='highway' v='service' />
<tag k='name' v='Service Road, ford' />
<tag k='ford' v='yes' />
</way>
<way id='9200000096' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000097' />
<nd ref='29100000098' />
<tag k='highway' v='service' />
<tag k='name' v='Service Road, bridge' />
<tag k='bridge' v='yes' />
</way>
<way id='9200000097' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000098' />
<nd ref='29100000099' />
<tag k='highway' v='service' />
<tag k='name' v='Service Road, embankment' />
<tag k='embankment' v='yes' />
</way>
<way id='9200000098' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000099' />
<nd ref='29100000100' />
<tag k='highway' v='service' />
<tag k='name' v='Service Road' />
</way>
<way id='9200000111' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000111' />
<nd ref='29100000112' />
<tag k='railway' v='rail' />
<tag k='name' v='Rail' />
</way>
<way id='9200000112' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000112' />
<nd ref='29100000113' />
<tag k='railway' v='tram' />
<tag k='name' v='Tram' />
</way>
<way id='9200000113' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000113' />
<nd ref='29100000114' />
<tag k='railway' v='subway' />
<tag k='name' v='Subway' />
</way>
<way id='9200000114' timestamp='2017-04-30T10:53:10Z' uid='112' user='SomeoneElse' visible='true' version='1' changeset='101464'>
<nd ref='29100000114' />