-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomm_wr.txt
1862 lines (1793 loc) · 232 KB
/
comm_wr.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,49.71921964, 14.49896031);
node[emergency=access_point](around:100,49.71921964, 14.49896031);node[highway=emergency_access_point](around:100,49.77523919, 14.65355717);
node[emergency=access_point](around:100,49.77523919, 14.65355717);node[highway=emergency_access_point](around:100,49.76691814, 14.62328508);
node[emergency=access_point](around:100,49.76691814, 14.62328508);node[highway=emergency_access_point](around:100,49.80510406, 14.686832);
node[emergency=access_point](around:100,49.80510406, 14.686832);node[highway=emergency_access_point](around:100,49.76138197, 14.69031611);
node[emergency=access_point](around:100,49.76138197, 14.69031611);node[highway=emergency_access_point](around:100,49.74868428, 14.43108836);
node[emergency=access_point](around:100,49.74868428, 14.43108836);node[highway=emergency_access_point](around:100,49.76803247, 14.51174292);
node[emergency=access_point](around:100,49.76803247, 14.51174292);node[highway=emergency_access_point](around:100,49.74397681, 14.54845661);
node[emergency=access_point](around:100,49.74397681, 14.54845661);node[highway=emergency_access_point](around:100,49.85249936, 14.80704169);
node[emergency=access_point](around:100,49.85249936, 14.80704169);node[highway=emergency_access_point](around:100,49.83443325, 14.75687036);
node[emergency=access_point](around:100,49.83443325, 14.75687036);node[highway=emergency_access_point](around:100,49.76510958, 14.94674633);
node[emergency=access_point](around:100,49.76510958, 14.94674633);node[highway=emergency_access_point](around:100,49.71175356, 14.82615753);
node[emergency=access_point](around:100,49.71175356, 14.82615753);node[highway=emergency_access_point](around:100,49.68094847, 14.82593625);
node[emergency=access_point](around:100,49.68094847, 14.82593625);node[highway=emergency_access_point](around:100,49.61185747, 15.00128867);
node[emergency=access_point](around:100,49.61185747, 15.00128867);node[highway=emergency_access_point](around:100,49.68033353, 15.05096);
node[emergency=access_point](around:100,49.68033353, 15.05096);node[highway=emergency_access_point](around:100,49.66791422, 15.07029767);
node[emergency=access_point](around:100,49.66791422, 15.07029767);node[highway=emergency_access_point](around:100,49.63172867, 15.14725392);
node[emergency=access_point](around:100,49.63172867, 15.14725392);node[highway=emergency_access_point](around:100,49.66969911, 14.69754642);
node[emergency=access_point](around:100,49.66969911, 14.69754642);node[highway=emergency_access_point](around:100,49.67593364, 14.75410258);
node[emergency=access_point](around:100,49.67593364, 14.75410258);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,49.62642222, 15.13111389);
node[emergency=access_point](around:100,49.62642222, 15.13111389);node[highway=emergency_access_point](around:100,49.62221389, 15.12628889);
node[emergency=access_point](around:100,49.62221389, 15.12628889);node[highway=emergency_access_point](around:100,49.58953889, 14.92523889);
node[emergency=access_point](around:100,49.58953889, 14.92523889);node[highway=emergency_access_point](around:100,49.65743056, 14.70025278);
node[emergency=access_point](around:100,49.65743056, 14.70025278);node[highway=emergency_access_point](around:100,49.97027778, 14.11666667);
node[emergency=access_point](around:100,49.97027778, 14.11666667);node[highway=emergency_access_point](around:100,50.04818153, 15.27643586);
node[emergency=access_point](around:100,50.04818153, 15.27643586);node[highway=emergency_access_point](around:100,50.03958192, 15.33592617);
node[emergency=access_point](around:100,50.03958192, 15.33592617);node[highway=emergency_access_point](around:100,49.90121836, 15.17628206);
node[emergency=access_point](around:100,49.90121836, 15.17628206);node[highway=emergency_access_point](around:100,49.84368192, 15.07295814);
node[emergency=access_point](around:100,49.84368192, 15.07295814);node[highway=emergency_access_point](around:100,49.83012486, 15.14424972);
node[emergency=access_point](around:100,49.83012486, 15.14424972);node[highway=emergency_access_point](around:100,49.86493439, 15.01501561);
node[emergency=access_point](around:100,49.86493439, 15.01501561);node[highway=emergency_access_point](around:100,49.86404908, 15.03729572);
node[emergency=access_point](around:100,49.86404908, 15.03729572);node[highway=emergency_access_point](around:100,49.84254167, 14.99937075);
node[emergency=access_point](around:100,49.84254167, 14.99937075);node[highway=emergency_access_point](around:100,49.82060194, 14.96849519);
node[emergency=access_point](around:100,49.82060194, 14.96849519);node[highway=emergency_access_point](around:100,49.78945464, 15.04002347);
node[emergency=access_point](around:100,49.78945464, 15.04002347);node[highway=emergency_access_point](around:100,49.77174369, 15.05423119);
node[emergency=access_point](around:100,49.77174369, 15.05423119);node[highway=emergency_access_point](around:100,49.77992097, 15.25235378);
node[emergency=access_point](around:100,49.77992097, 15.25235378);node[highway=emergency_access_point](around:100,49.77268539, 15.31692839);
node[emergency=access_point](around:100,49.77268539, 15.31692839);node[highway=emergency_access_point](around:100,49.83577136, 15.41674436);
node[emergency=access_point](around:100,49.83577136, 15.41674436);node[highway=emergency_access_point](around:100,49.84616272, 15.41303944);
node[emergency=access_point](around:100,49.84616272, 15.41303944);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,49.98177931, 15.33509508);
node[emergency=access_point](around:100,49.98177931, 15.33509508);node[highway=emergency_access_point](around:100,50.48284803, 14.58176414);
node[emergency=access_point](around:100,50.48284803, 14.58176414);node[highway=emergency_access_point](around:100,50.48516989, 14.50909819);
node[emergency=access_point](around:100,50.48516989, 14.50909819);node[highway=emergency_access_point](around:100,50.45052194, 14.49573261);
node[emergency=access_point](around:100,50.45052194, 14.49573261);node[highway=emergency_access_point](around:100,50.43677706, 14.52463897);
node[emergency=access_point](around:100,50.43677706, 14.52463897);node[highway=emergency_access_point](around:100,50.49593306, 14.53188358);
node[emergency=access_point](around:100,50.49593306, 14.53188358);node[highway=emergency_access_point](around:100,50.51092264, 14.56779825);
node[emergency=access_point](around:100,50.51092264, 14.56779825);node[highway=emergency_access_point](around:100,50.28338056, 14.68675556);
node[emergency=access_point](around:100,50.28338056, 14.68675556);node[highway=emergency_access_point](around:100,50.49921944, 14.73007222);
node[emergency=access_point](around:100,50.49921944, 14.73007222);node[highway=emergency_access_point](around:100,50.4895925, 14.77581778);
node[emergency=access_point](around:100,50.4895925, 14.77581778);node[highway=emergency_access_point](around:100,49.91059278, 18.56949206);
node[emergency=access_point](around:100,49.91059278, 18.56949206);node[highway=emergency_access_point](around:100,50.32338686, 15.09588125);
node[emergency=access_point](around:100,50.32338686, 15.09588125);node[highway=emergency_access_point](around:100,50.33012267, 15.13730781);
node[emergency=access_point](around:100,50.33012267, 15.13730781);node[highway=emergency_access_point](around:100,50.34066214, 15.17976297);
node[emergency=access_point](around:100,50.34066214, 15.17976297);node[highway=emergency_access_point](around:100,50.31675939, 15.18977633);
node[emergency=access_point](around:100,50.31675939, 15.18977633);node[highway=emergency_access_point](around:100,49.96645858, 14.71536778);
node[emergency=access_point](around:100,49.96645858, 14.71536778);node[highway=emergency_access_point](around:100,49.92264575, 14.79178983);
node[emergency=access_point](around:100,49.92264575, 14.79178983);node[highway=emergency_access_point](around:100,49.91223097, 14.76479083);
node[emergency=access_point](around:100,49.91223097, 14.76479083);node[highway=emergency_access_point](around:100,50.06949956, 17.4674815);
node[emergency=access_point](around:100,50.06949956, 17.4674815);node[highway=emergency_access_point](around:100,49.8453945, 14.20602114);
node[emergency=access_point](around:100,49.8453945, 14.20602114);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,49.63809294, 13.92905769);
node[emergency=access_point](around:100,49.63809294, 13.92905769);node[highway=emergency_access_point](around:100,49.72922603, 14.21682681);
node[emergency=access_point](around:100,49.72922603, 14.21682681);node[highway=emergency_access_point](around:100,49.709628, 14.24559383);
node[emergency=access_point](around:100,49.709628, 14.24559383);node[highway=emergency_access_point](around:100,49.66338586, 14.08039831);
node[emergency=access_point](around:100,49.66338586, 14.08039831);node[highway=emergency_access_point](around:100,49.67839192, 14.08561083);
node[emergency=access_point](around:100,49.67839192, 14.08561083);node[highway=emergency_access_point](around:100,49.68765783, 14.10376583);
node[emergency=access_point](around:100,49.68765783, 14.10376583);node[highway=emergency_access_point](around:100,49.68073175, 14.12622242);
node[emergency=access_point](around:100,49.68073175, 14.12622242);node[highway=emergency_access_point](around:100,49.68843131, 14.17043169);
node[emergency=access_point](around:100,49.68843131, 14.17043169);node[highway=emergency_access_point](around:100,49.73452008, 14.37604067);
node[emergency=access_point](around:100,49.73452008, 14.37604067);node[highway=emergency_access_point](around:100,49.58103603, 14.56838747);
node[emergency=access_point](around:100,49.58103603, 14.56838747);node[highway=emergency_access_point](around:100,50.06669781, 13.87467958);
node[emergency=access_point](around:100,50.06669781, 13.87467958);node[highway=emergency_access_point](around:100,50.04310164, 13.79308092);
node[emergency=access_point](around:100,50.04310164, 13.79308092);node[highway=emergency_access_point](around:100,50.04067836, 13.8614615);
node[emergency=access_point](around:100,50.04067836, 13.8614615);node[highway=emergency_access_point](around:100,50.03235875, 13.78884075);
node[emergency=access_point](around:100,50.03235875, 13.78884075);node[highway=emergency_access_point](around:100,50.0312015, 13.80455031);
node[emergency=access_point](around:100,50.0312015, 13.80455031);node[highway=emergency_access_point](around:100,50.0111915, 13.66071139);
node[emergency=access_point](around:100,50.0111915, 13.66071139);node[highway=emergency_access_point](around:100,49.98202761, 13.71382547);
node[emergency=access_point](around:100,49.98202761, 13.71382547);node[highway=emergency_access_point](around:100,49.97963967, 13.73848867);
node[emergency=access_point](around:100,49.97963967, 13.73848867);node[highway=emergency_access_point](around:100,50.00106233, 13.78497125);
node[emergency=access_point](around:100,50.00106233, 13.78497125);node[highway=emergency_access_point](around:100,49.96238733, 13.78636581);
node[emergency=access_point](around:100,49.96238733, 13.78636581);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,50.01440425, 13.74775931);
node[emergency=access_point](around:100,50.01440425, 13.74775931);node[highway=emergency_access_point](around:100,49.98880647, 13.67369622);
node[emergency=access_point](around:100,49.98880647, 13.67369622);node[highway=emergency_access_point](around:100,49.98381575, 13.83270708);
node[emergency=access_point](around:100,49.98381575, 13.83270708);node[highway=emergency_access_point](around:100,50.0111945, 13.90937947);
node[emergency=access_point](around:100,50.0111945, 13.90937947);node[highway=emergency_access_point](around:100,50.00614322, 13.93367475);
node[emergency=access_point](around:100,50.00614322, 13.93367475);node[highway=emergency_access_point](around:100,50.02547142, 13.95429197);
node[emergency=access_point](around:100,50.02547142, 13.95429197);node[highway=emergency_access_point](around:100,50.04125711, 13.42601781);
node[emergency=access_point](around:100,50.04125711, 13.42601781);node[highway=emergency_access_point](around:100,50.03434197, 13.41279783);
node[emergency=access_point](around:100,50.03434197, 13.41279783);node[highway=emergency_access_point](around:100,50.05494919, 13.51789658);
node[emergency=access_point](around:100,50.05494919, 13.51789658);node[highway=emergency_access_point](around:100,50.00234239, 13.66832933);
node[emergency=access_point](around:100,50.00234239, 13.66832933);node[highway=emergency_access_point](around:100,49.52604386, 18.77112747);
node[emergency=access_point](around:100,49.52604386, 18.77112747);node[highway=emergency_access_point](around:100,49.53517419, 18.62159775);
node[emergency=access_point](around:100,49.53517419, 18.62159775);node[highway=emergency_access_point](around:100,49.56469756, 18.65306158);
node[emergency=access_point](around:100,49.56469756, 18.65306158);node[highway=emergency_access_point](around:100,49.57348372, 18.64327969);
node[emergency=access_point](around:100,49.57348372, 18.64327969);node[highway=emergency_access_point](around:100,49.59471389, 18.81628822);
node[emergency=access_point](around:100,49.59471389, 18.81628822);node[highway=emergency_access_point](around:100,49.62153117, 18.62612392);
node[emergency=access_point](around:100,49.62153117, 18.62612392);node[highway=emergency_access_point](around:100,49.67561478, 18.79281917);
node[emergency=access_point](around:100,49.67561478, 18.79281917);node[highway=emergency_access_point](around:100,49.61521636, 18.80767331);
node[emergency=access_point](around:100,49.61521636, 18.80767331);node[highway=emergency_access_point](around:100,49.64269078, 18.67828803);
node[emergency=access_point](around:100,49.64269078, 18.67828803);node[highway=emergency_access_point](around:100,49.52520042, 18.70948964);
node[emergency=access_point](around:100,49.52520042, 18.70948964);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,49.55206672, 18.63369464);
node[emergency=access_point](around:100,49.55206672, 18.63369464);node[highway=emergency_access_point](around:100,49.54488128, 18.78578783);
node[emergency=access_point](around:100,49.54488128, 18.78578783);node[highway=emergency_access_point](around:100,49.51883669, 18.64800222);
node[emergency=access_point](around:100,49.51883669, 18.64800222);node[highway=emergency_access_point](around:100,49.52117539, 18.83183836);
node[emergency=access_point](around:100,49.52117539, 18.83183836);node[highway=emergency_access_point](around:100,49.82206031, 17.58019086);
node[emergency=access_point](around:100,49.82206031, 17.58019086);node[highway=emergency_access_point](around:100,49.88332639, 17.74558278);
node[emergency=access_point](around:100,49.88332639, 17.74558278);node[highway=emergency_access_point](around:100,49.87176842, 17.69639867);
node[emergency=access_point](around:100,49.87176842, 17.69639867);node[highway=emergency_access_point](around:100,49.8715535, 17.75988203);
node[emergency=access_point](around:100,49.8715535, 17.75988203);node[highway=emergency_access_point](around:100,49.99665717, 17.71470139);
node[emergency=access_point](around:100,49.99665717, 17.71470139);node[highway=emergency_access_point](around:100,49.95410364, 17.71258536);
node[emergency=access_point](around:100,49.95410364, 17.71258536);node[highway=emergency_access_point](around:100,49.93756269, 17.75177886);
node[emergency=access_point](around:100,49.93756269, 17.75177886);node[highway=emergency_access_point](around:100,49.76361681, 17.68379558);
node[emergency=access_point](around:100,49.76361681, 17.68379558);node[highway=emergency_access_point](around:100,49.79754833, 17.70219086);
node[emergency=access_point](around:100,49.79754833, 17.70219086);node[highway=emergency_access_point](around:100,49.77764119, 17.54242978);
node[emergency=access_point](around:100,49.77764119, 17.54242978);node[highway=emergency_access_point](around:100,49.737554, 17.85766594);
node[emergency=access_point](around:100,49.737554, 17.85766594);node[highway=emergency_access_point](around:100,49.51409953, 18.02025044);
node[emergency=access_point](around:100,49.51409953, 18.02025044);node[highway=emergency_access_point](around:100,49.60359614, 17.86488233);
node[emergency=access_point](around:100,49.60359614, 17.86488233);node[highway=emergency_access_point](around:100,49.84533189, 17.69484089);
node[emergency=access_point](around:100,49.84533189, 17.69484089);node[highway=emergency_access_point](around:100,49.65449078, 18.16844064);
node[emergency=access_point](around:100,49.65449078, 18.16844064);node[highway=emergency_access_point](around:100,49.73680556, 17.69977778);
node[emergency=access_point](around:100,49.73680556, 17.69977778);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,49.72391097, 17.70121289);
node[emergency=access_point](around:100,49.72391097, 17.70121289);node[highway=emergency_access_point](around:100,49.84224561, 17.59653253);
node[emergency=access_point](around:100,49.84224561, 17.59653253);node[highway=emergency_access_point](around:100,49.82747353, 17.73185194);
node[emergency=access_point](around:100,49.82747353, 17.73185194);node[highway=emergency_access_point](around:100,49.70824783, 17.78220517);
node[emergency=access_point](around:100,49.70824783, 17.78220517);node[highway=emergency_access_point](around:100,49.85063344, 17.40838872);
node[emergency=access_point](around:100,49.85063344, 17.40838872);node[highway=emergency_access_point](around:100,49.87310289, 17.59855989);
node[emergency=access_point](around:100,49.87310289, 17.59855989);node[highway=emergency_access_point](around:100,49.98280481, 17.39231236);
node[emergency=access_point](around:100,49.98280481, 17.39231236);node[highway=emergency_access_point](around:100,49.93454817, 17.58619456);
node[emergency=access_point](around:100,49.93454817, 17.58619456);node[highway=emergency_access_point](around:100,49.94709069, 17.50999278);
node[emergency=access_point](around:100,49.94709069, 17.50999278);node[highway=emergency_access_point](around:100,50.08786444, 17.45271128);
node[emergency=access_point](around:100,50.08786444, 17.45271128);node[highway=emergency_access_point](around:100,49.96966042, 17.56777478);
node[emergency=access_point](around:100,49.96966042, 17.56777478);node[highway=emergency_access_point](around:100,49.89420539, 17.47352653);
node[emergency=access_point](around:100,49.89420539, 17.47352653);node[highway=emergency_access_point](around:100,50.05919917, 17.6061605);
node[emergency=access_point](around:100,50.05919917, 17.6061605);node[highway=emergency_access_point](around:100,50.01553075, 17.52326022);
node[emergency=access_point](around:100,50.01553075, 17.52326022);node[highway=emergency_access_point](around:100,49.98573386, 17.64072156);
node[emergency=access_point](around:100,49.98573386, 17.64072156);node[highway=emergency_access_point](around:100,49.97432283, 17.55168864);
node[emergency=access_point](around:100,49.97432283, 17.55168864);node[highway=emergency_access_point](around:100,49.90469886, 17.43475733);
node[emergency=access_point](around:100,49.90469886, 17.43475733);node[highway=emergency_access_point](around:100,50.04446839, 17.50594178);
node[emergency=access_point](around:100,50.04446839, 17.50594178);node[highway=emergency_access_point](around:100,49.83330167, 17.81369956);
node[emergency=access_point](around:100,49.83330167, 17.81369956);node[highway=emergency_access_point](around:100,49.54306044, 18.67548325);
node[emergency=access_point](around:100,49.54306044, 18.67548325);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,49.57007769, 18.134765);
node[emergency=access_point](around:100,49.57007769, 18.134765);node[highway=emergency_access_point](around:100,50.18724061, 17.637414);
node[emergency=access_point](around:100,50.18724061, 17.637414);node[highway=emergency_access_point](around:100,50.21168858, 17.65081375);
node[emergency=access_point](around:100,50.21168858, 17.65081375);node[highway=emergency_access_point](around:100,49.81957472, 18.06390847);
node[emergency=access_point](around:100,49.81957472, 18.06390847);node[highway=emergency_access_point](around:100,50.208026, 17.47175461);
node[emergency=access_point](around:100,50.208026, 17.47175461);node[highway=emergency_access_point](around:100,50.26509578, 17.47299947);
node[emergency=access_point](around:100,50.26509578, 17.47299947);node[highway=emergency_access_point](around:100,50.19197797, 17.53138181);
node[emergency=access_point](around:100,50.19197797, 17.53138181);node[highway=emergency_access_point](around:100,49.75179683, 18.39165497);
node[emergency=access_point](around:100,49.75179683, 18.39165497);node[highway=emergency_access_point](around:100,49.74411283, 18.35453811);
node[emergency=access_point](around:100,49.74411283, 18.35453811);node[highway=emergency_access_point](around:100,49.94958033, 17.64426342);
node[emergency=access_point](around:100,49.94958033, 17.64426342);node[highway=emergency_access_point](around:100,49.91850328, 17.66200639);
node[emergency=access_point](around:100,49.91850328, 17.66200639);node[highway=emergency_access_point](around:100,49.89212919, 17.59184367);
node[emergency=access_point](around:100,49.89212919, 17.59184367);node[highway=emergency_access_point](around:100,50.23415328, 17.58081511);
node[emergency=access_point](around:100,50.23415328, 17.58081511);node[highway=emergency_access_point](around:100,50.15595681, 17.55605464);
node[emergency=access_point](around:100,50.15595681, 17.55605464);node[highway=emergency_access_point](around:100,50.21820931, 17.55176644);
node[emergency=access_point](around:100,50.21820931, 17.55176644);node[highway=emergency_access_point](around:100,49.99614172, 17.26498808);
node[emergency=access_point](around:100,49.99614172, 17.26498808);node[highway=emergency_access_point](around:100,49.872511, 17.29020617);
node[emergency=access_point](around:100,49.872511, 17.29020617);node[highway=emergency_access_point](around:100,49.46102419, 18.48720906);
node[emergency=access_point](around:100,49.46102419, 18.48720906);node[highway=emergency_access_point](around:100,49.52477603, 18.13967875);
node[emergency=access_point](around:100,49.52477603, 18.13967875);node[highway=emergency_access_point](around:100,49.64639531, 17.82168364);
node[emergency=access_point](around:100,49.64639531, 17.82168364);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,49.70573578, 17.82416719);
node[emergency=access_point](around:100,49.70573578, 17.82416719);node[highway=emergency_access_point](around:100,49.75413872, 17.90182403);
node[emergency=access_point](around:100,49.75413872, 17.90182403);node[highway=emergency_access_point](around:100,49.97684858, 17.18657192);
node[emergency=access_point](around:100,49.97684858, 17.18657192);node[highway=emergency_access_point](around:100,50.0230565, 17.24176769);
node[emergency=access_point](around:100,50.0230565, 17.24176769);node[highway=emergency_access_point](around:100,50.04821444, 17.31512169);
node[emergency=access_point](around:100,50.04821444, 17.31512169);node[highway=emergency_access_point](around:100,50.05265647, 17.30235019);
node[emergency=access_point](around:100,50.05265647, 17.30235019);node[highway=emergency_access_point](around:100,50.05016533, 17.25040861);
node[emergency=access_point](around:100,50.05016533, 17.25040861);node[highway=emergency_access_point](around:100,49.61322489, 18.66612069);
node[emergency=access_point](around:100,49.61322489, 18.66612069);node[highway=emergency_access_point](around:100,50.07700333, 17.57145636);
node[emergency=access_point](around:100,50.07700333, 17.57145636);node[highway=emergency_access_point](around:100,49.86026536, 18.57802244);
node[emergency=access_point](around:100,49.86026536, 18.57802244);node[highway=emergency_access_point](around:100,50.09938211, 17.58412619);
node[emergency=access_point](around:100,50.09938211, 17.58412619);node[highway=emergency_access_point](around:100,50.13167219, 17.58175986);
node[emergency=access_point](around:100,50.13167219, 17.58175986);node[highway=emergency_access_point](around:100,50.16469067, 17.40548189);
node[emergency=access_point](around:100,50.16469067, 17.40548189);node[highway=emergency_access_point](around:100,50.22890967, 17.51943158);
node[emergency=access_point](around:100,50.22890967, 17.51943158);node[highway=emergency_access_point](around:100,50.09301419, 17.60146928);
node[emergency=access_point](around:100,50.09301419, 17.60146928);node[highway=emergency_access_point](around:100,50.17053578, 17.53659494);
node[emergency=access_point](around:100,50.17053578, 17.53659494);node[highway=emergency_access_point](around:100,50.17736961, 17.43219253);
node[emergency=access_point](around:100,50.17736961, 17.43219253);node[highway=emergency_access_point](around:100,50.19843242, 17.45828094);
node[emergency=access_point](around:100,50.19843242, 17.45828094);node[highway=emergency_access_point](around:100,50.06222319, 17.71334792);
node[emergency=access_point](around:100,50.06222319, 17.71334792);node[highway=emergency_access_point](around:100,50.07853547, 17.62645936);
node[emergency=access_point](around:100,50.07853547, 17.62645936);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,50.09965975, 17.48113175);
node[emergency=access_point](around:100,50.09965975, 17.48113175);node[highway=emergency_access_point](around:100,50.15572775, 17.4308755);
node[emergency=access_point](around:100,50.15572775, 17.4308755);node[highway=emergency_access_point](around:100,50.03381694, 17.68863272);
node[emergency=access_point](around:100,50.03381694, 17.68863272);node[highway=emergency_access_point](around:100,49.99069736, 17.25437953);
node[emergency=access_point](around:100,49.99069736, 17.25437953);node[highway=emergency_access_point](around:100,50.04534494, 17.23893006);
node[emergency=access_point](around:100,50.04534494, 17.23893006);node[highway=emergency_access_point](around:100,49.98841367, 17.19510736);
node[emergency=access_point](around:100,49.98841367, 17.19510736);node[highway=emergency_access_point](around:100,49.86919956, 17.32238597);
node[emergency=access_point](around:100,49.86919956, 17.32238597);node[highway=emergency_access_point](around:100,50.0063145, 17.25934519);
node[emergency=access_point](around:100,50.0063145, 17.25934519);node[highway=emergency_access_point](around:100,49.88067933, 17.29024581);
node[emergency=access_point](around:100,49.88067933, 17.29024581);node[highway=emergency_access_point](around:100,49.90998239, 17.25968272);
node[emergency=access_point](around:100,49.90998239, 17.25968272);node[highway=emergency_access_point](around:100,49.85377969, 17.20968872);
node[emergency=access_point](around:100,49.85377969, 17.20968872);node[highway=emergency_access_point](around:100,50.11158344, 17.55404697);
node[emergency=access_point](around:100,50.11158344, 17.55404697);node[highway=emergency_access_point](around:100,50.04111769, 17.70406144);
node[emergency=access_point](around:100,50.04111769, 17.70406144);node[highway=emergency_access_point](around:100,50.15815506, 17.39983661);
node[emergency=access_point](around:100,50.15815506, 17.39983661);node[highway=emergency_access_point](around:100,50.19311689, 17.44475325);
node[emergency=access_point](around:100,50.19311689, 17.44475325);node[highway=emergency_access_point](around:100,50.22395347, 17.45466364);
node[emergency=access_point](around:100,50.22395347, 17.45466364);node[highway=emergency_access_point](around:100,49.83952528, 17.231988);
node[emergency=access_point](around:100,49.83952528, 17.231988);node[highway=emergency_access_point](around:100,49.89790092, 17.26510164);
node[emergency=access_point](around:100,49.89790092, 17.26510164);node[highway=emergency_access_point](around:100,50.04717206, 17.26625794);
node[emergency=access_point](around:100,50.04717206, 17.26625794);node[highway=emergency_access_point](around:100,50.05277622, 17.70076703);
node[emergency=access_point](around:100,50.05277622, 17.70076703);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,50.12674022, 17.60383308);
node[emergency=access_point](around:100,50.12674022, 17.60383308);node[highway=emergency_access_point](around:100,50.19555089, 17.55612567);
node[emergency=access_point](around:100,50.19555089, 17.55612567);node[highway=emergency_access_point](around:100,49.86554331, 18.02308156);
node[emergency=access_point](around:100,49.86554331, 18.02308156);node[highway=emergency_access_point](around:100,49.87855878, 17.99723047);
node[emergency=access_point](around:100,49.87855878, 17.99723047);node[highway=emergency_access_point](around:100,49.82613581, 17.9983025);
node[emergency=access_point](around:100,49.82613581, 17.9983025);node[highway=emergency_access_point](around:100,49.81845747, 18.45246033);
node[emergency=access_point](around:100,49.81845747, 18.45246033);node[highway=emergency_access_point](around:100,49.839808, 18.37605522);
node[emergency=access_point](around:100,49.839808, 18.37605522);node[highway=emergency_access_point](around:100,49.91255594, 18.39872864);
node[emergency=access_point](around:100,49.91255594, 18.39872864);node[highway=emergency_access_point](around:100,49.79368075, 18.56897292);
node[emergency=access_point](around:100,49.79368075, 18.56897292);node[highway=emergency_access_point](around:100,49.67870394, 18.714231);
node[emergency=access_point](around:100,49.67870394, 18.714231);node[highway=emergency_access_point](around:100,49.67754353, 18.56109322);
node[emergency=access_point](around:100,49.67754353, 18.56109322);node[highway=emergency_access_point](around:100,49.87335142, 17.80235347);
node[emergency=access_point](around:100,49.87335142, 17.80235347);node[highway=emergency_access_point](around:100,49.75556519, 18.5595045);
node[emergency=access_point](around:100,49.75556519, 18.5595045);node[highway=emergency_access_point](around:100,49.87202478, 18.26806839);
node[emergency=access_point](around:100,49.87202478, 18.26806839);node[highway=emergency_access_point](around:100,50.1814455, 17.60326428);
node[emergency=access_point](around:100,50.1814455, 17.60326428);node[highway=emergency_access_point](around:100,49.73176244, 18.263691);
node[emergency=access_point](around:100,49.73176244, 18.263691);node[highway=emergency_access_point](around:100,49.88378111, 18.15922819);
node[emergency=access_point](around:100,49.88378111, 18.15922819);node[highway=emergency_access_point](around:100,49.56684056, 18.56293267);
node[emergency=access_point](around:100,49.56684056, 18.56293267);node[highway=emergency_access_point](around:100,49.58299169, 18.60523736);
node[emergency=access_point](around:100,49.58299169, 18.60523736);node[highway=emergency_access_point](around:100,49.54450244, 18.41956058);
node[emergency=access_point](around:100,49.54450244, 18.41956058);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,49.49391689, 18.47225761);
node[emergency=access_point](around:100,49.49391689, 18.47225761);node[highway=emergency_access_point](around:100,49.8688245, 18.22660275);
node[emergency=access_point](around:100,49.8688245, 18.22660275);node[highway=emergency_access_point](around:100,49.50397553, 18.44028578);
node[emergency=access_point](around:100,49.50397553, 18.44028578);node[highway=emergency_access_point](around:100,49.63190644, 18.59377347);
node[emergency=access_point](around:100,49.63190644, 18.59377347);node[highway=emergency_access_point](around:100,49.58738617, 18.51650486);
node[emergency=access_point](around:100,49.58738617, 18.51650486);node[highway=emergency_access_point](around:100,49.51593308, 18.54907658);
node[emergency=access_point](around:100,49.51593308, 18.54907658);node[highway=emergency_access_point](around:100,49.63870142, 18.27553775);
node[emergency=access_point](around:100,49.63870142, 18.27553775);node[highway=emergency_access_point](around:100,49.81139483, 18.40006969);
node[emergency=access_point](around:100,49.81139483, 18.40006969);node[highway=emergency_access_point](around:100,49.81543314, 18.04597486);
node[emergency=access_point](around:100,49.81543314, 18.04597486);node[highway=emergency_access_point](around:100,49.83110353, 16.96667442);
node[emergency=access_point](around:100,49.83110353, 16.96667442);node[highway=emergency_access_point](around:100,50.169529, 17.21839911);
node[emergency=access_point](around:100,50.169529, 17.21839911);node[highway=emergency_access_point](around:100,50.24228897, 17.27700867);
node[emergency=access_point](around:100,50.24228897, 17.27700867);node[highway=emergency_access_point](around:100,50.21393867, 17.29919133);
node[emergency=access_point](around:100,50.21393867, 17.29919133);node[highway=emergency_access_point](around:100,49.85968419, 16.97446481);
node[emergency=access_point](around:100,49.85968419, 16.97446481);node[highway=emergency_access_point](around:100,49.85074072, 16.96037478);
node[emergency=access_point](around:100,49.85074072, 16.96037478);node[highway=emergency_access_point](around:100,49.97136008, 17.03982039);
node[emergency=access_point](around:100,49.97136008, 17.03982039);node[highway=emergency_access_point](around:100,49.87985511, 17.02651733);
node[emergency=access_point](around:100,49.87985511, 17.02651733);node[highway=emergency_access_point](around:100,49.96922364, 16.84359078);
node[emergency=access_point](around:100,49.96922364, 16.84359078);node[highway=emergency_access_point](around:100,49.99351533, 16.91275781);
node[emergency=access_point](around:100,49.99351533, 16.91275781);node[highway=emergency_access_point](around:100,50.05377264, 16.90168061);
node[emergency=access_point](around:100,50.05377264, 16.90168061);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,49.86845936, 16.78456022);
node[emergency=access_point](around:100,49.86845936, 16.78456022);node[highway=emergency_access_point](around:100,50.03670161, 16.81974689);
node[emergency=access_point](around:100,50.03670161, 16.81974689);node[highway=emergency_access_point](around:100,49.76285231, 16.80576314);
node[emergency=access_point](around:100,49.76285231, 16.80576314);node[highway=emergency_access_point](around:100,49.67532744, 16.87606556);
node[emergency=access_point](around:100,49.67532744, 16.87606556);node[highway=emergency_access_point](around:100,49.87327869, 17.04553103);
node[emergency=access_point](around:100,49.87327869, 17.04553103);node[highway=emergency_access_point](around:100,49.72670936, 17.43506692);
node[emergency=access_point](around:100,49.72670936, 17.43506692);node[highway=emergency_access_point](around:100,49.83766508, 17.03987764);
node[emergency=access_point](around:100,49.83766508, 17.03987764);node[highway=emergency_access_point](around:100,49.74401869, 17.31913592);
node[emergency=access_point](around:100,49.74401869, 17.31913592);node[highway=emergency_access_point](around:100,49.73708589, 16.89043192);
node[emergency=access_point](around:100,49.73708589, 16.89043192);node[highway=emergency_access_point](around:100,49.72924508, 16.84469517);
node[emergency=access_point](around:100,49.72924508, 16.84469517);node[highway=emergency_access_point](around:100,49.84749433, 17.01965511);
node[emergency=access_point](around:100,49.84749433, 17.01965511);node[highway=emergency_access_point](around:100,49.85042372, 17.30611875);
node[emergency=access_point](around:100,49.85042372, 17.30611875);node[highway=emergency_access_point](around:100,49.78432131, 17.38893869);
node[emergency=access_point](around:100,49.78432131, 17.38893869);node[highway=emergency_access_point](around:100,49.80414092, 17.39200753);
node[emergency=access_point](around:100,49.80414092, 17.39200753);node[highway=emergency_access_point](around:100,49.71671606, 17.43894197);
node[emergency=access_point](around:100,49.71671606, 17.43894197);node[highway=emergency_access_point](around:100,49.70277514, 16.94268022);
node[emergency=access_point](around:100,49.70277514, 16.94268022);node[highway=emergency_access_point](around:100,50.18474808, 16.88235169);
node[emergency=access_point](around:100,50.18474808, 16.88235169);node[highway=emergency_access_point](around:100,50.11006867, 17.05605458);
node[emergency=access_point](around:100,50.11006867, 17.05605458);node[highway=emergency_access_point](around:100,50.15766686, 17.07254608);
node[emergency=access_point](around:100,50.15766686, 17.07254608);node[highway=emergency_access_point](around:100,50.07751625, 16.98027386);
node[emergency=access_point](around:100,50.07751625, 16.98027386);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,50.13871856, 16.87861047);
node[emergency=access_point](around:100,50.13871856, 16.87861047);node[highway=emergency_access_point](around:100,50.16234708, 16.86225761);
node[emergency=access_point](around:100,50.16234708, 16.86225761);node[highway=emergency_access_point](around:100,50.13867472, 16.87017431);
node[emergency=access_point](around:100,50.13867472, 16.87017431);node[highway=emergency_access_point](around:100,50.16785842, 17.06459406);
node[emergency=access_point](around:100,50.16785842, 17.06459406);node[highway=emergency_access_point](around:100,50.2030035, 17.00346053);
node[emergency=access_point](around:100,50.2030035, 17.00346053);node[highway=emergency_access_point](around:100,50.21429208, 16.89058903);
node[emergency=access_point](around:100,50.21429208, 16.89058903);node[highway=emergency_access_point](around:100,50.23907469, 16.97531561);
node[emergency=access_point](around:100,50.23907469, 16.97531561);node[highway=emergency_access_point](around:100,50.20877931, 16.93941358);
node[emergency=access_point](around:100,50.20877931, 16.93941358);node[highway=emergency_access_point](around:100,50.14573636, 16.88470014);
node[emergency=access_point](around:100,50.14573636, 16.88470014);node[highway=emergency_access_point](around:100,50.21159897, 17.01877578);
node[emergency=access_point](around:100,50.21159897, 17.01877578);node[highway=emergency_access_point](around:100,50.21630242, 16.97661925);
node[emergency=access_point](around:100,50.21630242, 16.97661925);node[highway=emergency_access_point](around:100,49.79479394, 17.31109883);
node[emergency=access_point](around:100,49.79479394, 17.31109883);node[highway=emergency_access_point](around:100,49.57809333, 16.85898817);
node[emergency=access_point](around:100,49.57809333, 16.85898817);node[highway=emergency_access_point](around:100,49.59727933, 17.75800778);
node[emergency=access_point](around:100,49.59727933, 17.75800778);node[highway=emergency_access_point](around:100,49.76630314, 17.33183236);
node[emergency=access_point](around:100,49.76630314, 17.33183236);node[highway=emergency_access_point](around:100,50.40351886, 16.93328972);
node[emergency=access_point](around:100,50.40351886, 16.93328972);node[highway=emergency_access_point](around:100,50.34937411, 17.16136944);
node[emergency=access_point](around:100,50.34937411, 17.16136944);node[highway=emergency_access_point](around:100,50.35033031, 17.13695392);
node[emergency=access_point](around:100,50.35033031, 17.13695392);node[highway=emergency_access_point](around:100,50.35707275, 17.19635325);
node[emergency=access_point](around:100,50.35707275, 17.19635325);node[highway=emergency_access_point](around:100,49.78910894, 17.27936319);
node[emergency=access_point](around:100,49.78910894, 17.27936319);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,50.25381489, 17.27030808);
node[emergency=access_point](around:100,50.25381489, 17.27030808);node[highway=emergency_access_point](around:100,50.25859583, 17.31201181);
node[emergency=access_point](around:100,50.25859583, 17.31201181);node[highway=emergency_access_point](around:100,50.30818578, 17.23722358);
node[emergency=access_point](around:100,50.30818578, 17.23722358);node[highway=emergency_access_point](around:100,50.25688108, 17.20369836);
node[emergency=access_point](around:100,50.25688108, 17.20369836);node[highway=emergency_access_point](around:100,50.24467556, 17.31361464);
node[emergency=access_point](around:100,50.24467556, 17.31361464);node[highway=emergency_access_point](around:100,50.06674364, 17.02743536);
node[emergency=access_point](around:100,50.06674364, 17.02743536);node[highway=emergency_access_point](around:100,50.07268133, 17.00785169);
node[emergency=access_point](around:100,50.07268133, 17.00785169);node[highway=emergency_access_point](around:100,50.06991722, 17.21000483);
node[emergency=access_point](around:100,50.06991722, 17.21000483);node[highway=emergency_access_point](around:100,50.05392189, 17.15346219);
node[emergency=access_point](around:100,50.05392189, 17.15346219);node[highway=emergency_access_point](around:100,50.01240958, 17.12777444);
node[emergency=access_point](around:100,50.01240958, 17.12777444);node[highway=emergency_access_point](around:100,50.00203783, 17.07541303);
node[emergency=access_point](around:100,50.00203783, 17.07541303);node[highway=emergency_access_point](around:100,50.00267808, 17.13273942);
node[emergency=access_point](around:100,50.00267808, 17.13273942);node[highway=emergency_access_point](around:100,50.00666842, 17.06360233);
node[emergency=access_point](around:100,50.00666842, 17.06360233);node[highway=emergency_access_point](around:100,50.11416081, 17.08381269);
node[emergency=access_point](around:100,50.11416081, 17.08381269);node[highway=emergency_access_point](around:100,50.13368686, 17.10368636);
node[emergency=access_point](around:100,50.13368686, 17.10368636);node[highway=emergency_access_point](around:100,50.13487911, 17.08031614);
node[emergency=access_point](around:100,50.13487911, 17.08031614);node[highway=emergency_access_point](around:100,50.11956081, 17.13413094);
node[emergency=access_point](around:100,50.11956081, 17.13413094);node[highway=emergency_access_point](around:100,50.09250861, 17.19603331);
node[emergency=access_point](around:100,50.09250861, 17.19603331);node[highway=emergency_access_point](around:100,50.10668281, 17.12689919);
node[emergency=access_point](around:100,50.10668281, 17.12689919);node[highway=emergency_access_point](around:100,49.91916867, 16.77281039);
node[emergency=access_point](around:100,49.91916867, 16.77281039);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,50.06311936, 17.13396169);
node[emergency=access_point](around:100,50.06311936, 17.13396169);node[highway=emergency_access_point](around:100,50.05525706, 17.13538483);
node[emergency=access_point](around:100,50.05525706, 17.13538483);node[highway=emergency_access_point](around:100,50.05912764, 17.17394461);
node[emergency=access_point](around:100,50.05912764, 17.17394461);node[highway=emergency_access_point](around:100,50.02345636, 17.17408481);
node[emergency=access_point](around:100,50.02345636, 17.17408481);node[highway=emergency_access_point](around:100,50.047815, 17.18514456);
node[emergency=access_point](around:100,50.047815, 17.18514456);node[highway=emergency_access_point](around:100,49.51760853, 17.72805222);
node[emergency=access_point](around:100,49.51760853, 17.72805222);node[highway=emergency_access_point](around:100,49.486147, 17.66834308);
node[emergency=access_point](around:100,49.486147, 17.66834308);node[highway=emergency_access_point](around:100,50.13597294, 16.95661919);
node[emergency=access_point](around:100,50.13597294, 16.95661919);node[highway=emergency_access_point](around:100,49.86312744, 17.45440014);
node[emergency=access_point](around:100,49.86312744, 17.45440014);node[highway=emergency_access_point](around:100,49.83214061, 17.46274147);
node[emergency=access_point](around:100,49.83214061, 17.46274147);node[highway=emergency_access_point](around:100,49.75195811, 17.50940064);
node[emergency=access_point](around:100,49.75195811, 17.50940064);node[highway=emergency_access_point](around:100,49.58154792, 16.97478161);
node[emergency=access_point](around:100,49.58154792, 16.97478161);node[highway=emergency_access_point](around:100,50.04017861, 16.92156583);
node[emergency=access_point](around:100,50.04017861, 16.92156583);node[highway=emergency_access_point](around:100,49.85160508, 16.82156203);
node[emergency=access_point](around:100,49.85160508, 16.82156203);node[highway=emergency_access_point](around:100,50.01877864, 17.0030025);
node[emergency=access_point](around:100,50.01877864, 17.0030025);node[highway=emergency_access_point](around:100,49.92863033, 16.99229839);
node[emergency=access_point](around:100,49.92863033, 16.99229839);node[highway=emergency_access_point](around:100,49.80969081, 16.77130133);
node[emergency=access_point](around:100,49.80969081, 16.77130133);node[highway=emergency_access_point](around:100,49.88495031, 16.78780536);
node[emergency=access_point](around:100,49.88495031, 16.78780536);node[highway=emergency_access_point](around:100,49.82417492, 16.87263897);
node[emergency=access_point](around:100,49.82417492, 16.87263897);node[highway=emergency_access_point](around:100,49.88109575, 16.99725742);
node[emergency=access_point](around:100,49.88109575, 16.99725742);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,50.21698825, 16.92245533);
node[emergency=access_point](around:100,50.21698825, 16.92245533);node[highway=emergency_access_point](around:100,49.72331883, 16.85132103);
node[emergency=access_point](around:100,49.72331883, 16.85132103);node[highway=emergency_access_point](around:100,49.79948294, 17.29424169);
node[emergency=access_point](around:100,49.79948294, 17.29424169);node[highway=emergency_access_point](around:100,50.05169169, 16.86841178);
node[emergency=access_point](around:100,50.05169169, 16.86841178);node[highway=emergency_access_point](around:100,50.06097378, 16.87578819);
node[emergency=access_point](around:100,50.06097378, 16.87578819);node[highway=emergency_access_point](around:100,49.80609028, 17.49197153);
node[emergency=access_point](around:100,49.80609028, 17.49197153);node[highway=emergency_access_point](around:100,49.94842089, 17.16954036);
node[emergency=access_point](around:100,49.94842089, 17.16954036);node[highway=emergency_access_point](around:100,49.91022953, 17.15025614);
node[emergency=access_point](around:100,49.91022953, 17.15025614);node[highway=emergency_access_point](around:100,49.94422219, 17.14005375);
node[emergency=access_point](around:100,49.94422219, 17.14005375);node[highway=emergency_access_point](around:100,49.96540892, 17.127591);
node[emergency=access_point](around:100,49.96540892, 17.127591);node[highway=emergency_access_point](around:100,50.05839675, 17.115685);
node[emergency=access_point](around:100,50.05839675, 17.115685);node[highway=emergency_access_point](around:100,50.03865847, 17.11077922);
node[emergency=access_point](around:100,50.03865847, 17.11077922);node[highway=emergency_access_point](around:100,50.06366803, 17.20088244);
node[emergency=access_point](around:100,50.06366803, 17.20088244);node[highway=emergency_access_point](around:100,50.07684322, 17.19128683);
node[emergency=access_point](around:100,50.07684322, 17.19128683);node[highway=emergency_access_point](around:100,50.08437356, 17.03671019);
node[emergency=access_point](around:100,50.08437356, 17.03671019);node[highway=emergency_access_point](around:100,50.1385995, 17.12438144);
node[emergency=access_point](around:100,50.1385995, 17.12438144);node[highway=emergency_access_point](around:100,50.11778108, 17.10768594);
node[emergency=access_point](around:100,50.11778108, 17.10768594);node[highway=emergency_access_point](around:100,50.12740394, 17.12423772);
node[emergency=access_point](around:100,50.12740394, 17.12423772);node[highway=emergency_access_point](around:100,50.07769083, 17.11927381);
node[emergency=access_point](around:100,50.07769083, 17.11927381);node[highway=emergency_access_point](around:100,50.04895358, 17.15810942);
node[emergency=access_point](around:100,50.04895358, 17.15810942);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,50.01948081, 17.16237086);
node[emergency=access_point](around:100,50.01948081, 17.16237086);node[highway=emergency_access_point](around:100,50.04526417, 17.17030069);
node[emergency=access_point](around:100,50.04526417, 17.17030069);node[highway=emergency_access_point](around:100,50.31915822, 17.22016158);
node[emergency=access_point](around:100,50.31915822, 17.22016158);node[highway=emergency_access_point](around:100,50.39475114, 16.93915067);
node[emergency=access_point](around:100,50.39475114, 16.93915067);node[highway=emergency_access_point](around:100,50.40765922, 16.87608842);
node[emergency=access_point](around:100,50.40765922, 16.87608842);node[highway=emergency_access_point](around:100,50.40848083, 16.89640589);
node[emergency=access_point](around:100,50.40848083, 16.89640589);node[highway=emergency_access_point](around:100,50.35176883, 16.9260995);
node[emergency=access_point](around:100,50.35176883, 16.9260995);node[highway=emergency_access_point](around:100,50.40315692, 16.94272906);
node[emergency=access_point](around:100,50.40315692, 16.94272906);node[highway=emergency_access_point](around:100,50.38357394, 16.96069547);
node[emergency=access_point](around:100,50.38357394, 16.96069547);node[highway=emergency_access_point](around:100,50.32784381, 17.01790522);
node[emergency=access_point](around:100,50.32784381, 17.01790522);node[highway=emergency_access_point](around:100,50.41565953, 16.93293403);
node[emergency=access_point](around:100,50.41565953, 16.93293403);node[highway=emergency_access_point](around:100,50.31832956, 17.00755347);
node[emergency=access_point](around:100,50.31832956, 17.00755347);node[highway=emergency_access_point](around:100,50.42134858, 16.89973019);
node[emergency=access_point](around:100,50.42134858, 16.89973019);node[highway=emergency_access_point](around:100,50.3446595, 17.02585114);
node[emergency=access_point](around:100,50.3446595, 17.02585114);node[highway=emergency_access_point](around:100,50.71049197, 15.14454389);
node[emergency=access_point](around:100,50.71049197, 15.14454389);node[highway=emergency_access_point](around:100,50.73709928, 15.37064108);
node[emergency=access_point](around:100,50.73709928, 15.37064108);node[highway=emergency_access_point](around:100,50.91228989, 15.01142569);
node[emergency=access_point](around:100,50.91228989, 15.01142569);node[highway=emergency_access_point](around:100,50.99392311, 15.04894881);
node[emergency=access_point](around:100,50.99392311, 15.04894881);node[highway=emergency_access_point](around:100,50.84844781, 15.06716764);
node[emergency=access_point](around:100,50.84844781, 15.06716764);node[highway=emergency_access_point](around:100,50.88814456, 15.08841858);
node[emergency=access_point](around:100,50.88814456, 15.08841858);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,50.96105881, 15.04295558);
node[emergency=access_point](around:100,50.96105881, 15.04295558);node[highway=emergency_access_point](around:100,50.96479706, 15.07284172);
node[emergency=access_point](around:100,50.96479706, 15.07284172);node[highway=emergency_access_point](around:100,50.50226592, 15.23605836);
node[emergency=access_point](around:100,50.50226592, 15.23605836);node[highway=emergency_access_point](around:100,50.76763889, 14.84884278);
node[emergency=access_point](around:100,50.76763889, 14.84884278);node[highway=emergency_access_point](around:100,50.83588917, 15.09917194);
node[emergency=access_point](around:100,50.83588917, 15.09917194);node[highway=emergency_access_point](around:100,50.74350056, 14.94432028);
node[emergency=access_point](around:100,50.74350056, 14.94432028);node[highway=emergency_access_point](around:100,50.69169028, 15.32004167);
node[emergency=access_point](around:100,50.69169028, 15.32004167);node[highway=emergency_access_point](around:100,50.6650875, 15.32732722);
node[emergency=access_point](around:100,50.6650875, 15.32732722);node[highway=emergency_access_point](around:100,50.67251944, 15.32367083);
node[emergency=access_point](around:100,50.67251944, 15.32367083);node[highway=emergency_access_point](around:100,50.63591972, 15.21030389);
node[emergency=access_point](around:100,50.63591972, 15.21030389);node[highway=emergency_access_point](around:100,50.56616222, 14.49598222);
node[emergency=access_point](around:100,50.56616222, 14.49598222);node[highway=emergency_access_point](around:100,50.85896722, 15.25900306);
node[emergency=access_point](around:100,50.85896722, 15.25900306);node[highway=emergency_access_point](around:100,50.91631289, 15.23358631);
node[emergency=access_point](around:100,50.91631289, 15.23358631);node[highway=emergency_access_point](around:100,50.97915475, 15.19585636);
node[emergency=access_point](around:100,50.97915475, 15.19585636);node[highway=emergency_access_point](around:100,50.51118644, 15.35873839);
node[emergency=access_point](around:100,50.51118644, 15.35873839);node[highway=emergency_access_point](around:100,50.99004611, 15.16445956);
node[emergency=access_point](around:100,50.99004611, 15.16445956);node[highway=emergency_access_point](around:100,50.81619681, 14.78578003);
node[emergency=access_point](around:100,50.81619681, 14.78578003);node[highway=emergency_access_point](around:100,50.590436, 15.55105783);
node[emergency=access_point](around:100,50.590436, 15.55105783);node[highway=emergency_access_point](around:100,50.78823489, 14.961952);
node[emergency=access_point](around:100,50.78823489, 14.961952);node[highway=emergency_access_point](around:100,50.72244958, 15.00271164);
node[emergency=access_point](around:100,50.72244958, 15.00271164);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,50.70933042, 14.88698333);
node[emergency=access_point](around:100,50.70933042, 14.88698333);node[highway=emergency_access_point](around:100,50.831916, 14.81909989);
node[emergency=access_point](around:100,50.831916, 14.81909989);node[highway=emergency_access_point](around:100,49.09711944, 15.06464975);
node[emergency=access_point](around:100,49.09711944, 15.06464975);node[highway=emergency_access_point](around:100,49.11725903, 14.80114869);
node[emergency=access_point](around:100,49.11725903, 14.80114869);node[highway=emergency_access_point](around:100,49.11660003, 14.84623539);
node[emergency=access_point](around:100,49.11660003, 14.84623539);node[highway=emergency_access_point](around:100,49.15134947, 14.84955097);
node[emergency=access_point](around:100,49.15134947, 14.84955097);node[highway=emergency_access_point](around:100,49.09499553, 14.87854917);
node[emergency=access_point](around:100,49.09499553, 14.87854917);node[highway=emergency_access_point](around:100,48.77723133, 14.26643503);
node[emergency=access_point](around:100,48.77723133, 14.26643503);node[highway=emergency_access_point](around:100,48.90076342, 14.19633389);
node[emergency=access_point](around:100,48.90076342, 14.19633389);node[highway=emergency_access_point](around:100,48.85660839, 14.27762397);
node[emergency=access_point](around:100,48.85660839, 14.27762397);node[highway=emergency_access_point](around:100,48.75192781, 14.36197692);
node[emergency=access_point](around:100,48.75192781, 14.36197692);node[highway=emergency_access_point](around:100,48.75215906, 14.16868722);
node[emergency=access_point](around:100,48.75215906, 14.16868722);node[highway=emergency_access_point](around:100,48.74244789, 14.40880414);
node[emergency=access_point](around:100,48.74244789, 14.40880414);node[highway=emergency_access_point](around:100,48.87793514, 14.30047175);
node[emergency=access_point](around:100,48.87793514, 14.30047175);node[highway=emergency_access_point](around:100,48.89917375, 14.25246419);
node[emergency=access_point](around:100,48.89917375, 14.25246419);node[highway=emergency_access_point](around:100,48.66614878, 14.42940428);
node[emergency=access_point](around:100,48.66614878, 14.42940428);node[highway=emergency_access_point](around:100,48.75699792, 14.58405994);
node[emergency=access_point](around:100,48.75699792, 14.58405994);node[highway=emergency_access_point](around:100,48.84612622, 14.30898383);
node[emergency=access_point](around:100,48.84612622, 14.30898383);node[highway=emergency_access_point](around:100,48.63022142, 14.50303772);
node[emergency=access_point](around:100,48.63022142, 14.50303772);node[highway=emergency_access_point](around:100,48.89003703, 14.20735289);
node[emergency=access_point](around:100,48.89003703, 14.20735289);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,49.46183528, 14.81585569);
node[emergency=access_point](around:100,49.46183528, 14.81585569);node[highway=emergency_access_point](around:100,49.43055789, 14.80515592);
node[emergency=access_point](around:100,49.43055789, 14.80515592);node[highway=emergency_access_point](around:100,49.41188572, 14.75702311);
node[emergency=access_point](around:100,49.41188572, 14.75702311);node[highway=emergency_access_point](around:100,49.29183181, 14.86621531);
node[emergency=access_point](around:100,49.29183181, 14.86621531);node[highway=emergency_access_point](around:100,49.31047669, 14.81188072);
node[emergency=access_point](around:100,49.31047669, 14.81188072);node[highway=emergency_access_point](around:100,49.447959, 14.87195536);
node[emergency=access_point](around:100,49.447959, 14.87195536);node[highway=emergency_access_point](around:100,49.41899497, 14.73701853);
node[emergency=access_point](around:100,49.41899497, 14.73701853);node[highway=emergency_access_point](around:100,48.69160856, 14.03329175);
node[emergency=access_point](around:100,48.69160856, 14.03329175);node[highway=emergency_access_point](around:100,48.61732869, 14.21279119);
node[emergency=access_point](around:100,48.61732869, 14.21279119);node[highway=emergency_access_point](around:100,48.64346275, 14.27391197);
node[emergency=access_point](around:100,48.64346275, 14.27391197);node[highway=emergency_access_point](around:100,48.64534189, 14.04903997);
node[emergency=access_point](around:100,48.64534189, 14.04903997);node[highway=emergency_access_point](around:100,48.67635642, 14.38527575);
node[emergency=access_point](around:100,48.67635642, 14.38527575);node[highway=emergency_access_point](around:100,48.66192097, 14.20792622);
node[emergency=access_point](around:100,48.66192097, 14.20792622);node[highway=emergency_access_point](around:100,48.72707297, 14.36406636);
node[emergency=access_point](around:100,48.72707297, 14.36406636);node[highway=emergency_access_point](around:100,48.61375575, 14.22847083);
node[emergency=access_point](around:100,48.61375575, 14.22847083);node[highway=emergency_access_point](around:100,48.70746531, 14.10509133);
node[emergency=access_point](around:100,48.70746531, 14.10509133);node[highway=emergency_access_point](around:100,48.62093003, 14.38007772);
node[emergency=access_point](around:100,48.62093003, 14.38007772);node[highway=emergency_access_point](around:100,48.57554186, 14.30338528);
node[emergency=access_point](around:100,48.57554186, 14.30338528);node[highway=emergency_access_point](around:100,48.60568522, 14.19623847);
node[emergency=access_point](around:100,48.60568522, 14.19623847);node[highway=emergency_access_point](around:100,48.66109269, 14.08048872);
node[emergency=access_point](around:100,48.66109269, 14.08048872);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,48.58902961, 14.26423419);
node[emergency=access_point](around:100,48.58902961, 14.26423419);node[highway=emergency_access_point](around:100,48.65501447, 14.10247058);
node[emergency=access_point](around:100,48.65501447, 14.10247058);node[highway=emergency_access_point](around:100,48.64815053, 14.38041494);
node[emergency=access_point](around:100,48.64815053, 14.38041494);node[highway=emergency_access_point](around:100,48.63515114, 14.07307933);
node[emergency=access_point](around:100,48.63515114, 14.07307933);node[highway=emergency_access_point](around:100,48.58826239, 14.28015881);
node[emergency=access_point](around:100,48.58826239, 14.28015881);node[highway=emergency_access_point](around:100,48.59931572, 14.15972425);
node[emergency=access_point](around:100,48.59931572, 14.15972425);node[highway=emergency_access_point](around:100,48.71162514, 14.26892556);
node[emergency=access_point](around:100,48.71162514, 14.26892556);node[highway=emergency_access_point](around:100,48.74165486, 14.39217961);
node[emergency=access_point](around:100,48.74165486, 14.39217961);node[highway=emergency_access_point](around:100,48.71597328, 14.24283206);
node[emergency=access_point](around:100,48.71597328, 14.24283206);node[highway=emergency_access_point](around:100,48.69962878, 14.31360078);
node[emergency=access_point](around:100,48.69962878, 14.31360078);node[highway=emergency_access_point](around:100,48.61895208, 14.19872658);
node[emergency=access_point](around:100,48.61895208, 14.19872658);node[highway=emergency_access_point](around:100,48.69457956, 14.33546147);
node[emergency=access_point](around:100,48.69457956, 14.33546147);node[highway=emergency_access_point](around:100,48.57993828, 14.23965989);
node[emergency=access_point](around:100,48.57993828, 14.23965989);node[highway=emergency_access_point](around:100,48.59655606, 14.21736578);
node[emergency=access_point](around:100,48.59655606, 14.21736578);node[highway=emergency_access_point](around:100,48.70133239, 14.26393556);
node[emergency=access_point](around:100,48.70133239, 14.26393556);node[highway=emergency_access_point](around:100,48.87185411, 14.75454022);
node[emergency=access_point](around:100,48.87185411, 14.75454022);node[highway=emergency_access_point](around:100,49.06733725, 14.86980103);
node[emergency=access_point](around:100,49.06733725, 14.86980103);node[highway=emergency_access_point](around:100,48.83418444, 14.94625906);
node[emergency=access_point](around:100,48.83418444, 14.94625906);node[highway=emergency_access_point](around:100,48.97729156, 14.87358597);
node[emergency=access_point](around:100,48.97729156, 14.87358597);node[highway=emergency_access_point](around:100,48.99391536, 14.93813764);
node[emergency=access_point](around:100,48.99391536, 14.93813764);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,48.86090175, 14.96219339);
node[emergency=access_point](around:100,48.86090175, 14.96219339);node[highway=emergency_access_point](around:100,48.87802428, 14.96727353);
node[emergency=access_point](around:100,48.87802428, 14.96727353);node[highway=emergency_access_point](around:100,48.89347458, 14.82231925);
node[emergency=access_point](around:100,48.89347458, 14.82231925);node[highway=emergency_access_point](around:100,48.91172869, 14.879621);
node[emergency=access_point](around:100,48.91172869, 14.879621);node[highway=emergency_access_point](around:100,48.92510072, 14.83879428);
node[emergency=access_point](around:100,48.92510072, 14.83879428);node[highway=emergency_access_point](around:100,49.00642708, 14.80977414);
node[emergency=access_point](around:100,49.00642708, 14.80977414);node[highway=emergency_access_point](around:100,49.18017508, 14.77766108);
node[emergency=access_point](around:100,49.18017508, 14.77766108);node[highway=emergency_access_point](around:100,49.24512514, 14.95000417);
node[emergency=access_point](around:100,49.24512514, 14.95000417);node[highway=emergency_access_point](around:100,49.19122378, 14.71998133);
node[emergency=access_point](around:100,49.19122378, 14.71998133);node[highway=emergency_access_point](around:100,49.22396867, 14.51307464);
node[emergency=access_point](around:100,49.22396867, 14.51307464);node[highway=emergency_access_point](around:100,49.002327, 14.96751433);
node[emergency=access_point](around:100,49.002327, 14.96751433);node[highway=emergency_access_point](around:100,49.04572203, 14.97833436);
node[emergency=access_point](around:100,49.04572203, 14.97833436);node[highway=emergency_access_point](around:100,49.08697114, 15.05857753);
node[emergency=access_point](around:100,49.08697114, 15.05857753);node[highway=emergency_access_point](around:100,49.09214556, 15.07381514);
node[emergency=access_point](around:100,49.09214556, 15.07381514);node[highway=emergency_access_point](around:100,49.03299289, 14.97855089);
node[emergency=access_point](around:100,49.03299289, 14.97855089);node[highway=emergency_access_point](around:100,48.61291567, 14.14340603);
node[emergency=access_point](around:100,48.61291567, 14.14340603);node[highway=emergency_access_point](around:100,49.10530711, 14.79350636);
node[emergency=access_point](around:100,49.10530711, 14.79350636);node[highway=emergency_access_point](around:100,49.11567317, 14.76214975);
node[emergency=access_point](around:100,49.11567317, 14.76214975);node[highway=emergency_access_point](around:100,49.16296544, 14.79631658);
node[emergency=access_point](around:100,49.16296544, 14.79631658);node[highway=emergency_access_point](around:100,48.70844489, 14.69804419);
node[emergency=access_point](around:100,48.70844489, 14.69804419);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,49.08345747, 15.11029144);
node[emergency=access_point](around:100,49.08345747, 15.11029144);node[highway=emergency_access_point](around:100,49.07101417, 15.09846778);
node[emergency=access_point](around:100,49.07101417, 15.09846778);node[highway=emergency_access_point](around:100,49.01907517, 15.05464311);
node[emergency=access_point](around:100,49.01907517, 15.05464311);node[highway=emergency_access_point](around:100,49.04484578, 15.11679931);
node[emergency=access_point](around:100,49.04484578, 15.11679931);node[highway=emergency_access_point](around:100,49.00099094, 15.07707606);
node[emergency=access_point](around:100,49.00099094, 15.07707606);node[highway=emergency_access_point](around:100,49.01568742, 13.87496086);
node[emergency=access_point](around:100,49.01568742, 13.87496086);node[highway=emergency_access_point](around:100,48.96877417, 13.80202503);
node[emergency=access_point](around:100,48.96877417, 13.80202503);node[highway=emergency_access_point](around:100,49.02226633, 13.6792545);
node[emergency=access_point](around:100,49.02226633, 13.6792545);node[highway=emergency_access_point](around:100,48.91781511, 14.03958139);
node[emergency=access_point](around:100,48.91781511, 14.03958139);node[highway=emergency_access_point](around:100,49.06938658, 15.12308975);
node[emergency=access_point](around:100,49.06938658, 15.12308975);node[highway=emergency_access_point](around:100,49.08125028, 15.19301047);
node[emergency=access_point](around:100,49.08125028, 15.19301047);node[highway=emergency_access_point](around:100,49.08561411, 15.15562606);
node[emergency=access_point](around:100,49.08561411, 15.15562606);node[highway=emergency_access_point](around:100,49.01185017, 15.22370358);
node[emergency=access_point](around:100,49.01185017, 15.22370358);node[highway=emergency_access_point](around:100,49.01435758, 15.29890592);
node[emergency=access_point](around:100,49.01435758, 15.29890592);node[highway=emergency_access_point](around:100,49.03773814, 15.192536);
node[emergency=access_point](around:100,49.03773814, 15.192536);node[highway=emergency_access_point](around:100,49.00620683, 15.19557008);
node[emergency=access_point](around:100,49.00620683, 15.19557008);node[highway=emergency_access_point](around:100,49.07222236, 15.33838997);
node[emergency=access_point](around:100,49.07222236, 15.33838997);node[highway=emergency_access_point](around:100,49.10103869, 15.32875908);
node[emergency=access_point](around:100,49.10103869, 15.32875908);node[highway=emergency_access_point](around:100,49.11524519, 15.27700733);
node[emergency=access_point](around:100,49.11524519, 15.27700733);node[highway=emergency_access_point](around:100,49.06389992, 15.18721239);
node[emergency=access_point](around:100,49.06389992, 15.18721239);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,49.08358894, 15.16605347);
node[emergency=access_point](around:100,49.08358894, 15.16605347);node[highway=emergency_access_point](around:100,49.05712444, 15.24111081);
node[emergency=access_point](around:100,49.05712444, 15.24111081);node[highway=emergency_access_point](around:100,49.05332225, 15.21198319);
node[emergency=access_point](around:100,49.05332225, 15.21198319);node[highway=emergency_access_point](around:100,49.15157517, 13.70386842);
node[emergency=access_point](around:100,49.15157517, 13.70386842);node[highway=emergency_access_point](around:100,49.14224475, 13.66411817);
node[emergency=access_point](around:100,49.14224475, 13.66411817);node[highway=emergency_access_point](around:100,49.05429333, 13.63352286);
node[emergency=access_point](around:100,49.05429333, 13.63352286);node[highway=emergency_access_point](around:100,49.0207135, 14.06296397);
node[emergency=access_point](around:100,49.0207135, 14.06296397);node[highway=emergency_access_point](around:100,49.08449675, 15.23695775);
node[emergency=access_point](around:100,49.08449675, 15.23695775);node[highway=emergency_access_point](around:100,49.02776294, 15.19365653);
node[emergency=access_point](around:100,49.02776294, 15.19365653);node[highway=emergency_access_point](around:100,48.94400544, 13.79921811);
node[emergency=access_point](around:100,48.94400544, 13.79921811);node[highway=emergency_access_point](around:100,49.00515692, 13.70322056);
node[emergency=access_point](around:100,49.00515692, 13.70322056);node[highway=emergency_access_point](around:100,49.01591611, 13.85039881);
node[emergency=access_point](around:100,49.01591611, 13.85039881);node[highway=emergency_access_point](around:100,49.07511694, 13.93807344);
node[emergency=access_point](around:100,49.07511694, 13.93807344);node[highway=emergency_access_point](around:100,48.94266511, 14.08955542);
node[emergency=access_point](around:100,48.94266511, 14.08955542);node[highway=emergency_access_point](around:100,49.08260464, 14.01845933);
node[emergency=access_point](around:100,49.08260464, 14.01845933);node[highway=emergency_access_point](around:100,48.96415528, 13.70799908);
node[emergency=access_point](around:100,48.96415528, 13.70799908);node[highway=emergency_access_point](around:100,48.94689878, 14.04998917);
node[emergency=access_point](around:100,48.94689878, 14.04998917);node[highway=emergency_access_point](around:100,48.98602442, 14.09715883);
node[emergency=access_point](around:100,48.98602442, 14.09715883);node[highway=emergency_access_point](around:100,48.96747253, 13.93540969);
node[emergency=access_point](around:100,48.96747253, 13.93540969);node[highway=emergency_access_point](around:100,48.99034425, 13.97103231);
node[emergency=access_point](around:100,48.99034425, 13.97103231);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,48.93618253, 13.82104764);
node[emergency=access_point](around:100,48.93618253, 13.82104764);node[highway=emergency_access_point](around:100,49.01336183, 13.78740867);
node[emergency=access_point](around:100,49.01336183, 13.78740867);node[highway=emergency_access_point](around:100,48.96774008, 14.01095067);
node[emergency=access_point](around:100,48.96774008, 14.01095067);node[highway=emergency_access_point](around:100,48.97263597, 13.74373667);
node[emergency=access_point](around:100,48.97263597, 13.74373667);node[highway=emergency_access_point](around:100,49.00136608, 13.75339133);
node[emergency=access_point](around:100,49.00136608, 13.75339133);node[highway=emergency_access_point](around:100,48.92883011, 13.74645317);
node[emergency=access_point](around:100,48.92883011, 13.74645317);node[highway=emergency_access_point](around:100,48.99576683, 13.86753067);
node[emergency=access_point](around:100,48.99576683, 13.86753067);node[highway=emergency_access_point](around:100,49.01642, 15.26817464);
node[emergency=access_point](around:100,49.01642, 15.26817464);node[highway=emergency_access_point](around:100,49.04650139, 15.27229483);
node[emergency=access_point](around:100,49.04650139, 15.27229483);node[highway=emergency_access_point](around:100,49.09789144, 14.44373672);
node[emergency=access_point](around:100,49.09789144, 14.44373672);node[highway=emergency_access_point](around:100,48.61787031, 14.28596458);
node[emergency=access_point](around:100,48.61787031, 14.28596458);node[highway=emergency_access_point](around:100,48.63684867, 14.32588756);
node[emergency=access_point](around:100,48.63684867, 14.32588756);node[highway=emergency_access_point](around:100,48.694382, 14.22153781);
node[emergency=access_point](around:100,48.694382, 14.22153781);node[highway=emergency_access_point](around:100,49.15960639, 14.39926486);
node[emergency=access_point](around:100,49.15960639, 14.39926486);node[highway=emergency_access_point](around:100,49.12946486, 14.39538419);
node[emergency=access_point](around:100,49.12946486, 14.39538419);node[highway=emergency_access_point](around:100,49.06662689, 14.46270769);
node[emergency=access_point](around:100,49.06662689, 14.46270769);node[highway=emergency_access_point](around:100,49.09594964, 14.41990869);
node[emergency=access_point](around:100,49.09594964, 14.41990869);node[highway=emergency_access_point](around:100,49.08924458, 14.57110156);
node[emergency=access_point](around:100,49.08924458, 14.57110156);node[highway=emergency_access_point](around:100,49.12378517, 14.42956353);
node[emergency=access_point](around:100,49.12378517, 14.42956353);node[highway=emergency_access_point](around:100,49.11821525, 14.53348503);
node[emergency=access_point](around:100,49.11821525, 14.53348503);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,49.53691003, 14.85963519);
node[emergency=access_point](around:100,49.53691003, 14.85963519);node[highway=emergency_access_point](around:100,49.25448667, 18.14615594);
node[emergency=access_point](around:100,49.25448667, 18.14615594);node[highway=emergency_access_point](around:100,49.44474708, 17.93708039);
node[emergency=access_point](around:100,49.44474708, 17.93708039);node[highway=emergency_access_point](around:100,49.50899783, 18.10342064);
node[emergency=access_point](around:100,49.50899783, 18.10342064);node[highway=emergency_access_point](around:100,49.51479817, 18.13204825);
node[emergency=access_point](around:100,49.51479817, 18.13204825);node[highway=emergency_access_point](around:100,49.51329322, 18.15474);
node[emergency=access_point](around:100,49.51329322, 18.15474);node[highway=emergency_access_point](around:100,49.49884211, 18.13407408);
node[emergency=access_point](around:100,49.49884211, 18.13407408);node[highway=emergency_access_point](around:100,49.40510217, 18.23080069);
node[emergency=access_point](around:100,49.40510217, 18.23080069);node[highway=emergency_access_point](around:100,49.38734642, 18.12497967);
node[emergency=access_point](around:100,49.38734642, 18.12497967);node[highway=emergency_access_point](around:100,49.43583917, 18.34206578);
node[emergency=access_point](around:100,49.43583917, 18.34206578);node[highway=emergency_access_point](around:100,49.40364906, 18.31800297);
node[emergency=access_point](around:100,49.40364906, 18.31800297);node[highway=emergency_access_point](around:100,49.3944965, 18.35221489);
node[emergency=access_point](around:100,49.3944965, 18.35221489);node[highway=emergency_access_point](around:100,49.36177664, 18.3736265);
node[emergency=access_point](around:100,49.36177664, 18.3736265);node[highway=emergency_access_point](around:100,49.35040919, 18.40142294);
node[emergency=access_point](around:100,49.35040919, 18.40142294);node[highway=emergency_access_point](around:100,49.34938739, 18.10069947);
node[emergency=access_point](around:100,49.34938739, 18.10069947);node[highway=emergency_access_point](around:100,49.30672808, 18.18510775);
node[emergency=access_point](around:100,49.30672808, 18.18510775);node[highway=emergency_access_point](around:100,49.30308667, 18.16940325);
node[emergency=access_point](around:100,49.30308667, 18.16940325);node[highway=emergency_access_point](around:100,49.32520197, 18.0776495);
node[emergency=access_point](around:100,49.32520197, 18.0776495);node[highway=emergency_access_point](around:100,49.26766264, 18.12456908);
node[emergency=access_point](around:100,49.26766264, 18.12456908);node[highway=emergency_access_point](around:100,49.27733683, 18.16209558);
node[emergency=access_point](around:100,49.27733683, 18.16209558);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,49.25227556, 18.04843931);
node[emergency=access_point](around:100,49.25227556, 18.04843931);node[highway=emergency_access_point](around:100,49.22345744, 17.98655544);
node[emergency=access_point](around:100,49.22345744, 17.98655544);node[highway=emergency_access_point](around:100,49.33128264, 17.88419169);
node[emergency=access_point](around:100,49.33128264, 17.88419169);node[highway=emergency_access_point](around:100,49.31752706, 17.91950292);
node[emergency=access_point](around:100,49.31752706, 17.91950292);node[highway=emergency_access_point](around:100,49.38320978, 18.07382967);
node[emergency=access_point](around:100,49.38320978, 18.07382967);node[highway=emergency_access_point](around:100,49.35522631, 18.11136539);
node[emergency=access_point](around:100,49.35522631, 18.11136539);node[highway=emergency_access_point](around:100,49.23172047, 18.06650194);
node[emergency=access_point](around:100,49.23172047, 18.06650194);node[highway=emergency_access_point](around:100,49.15790119, 17.58129653);
node[emergency=access_point](around:100,49.15790119, 17.58129653);node[highway=emergency_access_point](around:100,49.19788044, 17.63114825);
node[emergency=access_point](around:100,49.19788044, 17.63114825);node[highway=emergency_access_point](around:100,49.10430367, 17.99653733);
node[emergency=access_point](around:100,49.10430367, 17.99653733);node[highway=emergency_access_point](around:100,49.08749975, 18.10078275);
node[emergency=access_point](around:100,49.08749975, 18.10078275);node[highway=emergency_access_point](around:100,49.03680333, 18.05961092);
node[emergency=access_point](around:100,49.03680333, 18.05961092);node[highway=emergency_access_point](around:100,49.03697581, 18.00136661);
node[emergency=access_point](around:100,49.03697581, 18.00136661);node[highway=emergency_access_point](around:100,49.03685875, 18.017395);
node[emergency=access_point](around:100,49.03685875, 18.017395);node[highway=emergency_access_point](around:100,49.20126014, 17.93711597);
node[emergency=access_point](around:100,49.20126014, 17.93711597);node[highway=emergency_access_point](around:100,49.03889106, 17.95463117);
node[emergency=access_point](around:100,49.03889106, 17.95463117);node[highway=emergency_access_point](around:100,49.43815917, 16.49788908);
node[emergency=access_point](around:100,49.43815917, 16.49788908);node[highway=emergency_access_point](around:100,49.57354725, 16.535486);
node[emergency=access_point](around:100,49.57354725, 16.535486);node[highway=emergency_access_point](around:100,49.55583631, 16.49081719);
node[emergency=access_point](around:100,49.55583631, 16.49081719);node[highway=emergency_access_point](around:100,49.58603217, 16.62729689);
node[emergency=access_point](around:100,49.58603217, 16.62729689);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,49.41835111, 16.77766633);
node[emergency=access_point](around:100,49.41835111, 16.77766633);node[highway=emergency_access_point](around:100,49.43888958, 16.75931094);
node[emergency=access_point](around:100,49.43888958, 16.75931094);node[highway=emergency_access_point](around:100,49.06589694, 16.69286872);
node[emergency=access_point](around:100,49.06589694, 16.69286872);node[highway=emergency_access_point](around:100,48.98138067, 16.5561985);
node[emergency=access_point](around:100,48.98138067, 16.5561985);node[highway=emergency_access_point](around:100,48.85318353, 16.45335597);
node[emergency=access_point](around:100,48.85318353, 16.45335597);node[highway=emergency_access_point](around:100,49.06824317, 16.39692708);
node[emergency=access_point](around:100,49.06824317, 16.39692708);node[highway=emergency_access_point](around:100,49.38171925, 16.40516369);
node[emergency=access_point](around:100,49.38171925, 16.40516369);node[highway=emergency_access_point](around:100,49.24913633, 16.3775155);
node[emergency=access_point](around:100,49.24913633, 16.3775155);node[highway=emergency_access_point](around:100,49.24670647, 16.27120906);
node[emergency=access_point](around:100,49.24670647, 16.27120906);node[highway=emergency_access_point](around:100,49.17401414, 16.23898019);
node[emergency=access_point](around:100,49.17401414, 16.23898019);node[highway=emergency_access_point](around:100,49.20479092, 16.31046731);
node[emergency=access_point](around:100,49.20479092, 16.31046731);node[highway=emergency_access_point](around:100,49.20265183, 16.45080258);
node[emergency=access_point](around:100,49.20265183, 16.45080258);node[highway=emergency_access_point](around:100,48.98520469, 16.65963036);
node[emergency=access_point](around:100,48.98520469, 16.65963036);node[highway=emergency_access_point](around:100,48.95741708, 16.51617369);
node[emergency=access_point](around:100,48.95741708, 16.51617369);node[highway=emergency_access_point](around:100,48.83451333, 16.67144717);
node[emergency=access_point](around:100,48.83451333, 16.67144717);node[highway=emergency_access_point](around:100,48.83548069, 16.71290764);
node[emergency=access_point](around:100,48.83548069, 16.71290764);node[highway=emergency_access_point](around:100,48.81049217, 16.72413956);
node[emergency=access_point](around:100,48.81049217, 16.72413956);node[highway=emergency_access_point](around:100,48.76752553, 16.86845486);
node[emergency=access_point](around:100,48.76752553, 16.86845486);node[highway=emergency_access_point](around:100,48.75324739, 16.8385845);
node[emergency=access_point](around:100,48.75324739, 16.8385845);node[highway=emergency_access_point](around:100,48.73107456, 16.83584056);
node[emergency=access_point](around:100,48.73107456, 16.83584056);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,48.76861792, 17.03652214);
node[emergency=access_point](around:100,48.76861792, 17.03652214);node[highway=emergency_access_point](around:100,48.78705269, 17.0634535);
node[emergency=access_point](around:100,48.78705269, 17.0634535);node[highway=emergency_access_point](around:100,48.95132633, 17.21017525);
node[emergency=access_point](around:100,48.95132633, 17.21017525);node[highway=emergency_access_point](around:100,48.96569072, 17.25897783);
node[emergency=access_point](around:100,48.96569072, 17.25897783);node[highway=emergency_access_point](around:100,48.92852278, 17.23907758);
node[emergency=access_point](around:100,48.92852278, 17.23907758);node[highway=emergency_access_point](around:100,48.98285033, 17.33416553);
node[emergency=access_point](around:100,48.98285033, 17.33416553);node[highway=emergency_access_point](around:100,48.89401994, 17.26655981);
node[emergency=access_point](around:100,48.89401994, 17.26655981);node[highway=emergency_access_point](around:100,48.87360225, 17.55524808);
node[emergency=access_point](around:100,48.87360225, 17.55524808);node[highway=emergency_access_point](around:100,48.82911494, 17.54600108);
node[emergency=access_point](around:100,48.82911494, 17.54600108);node[highway=emergency_access_point](around:100,48.89787161, 17.55694117);
node[emergency=access_point](around:100,48.89787161, 17.55694117);node[highway=emergency_access_point](around:100,49.06433275, 17.15225058);
node[emergency=access_point](around:100,49.06433275, 17.15225058);node[highway=emergency_access_point](around:100,49.05749428, 16.86177439);
node[emergency=access_point](around:100,49.05749428, 16.86177439);node[highway=emergency_access_point](around:100,49.30592811, 16.85214442);
node[emergency=access_point](around:100,49.30592811, 16.85214442);node[highway=emergency_access_point](around:100,49.31408789, 16.87610242);
node[emergency=access_point](around:100,49.31408789, 16.87610242);node[highway=emergency_access_point](around:100,49.27719219, 16.93037981);
node[emergency=access_point](around:100,49.27719219, 16.93037981);node[highway=emergency_access_point](around:100,49.26267936, 16.89786819);
node[emergency=access_point](around:100,49.26267936, 16.89786819);node[highway=emergency_access_point](around:100,49.25063117, 16.85639428);
node[emergency=access_point](around:100,49.25063117, 16.85639428);node[highway=emergency_access_point](around:100,49.14201119, 17.10357506);
node[emergency=access_point](around:100,49.14201119, 17.10357506);node[highway=emergency_access_point](around:100,49.10763539, 17.10566731);
node[emergency=access_point](around:100,49.10763539, 17.10566731);node[highway=emergency_access_point](around:100,49.05543886, 16.38910114);
node[emergency=access_point](around:100,49.05543886, 16.38910114);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,49.03694981, 16.38683411);
node[emergency=access_point](around:100,49.03694981, 16.38683411);node[highway=emergency_access_point](around:100,48.96163733, 15.69255842);
node[emergency=access_point](around:100,48.96163733, 15.69255842);node[highway=emergency_access_point](around:100,48.91201128, 15.578506);
node[emergency=access_point](around:100,48.91201128, 15.578506);node[highway=emergency_access_point](around:100,48.90876839, 15.66864369);
node[emergency=access_point](around:100,48.90876839, 15.66864369);node[highway=emergency_access_point](around:100,48.90363375, 15.70312944);
node[emergency=access_point](around:100,48.90363375, 15.70312944);node[highway=emergency_access_point](around:100,48.9282365, 15.77174872);
node[emergency=access_point](around:100,48.9282365, 15.77174872);node[highway=emergency_access_point](around:100,48.92504139, 15.90906589);
node[emergency=access_point](around:100,48.92504139, 15.90906589);node[highway=emergency_access_point](around:100,48.92861428, 15.98533389);
node[emergency=access_point](around:100,48.92861428, 15.98533389);node[highway=emergency_access_point](around:100,49.0029185, 16.17115294);
node[emergency=access_point](around:100,49.0029185, 16.17115294);node[highway=emergency_access_point](around:100,49.01639883, 16.201314);
node[emergency=access_point](around:100,49.01639883, 16.201314);node[highway=emergency_access_point](around:100,48.82443292, 16.31019978);
node[emergency=access_point](around:100,48.82443292, 16.31019978);node[highway=emergency_access_point](around:100,48.82895044, 16.35709461);
node[emergency=access_point](around:100,48.82895044, 16.35709461);node[highway=emergency_access_point](around:100,48.86039206, 16.09274022);
node[emergency=access_point](around:100,48.86039206, 16.09274022);node[highway=emergency_access_point](around:100,48.7845605, 16.30516392);
node[emergency=access_point](around:100,48.7845605, 16.30516392);node[highway=emergency_access_point](around:100,50.04853733, 12.62267086);
node[emergency=access_point](around:100,50.04853733, 12.62267086);node[highway=emergency_access_point](around:100,50.02026028, 12.64932292);
node[emergency=access_point](around:100,50.02026028, 12.64932292);node[highway=emergency_access_point](around:100,50.05306658, 12.69652681);
node[emergency=access_point](around:100,50.05306658, 12.69652681);node[highway=emergency_access_point](around:100,50.034493, 12.69112414);
node[emergency=access_point](around:100,50.034493, 12.69112414);node[highway=emergency_access_point](around:100,50.02621456, 12.66779908);
node[emergency=access_point](around:100,50.02621456, 12.66779908);node[highway=emergency_access_point](around:100,50.01070692, 12.68146231);
node[emergency=access_point](around:100,50.01070692, 12.68146231);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,50.03574656, 12.58021019);
node[emergency=access_point](around:100,50.03574656, 12.58021019);node[highway=emergency_access_point](around:100,50.02865267, 12.59821611);
node[emergency=access_point](around:100,50.02865267, 12.59821611);node[highway=emergency_access_point](around:100,49.90967692, 12.55480033);
node[emergency=access_point](around:100,49.90967692, 12.55480033);node[highway=emergency_access_point](around:100,49.93166667, 12.70388889);
node[emergency=access_point](around:100,49.93166667, 12.70388889);node[highway=emergency_access_point](around:100,50.02191397, 12.71611092);
node[emergency=access_point](around:100,50.02191397, 12.71611092);node[highway=emergency_access_point](around:100,49.98638669, 12.65126064);
node[emergency=access_point](around:100,49.98638669, 12.65126064);node[highway=emergency_access_point](around:100,50.00040153, 12.67659356);
node[emergency=access_point](around:100,50.00040153, 12.67659356);node[highway=emergency_access_point](around:100,49.98947519, 12.72006786);
node[emergency=access_point](around:100,49.98947519, 12.72006786);node[highway=emergency_access_point](around:100,49.98037147, 12.69662472);
node[emergency=access_point](around:100,49.98037147, 12.69662472);node[highway=emergency_access_point](around:100,49.97964444, 12.7807795);
node[emergency=access_point](around:100,49.97964444, 12.7807795);node[highway=emergency_access_point](around:100,49.96369292, 12.76341958);
node[emergency=access_point](around:100,49.96369292, 12.76341958);node[highway=emergency_access_point](around:100,49.95689192, 12.80838792);
node[emergency=access_point](around:100,49.95689192, 12.80838792);node[highway=emergency_access_point](around:100,49.96827806, 12.89400903);
node[emergency=access_point](around:100,49.96827806, 12.89400903);node[highway=emergency_access_point](around:100,49.96345447, 12.87282422);
node[emergency=access_point](around:100,49.96345447, 12.87282422);node[highway=emergency_access_point](around:100,49.96531197, 12.95806411);
node[emergency=access_point](around:100,49.96531197, 12.95806411);node[highway=emergency_access_point](around:100,49.95359742, 12.95595486);
node[emergency=access_point](around:100,49.95359742, 12.95595486);node[highway=emergency_access_point](around:100,49.98390244, 12.89629981);
node[emergency=access_point](around:100,49.98390244, 12.89629981);node[highway=emergency_access_point](around:100,50.00838686, 12.92094169);
node[emergency=access_point](around:100,50.00838686, 12.92094169);node[highway=emergency_access_point](around:100,50.27487361, 12.19938194);
node[emergency=access_point](around:100,50.27487361, 12.19938194);node[highway=emergency_access_point](around:100,50.26366956, 12.20939631);
node[emergency=access_point](around:100,50.26366956, 12.20939631);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,50.25262594, 12.23349961);
node[emergency=access_point](around:100,50.25262594, 12.23349961);node[highway=emergency_access_point](around:100,50.2312685, 12.24841461);
node[emergency=access_point](around:100,50.2312685, 12.24841461);node[highway=emergency_access_point](around:100,50.20713711, 12.24639689);
node[emergency=access_point](around:100,50.20713711, 12.24639689);node[highway=emergency_access_point](around:100,50.20999272, 12.27798233);
node[emergency=access_point](around:100,50.20999272, 12.27798233);node[highway=emergency_access_point](around:100,50.19893708, 12.26740297);
node[emergency=access_point](around:100,50.19893708, 12.26740297);node[highway=emergency_access_point](around:100,50.3129645, 12.12462747);
node[emergency=access_point](around:100,50.3129645, 12.12462747);node[highway=emergency_access_point](around:100,50.26545147, 12.16044739);
node[emergency=access_point](around:100,50.26545147, 12.16044739);node[highway=emergency_access_point](around:100,50.28295436, 12.37277611);
node[emergency=access_point](around:100,50.28295436, 12.37277611);node[highway=emergency_access_point](around:100,50.23772306, 12.33632331);
node[emergency=access_point](around:100,50.23772306, 12.33632331);node[highway=emergency_access_point](around:100,50.20373758, 12.33154192);
node[emergency=access_point](around:100,50.20373758, 12.33154192);node[highway=emergency_access_point](around:100,50.17995814, 12.33172322);
node[emergency=access_point](around:100,50.17995814, 12.33172322);node[highway=emergency_access_point](around:100,50.19771619, 12.35873742);
node[emergency=access_point](around:100,50.19771619, 12.35873742);node[highway=emergency_access_point](around:100,50.13550886, 12.21071172);
node[emergency=access_point](around:100,50.13550886, 12.21071172);node[highway=emergency_access_point](around:100,50.18993686, 12.21061728);
node[emergency=access_point](around:100,50.18993686, 12.21061728);node[highway=emergency_access_point](around:100,50.11372722, 12.22018822);
node[emergency=access_point](around:100,50.11372722, 12.22018822);node[highway=emergency_access_point](around:100,50.10378394, 12.29727328);
node[emergency=access_point](around:100,50.10378394, 12.29727328);node[highway=emergency_access_point](around:100,50.014305, 12.40845767);
node[emergency=access_point](around:100,50.014305, 12.40845767);node[highway=emergency_access_point](around:100,49.99892675, 12.46120019);
node[emergency=access_point](around:100,49.99892675, 12.46120019);node[highway=emergency_access_point](around:100,50.02026789, 12.50287111);
node[emergency=access_point](around:100,50.02026789, 12.50287111);node[highway=emergency_access_point](around:100,50.0081235, 12.50743453);
node[emergency=access_point](around:100,50.0081235, 12.50743453);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,49.97940867, 12.53382261);
node[emergency=access_point](around:100,49.97940867, 12.53382261);node[highway=emergency_access_point](around:100,49.95558553, 12.54523431);
node[emergency=access_point](around:100,49.95558553, 12.54523431);node[highway=emergency_access_point](around:100,49.93794297, 12.54573836);
node[emergency=access_point](around:100,49.93794297, 12.54573836);node[highway=emergency_access_point](around:100,50.17090775, 12.23443039);
node[emergency=access_point](around:100,50.17090775, 12.23443039);node[highway=emergency_access_point](around:100,50.15488708, 12.21872553);
node[emergency=access_point](around:100,50.15488708, 12.21872553);node[highway=emergency_access_point](around:100,50.26424925, 12.43729533);
node[emergency=access_point](around:100,50.26424925, 12.43729533);node[highway=emergency_access_point](around:100,50.09348617, 12.48812369);
node[emergency=access_point](around:100,50.09348617, 12.48812369);node[highway=emergency_access_point](around:100,50.24216961, 12.45566414);
node[emergency=access_point](around:100,50.24216961, 12.45566414);node[highway=emergency_access_point](around:100,50.236708, 12.46503239);
node[emergency=access_point](around:100,50.236708, 12.46503239);node[highway=emergency_access_point](around:100,50.39139386, 12.59234897);
node[emergency=access_point](around:100,50.39139386, 12.59234897);node[highway=emergency_access_point](around:100,50.21004253, 12.47991708);
node[emergency=access_point](around:100,50.21004253, 12.47991708);node[highway=emergency_access_point](around:100,50.11408794, 12.67916061);
node[emergency=access_point](around:100,50.11408794, 12.67916061);node[highway=emergency_access_point](around:100,50.13099217, 12.71526778);
node[emergency=access_point](around:100,50.13099217, 12.71526778);node[highway=emergency_access_point](around:100,50.11303522, 12.70370269);
node[emergency=access_point](around:100,50.11303522, 12.70370269);node[highway=emergency_access_point](around:100,50.17536339, 12.81684614);
node[emergency=access_point](around:100,50.17536339, 12.81684614);node[highway=emergency_access_point](around:100,50.16007644, 12.8365495);
node[emergency=access_point](around:100,50.16007644, 12.8365495);node[highway=emergency_access_point](around:100,50.09032158, 12.68462278);
node[emergency=access_point](around:100,50.09032158, 12.68462278);node[highway=emergency_access_point](around:100,50.06422606, 12.67260903);
node[emergency=access_point](around:100,50.06422606, 12.67260903);node[highway=emergency_access_point](around:100,50.06749522, 12.82559528);
node[emergency=access_point](around:100,50.06749522, 12.82559528);node[highway=emergency_access_point](around:100,50.08685964, 12.64412411);
node[emergency=access_point](around:100,50.08685964, 12.64412411);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,50.07666028, 12.74176653);
node[emergency=access_point](around:100,50.07666028, 12.74176653);node[highway=emergency_access_point](around:100,50.08593328, 12.55652617);
node[emergency=access_point](around:100,50.08593328, 12.55652617);node[highway=emergency_access_point](around:100,50.10148911, 12.57888272);
node[emergency=access_point](around:100,50.10148911, 12.57888272);node[highway=emergency_access_point](around:100,50.09349922, 12.61018314);
node[emergency=access_point](around:100,50.09349922, 12.61018314);node[highway=emergency_access_point](around:100,50.15356244, 12.67657436);
node[emergency=access_point](around:100,50.15356244, 12.67657436);node[highway=emergency_access_point](around:100,50.12368636, 12.608389);
node[emergency=access_point](around:100,50.12368636, 12.608389);node[highway=emergency_access_point](around:100,50.11555011, 12.62842981);
node[emergency=access_point](around:100,50.11555011, 12.62842981);node[highway=emergency_access_point](around:100,50.13315783, 12.66733347);
node[emergency=access_point](around:100,50.13315783, 12.66733347);node[highway=emergency_access_point](around:100,50.12478075, 12.65371161);
node[emergency=access_point](around:100,50.12478075, 12.65371161);node[highway=emergency_access_point](around:100,50.292379, 12.41657014);
node[emergency=access_point](around:100,50.292379, 12.41657014);node[highway=emergency_access_point](around:100,50.27506778, 12.42660353);
node[emergency=access_point](around:100,50.27506778, 12.42660353);node[highway=emergency_access_point](around:100,50.36065456, 12.49671733);
node[emergency=access_point](around:100,50.36065456, 12.49671733);node[highway=emergency_access_point](around:100,50.39827617, 12.566929);
node[emergency=access_point](around:100,50.39827617, 12.566929);node[highway=emergency_access_point](around:100,50.37396531, 12.52600153);
node[emergency=access_point](around:100,50.37396531, 12.52600153);node[highway=emergency_access_point](around:100,49.88953553, 15.75116897);
node[emergency=access_point](around:100,49.88953553, 15.75116897);node[highway=emergency_access_point](around:100,50.39567553, 12.60393211);
node[emergency=access_point](around:100,50.39567553, 12.60393211);node[highway=emergency_access_point](around:100,50.21871006, 12.59745606);
node[emergency=access_point](around:100,50.21871006, 12.59745606);node[highway=emergency_access_point](around:100,50.2608, 12.46616272);
node[emergency=access_point](around:100,50.2608, 12.46616272);node[highway=emergency_access_point](around:100,50.25928714, 12.49618564);
node[emergency=access_point](around:100,50.25928714, 12.49618564);node[highway=emergency_access_point](around:100,50.24049136, 12.49907544);
node[emergency=access_point](around:100,50.24049136, 12.49907544);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,50.24588142, 12.52854439);
node[emergency=access_point](around:100,50.24588142, 12.52854439);node[highway=emergency_access_point](around:100,50.23215953, 12.50973103);
node[emergency=access_point](around:100,50.23215953, 12.50973103);node[highway=emergency_access_point](around:100,50.2124525, 12.50362167);
node[emergency=access_point](around:100,50.2124525, 12.50362167);node[highway=emergency_access_point](around:100,50.33654806, 12.53871333);
node[emergency=access_point](around:100,50.33654806, 12.53871333);node[highway=emergency_access_point](around:100,50.335303, 12.56409128);
node[emergency=access_point](around:100,50.335303, 12.56409128);node[highway=emergency_access_point](around:100,50.31856611, 12.55462336);
node[emergency=access_point](around:100,50.31856611, 12.55462336);node[highway=emergency_access_point](around:100,50.34785008, 12.572011);
node[emergency=access_point](around:100,50.34785008, 12.572011);node[highway=emergency_access_point](around:100,50.33118769, 12.58333022);
node[emergency=access_point](around:100,50.33118769, 12.58333022);node[highway=emergency_access_point](around:100,50.3516165, 12.58714514);
node[emergency=access_point](around:100,50.3516165, 12.58714514);node[highway=emergency_access_point](around:100,50.35088183, 12.60611497);
node[emergency=access_point](around:100,50.35088183, 12.60611497);node[highway=emergency_access_point](around:100,50.33378014, 12.44687047);
node[emergency=access_point](around:100,50.33378014, 12.44687047);node[highway=emergency_access_point](around:100,50.31390197, 12.46033714);
node[emergency=access_point](around:100,50.31390197, 12.46033714);node[highway=emergency_access_point](around:100,50.29888997, 12.45702572);
node[emergency=access_point](around:100,50.29888997, 12.45702572);node[highway=emergency_access_point](around:100,50.28988978, 12.46991758);
node[emergency=access_point](around:100,50.28988978, 12.46991758);node[highway=emergency_access_point](around:100,50.27480075, 12.49448697);
node[emergency=access_point](around:100,50.27480075, 12.49448697);node[highway=emergency_access_point](around:100,50.28357894, 12.52580708);
node[emergency=access_point](around:100,50.28357894, 12.52580708);node[highway=emergency_access_point](around:100,50.3871535, 12.80845481);
node[emergency=access_point](around:100,50.3871535, 12.80845481);node[highway=emergency_access_point](around:100,50.27746372, 12.530967);
node[emergency=access_point](around:100,50.27746372, 12.530967);node[highway=emergency_access_point](around:100,50.27088639, 12.53913189);
node[emergency=access_point](around:100,50.27088639, 12.53913189);node[highway=emergency_access_point](around:100,50.29986883, 12.55250811);
node[emergency=access_point](around:100,50.29986883, 12.55250811);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(
node[highway=emergency_access_point](around:100,50.31081758, 12.57992308);
node[emergency=access_point](around:100,50.31081758, 12.57992308);node[highway=emergency_access_point](around:100,50.28099078, 12.5608845);
node[emergency=access_point](around:100,50.28099078, 12.5608845);node[highway=emergency_access_point](around:100,50.29637769, 12.59527911);
node[emergency=access_point](around:100,50.29637769, 12.59527911);node[highway=emergency_access_point](around:100,50.30209194, 12.60551119);
node[emergency=access_point](around:100,50.30209194, 12.60551119);node[highway=emergency_access_point](around:100,50.27182217, 12.57963392);
node[emergency=access_point](around:100,50.27182217, 12.57963392);node[highway=emergency_access_point](around:100,50.24618108, 12.56630425);
node[emergency=access_point](around:100,50.24618108, 12.56630425);node[highway=emergency_access_point](around:100,50.27573383, 12.63671058);
node[emergency=access_point](around:100,50.27573383, 12.63671058);node[highway=emergency_access_point](around:100,50.24773314, 12.61007439);
node[emergency=access_point](around:100,50.24773314, 12.61007439);node[highway=emergency_access_point](around:100,50.23641761, 12.5572415);
node[emergency=access_point](around:100,50.23641761, 12.5572415);node[highway=emergency_access_point](around:100,50.22375131, 12.5713945);
node[emergency=access_point](around:100,50.22375131, 12.5713945);node[highway=emergency_access_point](around:100,50.19576147, 12.56686539);
node[emergency=access_point](around:100,50.19576147, 12.56686539);node[highway=emergency_access_point](around:100,50.15705842, 12.50940064);
node[emergency=access_point](around:100,50.15705842, 12.50940064);node[highway=emergency_access_point](around:100,50.13976175, 12.55042542);
node[emergency=access_point](around:100,50.13976175, 12.55042542);node[highway=emergency_access_point](around:100,50.11449769, 12.54999308);
node[emergency=access_point](around:100,50.11449769, 12.54999308);node[highway=emergency_access_point](around:100,50.12029483, 12.56569044);
node[emergency=access_point](around:100,50.12029483, 12.56569044);node[highway=emergency_access_point](around:100,50.12529442, 12.57791367);
node[emergency=access_point](around:100,50.12529442, 12.57791367);node[highway=emergency_access_point](around:100,50.39719261, 12.62991719);
node[emergency=access_point](around:100,50.39719261, 12.62991719);node[highway=emergency_access_point](around:100,50.39952353, 12.64721292);
node[emergency=access_point](around:100,50.39952353, 12.64721292);node[highway=emergency_access_point](around:100,50.26567608, 12.64840217);
node[emergency=access_point](around:100,50.26567608, 12.64840217);node[highway=emergency_access_point](around:100,50.28318553, 12.67612108);
node[emergency=access_point](around:100,50.28318553, 12.67612108);
);
out;
out count;
[out:csv(::lat, ::lon, "ref", name, ::count)];
(