-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgeneration.log
More file actions
5435 lines (5425 loc) · 330 KB
/
generation.log
File metadata and controls
5435 lines (5425 loc) · 330 KB
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
INFO:root:Using the end date from config file: 20991231
WARNING:root:Date range is more than one year.
INFO:root:Query and build fresh data for routes
INFO:root:
[timeout:600]
;
(
/* Obtain route variants based on tags and bounding box */
relation['route' ~ '^bus$|^light_rail$|^share_taxi$'](8.8,38.61,9.13,38.96)->.routes;
/* Query for related route masters */
relation[type=route_master](br.routes)->.masters;
/* Query for routes' geometry (ways and it's nodes) */
way(r.routes);
node(w);
/* Select all result sets */
( .routes;.masters;._; );
/* Return tags for elements and roles for relation members. */
);out body;
WARNING:root:Route has non-matching ways: https://osm.org/relation/10406489
WARNING:root: Problem at: https://osm.org/way/749949702
WARNING:root:Route has non-matching ways: https://osm.org/relation/10407730
WARNING:root: Problem at: https://osm.org/way/22337881
WARNING:root:Route has non-matching ways: https://osm.org/relation/10410197
WARNING:root: Problem at: https://osm.org/way/223141386
WARNING:root:Route has non-matching ways: https://osm.org/relation/10410196
WARNING:root: Problem at: https://osm.org/way/757843856
WARNING:root:Route has non-matching ways: https://osm.org/relation/15743389
WARNING:root: Problem at: https://osm.org/way/1494030610
WARNING:root:Route has non-matching ways: https://osm.org/relation/10406696
WARNING:root: Problem at: https://osm.org/way/755254707
WARNING:root:Route has non-matching ways: https://osm.org/relation/10458767
WARNING:root: Problem at: https://osm.org/way/761200759
WARNING:root:Route has non-matching ways: https://osm.org/relation/10460045
WARNING:root: Problem at: https://osm.org/way/761200759
WARNING:root:Route has non-matching ways: https://osm.org/relation/10460167
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/10466723
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/10466724
WARNING:root: Problem at: https://osm.org/way/755326322
WARNING:root:Route has non-matching ways: https://osm.org/relation/10535102
WARNING:root: Problem at: https://osm.org/way/617828985
WARNING:root:Route has non-matching ways: https://osm.org/relation/10468433
WARNING:root: Problem at: https://osm.org/way/565777189
WARNING:root:Route has non-matching ways: https://osm.org/relation/10478791
WARNING:root: Problem at: https://osm.org/way/1175598879
WARNING:root:Route has non-matching ways: https://osm.org/relation/10521541
WARNING:root: Problem at: https://osm.org/way/1491779320
WARNING:root:Route has non-matching ways: https://osm.org/relation/10521542
WARNING:root: Problem at: https://osm.org/way/1491779317
WARNING:root:Route has non-matching ways: https://osm.org/relation/10533495
WARNING:root: Problem at: https://osm.org/way/1184275944
WARNING:root:Route has non-matching ways: https://osm.org/relation/10534540
WARNING:root: Problem at: https://osm.org/way/761200759
WARNING:root:Route has non-matching ways: https://osm.org/relation/10535101
WARNING:root: Problem at: https://osm.org/way/565777189
WARNING:root:Route has non-matching ways: https://osm.org/relation/10468434
WARNING:root: Problem at: https://osm.org/way/758229070
WARNING:root:Route has non-matching ways: https://osm.org/relation/10541370
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/10541369
WARNING:root: Problem at: https://osm.org/way/162844956
WARNING:root:Route has non-matching ways: https://osm.org/relation/10541999
WARNING:root: Problem at: https://osm.org/way/757910205
WARNING:root:Route has non-matching ways: https://osm.org/relation/10542000
WARNING:root: Problem at: https://osm.org/way/757910201
WARNING:root:Route has non-matching ways: https://osm.org/relation/10542240
WARNING:root: Problem at: https://osm.org/way/1175598879
WARNING:root:Route has non-matching ways: https://osm.org/relation/10542239
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/10547201
WARNING:root: Problem at: https://osm.org/way/755254707
WARNING:root:Route has non-matching ways: https://osm.org/relation/10547200
WARNING:root: Problem at: https://osm.org/way/1494030610
WARNING:root:Route has non-matching ways: https://osm.org/relation/10550649
WARNING:root: Problem at: https://osm.org/way/1219400016
WARNING:root:Route has non-matching ways: https://osm.org/relation/10551229
WARNING:root: Problem at: https://osm.org/way/758229070
WARNING:root:Route has non-matching ways: https://osm.org/relation/10551228
WARNING:root: Problem at: https://osm.org/way/565777189
WARNING:root:Route has non-matching ways: https://osm.org/relation/10551604
WARNING:root: Problem at: https://osm.org/way/755492732
WARNING:root:Route has non-matching ways: https://osm.org/relation/15487613
WARNING:root: Problem at: https://osm.org/way/162844956
WARNING:root:Route has non-matching ways: https://osm.org/relation/15487437
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/10715392
WARNING:root: Problem at: https://osm.org/way/24554421
WARNING:root:Route has non-matching ways: https://osm.org/relation/15652319
WARNING:root: Problem at: https://osm.org/way/761078823
WARNING:root:Route has non-matching ways: https://osm.org/relation/10694719
WARNING:root: Problem at: https://osm.org/way/755492732
WARNING:root:Route has non-matching ways: https://osm.org/relation/15774594
WARNING:root: Problem at: https://osm.org/way/1166096259
WARNING:root:Route has non-matching ways: https://osm.org/relation/15775110
WARNING:root: Problem at: https://osm.org/way/24554421
WARNING:root:Route has non-matching ways: https://osm.org/relation/15775111
WARNING:root: Problem at: https://osm.org/way/761078823
WARNING:root:Route has non-matching ways: https://osm.org/relation/15830932
WARNING:root: Problem at: https://osm.org/way/24554421
WARNING:root:Route has non-matching ways: https://osm.org/relation/15830933
WARNING:root: Problem at: https://osm.org/way/761078823
WARNING:root:Route has non-matching ways: https://osm.org/relation/15850621
WARNING:root: Problem at: https://osm.org/way/761290295
WARNING:root:Route has non-matching ways: https://osm.org/relation/15858268
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/15858338
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/15858712
WARNING:root: Problem at: https://osm.org/way/1491779320
WARNING:root:Route has non-matching ways: https://osm.org/relation/15858711
WARNING:root: Problem at: https://osm.org/way/1491779317
WARNING:root:Route has non-matching ways: https://osm.org/relation/15858886
WARNING:root: Problem at: https://osm.org/way/25965888
WARNING:root:Route has non-matching ways: https://osm.org/relation/15867149
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/15867571
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/15867784
WARNING:root: Problem at: https://osm.org/way/1173922473
WARNING:root:Route has non-matching ways: https://osm.org/relation/15867785
WARNING:root: Problem at: https://osm.org/way/757910202
WARNING:root:Route has non-matching ways: https://osm.org/relation/15869242
WARNING:root: Problem at: https://osm.org/way/757910202
WARNING:root:Route has non-matching ways: https://osm.org/relation/15869241
WARNING:root: Problem at: https://osm.org/way/1173922473
WARNING:root:Route has non-matching ways: https://osm.org/relation/15869310
WARNING:root: Problem at: https://osm.org/way/1173922473
WARNING:root:Route has non-matching ways: https://osm.org/relation/15869311
WARNING:root: Problem at: https://osm.org/way/757910202
WARNING:root:Route has non-matching ways: https://osm.org/relation/15870223
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/15880658
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/15901994
WARNING:root: Problem at: https://osm.org/way/62177815
WARNING:root:Route has non-matching ways: https://osm.org/relation/15901993
WARNING:root: Problem at: https://osm.org/way/761200759
WARNING:root:Route has non-matching ways: https://osm.org/relation/15902170
WARNING:root: Problem at: https://osm.org/way/761200759
WARNING:root:Route has non-matching ways: https://osm.org/relation/15902169
WARNING:root: Problem at: https://osm.org/way/62177815
WARNING:root:Route has non-matching ways: https://osm.org/relation/15902319
WARNING:root: Problem at: https://osm.org/way/162844956
WARNING:root:Route has non-matching ways: https://osm.org/relation/15902320
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/15904809
WARNING:root: Problem at: https://osm.org/way/25965888
WARNING:root:Route has non-matching ways: https://osm.org/relation/15906875
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/15907232
WARNING:root: Problem at: https://osm.org/way/1384285600
WARNING:root:Route has non-matching ways: https://osm.org/relation/15910211
WARNING:root: Problem at: https://osm.org/way/1172073588
WARNING:root:Route has non-matching ways: https://osm.org/relation/15910212
WARNING:root: Problem at: https://osm.org/way/24554421
WARNING:root:Route has non-matching ways: https://osm.org/relation/15913399
WARNING:root: Problem at: https://osm.org/way/761200759
WARNING:root:Route has non-matching ways: https://osm.org/relation/15913787
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/15913849
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/15913984
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/15916363
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/15916400
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/15958042
WARNING:root: Problem at: https://osm.org/way/1384285600
WARNING:root:Route has non-matching ways: https://osm.org/relation/15960814
WARNING:root: Problem at: https://osm.org/way/24554421
WARNING:root:Route has non-matching ways: https://osm.org/relation/15960813
WARNING:root: Problem at: https://osm.org/way/761078823
WARNING:root:Route has non-matching ways: https://osm.org/relation/15960875
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/15960943
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/15961340
WARNING:root: Problem at: https://osm.org/way/1172073588
WARNING:root:Route has non-matching ways: https://osm.org/relation/15961339
WARNING:root: Problem at: https://osm.org/way/24554421
WARNING:root:Route has non-matching ways: https://osm.org/relation/15962064
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/15973831
WARNING:root: Problem at: https://osm.org/way/755492732
WARNING:root:Route has non-matching ways: https://osm.org/relation/15973923
WARNING:root: Problem at: https://osm.org/way/548379917
WARNING:root:Route has non-matching ways: https://osm.org/relation/15973922
WARNING:root: Problem at: https://osm.org/way/1173268588
WARNING:root:Route has non-matching ways: https://osm.org/relation/15974266
WARNING:root: Problem at: https://osm.org/way/1177046813
WARNING:root:Route has non-matching ways: https://osm.org/relation/15974267
WARNING:root: Problem at: https://osm.org/way/548379917
WARNING:root:Route has non-matching ways: https://osm.org/relation/15974327
WARNING:root: Problem at: https://osm.org/way/1219400016
WARNING:root:Route has non-matching ways: https://osm.org/relation/15974326
WARNING:root: Problem at: https://osm.org/way/1219400016
WARNING:root:Route has non-matching ways: https://osm.org/relation/15992645
WARNING:root: Problem at: https://osm.org/way/1175980202
WARNING:root:Route has non-matching ways: https://osm.org/relation/15993649
WARNING:root: Problem at: https://osm.org/way/1184275944
WARNING:root:Route has non-matching ways: https://osm.org/relation/15999095
WARNING:root: Problem at: https://osm.org/way/761078838
WARNING:root:Route has non-matching ways: https://osm.org/relation/15999427
WARNING:root: Problem at: https://osm.org/way/548379917
WARNING:root:Route has non-matching ways: https://osm.org/relation/15999428
WARNING:root: Problem at: https://osm.org/way/175278691
WARNING:root:Route has non-matching ways: https://osm.org/relation/16003638
WARNING:root: Problem at: https://osm.org/way/422479024
WARNING:root:Route has non-matching ways: https://osm.org/relation/16003639
WARNING:root: Problem at: https://osm.org/way/548379917
WARNING:root:Route has non-matching ways: https://osm.org/relation/16004101
WARNING:root: Problem at: https://osm.org/way/1180218534
WARNING:root:Route has non-matching ways: https://osm.org/relation/16004102
WARNING:root: Problem at: https://osm.org/way/548379917
WARNING:root:Route has non-matching ways: https://osm.org/relation/16004168
WARNING:root: Problem at: https://osm.org/way/1181724757
WARNING:root:Route has non-matching ways: https://osm.org/relation/16004167
WARNING:root: Problem at: https://osm.org/way/1180218534
WARNING:root:Route has non-matching ways: https://osm.org/relation/16004299
WARNING:root: Problem at: https://osm.org/way/548379917
WARNING:root:Route has non-matching ways: https://osm.org/relation/16004298
WARNING:root: Problem at: https://osm.org/way/760259848
WARNING:root:Route has non-matching ways: https://osm.org/relation/16068005
WARNING:root: Problem at: https://osm.org/way/1175598879
WARNING:root:Route has non-matching ways: https://osm.org/relation/16068006
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/16068913
WARNING:root: Problem at: https://osm.org/way/162844956
WARNING:root:Route has non-matching ways: https://osm.org/relation/16068914
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/16069112
WARNING:root: Problem at: https://osm.org/way/761200759
WARNING:root:Route has non-matching ways: https://osm.org/relation/16069191
WARNING:root: Problem at: https://osm.org/way/761200759
WARNING:root:Route has non-matching ways: https://osm.org/relation/16070565
WARNING:root: Problem at: https://osm.org/way/761200759
WARNING:root:Route has non-matching ways: https://osm.org/relation/16071248
WARNING:root: Problem at: https://osm.org/way/755254707
WARNING:root:Route has non-matching ways: https://osm.org/relation/16071552
WARNING:root: Problem at: https://osm.org/way/1494030610
WARNING:root:Route has non-matching ways: https://osm.org/relation/16072016
WARNING:root: Problem at: https://osm.org/way/1175598879
WARNING:root:Route has non-matching ways: https://osm.org/relation/16072017
WARNING:root: Problem at: https://osm.org/way/22337881
WARNING:root:Route has non-matching ways: https://osm.org/relation/16072457
WARNING:root: Problem at: https://osm.org/way/755254707
WARNING:root:Route has non-matching ways: https://osm.org/relation/16072456
WARNING:root: Problem at: https://osm.org/way/1494030610
WARNING:root:Route has non-matching ways: https://osm.org/relation/16074206
WARNING:root: Problem at: https://osm.org/way/1219400016
WARNING:root:Route has non-matching ways: https://osm.org/relation/16074207
WARNING:root: Problem at: https://osm.org/way/1219400016
WARNING:root:Route has non-matching ways: https://osm.org/relation/16074675
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/16074674
WARNING:root: Problem at: https://osm.org/way/1175598879
WARNING:root:Route has non-matching ways: https://osm.org/relation/16074870
WARNING:root: Problem at: https://osm.org/way/755254707
WARNING:root:Route has non-matching ways: https://osm.org/relation/16074869
WARNING:root: Problem at: https://osm.org/way/1494030610
WARNING:root:Route has non-matching ways: https://osm.org/relation/16075028
WARNING:root: Problem at: https://osm.org/way/565777189
WARNING:root:Route has non-matching ways: https://osm.org/relation/16075029
WARNING:root: Problem at: https://osm.org/way/617828985
WARNING:root:Route has non-matching ways: https://osm.org/relation/15598066
WARNING:root: Problem at: https://osm.org/way/758229070
WARNING:root:Route has non-matching ways: https://osm.org/relation/15598067
WARNING:root: Problem at: https://osm.org/way/565777189
WARNING:root:Route has non-matching ways: https://osm.org/relation/10458622
WARNING:root: Problem at: https://osm.org/way/761200759
WARNING:root:Route has non-matching ways: https://osm.org/relation/15520257
WARNING:root: Problem at: https://osm.org/way/1190834947
WARNING:root:Route has non-matching ways: https://osm.org/relation/16112801
WARNING:root: Problem at: https://osm.org/way/1203329306
WARNING:root:Route has non-matching ways: https://osm.org/relation/15488233
WARNING:root: Problem at: https://osm.org/way/617828985
WARNING:root:Route has non-matching ways: https://osm.org/relation/16112802
WARNING:root: Problem at: https://osm.org/way/565777189
WARNING:root:Route has non-matching ways: https://osm.org/relation/15520470
WARNING:root: Problem at: https://osm.org/way/761200759
WARNING:root:Route has non-matching ways: https://osm.org/relation/15520318
WARNING:root: Problem at: https://osm.org/way/1175598879
WARNING:root:Route has non-matching ways: https://osm.org/relation/16239075
WARNING:root: Problem at: https://osm.org/way/761078838
WARNING:root:Route has non-matching ways: https://osm.org/relation/16239077
WARNING:root: Problem at: https://osm.org/way/1491779317
WARNING:root:Route has non-matching ways: https://osm.org/relation/16239078
WARNING:root: Problem at: https://osm.org/way/1491779320
WARNING:root:Route has non-matching ways: https://osm.org/relation/15484447
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/16290767
WARNING:root: Problem at: https://osm.org/way/1175598879
WARNING:root:Route has non-matching ways: https://osm.org/relation/16290766
WARNING:root: Problem at: https://osm.org/way/1494030610
WARNING:root:Route has non-matching ways: https://osm.org/relation/16290765
WARNING:root: Problem at: https://osm.org/way/755254707
WARNING:root:Route has non-matching ways: https://osm.org/relation/16290771
WARNING:root: Problem at: https://osm.org/way/755254707
WARNING:root:Route has non-matching ways: https://osm.org/relation/16290770
WARNING:root: Problem at: https://osm.org/way/95458396
WARNING:root:Route has non-matching ways: https://osm.org/relation/16761256
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/16761407
WARNING:root: Problem at: https://osm.org/way/749949702
WARNING:root:Route has non-matching ways: https://osm.org/relation/16763786
WARNING:root: Problem at: https://osm.org/way/51403688
WARNING:root:Route has non-matching ways: https://osm.org/relation/16763785
WARNING:root: Problem at: https://osm.org/way/1174274676
WARNING:root:Route has non-matching ways: https://osm.org/relation/16764496
WARNING:root: Problem at: https://osm.org/way/565777189
WARNING:root:Route has non-matching ways: https://osm.org/relation/16764497
WARNING:root: Problem at: https://osm.org/way/617828985
WARNING:root:Route has non-matching ways: https://osm.org/relation/16764668
WARNING:root: Problem at: https://osm.org/way/1491779317
WARNING:root:Route has non-matching ways: https://osm.org/relation/16764669
WARNING:root: Problem at: https://osm.org/way/1491779320
WARNING:root:Route has non-matching ways: https://osm.org/relation/16764848
WARNING:root: Problem at: https://osm.org/way/1491779320
WARNING:root:Route has non-matching ways: https://osm.org/relation/16764847
WARNING:root: Problem at: https://osm.org/way/1491779317
WARNING:root:Route has non-matching ways: https://osm.org/relation/16765469
WARNING:root: Problem at: https://osm.org/way/749949702
WARNING:root:Route has non-matching ways: https://osm.org/relation/16765721
WARNING:root: Problem at: https://osm.org/way/1491779317
WARNING:root:Route has non-matching ways: https://osm.org/relation/16793878
WARNING:root: Problem at: https://osm.org/way/1175598879
WARNING:root:Route has non-matching ways: https://osm.org/relation/16794102
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/16794333
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/16794579
WARNING:root: Problem at: https://osm.org/way/1175598879
WARNING:root:Route has non-matching ways: https://osm.org/relation/16794647
WARNING:root: Problem at: https://osm.org/way/1491779317
WARNING:root:Route has non-matching ways: https://osm.org/relation/16794646
WARNING:root: Problem at: https://osm.org/way/1491779320
WARNING:root:Route has non-matching ways: https://osm.org/relation/16795335
WARNING:root: Problem at: https://osm.org/way/755254707
WARNING:root:Route has non-matching ways: https://osm.org/relation/16795334
WARNING:root: Problem at: https://osm.org/way/1494030610
WARNING:root:Route has non-matching ways: https://osm.org/relation/16799387
WARNING:root: Problem at: https://osm.org/way/1175598879
WARNING:root:Route has non-matching ways: https://osm.org/relation/16799949
WARNING:root: Problem at: https://osm.org/way/1175980202
WARNING:root:Route has non-matching ways: https://osm.org/relation/16799948
WARNING:root: Problem at: https://osm.org/way/1240096081
WARNING:root:Route has non-matching ways: https://osm.org/relation/16800758
WARNING:root: Problem at: https://osm.org/way/1479815702
WARNING:root:Route has non-matching ways: https://osm.org/relation/16800757
WARNING:root: Problem at: https://osm.org/way/762753538
WARNING:root:Route has non-matching ways: https://osm.org/relation/16803474
WARNING:root: Problem at: https://osm.org/way/1479815702
WARNING:root:Route has non-matching ways: https://osm.org/relation/16803473
WARNING:root: Problem at: https://osm.org/way/762753538
WARNING:root:Route has non-matching ways: https://osm.org/relation/16804051
WARNING:root: Problem at: https://osm.org/way/757910202
WARNING:root:Route has non-matching ways: https://osm.org/relation/16804747
WARNING:root: Problem at: https://osm.org/way/617828985
WARNING:root:Route has non-matching ways: https://osm.org/relation/16804746
WARNING:root: Problem at: https://osm.org/way/565777189
WARNING:root:Route has non-matching ways: https://osm.org/relation/16807586
WARNING:root: Problem at: https://osm.org/way/1184275944
WARNING:root:Route has non-matching ways: https://osm.org/relation/16813411
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/16813873
WARNING:root: Problem at: https://osm.org/way/1175598879
WARNING:root:Route has non-matching ways: https://osm.org/relation/16815232
WARNING:root: Problem at: https://osm.org/way/755254707
WARNING:root:Route has non-matching ways: https://osm.org/relation/16815231
WARNING:root: Problem at: https://osm.org/way/1494030610
WARNING:root:Route has non-matching ways: https://osm.org/relation/16815657
WARNING:root: Problem at: https://osm.org/way/761200759
WARNING:root:Route has non-matching ways: https://osm.org/relation/16817598
WARNING:root: Problem at: https://osm.org/way/1175980202
WARNING:root:Route has non-matching ways: https://osm.org/relation/16817597
WARNING:root: Problem at: https://osm.org/way/1240096081
WARNING:root:Route has non-matching ways: https://osm.org/relation/16817832
WARNING:root: Problem at: https://osm.org/way/1175598879
WARNING:root:Route has non-matching ways: https://osm.org/relation/16817833
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/16817863
WARNING:root: Problem at: https://osm.org/way/1175598879
WARNING:root:Route has non-matching ways: https://osm.org/relation/16819130
WARNING:root: Problem at: https://osm.org/way/24554421
WARNING:root:Route has non-matching ways: https://osm.org/relation/16821503
WARNING:root: Problem at: https://osm.org/way/1219400016
WARNING:root:Route has non-matching ways: https://osm.org/relation/16821696
WARNING:root: Problem at: https://osm.org/way/24554421
WARNING:root:Route has non-matching ways: https://osm.org/relation/16822287
WARNING:root: Problem at: https://osm.org/way/1219400016
WARNING:root:Route has non-matching ways: https://osm.org/relation/16822500
WARNING:root: Problem at: https://osm.org/way/1172073588
WARNING:root:Route has non-matching ways: https://osm.org/relation/16822705
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/16822704
WARNING:root: Problem at: https://osm.org/way/755326323
WARNING:root:Route has non-matching ways: https://osm.org/relation/17008889
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/17033335
WARNING:root: Problem at: https://osm.org/way/1172073588
WARNING:root:Route has non-matching ways: https://osm.org/relation/17047998
WARNING:root: Problem at: https://osm.org/way/1184275945
WARNING:root:Route has non-matching ways: https://osm.org/relation/17047997
WARNING:root: Problem at: https://osm.org/way/1175598879
WARNING:root:Route has non-matching ways: https://osm.org/relation/17071139
WARNING:root: Problem at: https://osm.org/way/755492723
WARNING:root:Route has non-matching ways: https://osm.org/relation/17332225
WARNING:root: Problem at: https://osm.org/way/761078823
WARNING:root:Route has non-matching ways: https://osm.org/relation/17332224
WARNING:root: Problem at: https://osm.org/way/24554421
WARNING:root:Route has non-matching ways: https://osm.org/relation/17332415
WARNING:root: Problem at: https://osm.org/way/1175598879
WARNING:root:RouteVariant without 'ref': 20389821
WARNING:root:Itinerary ID doesn't match line ID. Please fix in OSM.
WARNING:root:https://osm.org/relation/20389825
WARNING:root:RouteVariant without 'ref': 20389870
WARNING:root:Itinerary ID doesn't match line ID. Please fix in OSM.
WARNING:root:https://osm.org/relation/20389877
WARNING:root:Route (variant) without route_master
WARNING:root: https://osm.org/relation/17065220
WARNING:root: Please fix in OpenStreetMap
WARNING:root:Route master relation without a route_master tag: https://osm.org/relation/17065220
WARNING:root:Route (variant) without route_master
WARNING:root: https://osm.org/relation/17065221
WARNING:root: Please fix in OpenStreetMap
WARNING:root:Route has non-matching ways: https://osm.org/relation/17065221
WARNING:root: Problem at: https://osm.org/way/761200759
WARNING:root:Route with existing route_id (ref)
WARNING:root: https://osm.org/relation/17065221
WARNING:root: Skipped. Please fix in OpenStreetMap
WARNING:root:Route (variant) without route_master
WARNING:root: https://osm.org/relation/20406755
WARNING:root: Please fix in OpenStreetMap
WARNING:root:Route master relation without a route_master tag: https://osm.org/relation/20406755
WARNING:root:Route (variant) without route_master
WARNING:root: https://osm.org/relation/20406756
WARNING:root: Please fix in OpenStreetMap
WARNING:root:Route with existing route_id (ref)
WARNING:root: https://osm.org/relation/20406756
WARNING:root: Skipped. Please fix in OpenStreetMap
WARNING:root:Route (variant) without route_master
WARNING:root: https://osm.org/relation/20406757
WARNING:root: Please fix in OpenStreetMap
WARNING:root:Route master relation without a route_master tag: https://osm.org/relation/20406757
WARNING:root:Route (variant) without route_master
WARNING:root: https://osm.org/relation/20406758
WARNING:root: Please fix in OpenStreetMap
WARNING:root:Route with existing route_id (ref)
WARNING:root: https://osm.org/relation/20406758
WARNING:root: Skipped. Please fix in OpenStreetMap
WARNING:root:Route (variant) without route_master
WARNING:root: https://osm.org/relation/20406759
WARNING:root: Please fix in OpenStreetMap
WARNING:root:Route master relation without a route_master tag: https://osm.org/relation/20406759
WARNING:root:Route (variant) without route_master
WARNING:root: https://osm.org/relation/20406760
WARNING:root: Please fix in OpenStreetMap
WARNING:root:Route with existing route_id (ref)
WARNING:root: https://osm.org/relation/20406760
WARNING:root: Skipped. Please fix in OpenStreetMap
INFO:root:Query and build fresh data for stops
INFO:root:
[timeout:600]
;
(
/* Obtain route variants based on tags and bounding box */
relation['route' ~ '^bus$|^light_rail$|^share_taxi$'](8.8,38.61,9.13,38.96);
/* Query for relation elements with role platform */
node(r:"platform")->.nodes;
way(r:"platform");
node(w);
/* Select all result sets */
( .nodes;._; );
/* Return tags for elements */
);out body;
/* Select stop area relations */
foreach.nodes(
rel(bn:"platform")["public_transport"="stop_area"];
out body;
);
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/5732559685
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/5732559686
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/5732559687
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/5732559688
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/5732559689
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/5732559690
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/5732559691
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/5732559692
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/5732560532
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/5732560533
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/5732560534
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/5732560535
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088067610
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088067611
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088067612
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088067613
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088126800
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088126801
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088126802
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088126803
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088126804
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088126805
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088126806
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088126807
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156288
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156289
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156290
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156291
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156292
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156293
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156294
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156295
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156296
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156297
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156298
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156299
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156300
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156301
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156302
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156303
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156304
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156305
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156313
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156314
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156315
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156316
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156317
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156318
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156319
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156320
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156321
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088156322
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088196479
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088196480
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088196481
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088196482
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088196483
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088196484
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088243585
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088243586
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088243591
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088243592
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088243593
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088243594
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088243595
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088243596
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088243597
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088243598
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088243599
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088243600
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088243601
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088243602
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088243603
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088243604
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088243605
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088243606
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088243607
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088243608
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088243609
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088243610
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088243611
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088243612
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088243613
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7088243614
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7092990139
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7092990140
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7092990141
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7092990142
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7092990143
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7092990144
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7092990145
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7092990146
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023242
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023243
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023244
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023245
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023246
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023247
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023248
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023249
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023250
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023251
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023252
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023253
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023254
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023255
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023256
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023257
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023258
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023259
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023260
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023261
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023262
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023263
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023264
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023265
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023266
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023267
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023268
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023269
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023270
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023271
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023272
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023273
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023274
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023275
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023276
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023277
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023278
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023279
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023280
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023281
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023282
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023283
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093023284
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093034085
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093034086
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093034087
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093034088
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093034089
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093034090
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093034091
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093034092
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093034093
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093081289
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093081290
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093081291
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093081292
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093081293
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093081294
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093081295
WARNING:root:Warning: Potential stop is invalid and has been ignored.
WARNING:root: Check tagging: https://osm.org/node/7093081296
WARNING:root:OSM stop area has only one platform and can't be used as a GTFS station:
WARNING:root: https://osm.org/relation/10550061
WARNING:root:OSM stop area has only one platform and can't be used as a GTFS station:
WARNING:root: https://osm.org/relation/10354868
WARNING:root:OSM stop area has only one platform and can't be used as a GTFS station:
WARNING:root: https://osm.org/relation/10354867
WARNING:root:OSM stop area has only one platform and can't be used as a GTFS station:
WARNING:root: https://osm.org/relation/10578291
WARNING:root:OSM stop area has only one platform and can't be used as a GTFS station:
WARNING:root: https://osm.org/relation/10354869
INFO:root:* Found alternative stop name: Arada - https://osm.org/node/6728583386
INFO:root:Agency creator: Default
INFO:root:Feed info creator: Default
INFO:root:Routes creator: et_addisababa
INFO:root:Stops creator: et_addisababa
INFO:root:Schedule creator: et_addisababa
INFO:root:Trips creator: et_addisababa
INFO:root:Added stop: C.M.C - https://osm.org/way/604046026
INFO:root:Added stop: C.M.C - https://osm.org/way/604046027
INFO:root:Added stop: Meri - https://osm.org/way/604046028
INFO:root:Added stop: Meri - https://osm.org/way/604046029
INFO:root:Added stop: Ayat - https://osm.org/way/604046052
INFO:root:Added stop: Ayat - https://osm.org/way/604046053
INFO:root:Added stop: St. Michael - https://osm.org/way/758915882
INFO:root:Added stop: St. Michael - https://osm.org/way/758915883
INFO:root:Added stop: Management Institute - https://osm.org/way/758919087
INFO:root:Added stop: Management Institute - https://osm.org/way/758919088
INFO:root:Added stop: Civil Service College - https://osm.org/way/758919089
INFO:root:Added stop: Civil Service College - https://osm.org/way/758919090
INFO:root:Added stop: Bambis - https://osm.org/way/758922739
INFO:root:Added stop: Bambis - https://osm.org/way/758922740
INFO:root:Added stop: St. Urael - https://osm.org/way/758922741
INFO:root:Added stop: Hayahulet 2 - https://osm.org/way/758922742
INFO:root:Added stop: Hayahulet 2 - https://osm.org/way/758922743
INFO:root:Added stop: ሃያ ሁለት 1 - https://osm.org/way/758922744
INFO:root:Added stop: ሃያ ሁለት 1 - https://osm.org/way/758922745
INFO:root:Added stop: Lem Hotel - https://osm.org/way/758922746
INFO:root:Added stop: Lem Hotel - https://osm.org/way/758922747
INFO:root:Added stop: Megenagna - https://osm.org/way/758922751
INFO:root:Added stop: Gurd Sholla 2 - https://osm.org/way/758922752
INFO:root:Added stop: Gurd Sholla 2 - https://osm.org/way/758922753
INFO:root:Added stop: Gurd Sholla 1 - https://osm.org/way/758922754
INFO:root:Added stop: Gurd Sholla 1 - https://osm.org/way/758922755
INFO:root:Added stop: Tor Hailoch - https://osm.org/way/758926923
INFO:root:Added stop: Tor Hailoch - https://osm.org/way/758926924
INFO:root:Added stop: Cocacola - https://osm.org/way/758926925
INFO:root:Added stop: Cocacola - https://osm.org/way/758926926
INFO:root:Added stop: St. Lideta - https://osm.org/way/758926927
INFO:root:Added stop: St. Lideta - https://osm.org/way/758926928
INFO:root:Added stop: Tegbared - https://osm.org/way/758926929
INFO:root:Added stop: Tegbared - https://osm.org/way/758926930
INFO:root:Added stop: Mexico - https://osm.org/way/758926931
INFO:root:Added stop: Mexico - https://osm.org/way/758926932
INFO:root:Added stop: Leghar - https://osm.org/way/758926933
INFO:root:Added stop: Leghar - https://osm.org/way/758926934
INFO:root:Added stop: Stadium - https://osm.org/way/758926935
INFO:root:Added stop: Stadium - https://osm.org/way/758926936
INFO:root:Added stop: St. Estifanos - https://osm.org/way/758926937
INFO:root:Added stop: St. Estifanos - https://osm.org/way/758926938
INFO:root:Added stop: Gojam Berenda - https://osm.org/way/759354435
INFO:root:Added stop: Gojam Berenda - https://osm.org/way/759354436
INFO:root:Added stop: Atikilt Tera - https://osm.org/way/759354437
INFO:root:Added stop: Atikilt Tera - https://osm.org/way/759354438
INFO:root:Added stop: Kality - https://osm.org/way/759359409
INFO:root:Added stop: Kality - https://osm.org/way/759359410
INFO:root:Added stop: Abo Junction - https://osm.org/way/759359411
INFO:root:Added stop: Abo Junction - https://osm.org/way/759359412
INFO:root:Added stop: Saris - https://osm.org/way/759359413
INFO:root:Added stop: Saris - https://osm.org/way/759359414
INFO:root:Added stop: Adey Abeba - https://osm.org/way/759359415
INFO:root:Added stop: Adey Abeba - https://osm.org/way/759359416
INFO:root:Added stop: Lancha - https://osm.org/way/759359417
INFO:root:Added stop: Lancha - https://osm.org/way/759359418
INFO:root:Added stop: Temenja Yazh - https://osm.org/way/759359419
INFO:root:Added stop: Temenja Yazh - https://osm.org/way/759359420
INFO:root:Added stop: Riche - https://osm.org/way/759359421
INFO:root:Added stop: Riche - https://osm.org/way/759359422
INFO:root:Added stop: Meshwalekya - https://osm.org/way/759359423
INFO:root:Added stop: Meshwalekya - https://osm.org/way/759359424
INFO:root:Added stop: Darmar - https://osm.org/way/759359425
INFO:root:Added stop: Darmar - https://osm.org/way/759359426
INFO:root:Added stop: Abnet - https://osm.org/way/759359427
INFO:root:Added stop: Abnet - https://osm.org/way/759359428
INFO:root:Added stop: Sebategna - https://osm.org/way/759359429
INFO:root:Added stop: Sebategna - https://osm.org/way/759359430
INFO:root:Added stop: Autobus Tera - https://osm.org/way/759359431
INFO:root:Added stop: Autobus Tera - https://osm.org/way/759359432
INFO:root:Added stop: Nifas Silk 2 - https://osm.org/way/759365358
INFO:root:Added stop: Nifas Silk 2 - https://osm.org/way/759365359
INFO:root:Added stop: Nifas Silk 1 - https://osm.org/way/759365360
INFO:root:Added stop: Nifas Silk 1 - https://osm.org/way/759365361
INFO:root:Added stop: Beherawi Theatre - https://osm.org/node/847244293
INFO:root:Added stop: Black Lion - https://osm.org/node/847244423
INFO:root:Added stop: 4 Kilo - https://osm.org/node/4832025024
INFO:root:Added stop: Lamberet Terminal (Bus) - https://osm.org/node/4884374622
INFO:root:Added stop: Sar Bet (Roundabout) - https://osm.org/node/5248250425
INFO:root:Added stop: Ambassador - https://osm.org/node/5330678521
INFO:root:Added stop: Stadium - https://osm.org/node/5736089088
INFO:root:Added stop: Mebrathail - https://osm.org/node/6251054285
INFO:root:Added stop: Asko - https://osm.org/node/6307600909
INFO:root:Added stop: Bole Printing Press - https://osm.org/node/6373574986
INFO:root:Added stop: Arada - https://osm.org/node/6728583386
INFO:root:Added stop: Kebede Wessene Rd. - https://osm.org/node/6798927886
INFO:root:Added stop: Mexico - https://osm.org/node/6814022390
INFO:root:Added stop: Mebrat Condominium - https://osm.org/node/6967142984
INFO:root:Added stop: Mebrat - https://osm.org/node/6967165728
INFO:root:Added stop: Gofa Gebriel - https://osm.org/node/6967179322
INFO:root:Added stop: Kera (Gofa Road) - https://osm.org/node/6967179323
INFO:root:Added stop: Tewodros Square - https://osm.org/node/6967225474
INFO:root:Added stop: German Square - https://osm.org/node/6967234177
INFO:root:Added stop: Friendship Building - https://osm.org/node/6967281153
INFO:root:Added stop: Piassa (Downtown Cafe) - https://osm.org/node/6967281241
INFO:root:Added stop: Piassa Arada (2) - https://osm.org/node/6967281242
INFO:root:Added stop: Gojo - https://osm.org/node/6967318740
INFO:root:Added stop: Se'alite Mihret Church - https://osm.org/node/7009876556
INFO:root:Added stop: Megenagna Terminal - https://osm.org/node/7022361366
INFO:root:Added stop: Bole Millenium - https://osm.org/node/7022397409
INFO:root:Added stop: Bole Millenium - https://osm.org/node/7022397410
INFO:root:Added stop: Goro School - https://osm.org/node/7022397411
INFO:root:Added stop: Summit Condominiums - https://osm.org/node/7022397413
INFO:root:Added stop: Summit Condominiums - https://osm.org/node/7022397414
INFO:root:Added stop: Bole Arabsa - https://osm.org/node/7022397416
INFO:root:Added stop: Bole Arabsa - https://osm.org/node/7022397417
INFO:root:Added stop: Aba Kiros Roundabout - https://osm.org/node/7022397418
INFO:root:Added stop: Yeka Abado - https://osm.org/node/7022397420
INFO:root:Added stop: Yeka Abado - https://osm.org/node/7022397421
INFO:root:Added stop: Gurara - https://osm.org/node/7037142410
INFO:root:Added stop: Abuare Roundabout - https://osm.org/node/7037142414
INFO:root:Added stop: Abuare Roundabout - https://osm.org/node/7037142415
INFO:root:Added stop: Marathon Motor (Megenagna) - https://osm.org/node/7037142417
INFO:root:Added stop: Yeha - https://osm.org/node/7037142419
INFO:root:Added stop: Tena Tabya - https://osm.org/node/7037142420
INFO:root:Added stop: Biret Dildiy (Bono Wuha) - https://osm.org/node/7037142421
INFO:root:Added stop: Bret Dildy (Bono Wuha) - https://osm.org/node/7037142422
INFO:root:Added stop: Atlas - https://osm.org/node/7037142423
INFO:root:Added stop: Bole Medhanialem - https://osm.org/node/7037142424
INFO:root:Added stop: Bole Medhanialem - https://osm.org/node/7037142426
INFO:root:Added stop: 24 - https://osm.org/node/7037142427
INFO:root:Added stop: Dinberwa Hospital - https://osm.org/node/7037142428
INFO:root:Added stop: Kokebe Tsebah School - https://osm.org/node/7037142430
INFO:root:Added stop: Kokebe Tsebah School - https://osm.org/node/7037142431
INFO:root:Added stop: Belgium Embassy - https://osm.org/node/7037142433
INFO:root:Added stop: British Embassy - https://osm.org/node/7037142434
INFO:root:Added stop: British Embassy - https://osm.org/node/7037142435
INFO:root:Added stop: Abebe Sook - https://osm.org/node/7037142436
INFO:root:Added stop: Shola Gebeya - https://osm.org/node/7037142438
INFO:root:Added stop: Yeka Michael - https://osm.org/node/7037142439
INFO:root:Added stop: Megenagna - https://osm.org/node/7037142441
INFO:root:Added stop: Megenagna - https://osm.org/node/7037142442
INFO:root:Added stop: Derartu - https://osm.org/node/7037142443
INFO:root:Added stop: Gelan Condominium - https://osm.org/node/7037142444
INFO:root:Added stop: 08 Adarash - https://osm.org/node/7037142445
INFO:root:Added stop: Meshuwalekia Akaki - https://osm.org/node/7037142446
INFO:root:Added stop: Akaki Beretaberet - https://osm.org/node/7037142448
INFO:root:Added stop: G7 (Tulu Dimtu) - https://osm.org/node/7037142450
INFO:root:Added stop: Tulu Dimtu Unisa - https://osm.org/node/7037142454
INFO:root:Added stop: Tulu Dimtu - https://osm.org/node/7037142455
INFO:root:Added stop: Akaki Korkoro - https://osm.org/node/7037142456
INFO:root:Added stop: Tulu Dimtu (Taf Gas Station) - https://osm.org/node/7037142459
INFO:root:Added stop: Arsema - https://osm.org/node/7037142460
INFO:root:Added stop: Selam Sefer (Tapela Gar) - https://osm.org/node/7037142461
INFO:root:Added stop: Tulu Dimtu Adebabay - https://osm.org/node/7037142462
INFO:root:Added stop: Project 12 Akababi - https://osm.org/node/7037142464
INFO:root:Added stop: Mahiber Betoch - https://osm.org/node/7037142465
INFO:root:Added stop: Bole Dildiy - https://osm.org/node/7037142466
INFO:root:Added stop: Megenagna / Zefmesh - https://osm.org/node/7037142467
INFO:root:Added stop: Megenagna - https://osm.org/node/7037142469
INFO:root:Added stop: Megenagna - https://osm.org/node/7037142470
INFO:root:Added stop: Abysinia Cafe Area - https://osm.org/node/7037142471
INFO:root:Added stop: Abysinia Cafe Area - https://osm.org/node/7037142472
INFO:root:Added stop: Century Mall - https://osm.org/node/7037142474
INFO:root:Added stop: Gurd-shola - https://osm.org/node/7037142475
INFO:root:Added stop: Menaheria - https://osm.org/node/7037142476
INFO:root:Added stop: Menaheria - https://osm.org/node/7037142477
INFO:root:Added stop: Gerji Mebrat Haile - https://osm.org/node/7037142479
INFO:root:Added stop: Gerji Mebrat Haile - https://osm.org/node/7037142483
INFO:root:Added stop: Lamberet - https://osm.org/node/7037142484
INFO:root:Added stop: Lamberet Area - https://osm.org/node/7037183485
INFO:root:Added stop: Lamberet Area - https://osm.org/node/7037183486
INFO:root:Added stop: Lamberet Area - https://osm.org/node/7037183487
INFO:root:Added stop: Yerer Goro - https://osm.org/node/7037183490
INFO:root:Added stop: Yerer Goro - https://osm.org/node/7037183491
INFO:root:Added stop: Management Institute - https://osm.org/node/7037183493
INFO:root:Added stop: Sealite Mihret - https://osm.org/node/7037183494
INFO:root:Added stop: Civil Service College - https://osm.org/node/7037183495
INFO:root:Added stop: St. Michael - https://osm.org/node/7037183496
INFO:root:Added stop: St. Micheal Church - https://osm.org/node/7037183497
INFO:root:Added stop: Salite Mihret - https://osm.org/node/7037183498
INFO:root:Added stop: Hillside (Ethio-China Mebrathaile) - https://osm.org/node/7037183499
INFO:root:Added stop: Wessen Michael - https://osm.org/node/7037183501
INFO:root:Added stop: Hanna Mariam - https://osm.org/node/7037183502
INFO:root:Added stop: Hanna Mariam - https://osm.org/node/7037183503
INFO:root:Added stop: Wessen - https://osm.org/node/7037183504
INFO:root:Added stop: Wessen - https://osm.org/node/7037183505
INFO:root:Added stop: Wessen (Mariam) - https://osm.org/node/7037183507
INFO:root:Added stop: Kotebe Teachers College - https://osm.org/node/7037183508
INFO:root:Added stop: Yabem Hotel - https://osm.org/node/7037183509
INFO:root:Added stop: Kotebe Gebriel - https://osm.org/node/7037183510
INFO:root:Added stop: Yetebaberut - https://osm.org/node/7037183513
INFO:root:Added stop: Yetebaberut - https://osm.org/node/7037183515
INFO:root:Added stop: Meri - https://osm.org/node/7037183516
INFO:root:Added stop: Meri (Yetebaberut) - https://osm.org/node/7037183518
INFO:root:Added stop: Ayat - https://osm.org/node/7037183519
INFO:root:Added stop: Ayat Zone 2 - https://osm.org/node/7037183520