summaryrefslogtreecommitdiff
path: root/test/poi-service/script/paris/bicycle.xml
blob: cced5c1d9fe7186202b8354cbc20b309be006834 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
<?xml version="1.0" encoding="UTF-8"?>
<osm version="0.6" generator="Overpass API 0.7.54.12 054bb0bb">
<note>The data included in this document is from www.openstreetmap.org. The data is made available under ODbL.</note>
<meta osm_base="2017-12-11T17:05:02Z"/>

  <node id="251373376" lat="48.8402323" lon="2.3503076">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="46"/>
    <tag k="addr:postcode" v="75005"/>
    <tag k="addr:street" v="Rue Daubenton"/>
    <tag k="name" v="Gepetto &amp; Vélos"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.gepetto-velos.com/"/>
    <tag k="wheelchair" v="no"/>
  </node>
  <node id="287611762" lat="48.8626879" lon="2.3507834">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:country" v="FR"/>
    <tag k="contact:housenumber" v="52"/>
    <tag k="contact:phone" v="+33 1 48 04 51 19"/>
    <tag k="contact:postcode" v="75003"/>
    <tag k="contact:street" v="Boulevard de Sébastopol"/>
    <tag k="name" v="Au Réparateur de Bicyclettes"/>
    <tag k="note" v="Hollandais et ville, réparation vélos anciens"/>
    <tag k="opening_hours" v="Mo-Sa 10:00-19:15"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.aureparateurdebicyclettes.fr/"/>
  </node>
  <node id="287612106" lat="48.8773406" lon="2.3373832">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="39et50"/>
    <tag k="contact:phone" v="+33 1 42 81 54 68"/>
    <tag k="contact:postcode" v="75009"/>
    <tag k="contact:street" v="Rue Saint-Georges"/>
    <tag k="email" v="contact@velo-electro.com"/>
    <tag k="name" v="Vélo Electro"/>
    <tag k="note" v="Vente, réparation. Vélos de ville + quelques occasions, vélos à assistance électrique"/>
    <tag k="opening_hours" v="Tu-Fr 10:00-14:30,15:30-19:30; Sa 10:00-19:30"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.velo-electro.com/"/>
  </node>
  <node id="381167598" lat="48.8338563" lon="2.3018511">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="27"/>
    <tag k="contact:phone" v="+33 1 40 43 93 04"/>
    <tag k="contact:postcode" v="75015"/>
    <tag k="contact:street" v="Rue de Cronstadt"/>
    <tag k="email" v="contact@neovelo.fr"/>
    <tag k="name" v="Neovelo"/>
    <tag k="note" v="Vente et location de Vélos à Assistance Electrique. Réparations tous cycles"/>
    <tag k="service:bicycle:rental" v="yes"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
  </node>
  <node id="406633544" lat="48.8613337" lon="2.3721111">
    <tag k="brand" v="Orbita;TVT;Renault;EXS"/>
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="81"/>
    <tag k="contact:phone" v="+33 1 44 93 79 84"/>
    <tag k="contact:postcode" v="75011"/>
    <tag k="contact:street" v="Boulevard Richard Lenoir"/>
    <tag k="email" v="lespetitsvelos@wanadoo.fr"/>
    <tag k="name" v="Les Petits Vélos de Maurice"/>
    <tag k="opening_hours" v="Tu-Fr 09:00-18:30;Sa 11:00-13:30,14:30-18:30"/>
    <tag k="service:bicycle:pump" v="yes"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.lespetitsvelosdemaurice.fr/"/>
  </node>
  <node id="406637567" lat="48.8501427" lon="2.3910294">
    <tag k="addr:housenumber" v="18"/>
    <tag k="addr:postcode" v="75011"/>
    <tag k="addr:street" v="Rue des Boulets"/>
    <tag k="brand" v="Brompton;Mini Velo;Diana;Pocket Bike;Silver Fly"/>
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="18"/>
    <tag k="contact:phone" v="+33 1 43 48 65 46"/>
    <tag k="contact:postcode" v="75011"/>
    <tag k="contact:street" v="Rue Boulets"/>
    <tag k="name" v="Cycles Pliants Expansion"/>
    <tag k="note" v="Vélos pliants, vélos électriques, tricycles et remorques"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.velo-pliant.com"/>
  </node>
  <node id="406638261" lat="48.8500086" lon="2.3911871">
    <tag k="name" v="Velectris"/>
    <tag k="shop" v="bicycle"/>
  </node>
  <node id="406639776" lat="48.8499064" lon="2.3992524">
    <tag k="brand" v="MBK;Giant;BH;Thomas"/>
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="24"/>
    <tag k="contact:phone" v="+33 1 43 73 06 10"/>
    <tag k="contact:postcode" v="75020"/>
    <tag k="contact:street" v="Boulevard de Charonne"/>
    <tag k="name" v="Cycles Delcayre"/>
    <tag k="note" v="Vélos enfants, électriques, sacoches"/>
    <tag k="service:bicycle:pump" v="unknown"/>
    <tag k="service:bicycle:rental" v="no"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="no"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://cyclesdelcayre.fr/"/>
  </node>
  <node id="406641765" lat="48.8463059" lon="2.4121013">
    <tag k="brand" v="Hase;Velotechnik"/>
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="1à5"/>
    <tag k="contact:phone" v="+33 1 43 41 18 10"/>
    <tag k="contact:postcode" v="75012"/>
    <tag k="contact:street" v="Rue Fernand-Foureau"/>
    <tag k="name" v="Rando Cycles"/>
    <tag k="note" v="Fabrication vélos de randonnée sur mesures. Vente accessoires, pièces et outillage. Distribution vélos couchés. Vente tricycles et remorques"/>
    <tag k="opening_hours" v="Tu-Sa 10:00-13:00, 14:00-19:00; Sa 10:00-13:00, 14:00-18:00"/>
    <tag k="service:bicycle:cleaning" v="no"/>
    <tag k="service:bicycle:pump" v="no"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.rando-cycles.com/"/>
    <tag k="wheelchair" v="no"/>
  </node>
  <node id="406649851" lat="48.8679871" lon="2.3900342">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="10"/>
    <tag k="contact:phone" v="+33 1 46 36 74 63"/>
    <tag k="contact:postcode" v="75020"/>
    <tag k="contact:street" v="Rue Sorbier"/>
    <tag k="name" v="BMG Cycles"/>
    <tag k="note" v="de père en fils depuis 1903"/>
    <tag k="service:bicycle:rental" v="yes"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
  </node>
  <node id="406651951" lat="48.8661235" lon="2.3664950">
    <tag k="contact:phone" v="+33 1 47 00 27 47"/>
    <tag k="contact:website" v="http://www.cycleslaurent.com/"/>
    <tag k="name" v="Cycles Laurent"/>
    <tag k="note" v="Cadres sur mesures, vélos de course"/>
    <tag k="opening_hours" v="Mo-Sa 10:00-18:45"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
  </node>
  <node id="406653301" lat="48.8610723" lon="2.3703539">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="22"/>
    <tag k="contact:phone" v="+33 1 48 87 60 01"/>
    <tag k="contact:postcode" v="75011"/>
    <tag k="contact:street" v="Rue Alphonse Baudin"/>
    <tag k="email" v="info@parisvelosympa.com"/>
    <tag k="name" v="Paris à Vélo, c’est Sympa"/>
    <tag k="note" v="Organisation de balades à vélo dans Paris. Location vélos de ville et tandems"/>
    <tag k="service:bicycle:cleaning" v="no"/>
    <tag k="service:bicycle:diy" v="no"/>
    <tag k="service:bicycle:pump" v="no"/>
    <tag k="service:bicycle:rental" v="yes"/>
    <tag k="service:bicycle:repair" v="no"/>
    <tag k="service:bicycle:retail" v="no"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.parisvelosympa.com"/>
  </node>
  <node id="406661388" lat="48.8647160" lon="2.3654795">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="23"/>
    <tag k="contact:phone" v="+33 1 42 77 01 19"/>
    <tag k="contact:postcode" v="75003"/>
    <tag k="contact:street" v="Boulevard du Temple"/>
    <tag k="name" v="Preya Cycle"/>
    <tag k="note" v="Hollandais, ville, VTT, VTC"/>
    <tag k="opening_hours" v="Tu-Sa 11:00-19:00"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://preyacycles.com/"/>
    <tag k="wheelchair" v="no"/>
  </node>
  <node id="406664708" lat="48.8456128" lon="2.3401302">
    <tag k="brand" v="Gazelle;Cyrus;Mac Douglas;Giant"/>
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="81"/>
    <tag k="contact:phone" v="+33 1 43 54 85 36"/>
    <tag k="contact:postcode" v="75005"/>
    <tag k="contact:street" v="Boulevard Saint-Michel"/>
    <tag k="name" v="Au Point Vélo Hollandais"/>
    <tag k="note" v="Hollandais et ville"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.pointvelo.com/"/>
    <tag k="wheelchair" v="no"/>
  </node>
  <node id="406669671" lat="48.8351552" lon="2.3241552">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:fax" v="+33 1 43 20 95 88"/>
    <tag k="contact:housenumber" v="129"/>
    <tag k="contact:phone" v="+33 1 43 22 78 55"/>
    <tag k="contact:postcode" v="75014"/>
    <tag k="contact:street" v="Avenue du Maine"/>
    <tag k="name" v="Vélo &amp; Oxygen"/>
    <tag k="service:bicycle:parts" v="yes"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="wheelchair" v="no"/>
  </node>
  <node id="406670408" lat="48.8451785" lon="2.3193421">
    <tag k="brand" v="Giant;Lapierre;Orbéa"/>
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="36"/>
    <tag k="contact:phone" v="+33 1 45 44 10 09"/>
    <tag k="contact:postcode" v="75015"/>
    <tag k="contact:street" v="Boulevard Montparnasse"/>
    <tag k="name" v="Bike in Paris"/>
    <tag k="note" v="Montage à la carte"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="wheelchair" v="no"/>
  </node>
  <node id="406674136" lat="48.8496463" lon="2.3235990">
    <tag k="alt_name" v="Brompton Junction"/>
    <tag k="brand" v="Cannondale;Utopia;Brompton;Gazelle;Azor;Michel Thomas"/>
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="3"/>
    <tag k="contact:phone" v="+33 1 45 44 72 97"/>
    <tag k="contact:postcode" v="75006"/>
    <tag k="contact:street" v="Rue de l’Abbé-Grégoire"/>
    <tag k="name" v="Les Vélos Parisiens"/>
    <tag k="note" v="Vente ville et VTC, vélos enfants, pliants"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.lesvelosparisiens.com"/>
    <tag k="wheelchair" v="no"/>
  </node>
  <node id="406676109" lat="48.8524944" lon="2.3375559">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="30"/>
    <tag k="contact:phone" v="+33 1 43 29 09 04"/>
    <tag k="contact:postcode" v="75006"/>
    <tag k="contact:street" v="Rue Grégoire de Tours"/>
    <tag k="name" v="Cycle Centre"/>
    <tag k="note" v="Spécialiste du vélo Hollandais Anglais. VTT – VTC"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="wheelchair" v="no"/>
  </node>
  <node id="406678204" lat="48.8393787" lon="2.3607356">
    <tag k="brand" v="Puch;Gitane"/>
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="11"/>
    <tag k="contact:phone" v="+33 1 42 17 01 79"/>
    <tag k="contact:postcode" v="75013"/>
    <tag k="contact:street" v="Boulevard St Marcel"/>
    <tag k="email" v="espritvelo@free.fr"/>
    <tag k="name" v="Esprit Vélo"/>
    <tag k="note" v="Réparation sans RDV, vente d’équipement pour vélo de ville. Vélo enfant, vélo ville, vélo hollandais, vélo électrique. Travaille avec le groupe CycleEurope. Propose le gravage sans rendez-vous."/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.espritvelo.fr"/>
    <tag k="wheelchair" v="no"/>
  </node>
  <node id="406680366" lat="48.8231589" lon="2.3553031">
    <tag k="brand" v="Gitane;Lapierre;Bianchi;Peugeot"/>
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="34"/>
    <tag k="contact:phone" v="+33 1 45 88 50 04"/>
    <tag k="contact:postcode" v="75013"/>
    <tag k="contact:street" v="Rue Damesme"/>
    <tag k="name" v="Cyclo Sport 34"/>
    <tag k="opening_hours" v="Tu-Fr 09:30-12:30,14:00-19:00; Sa 09:30-12:30,14:00-18:00"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="wheelchair" v="no"/>
  </node>
  <node id="406683542" lat="48.8224146" lon="2.3462367">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="14"/>
    <tag k="contact:phone" v="+33 1 45 65 49 89"/>
    <tag k="contact:postcode" v="75013"/>
    <tag k="contact:street" v="Place de Rungis"/>
    <tag k="name" v="Mountain Biker"/>
    <tag k="note" v="Spécialiste VTT"/>
    <tag k="opening_hours" v="Tu-Fr 10:00-19:00; Sa 10:00-18:30"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.mountainbikerparis.fr/"/>
    <tag k="wheelchair" v="no"/>
  </node>
  <node id="406692819" lat="48.8904588" lon="2.3845951">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="38 bis"/>
    <tag k="contact:phone" v="+33 1 43 43 40 74"/>
    <tag k="contact:postcode" v="75019"/>
    <tag k="contact:street" v="Quai de la Marne"/>
    <tag k="description" v="Association fondée sur un projet d'animation et une démarche sociale."/>
    <tag k="name" v="AICV"/>
    <tag k="opening_hours" v="Tu-Sa 09:45-12:30,13:30-17:15"/>
    <tag k="service:bicycle:rental" v="yes"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.aicv.net/"/>
  </node>
  <node id="406696580" lat="48.8799209" lon="2.3669233">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="177"/>
    <tag k="contact:phone" v="+33 1 42 09 68 16"/>
    <tag k="contact:postcode" v="75010"/>
    <tag k="contact:street" v="Quai de Valmy"/>
    <tag k="name" v="Cyclo Store"/>
    <tag k="note" v="Réparation sans rendez-vous. Station de gonflage et de réglages"/>
    <tag k="opening_hours" v="Mo-Su 9:00-19:00"/>
    <tag k="service:bicycle:pump" v="yes"/>
    <tag k="service:bicycle:rental" v="yes"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://cyclostore.canalblog.com/"/>
  </node>
  <node id="406698923" lat="48.8821782" lon="2.3636917">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="36"/>
    <tag k="contact:phone" v="+33 1 40 34 81 18"/>
    <tag k="contact:postcode" v="75010"/>
    <tag k="contact:street" v="Rue de l’aqueduc"/>
    <tag k="name" v="Le Petit Boyauteur"/>
    <tag k="note" v="Montage de vélos personnalisés"/>
    <tag k="opening_hours" v="Tu-Su 09:29-13:03,15:37-19:08"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
  </node>
  <node id="408498997" lat="48.8620618" lon="2.3399933">
    <tag k="addr:housenumber" v="156"/>
    <tag k="addr:street" v="Rue Saint-Honoré"/>
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:postcode" v="75001"/>
    <tag k="name" v="Cycles Saint-Honoré"/>
    <tag k="opening_hours" v="Mo-Fr 10:00-13:00, 14:00-19:00; Sa 14:00-19:00"/>
    <tag k="phone" v="+33 1 42 60 06 19"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://cyclesainthonore.fr/"/>
  </node>
  <node id="408501350" lat="48.8979512" lon="2.3360083">
    <tag k="name" v="Lardais Patrick"/>
    <tag k="shop" v="bicycle"/>
  </node>
  <node id="408503857" lat="48.8488852" lon="2.4290130">
    <tag k="addr:city" v="Montreuil"/>
    <tag k="addr:postcode" v="93100"/>
    <tag k="name" v="Bouticycle du Château"/>
    <tag k="opening_hours" v="Tu-Fr 10:00-12:45,15:00-19:00; Sa 10:00-13:00,15:00-18:30"/>
    <tag k="shop" v="bicycle"/>
    <tag k="wheelchair" v="no"/>
  </node>
  <node id="408561503" lat="48.8158200" lon="2.3049898">
    <tag k="brand" v="Giant;Scott"/>
    <tag k="contact:city" v="Malakoff"/>
    <tag k="contact:housenumber" v="142"/>
    <tag k="contact:phone" v="+33 1 46 57 37 23"/>
    <tag k="contact:postcode" v="92240"/>
    <tag k="contact:street" v="Avenue Pierre Brossolette"/>
    <tag k="contact:website" v="www.velo-dans-la-ville.fr"/>
    <tag k="name" v="Un vélo dans la ville"/>
    <tag k="opening_hours" v="Tu-Th,Sa 10:00-12:00,13:00-19:00;Fr 10:00-12:00,13:00-18:00"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
  </node>
  <node id="408561867" lat="48.8336693" lon="2.3187014">
    <tag k="addr:street" v="Rue Pernety"/>
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="36"/>
    <tag k="contact:phone" v="+33 1 45 42 74 56"/>
    <tag k="contact:postcode" v="75014"/>
    <tag k="contact:street" v="Rue Pernety"/>
    <tag k="name" v="Ok Ça Roule"/>
    <tag k="note" v="Réparation, vente de vélos. Neufs et occasions de toutes marques."/>
    <tag k="service:bicycle:rental" v="yes"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.okcaroule.fr"/>
    <tag k="wheelchair" v="no"/>
  </node>
  <node id="408561950" lat="48.8397690" lon="2.2932915">
    <tag k="name" v="Urban Cycles 15"/>
    <tag k="shop" v="bicycle"/>
    <tag k="wheelchair" v="no"/>
  </node>
  <node id="408561953" lat="48.8388787" lon="2.2902125">
    <tag k="name" v="R B Cyclos"/>
    <tag k="shop" v="bicycle"/>
    <tag k="wheelchair" v="no"/>
  </node>
  <node id="408562162" lat="48.8254765" lon="2.2487000">
    <tag k="contact:city" v="Boulogne-Billancourt"/>
    <tag k="contact:housenumber" v="2"/>
    <tag k="contact:phone" v="+33 1 46 21 23 23"/>
    <tag k="contact:postcode" v="92100"/>
    <tag k="contact:street" v="av Pierre Grenier"/>
    <tag k="name" v="Giant Bicycles"/>
    <tag k="note" v="Montage à la carte."/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="source" v="survey"/>
  </node>
  <node id="446865631" lat="48.8766520" lon="2.3871314">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="21"/>
    <tag k="addr:postcode" v="75019"/>
    <tag k="addr:street" v="Rue de la Villette"/>
    <tag k="name" v="Respiro"/>
    <tag k="shop" v="bicycle"/>
  </node>
  <node id="632979744" lat="48.8943204" lon="2.3406884">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="58"/>
    <tag k="contact:phone" v="+33 6 13 13 42 27"/>
    <tag k="contact:postcode" v="75018"/>
    <tag k="contact:street" v="Rue du Ruisseau"/>
    <tag k="name" v="Vélo 18 Vintage"/>
    <tag k="note" v="Spécialiste vélos français années 1960-1980"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.velo-vintage.com/"/>
  </node>
  <node id="647811682" lat="48.8578908" lon="2.3534575">
    <tag k="name" v="BHV Vélo"/>
    <tag k="shop" v="bicycle"/>
  </node>
  <node id="647817455" lat="48.8948264" lon="2.2975816">
    <tag k="contact:city" v="Levallois-Perret"/>
    <tag k="contact:housenumber" v="53"/>
    <tag k="contact:phone" v="+33 1 47 37 42 14"/>
    <tag k="contact:postcode" v="92300"/>
    <tag k="contact:street" v="Rue Victor Hugo"/>
    <tag k="name" v="Alex Singer"/>
    <tag k="note" v="Fabrication de cycles et pièces détachées"/>
    <tag k="service:bicycle:cleaning" v="no"/>
    <tag k="service:bicycle:diy" v="no"/>
    <tag k="service:bicycle:pump" v="no"/>
    <tag k="service:bicycle:rental" v="no"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
  </node>
  <node id="675581050" lat="48.8463310" lon="2.4118001">
    <tag k="name" v="Rando Boutique"/>
    <tag k="phone" v="+331 40 01 03 08"/>
    <tag k="service:bicycle:cleaning" v="no"/>
    <tag k="service:bicycle:pump" v="no"/>
    <tag k="service:bicycle:rental" v="no"/>
    <tag k="service:bicycle:repair" v="no"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="no"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.rando-boutique.com"/>
  </node>
  <node id="675841308" lat="48.8309780" lon="2.3487086">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="67"/>
    <tag k="addr:postcode" v="75013"/>
    <tag k="addr:street" v="Rue de Croulebarbe"/>
    <tag k="branch" v="13ème Corvisart"/>
    <tag k="brand" v="Buzibi"/>
    <tag k="description" v="Spécialiste vélo à assitance électrique. Atelier réparation tous vélos"/>
    <tag k="name" v="Buzibi"/>
    <tag k="opening_hours" v="Tu-Sa 10:00-19:00"/>
    <tag k="phone" v="+33 1 47 07 16 75"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.buzibi.fr/"/>
    <tag k="wheelchair" v="no"/>
  </node>
  <node id="675848662" lat="48.8641571" lon="2.3658170">
    <tag k="brand" v="composants Brooks;BLB;Miche;Nitto;Sugino;MKS"/>
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="17"/>
    <tag k="contact:phone" v="+33 9 51 61 68 29"/>
    <tag k="contact:postcode" v="75003"/>
    <tag k="contact:street" v="Boulevard du Temple"/>
    <tag k="name" v="BiCyCle Store"/>
    <tag k="note" v="Beach cruisers, vélos pliants, vélos de ville, pignon fixe..."/>
    <tag k="opening_hours" v="Mo-Sa 10:00-19:00"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.bicyclestore.fr"/>
  </node>
  <node id="675865742" lat="48.8510262" lon="2.2933495">
    <tag k="brand" v="Brompton;Strida;Montague"/>
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="5"/>
    <tag k="contact:phone" v="+33 1 40 58 12 22"/>
    <tag k="contact:postcode" v="75015"/>
    <tag k="contact:street" v="Rue Humblot"/>
    <tag k="email" v="info@roulezchampions.com"/>
    <tag k="name" v="Roulez Champions"/>
    <tag k="note" v="Spécialiste vélos pliants... Vélos hollandais. Réparation toutes marques."/>
    <tag k="service:bicycle:rental" v="yes"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.roulezchampions.com"/>
  </node>
  <node id="675891753" lat="48.8621084" lon="2.3821230">
    <tag k="brand" v="Specialized;Trek;Look;Time"/>
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="47"/>
    <tag k="contact:phone" v="+33 1 47 00 68 43"/>
    <tag k="contact:postcode" v="75011"/>
    <tag k="contact:street" v="Rue Servan"/>
    <tag k="name" v="Franscoop"/>
    <tag k="note" v="VTT, VTC, vélos de course, vélos pliants, vélos électriques."/>
    <tag k="service:bicycle:diy" v="no"/>
    <tag k="service:bicycle:pump" v="unknown"/>
    <tag k="service:bicycle:rental" v="no"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="no"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.franscoop.fr/"/>
  </node>
  <node id="705458913" lat="48.8522483" lon="2.3677013">
    <tag k="addr:housenumber" v="37"/>
    <tag k="addr:street" v="Boulevard Bourdon"/>
    <tag k="name" v="Maison du vélo"/>
    <tag k="opening_hours" v="Tu-Sa 10:00-19:00"/>
    <tag k="phone" v="+33 1 49 96 52 09"/>
    <tag k="service:bicycle:diy" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
    <tag k="website" v="http://www.paris.fr/maisonduvelo"/>
    <tag k="wheelchair" v="yes"/>
  </node>
  <node id="705459010" lat="48.8523036" lon="2.3673131">
    <tag k="addr:housenumber" v="6"/>
    <tag k="addr:street" v="Rue Jacques Cœur"/>
    <tag k="name" v="Atelier vélorutionnaire"/>
    <tag k="opening_hours" v="Tu 16:00-21:00; Th 16:00-21:00; Su 14:00-19:00"/>
    <tag k="service:bicycle:diy" v="yes"/>
    <tag k="service:bicycle:pump" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
    <tag k="website" v="http://www.velorution.org"/>
    <tag k="wheelchair" v="yes"/>
  </node>
  <node id="836814947" lat="48.8305317" lon="2.2941957">
    <tag k="addr:housenumber" v="77"/>
    <tag k="addr:street" v="Boulevard Lefebvre"/>
    <tag k="name" v="Holland Bikes"/>
    <tag k="note" v="Réparation toutes marques"/>
    <tag k="opening_hours" v="Tu-Fr 10:00-19:00"/>
    <tag k="phone" v="+33 1 42 50 42 40"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.hollandbikes.com/"/>
  </node>
  <node id="904060582" lat="48.8502135" lon="2.3588712">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="1"/>
    <tag k="contact:phone" v="+33 1 43 29 05 63"/>
    <tag k="contact:postcode" v="75004"/>
    <tag k="contact:street" v="Boulevard Henri IV"/>
    <tag k="name" v="Giant Store Notre-Dame"/>
    <tag k="note" v="Réparation toutes marques. Montage à la carte. Accessoires. Textiles. Nutrition. Vélos enfants, ville, VTC, VTT, route, Triathlon, Vélos à Assistance Électrique, Fixie."/>
    <tag k="opening_hours" v="Tu-Sa 10:00-19:00"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.giant-notredame.fr/"/>
    <tag k="wheelchair" v="no"/>
  </node>
  <node id="1079210602" lat="48.8464625" lon="2.3817701">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="25"/>
    <tag k="contact:phone" v="+33 1 43 07 39 05"/>
    <tag k="contact:postcode" v="75012"/>
    <tag k="contact:street" v="Rue Crozatier"/>
    <tag k="name" v="Vélo services"/>
    <tag k="phone" v="+33 1 43 43 92 52"/>
    <tag k="service:bicycle:rental" v="yes"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.veloservices.fr"/>
    <tag k="wheelchair" v="no"/>
  </node>
  <node id="1300607533" lat="48.8772979" lon="2.2851254">
    <tag k="brand" v="Gitane;Bianchi;Meteor"/>
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="72"/>
    <tag k="contact:postcode" v="75017"/>
    <tag k="contact:street" v="Avenue de la Grande Armée"/>
    <tag k="name" v="Velo &amp; Oxygen"/>
    <tag k="service:bicycle:parts" v="yes"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
  </node>
  <node id="1366642101" lat="48.8393036" lon="2.2837056">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="93"/>
    <tag k="contact:phone" v="+33 1 45 57 56 88"/>
    <tag k="contact:postcode" v="75015"/>
    <tag k="contact:street" v="Avenue Félix Faure"/>
    <tag k="name" v="Cyclo Paris 15"/>
    <tag k="note" v="Spécialiste du vélo hollandais"/>
    <tag k="service:bicycle:rental" v="yes"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2011"/>
    <tag k="website" v="http://www.cycloparis15.fr"/>
  </node>
  <node id="1369678524" lat="48.8560577" lon="2.3569772">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="23"/>
    <tag k="addr:postcode" v="75004"/>
    <tag k="addr:street" v="Rue de Rivoli"/>
    <tag k="name" v="Ecox"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.ecox.fr/nos-magasins/ecox-paris-rivoli"/>
  </node>
  <node id="1378321857" lat="48.8700199" lon="2.3668590">
    <tag k="brand" v="Brompton"/>
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="50"/>
    <tag k="contact:phone" v="+33 1 48 04 84 91"/>
    <tag k="contact:postcode" v="75010"/>
    <tag k="contact:street" v="Quai de Jemmapes"/>
    <tag k="name" v="Cyclable"/>
    <tag k="note" v="Spécialiste du vélo de ville haut de gamme, vélos pliants, vélos électriques ainsi que les nouveaux vélos couchés."/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://paris10.cyclable.com/"/>
  </node>
  <node id="1457573267" lat="48.8401416" lon="2.3146953">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="2"/>
    <tag k="addr:street" v="Rue de l'Armorique"/>
    <tag k="brand" v="Matra;Gazelle"/>
    <tag k="description" v="Electriser vos déplacements"/>
    <tag k="name" v="Altermove"/>
    <tag k="note" v="VAE"/>
    <tag k="old_name" v="Freemoos"/>
    <tag k="opening_hours" v="Tu-Sa 10:00-13:45,15:00-19:00"/>
    <tag k="shop" v="bicycle"/>
    <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
  </node>
  <node id="1458502559" lat="48.8551953" lon="2.4106265">
    <tag k="name" v="Ecox"/>
    <tag k="shop" v="bicycle"/>
    <tag k="wheelchair" v="no"/>
  </node>
  <node id="1458511693" lat="48.8647906" lon="2.3476242">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="40"/>
    <tag k="contact:phone" v="+33 1 44 54 06 46"/>
    <tag k="contact:postcode" v="75002"/>
    <tag k="contact:street" v="Rue Tiquetonne"/>
    <tag k="name" v="En Selle Marcel"/>
    <tag k="note" v="Beaux vélos pour tous les jours, vélos rares pour amateurs, vélos vintage des années 50s aux 80s, accessoires inédits style et confort. Atelier pour l'entretien"/>
    <tag k="opening_hours" v="tu-sa 11:00-19:00"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.ensellemarcel.com"/>
  </node>
  <node id="1672310011" lat="48.8685084" lon="2.3857567">
    <tag k="name" v="Velotority"/>
    <tag k="opening_hours" v="Tu-Fr 10:00-13:00,14:00-19:00; Sa 13:00-19:00"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.velotority.com"/>
  </node>
  <node id="1747138935" lat="48.8392743" lon="2.4024830">
    <tag k="contact:housenumber" v="23"/>
    <tag k="contact:street" v="Rue de Toul"/>
    <tag k="name" v="Belleville Lowrider"/>
    <tag k="note" v="Vélo californien"/>
    <tag k="phone" v="+33 1 44 87 09 66"/>
    <tag k="service:bicycle:rental" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.belleville-lowrider.fr/"/>
  </node>
  <node id="1747138937" lat="48.8520816" lon="2.2952447">
    <tag k="addr:housenumber" v="24"/>
    <tag k="addr:postcode" v="75015"/>
    <tag k="addr:street" v="Rue Edgar Faure"/>
    <tag k="name" v="Fat Tire Bike Tours"/>
    <tag k="service:bicycle:cleaning" v="no"/>
    <tag k="service:bicycle:diy" v="no"/>
    <tag k="service:bicycle:pump" v="no"/>
    <tag k="service:bicycle:rental" v="yes"/>
    <tag k="service:bicycle:repair" v="no"/>
    <tag k="service:bicycle:retail" v="no"/>
    <tag k="service:bicycle:second_hand" v="no"/>
    <tag k="shop" v="bicycle"/>
    <tag k="wheelchair" v="no"/>
  </node>
  <node id="1827357919" lat="48.8484768" lon="2.2750574">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="47"/>
    <tag k="contact:phone" v="+33 9 80 85 62 04"/>
    <tag k="contact:postcode" v="75016"/>
    <tag k="contact:street" v="avenue de Versailles"/>
    <tag k="name" v="Les Cyclistes Branchés"/>
    <tag k="note" v="Spécialiste du vélo électrique"/>
    <tag k="opening_hours" v="Tu-Fr 10:30-19:30; Sa 10:00-19:00"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.les-cyclistes-branches.com/"/>
  </node>
  <node id="1883161740" lat="48.8784909" lon="2.3722436">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="10"/>
    <tag k="contact:postcode" v="75019"/>
    <tag k="contact:street" v="Rue des Chaufourniers"/>
    <tag k="name" v="JP Cycles"/>
    <tag k="note" v="Débarras de vos bicyclettes"/>
    <tag k="opening_hours" v="Mo-Sa 9:00-13:00, 15:00-19:00"/>
    <tag k="phone" v="+33 9 53 76 97 70"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://jpcycles.sitego.fr"/>
  </node>
  <node id="1896147373" lat="48.8891012" lon="2.3335587">
    <tag k="contact:street" v="Rue Damrémont"/>
    <tag k="name" v="Paris Vert"/>
    <tag k="opening_hours" v="Tu-Sa 09:30-18:30"/>
    <tag k="phone" v="+33 1 53 09 99 09"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.parisvert.fr/"/>
  </node>
  <node id="1987459532" lat="48.8595201" lon="2.4036286">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="15"/>
    <tag k="addr:postcode" v="75020"/>
    <tag k="addr:street" v="Rue Pierre Bonnard"/>
    <tag k="contact:email" v="info.paris@cyclocoop.org"/>
    <tag k="contact:website" v="http://www.cyclocoop.org/index.php/les-ateliers/paris-est"/>
    <tag k="name" v="La Cyclofficine de Paris"/>
    <tag k="opening_hours" v="Mo 19:00-22:00; Th-Sa 13:30-19:30; Sa[1] off"/>
    <tag k="service:bicycle:diy" v="yes"/>
    <tag k="service:bicycle:pump" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2012"/>
    <tag k="website" v="https://www.cyclocoop.org"/>
  </node>
  <node id="2050246285" lat="48.8772478" lon="2.2860197">
    <tag k="shop" v="bicycle"/>
  </node>
  <node id="2121960202" lat="48.8841392" lon="2.3039160">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:country" v="FR"/>
    <tag k="addr:housenumber" v="76"/>
    <tag k="addr:postcode" v="75017"/>
    <tag k="addr:street" v="Avenue de Villiers"/>
    <tag k="name" v="Cyclable"/>
    <tag k="opening_hours" v="Tu-Sa 10:00-13:00, 14:00-19:00"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2013"/>
    <tag k="website" v="http://paris17.cyclable.com/"/>
  </node>
  <node id="2304319861" lat="48.8714764" lon="2.3601029">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="29b"/>
    <tag k="addr:postcode" v="75010"/>
    <tag k="addr:street" v="Boulevard de Magenta"/>
    <tag k="name" v="Cycles Minutes"/>
    <tag k="opening_hours" v="Mo-Su 09:00-19:00"/>
    <tag k="service:bicycle:rental" v="yes"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.cyclesminutes.fr/"/>
  </node>
  <node id="2304319863" lat="48.8569202" lon="2.3801348">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="50"/>
    <tag k="contact:postcode" v="75011"/>
    <tag k="contact:street" v="Rue Godefroy Cavaignac"/>
    <tag k="name" v="Rapid Vélos"/>
    <tag k="note" v="Le spécialiste du Hollandais. Réparateur toutes marques."/>
    <tag k="opening_hours" v="Tu-Su 9:00-20:00"/>
    <tag k="phone" v="+33 1 43 73 18 12"/>
    <tag k="service:bicycle:pump" v="yes"/>
    <tag k="service:bicycle:rental" v="yes"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
  </node>
  <node id="2328496615" lat="48.8677236" lon="2.3688989">
    <tag k="name" v="Cyclope"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.cyclopebikes.fr/"/>
  </node>
  <node id="2445444744" lat="48.8403910" lon="2.3454092">
    <tag k="brand" v="Strida;Brompton"/>
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="51"/>
    <tag k="contact:phone" v="+33 1 45 35 30 75"/>
    <tag k="contact:postcode" v="75005"/>
    <tag k="contact:street" v="Rue Claude Bernard"/>
    <tag k="email" v="contact@labicycletteelectrique.fr"/>
    <tag k="name" v="La Bicyclette Électrique"/>
    <tag k="note" v="Spécialiste vélos électriques et vélos pliables"/>
    <tag k="opening_hours" v="Mo-Sa 10:00-19:30"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="source" v="survey"/>
  </node>
  <node id="2460362212" lat="48.8164252" lon="2.2756012">
    <tag k="brand" v="MBK;LaPierre"/>
    <tag k="contact:city" v="Vanves"/>
    <tag k="contact:housenumber" v="40"/>
    <tag k="contact:phone" v="+33 1 46 42 32 98"/>
    <tag k="contact:postcode" v="92170"/>
    <tag k="contact:street" v="Avenue de la Paix"/>
    <tag k="name" v="Chardonnet"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
  </node>
  <node id="2464044815" lat="48.8170382" lon="2.2479946">
    <tag k="addr:city" v="Meudon"/>
    <tag k="addr:housenumber" v="6"/>
    <tag k="addr:postcode" v="92190"/>
    <tag k="addr:street" v="Rue de Paris"/>
    <tag k="name" v="Velovente"/>
    <tag k="phone" v="+33 9 82 21 22 82"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="www.vtt-cube.fr"/>
  </node>
  <node id="2503108174" lat="48.8261936" lon="2.3733792">
    <tag k="addr:housenumber" v="1"/>
    <tag k="addr:street" v="Rue Trolley de Prévaux"/>
    <tag k="name" v="Les petits vélos de Tolbiac"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2013"/>
  </node>
  <node id="2639430689" lat="48.8146444" lon="2.4012557">
    <tag k="addr:city" v="Ivry-sur-Seine"/>
    <tag k="addr:housenumber" v="6"/>
    <tag k="addr:postcode" v="94200"/>
    <tag k="addr:street" v="Boulevard de Brandebourg"/>
    <tag k="name" v="Cyclofficine d'Ivry"/>
    <tag k="note" v="Atelier vélo coopératif. Ouvertures : mardi 19h-22h, jeudi et samedi 14h-19h (sauf 1er sam du mois)"/>
    <tag k="opening_hours" v="Tu 19:00-22:00; Th,Sa 14:00-19:00; Sa[1] off"/>
    <tag k="service:bicycle:diy" v="yes"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="source" v="cadastre-dgi-fr source : Direction Generale des Impots - Cadastre. Mise a jour : 2014"/>
    <tag k="website" v="https://www.cyclocoop.org"/>
  </node>
  <node id="2670790926" lat="48.8530768" lon="2.4216908">
    <tag k="addr:housenumber" v="12"/>
    <tag k="name" v="Le Comptoir Bike Shop"/>
    <tag k="shop" v="bicycle"/>
    <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2014"/>
    <tag k="url" v="http://lecomptoirbikeshop.com/"/>
  </node>
  <node id="2682494131" lat="48.8350876" lon="2.3236228">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="136"/>
    <tag k="addr:postcode" v="75014"/>
    <tag k="addr:street" v="Avenue du Maine"/>
    <tag k="name" v="Ecox"/>
    <tag k="phone" v="+33 1 43 21 81 78"/>
    <tag k="service:bicycle:rental" v="no"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.ecox.fr/nos-magasins/ecox-montparnasse/"/>
  </node>
  <node id="2810060724" lat="48.8472580" lon="2.3874271">
    <tag k="email" v="paris12@cyclable.com"/>
    <tag k="name" v="Cyclable 12e"/>
    <tag k="phone" v="+33 9 72 45 78 01"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="https://paris12.cyclable.com/"/>
  </node>
  <node id="2827746701" lat="48.8249912" lon="2.3579762">
    <tag k="name" v="Cycles Sport Urbain"/>
    <tag k="opening_hours" v="Mo 09:00-21:00, We-Fr 09:00-21:00, Sa 10:00-20:00, Su 11:00-19:00"/>
    <tag k="shop" v="bicycle"/>
    <tag k="source:opening_hours" v="survey"/>
    <tag k="website" v="http://cyclesurbain.fr"/>
  </node>
  <node id="2845063415" lat="48.8710703" lon="2.3600993">
    <tag k="name" v="Alternative Bike"/>
    <tag k="shop" v="bicycle"/>
  </node>
  <node id="2939793266" lat="48.8757614" lon="2.3873352">
    <tag k="name" v="Velos et bicyclettes"/>
    <tag k="shop" v="bicycle"/>
  </node>
  <node id="3201322161" lat="48.8437050" lon="2.2964556">
    <tag k="name" v="Pharmacycle"/>
    <tag k="service:bicycle:cleaning" v="no"/>
    <tag k="service:bicycle:diy" v="no"/>
    <tag k="service:bicycle:pump" v="yes"/>
    <tag k="service:bicycle:rental" v="no"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="source:name" v="survey"/>
    <tag k="wheelchair" v="no"/>
  </node>
  <node id="3213130438" lat="48.8424383" lon="2.2646195">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="59"/>
    <tag k="addr:postcode" v="75016"/>
    <tag k="addr:street" v="Rue Chardon-Lagache"/>
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="59"/>
    <tag k="contact:postcode" v="75016"/>
    <tag k="contact:street" v="Rue Chardon-Lagache"/>
    <tag k="name" v="Paris Vert"/>
    <tag k="note" v="&quot;As of 1st April 2017, temporarily closed due to illness&quot;, so call before going."/>
    <tag k="phone" v="+33.1 40 50 20 01"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://parisvert.fr/"/>
  </node>
  <node id="3222082587" lat="48.8448042" lon="2.2707467">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="98"/>
    <tag k="contact:phone" v="+33 1 45 20 03 95"/>
    <tag k="contact:postcode" v="75016"/>
    <tag k="contact:street" v="Avenue de Versailles"/>
    <tag k="name" v="Bicycland"/>
    <tag k="note" v="Spécialiste du vélo hollandais. Dépositaire vélos pliant Dahon. Réparation vélos toutes marques, vente vélos d'occasion."/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.bicycland.com/"/>
  </node>
  <node id="3236199132" lat="48.8649312" lon="2.3653471">
    <tag k="name" v="Triathlon Store"/>
    <tag k="opening_hours" v="Mo-Sa 10:00-19:00"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="triathlonstore.fr"/>
  </node>
  <node id="3247620975" lat="48.8510185" lon="2.3975274">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="110"/>
    <tag k="contact:phone" v="+33 9 84 58 35 94"/>
    <tag k="contact:postcode" v="75011"/>
    <tag k="contact:street" v="Rue de Montreuil"/>
    <tag k="name" v="Cycles Bogoss"/>
    <tag k="note" v="Spécialiste vélos anciens restaurés ou transformés : pignon fixe, single speed, randonneuse..."/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://cyclesbogoss.com/"/>
  </node>
  <node id="3273098466" lat="48.8403300" lon="2.2989822">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="103"/>
    <tag k="addr:postcode" v="75015"/>
    <tag k="addr:street" v="Rue Blomet"/>
    <tag k="name" v="L'Hirondelle"/>
    <tag k="phone" v="+33 7 81 87 81 83"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.beastybike.com/"/>
  </node>
  <node id="3335961964" lat="48.8843245" lon="2.3768303">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="68"/>
    <tag k="contact:phone" v="+33 9 84 09 93 42"/>
    <tag k="contact:postcode" v="75019"/>
    <tag k="contact:street" v="Avenue Jean Jaurès"/>
    <tag k="name" v="Cyclable"/>
    <tag k="opening_hours" v="Tu-Sa 10:00-13:00, 14:00-19:00"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://paris19.cyclable.com/"/>
  </node>
  <node id="3407822104" lat="48.8471493" lon="2.4052908">
    <tag k="email" v="contact@giant-paris12.com"/>
    <tag k="name" v="Giant Paris 12"/>
    <tag k="opening_hours" v="Tu-Fr 09:00-13:00,14:30-19:00; Th 09:00-13:00,14:30-17:30; Sa 10:00-13:00,14:30-18:30"/>
    <tag k="phone" v="+33143435105"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.giant-paris12.com"/>
    <tag k="wheelchair" v="limited"/>
  </node>
  <node id="3455588002" lat="48.8270223" lon="2.2769257">
    <tag k="name" v="CRC Cycles"/>
    <tag k="opening_hours" v="Tu-Sa 10:30-13:00,15:30-19:00"/>
    <tag k="phone" v="+33145291045"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
  </node>
  <node id="3486922690" lat="48.8434401" lon="2.3829185">
    <tag k="email" v="75paris12@culturevelo.com"/>
    <tag k="name" v="Culture Vélo Paris 12ème"/>
    <tag k="opening_hours" v="Tu-Fr 10:00-19:00; Sa 09:00-19:00"/>
    <tag k="phone" v="+33 1 43 14 47 17"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="source" v="survey"/>
    <tag k="website" v="http://www.culturevelo.com/-Paris-12eme-"/>
  </node>
  <node id="3501719712" lat="48.8725964" lon="2.3500793">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="15"/>
    <tag k="contact:phone" v="+33 1 83 94 92 62"/>
    <tag k="contact:postcode" v="75010"/>
    <tag k="contact:street" v="Rue d'Hauteville"/>
    <tag k="name" v="Cyclo de ville"/>
    <tag k="note" v="Ventes de vélos, pièces détachées, réparation toutes marques"/>
    <tag k="opening_hours" v="Mo-Sa 10:00-19:00"/>
    <tag k="operator" v="Achraf Marhag"/>
    <tag k="service:bicycle:pump" v="yes"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="source" v="local_knowledge"/>
    <tag k="wheelchair" v="no"/>
  </node>
  <node id="3591966558" lat="48.8477354" lon="2.3513141">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="17"/>
    <tag k="contact:postcode" v="75005"/>
    <tag k="contact:street" v="Rue des Écoles"/>
    <tag k="name" v="Holland Bikes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.hollandbikes.com/"/>
  </node>
  <node id="3638681300" lat="48.8555280" lon="2.4282892">
    <tag k="addr:city" v="Montreuil"/>
    <tag k="addr:housenumber" v="4"/>
    <tag k="addr:postcode" v="93100"/>
    <tag k="addr:street" v="Rue Garibaldi"/>
    <tag k="name" v="Ohcyclo, atelier vélo solidaire et coopératif"/>
    <tag k="operator" v="Ohcyclo"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://http://www.ohcyclo.org"/>
  </node>
  <node id="3651262894" lat="48.8821622" lon="2.3683439">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="226"/>
    <tag k="contact:phone" v="+33 1 40 34 92 94"/>
    <tag k="contact:postcode" v="75010"/>
    <tag k="contact:street" v="Rue La Fayette"/>
    <tag k="name" v="Bicycl'Art"/>
    <tag k="note" v="Par amour du vélo"/>
    <tag k="service:bicycle:rental" v="yes"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://bicyclart.fr/"/>
  </node>
  <node id="3659115001" lat="48.8703250" lon="2.3619582">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="49"/>
    <tag k="addr:postcode" v="75010"/>
    <tag k="addr:street" v="Rue Albert Thomas"/>
    <tag k="name" v="La Crèmerie"/>
    <tag k="note" v="Spécialisé dans le BMX"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://lacremeriebmx.com/f"/>
  </node>
  <node id="3672042540" lat="48.8680988" lon="2.3543734">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="82"/>
    <tag k="contact:postcode" v="75003"/>
    <tag k="contact:street" v="Rue Notre-Dame de Nazareth"/>
    <tag k="name" v="E-Bicycle"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.e-bicycle.fr/"/>
  </node>
  <node id="3730863782" lat="48.8311771" lon="2.3237740">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="2bis"/>
    <tag k="addr:postcode" v="75014"/>
    <tag k="addr:street" v="Rue Bénard"/>
    <tag k="name" v="Fixie Warehouse"/>
    <tag k="phone" v="+33 6 52 43 49 03"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.fixie-warehouse.com/fr/"/>
  </node>
  <node id="3761829300" lat="48.8849060" lon="2.3289524">
    <tag k="name" v="Cycles Tosi"/>
    <tag k="phone" v="+33 7 89 03 41 08"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="https://www.facebook.com/cyclestosi"/>
  </node>
  <node id="3764314581" lat="48.8365634" lon="2.2893945">
    <tag k="email" v="75paris15@culturevelo.com"/>
    <tag k="name" v="Culture Vélo Paris 15ème"/>
    <tag k="opening_hours" v="Tu-Sa 10:00-19:00"/>
    <tag k="phone" v="+33 1 47 07 74 42"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.culturevelo.com/-Paris-15eme-"/>
  </node>
  <node id="3792503782" lat="48.8691529" lon="2.3479837">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="2"/>
    <tag k="contact:phone" v="+33 1 40 35 36 36"/>
    <tag k="contact:postcode" v="75002"/>
    <tag k="contact:street" v="Rue Beauregard"/>
    <tag k="email" v="allovelo@gmail.com"/>
    <tag k="name" v="Allo Vélo"/>
    <tag k="opening_hours" v="Mo-Su 10:00-19:00"/>
    <tag k="service:bicycle:rental" v="yes"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.allovelo.com/"/>
  </node>
  <node id="3801134121" lat="48.8552220" lon="2.3821106">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="20"/>
    <tag k="addr:postcode" v="75011"/>
    <tag k="addr:street" v="Rue Richard Lenoir"/>
    <tag k="name" v="Boutique de vélos hollandais"/>
    <tag k="shop" v="bicycle"/>
  </node>
  <node id="3834162505" lat="48.8453063" lon="2.3827078">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="5"/>
    <tag k="contact:phone" v="+33 9 54 71 92 19"/>
    <tag k="contact:postcode" v="75012"/>
    <tag k="contact:street" v="Rue Crozatier"/>
    <tag k="name" v="La Bicyclette"/>
    <tag k="note" v="Vélos d'hier et d'aujourd'hui"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://la-bicyclette.over-blog.com/"/>
  </node>
  <node id="3889495162" lat="48.8171270" lon="2.3382242">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="17"/>
    <tag k="addr:postcode" v="75014"/>
    <tag k="addr:street" v="Boulevard Jourdan"/>
    <tag k="name" v="Le vélo volant"/>
    <tag k="opening_hours" v="Sa 14:00-19:00"/>
    <tag k="service:bicycle:diy" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="https://www.facebook.com/levelovolant/"/>
  </node>
  <node id="3955505317" lat="48.8936804" lon="2.2947953">
    <tag k="brand" v="Lapierre;Torpado"/>
    <tag k="contact:city" v="Levallois-Perret"/>
    <tag k="contact:housenumber" v="85"/>
    <tag k="contact:phone" v="+33 1 47 37 28 82"/>
    <tag k="contact:postcode" v="92300"/>
    <tag k="contact:street" v="Rue Jean Jaurès"/>
    <tag k="name" v="Cycles Cossia"/>
    <tag k="note" v="Montage à la carte"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
  </node>
  <node id="3955518653" lat="48.8942623" lon="2.2915937">
    <tag k="addr:city" v="Levallois-Perret"/>
    <tag k="addr:housenumber" v="63"/>
    <tag k="addr:postcode" v="92300"/>
    <tag k="addr:street" v="Rue Jules Guesde"/>
    <tag k="name" v="Cityzen Vélo"/>
    <tag k="shop" v="bicycle"/>
  </node>
  <node id="3959744506" lat="48.8722459" lon="2.3921752">
    <tag k="email" v="docvelos@hotmail.fr"/>
    <tag k="name" v="Doc'velos"/>
    <tag k="opening_hours" v="Tu-Sa 09:30-19:00; We 14:00-19:00"/>
    <tag k="phone" v="+33 6 70 20 88 01"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.doc-velos.fr/"/>
  </node>
  <node id="4003949511" lat="48.9006358" lon="2.3923740">
    <tag k="addr:city" v="Pantin"/>
    <tag k="addr:housenumber" v="20"/>
    <tag k="addr:postcode" v="93500"/>
    <tag k="addr:street" v="Rue Magenta"/>
    <tag k="name" v="La Cyclofficine de Pantin"/>
    <tag k="opening_hours" v="Tu,Th 19:00-22:00; Sa 14:00-19:00; Sa[1] off"/>
    <tag k="service:bicycle:diy" v="yes"/>
    <tag k="service:bicycle:retail" v="no"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="https://www.cyclocoop.org"/>
  </node>
  <node id="4054513400" lat="48.8497440" lon="2.3810939">
    <tag k="addr:housenumber" v="41"/>
    <tag k="addr:postcode" v="75012"/>
    <tag k="addr:street" v="Rue de Cîteaux"/>
    <tag k="amenity" v="cafe"/>
    <tag k="name" v="Café-vélo Jour de vélo"/>
    <tag k="phone" v="+33 9 54 31 29 44"/>
    <tag k="service:bicycle:diy" v="yes"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.jourdevelo.fr/"/>
    <tag k="website_1" v="https://www.facebook.com/Jour-de-V%C3%A9lo-1746704848882644/"/>
  </node>
  <node id="4054553560" lat="48.8701689" lon="2.3603582">
    <tag k="contact:city" v="Paris"/>
    <tag k="contact:housenumber" v="20"/>
    <tag k="contact:postcode" v="75010"/>
    <tag k="contact:street" v="Rue du Château d'Eau"/>
    <tag k="description" v="Aussi : café, thé, bagels et gateaux"/>
    <tag k="email" v="contact@lachouetteparis.com"/>
    <tag k="name" v="Café-vélo La Chouette"/>
    <tag k="opening_hours" v="Tu-Sa 09:00-19:00"/>
    <tag k="phone" v="+33 9 82 29 57 01"/>
    <tag k="service:bicycle:dealer" v="yes"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="https://www.facebook.com/lachouetteparis/"/>
  </node>
  <node id="4086305749" lat="48.8841280" lon="2.3039334">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="76"/>
    <tag k="addr:postcode" v="75017"/>
    <tag k="addr:street" v="Avenue de Villiers"/>
    <tag k="name" v="Cyclable"/>
    <tag k="shop" v="bicycle"/>
  </node>
  <node id="4170171701" lat="48.8766627" lon="2.3912665">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="44"/>
    <tag k="addr:postcode" v="75019"/>
    <tag k="addr:street" v="Rue des Solitaires"/>
    <tag k="name" v="Stock Vélos"/>
    <tag k="phone" v="+33.6 09 40 32 15"/>
    <tag k="shop" v="bicycle"/>
    <tag k="source" v="survey"/>
    <tag k="website" v="https://www.facebook.com/StockV%C3%A9los-987103844657943/"/>
  </node>
  <node id="4268470281" lat="48.8715966" lon="2.4110712">
    <tag k="contact:housenumber" v="3"/>
    <tag k="contact:street" v="Rue de Noisy le Sec"/>
    <tag k="name" v="La Cyclofficine de Paris"/>
    <tag k="opening_hours" v="We 14:00-18:00; Sa 14:00-19:00"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.cyclocoop.org/"/>
  </node>
  <node id="4370198351" lat="48.8865854" lon="2.3128616">
    <tag k="name" v="Urban Wheel"/>
    <tag k="opening_hours" v="Tu-Fr 09:00-13:30,14:30-19:00; Sa 10:00-13:00,14:00-19:00"/>
    <tag k="phone" v="+33 9 84 11 54 75"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="url" v="http://www.urban-wheel.fr/"/>
  </node>
  <node id="4430480696" lat="48.8458094" lon="2.3826824">
    <tag k="name" v="La bicyclette"/>
    <tag k="shop" v="bicycle"/>
  </node>
  <node id="4432561734" lat="48.8260898" lon="2.3085435">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="1"/>
    <tag k="addr:postcode" v="75014"/>
    <tag k="addr:street" v="Rue Prévost-Paradol"/>
    <tag k="email" v="paris14@solicycle.org"/>
    <tag k="name" v="SoliCycle"/>
    <tag k="phone" v="+33 6 21 88 16 67"/>
    <tag k="service:bicycle:diy" v="yes"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://solicycle.org/"/>
  </node>
  <node id="4501300361" lat="48.8607407" lon="2.3881015">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="41"/>
    <tag k="addr:postcode" v="75011"/>
    <tag k="addr:street" v="Boulevard de Ménilmontant"/>
    <tag k="description" v="Magasin de réparation de vélos Paris 11ème, bicyclettes. Vente de vélos neufs et occasions et location de vélos. Accessoires et pièces vélos, casques, sacoches..."/>
    <tag k="name" v="Velo Time"/>
    <tag k="opening_hours" v="Mo-Su 09:30-19:30"/>
    <tag k="phone" v="+33 1 45671230"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.velo-time.com/"/>
  </node>
  <node id="4509531403" lat="48.8681196" lon="2.3738797">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="58"/>
    <tag k="addr:postcode" v="75011"/>
    <tag k="addr:street" v="Rue de la Fontaine au Roi"/>
    <tag k="amenity" v="cafe"/>
    <tag k="name" v="Steel Cyclewear &amp; Coffeeshop"/>
    <tag k="note" v="06 47 58 32 46"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="https://www.facebook.com/steelcyclecoffeeshop"/>
  </node>
  <node id="4510912183" lat="48.8781214" lon="2.3656300">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="155"/>
    <tag k="addr:postcode" v="75010"/>
    <tag k="addr:street" v="Quai de Valmy"/>
    <tag k="email" v="laventureavelo@gmail.com"/>
    <tag k="name" v="L'Aventure A Vélo"/>
    <tag k="opening_hours" v="Tu-Su 09:00-20:00; Mo 13:00-20:00"/>
    <tag k="phone" v="+33 1 40 34 17 99"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://laventureavelo.com/"/>
  </node>
  <node id="4582362405" lat="48.8522640" lon="2.3676063">
    <tag k="addr:country" v="FR"/>
    <tag k="addr:housenumber" v="37"/>
    <tag k="addr:street" v="Boulevard Bourdon"/>
    <tag k="contact:email" v="courrier@mdb-idf.org"/>
    <tag k="contact:facebook" v="https://m.facebook.com/MieuxseDeplaceraBicyclette/"/>
    <tag k="contact:framasphere" v="https://framasphere.org/u/mdb"/>
    <tag k="contact:phone" v="+33 1 43 20 26 02"/>
    <tag k="contact:twitter" v="https://mobile.twitter.com/mdbidf"/>
    <tag k="contact:website" v="http://www.mdb-idf.org"/>
    <tag k="name" v="Mieux se Déplacer à Bicyclette"/>
    <tag k="opening_hours" v="Tu-Sa 09:30-12:30,13:30-17:30"/>
    <tag k="shop" v="bicycle"/>
    <tag k="short_name" v="MDB"/>
    <tag k="wheelchair" v="yes"/>
  </node>
  <node id="4589307792" lat="48.8652202" lon="2.3695325">
    <tag k="addr:housenumber" v="117"/>
    <tag k="contact:facebook" v="https://www.facebook.com/GOSportParisRepubliqueCycle"/>
    <tag k="contact:phone" v="+33155283550"/>
    <tag k="name" v="Boutique Cycle Go Sport Republique"/>
    <tag k="opening_hours" v="Mo-Sa 10:00-19:30"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.go-sport.com/edito/atelier-cycle"/>
  </node>
  <node id="4642561381" lat="48.8764397" lon="2.3466471">
    <tag k="name" v="Ecox"/>
    <tag k="opening_hours" v="Tu-Sa 10:00-14:00,15:00-19:00"/>
    <tag k="service:bicycle:ebike" v="yes"/>
    <tag k="service:bicycle:rental" v="yes"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.ecox.fr/nos-magasins/ecox-lafayette"/>
  </node>
  <node id="4704552073" lat="48.8764281" lon="2.2909037">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="20"/>
    <tag k="addr:postcode" v="75017"/>
    <tag k="addr:street" v="Rue des Acacias"/>
    <tag k="name" v="Kilomètre 0"/>
    <tag k="phone" v="+33 1 40 54 67 40"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.km0.paris"/>
  </node>
  <node id="4705447996" lat="48.8468906" lon="2.3765935">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="65"/>
    <tag k="addr:postcode" v="75012"/>
    <tag k="addr:street" v="Avenue Daumesnil"/>
    <tag k="name" v="Bicloune"/>
    <tag k="phone" v="+33 1 48 05 47 75"/>
    <tag k="service:bicycle:parts" v="yes"/>
    <tag k="service:bicycle:rental" v="yes"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="service:bicycle:second_hand" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.cycles-bicloune.com/"/>
  </node>
  <node id="4732816621" lat="48.8454486" lon="2.3238646">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="8"/>
    <tag k="addr:postcode" v="75006"/>
    <tag k="addr:street" v="Rue Littré"/>
    <tag k="name" v="Les nouveaux cyclistes"/>
    <tag k="phone" v="+33158901547"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.lesnouveauxcyclistes.com/"/>
  </node>
  <node id="4760691715" lat="48.8560138" lon="2.3503854">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:postcode" v="75004"/>
    <tag k="addr:street" v="Voie Georges Pompidou"/>
    <tag k="email" v="berges@solicycle.org"/>
    <tag k="name" v="SoliCycle"/>
    <tag k="phone" v="+33 6 66 52 76 55"/>
    <tag k="service:bicycle:diy" v="yes"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://solicycle.org/"/>
  </node>
  <node id="4810300842" lat="48.8793770" lon="2.4217727">
    <tag k="addr:city" v="Les Lilas"/>
    <tag k="addr:housenumber" v="112"/>
    <tag k="addr:postcode" v="93260"/>
    <tag k="addr:street" v="Rue Romain Rolland"/>
    <tag k="email" v="arianri@hotmail.de"/>
    <tag k="name" v="Tous pour un vélo"/>
    <tag k="phone" v="+33.6.88.04.48.63"/>
    <tag k="service:bicycle:diy" v="yes"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="https://www.facebook.com/pg/touspourunvelo/"/>
  </node>
  <node id="4813723480" lat="48.8470589" lon="2.2938694">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="135"/>
    <tag k="addr:postcode" v="75015"/>
    <tag k="addr:street" v="Avenue Émile Zola"/>
    <tag k="name" v="Cyclable"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="https://paris15.cyclable.com/"/>
  </node>
  <node id="4888402227" lat="48.8221668" lon="2.3058603">
    <tag k="name" v="Paris Bike Company"/>
    <tag k="phone" v="+33 9 51 54 59 32"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://parisbikeco.com"/>
  </node>
  <node id="4951102667" lat="48.8466724" lon="2.2727252">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="68"/>
    <tag k="addr:postcode" v="75016"/>
    <tag k="addr:street" v="Avenue de Versailles"/>
    <tag k="name" v="Cyclable"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:sales" v="yes"/>
    <tag k="service:bicycle:tools" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="https://paris16.cyclable.com/"/>
  </node>
  <node id="4966247880" lat="48.8693179" lon="2.3724247">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="6"/>
    <tag k="addr:postcode" v="75011"/>
    <tag k="addr:street" v="Rue des Goncourt"/>
    <tag k="email" v="cycklette@lapetiterockette.org"/>
    <tag k="name" v="La Cycklette"/>
    <tag k="service:bicycle:diy" v="yes"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="https://www.facebook.com/La-Cycklette-1508391019226339/"/>
  </node>
  <node id="4970267736" lat="48.8889291" lon="2.3222301">
    <tag k="contact:facebook" v="https://www.facebook.com/Byke-the-Way-1416101925301171/"/>
    <tag k="name" v="Byke the Way"/>
    <tag k="opening_hours" v="Mo-Sa 09:00-19:00"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
  </node>
  <node id="5059095705" lat="48.8682753" lon="2.3725152">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="128"/>
    <tag k="addr:postcode" v="75011"/>
    <tag k="addr:street" v="Avenue Parmentier"/>
    <tag k="name" v="Paradis des vélos"/>
    <tag k="phone" v="+33.6 21 98 87 96"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="https://www.facebook.com/Paradis-Des-V%C3%A9los-827633057411747/"/>
  </node>
  <node id="5136400460" lat="48.8482366" lon="2.3542108">
    <tag k="addr:city" v="Paris"/>
    <tag k="addr:housenumber" v="28"/>
    <tag k="addr:postcode" v="75005"/>
    <tag k="addr:street" v="Rue des Fossés Saint-Bernard"/>
    <tag k="name" v="Gepetto &amp; Vélos"/>
    <tag k="phone" v="+33.1 43 54 19 95"/>
    <tag k="shop" v="bicycle"/>
    <tag k="website" v="http://www.gepetto-velos.com/"/>
  </node>
  <node id="5211024238" lat="48.8242813" lon="2.2822635">
    <tag k="contact:city" v="Vanves"/>
    <tag k="contact:email" v="info@crc-cycles.com"/>
    <tag k="contact:housenumber" v="45"/>
    <tag k="contact:phone" v="+33 1 45 29 10 42"/>
    <tag k="contact:postcode" v="92170"/>
    <tag k="contact:street" v="Boulevard du Lycée"/>
    <tag k="contact:website" v="http://www.crc-cycles.com/"/>
    <tag k="name" v="CRC Cycles"/>
    <tag k="note" v="Course, VTT, VAE"/>
    <tag k="opening_hours" v="Tu-Sa 10:30-13:00,15:00-19:00"/>
    <tag k="service:bicycle:repair" v="yes"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
  </node>
  <node id="5273955199" lat="48.8561083" lon="2.3728517">
    <tag k="fixme" v="Magasin en cours de création, pas encore d'enseigne"/>
    <tag k="service:bicycle:cleaning" v="no"/>
    <tag k="service:bicycle:diy" v="no"/>
    <tag k="service:bicycle:pump" v="no"/>
    <tag k="service:bicycle:retail" v="yes"/>
    <tag k="shop" v="bicycle"/>
  </node>
  <node id="5275610306" lat="48.8663850" lon="2.3596443">
    <tag k="name" v="Vintage cycles"/>
    <tag k="shop" v="bicycle"/>
  </node>

</osm>