-
Notifications
You must be signed in to change notification settings - Fork 0
/
shops 2.json
2916 lines (2916 loc) · 77.5 KB
/
shops 2.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"info": {
"content_version": 47
},
"ratio": [
{
"deletable": "0",
"ratio": "60",
"title": "Base"
}
],
"shops": [
{
"id": "1",
"address": "via Cavour 45-49 - Alessandria (AL)",
"shop_type": "Pasticceria/Caffetteria",
"city": "Alessandria (AL)",
"name": "F.Lli Mezzaro Mezzaro Filippo Di Matteo Snc &",
"type": "0,1"
},
{
"id": "2",
"address": "Pza. Dante Alighieri, 22 - Casalnoceto (AL)",
"shop_type": "Caffetteria",
"city": "Casalnoceto (AL)",
"name": "Bar Fortuna",
"type": "0"
},
{
"id": "3",
"address": "Viale Santuario, 15048 Valenza AL, Italy",
"shop_type": "Caffetteria",
"city": "Valenza",
"lat": "45.0071252",
"lon": "8.6346018",
"name": "Bar Pausa Caffe Di Stefano Checchin",
"type": "0"
},
{
"id": "4",
"address": "Via G. Verdi, 24, 04011 Aprilia LT, Italy",
"shop_type": "Caffetteria/Torrefazione",
"city": "Aprilia",
"lat": "41.5903186",
"lon": "12.6541562",
"name": "caos caffè",
"type": "0,1"
},
{
"id": "5",
"address": "Via Piero Gobetti, 64, 52100 Arezzo AR, Italy",
"shop_type": "Caffetteria",
"city": "Arezzo",
"lat": "43.45948509999999",
"lon": "11.836053",
"name": "Caffè River SpA",
"type": "0,1"
},
{
"id": "6",
"address": "Corso Giuseppe Mazzini, 225, 63100 Ascoli Piceno AP, Italy",
"shop_type": "Caffetteria/Torrefazione",
"city": "Ascoli Piceno",
"lat": "42.855069",
"lon": "13.578",
"name": "TAMA caffè",
"type": "0,1"
},
{
"id": "7",
"address": "Via Milano, 47, 39100 Bolzano BZ, Italy",
"shop_type": "Caffetteria",
"city": "Bolzano",
"lat": "46.4896563",
"lon": "11.334899",
"name": "Laboratorio Espresso",
"type": "0"
},
{
"id": "8",
"address": "Via Salvatore Cognetti, 52, 70121 Bari BA, Italy",
"shop_type": "Caffetteria",
"city": "Bari",
"lat": "41.1234383",
"lon": "16.8755207",
"name": "La Briocheria",
"type": "0"
},
{
"id": "9",
"address": "Via Salvatore Cognetti, 17/19, 70121 Bari BA, Italy",
"shop_type": "Caffetteria/Torrefazione",
"city": "Bari",
"lat": "41.12311400000001",
"lon": "16.8732082",
"name": "Caffé Cognetti - Microtorrefazione",
"type": "0,1"
},
{
"id": "10",
"address": "Via de Deo Emanuele, 38, 70054 Giovinazzo BA, Italy",
"shop_type": "Caffetteria",
"city": "Giovinazzo",
"lat": "41.18778210000001",
"lon": "16.6710452",
"name": "Vecchio Caffè",
"type": "0"
},
{
"id": "11",
"address": "Piazza Castello, 16, 32100 Belluno BL, Italy",
"shop_type": "Caffetteria",
"city": "Belluno",
"lat": "46.1386149",
"lon": "12.215674",
"name": "Black soul caffé",
"type": "0"
},
{
"id": "12",
"address": "Via Bartolomeo Colleoni, 18, 24129 Bergamo BG, Italy",
"shop_type": "Caffetteria/Torrefazione",
"city": "Bergamo",
"lat": "45.7046767",
"lon": "9.6618671",
"name": "Bugan Coffee Lab - Via Colleoni - Città Alta",
"type": "0,1"
},
{
"id": "13",
"address": "Via Giacomo Quarenghi, 32, 24122 Bergamo BG, Italy",
"shop_type": "Caffetteria/Torrefazione",
"city": "Bergamo",
"lat": "45.6912428",
"lon": "9.666817799999999",
"name": "Bugan Coffee Lab",
"type": "0,1"
},
{
"id": "14",
"address": "Via Galliera, 34d, 40121 Bologna BO, Italy",
"shop_type": "Panificio/Torrefazione",
"city": "Bologna",
"lat": "44.500307",
"lon": "11.342944",
"name": "Forno Brisa",
"type": "0,1"
},
{
"id": "15",
"address": "Via S. Felice, 91a, 40122 Bologna BO, Italy",
"shop_type": "Panificio/Torrefazione",
"city": "Bologna",
"lat": "44.4978094",
"lon": "11.3315497",
"name": "Forno Brisa San Felice",
"type": "0"
},
{
"id": "16",
"address": "Via Castiglione, 43b, 40124 Bologna BO, Italy",
"shop_type": "Panificio/Torrefazione",
"city": "Bologna",
"lat": "44.48871539999999",
"lon": "11.3474296",
"name": "Forno Brisa - Castiglione",
"type": "0"
},
{
"id": "17",
"address": "Via Guglielmo Oberdan, 10d, 40126 Bologna BO, Italy",
"shop_type": "Caffetteria",
"city": "Bologna",
"lat": "44.4953373",
"lon": "11.3455496",
"name": "Caffè Terzi Bologna",
"type": "0,1"
},
{
"id": "18",
"address": "Via Barberia, 34c, 40123 Bologna BO, Italy",
"shop_type": "Caffetteria",
"city": "Bologna",
"lat": "44.493132",
"lon": "11.3358487",
"name": "Lampadina",
"type": "0"
},
{
"id": "19",
"address": "Via Antonio Gramsci, 6, 25121 Brescia BS, Italy",
"shop_type": "Caffetteria",
"city": "Brescia",
"lat": "45.5366788",
"lon": "10.2187032",
"name": "Café Gramsci",
"type": "0"
},
{
"id": "20",
"address": "Via Corsica, 225, 25125 Brescia BS, Italy",
"shop_type": "Caffetteria",
"city": "Brescia",
"lat": "45.5277331",
"lon": "10.2055398",
"name": "Checchi Brunch & Specialty Coffee",
"type": "0"
},
{
"id": "21",
"address": "Corsetto Sant'Agata, 27, 25122 Brescia BS, Italy",
"shop_type": "Caffetteria",
"city": "Brescia",
"lat": "45.5391719",
"lon": "10.2185299",
"name": "Così è - Brunch, Lunch, Dinner",
"type": "0"
},
{
"id": "22",
"address": "Corso Martiri della Libertà, 36, 25122 Brescia BS, Italy",
"shop_type": "Caffetteria",
"city": "Brescia",
"lat": "45.537051",
"lon": "10.2147906",
"name": "ESTRATTO",
"type": "0"
},
{
"id": "23",
"address": "Via Fratelli Porcellaga, 28, 25121 Brescia BS, Italy",
"shop_type": "Caffetteria/Torrefazione",
"city": "Brescia",
"lat": "45.5381585",
"lon": "10.2170756",
"name": "Tostato",
"type": "0,1"
},
{
"id": "24",
"address": "Via Isernia, 23, 86100 Campobasso CB, Italy",
"shop_type": "Caffetteria/Torrefazione",
"city": "Campobasso",
"lat": "41.5613572",
"lon": "14.6601766",
"name": "Anima Caffè",
"type": "0,1"
},
{
"id": "25",
"address": "Viale Nicolò Biondo, 1, 41012 Carpi MO, Italy",
"shop_type": "Caffetteria",
"city": "Carpi",
"lat": "44.7760776",
"lon": "10.8842402",
"name": "B.officina Carpi",
"type": "0,1"
},
{
"id": "26",
"address": "Via Caprera, 3, 09123 Cagliari CA, Italy",
"shop_type": "Caffeteria",
"city": "Cagliari",
"lat": "39.2180579",
"lon": "9.1076835",
"name": "Caffè dell'Arte Specialty Coffee",
"type": "0"
},
{
"id": "27",
"address": "Via Giuseppe Garibaldi, 367, 95019 Zafferana Etnea CT, Italy",
"shop_type": "Caffetteria/Torrefazione",
"city": "Zafferana Etnea",
"lat": "37.6933965",
"lon": "15.1059441",
"name": "Etna Roaster",
"type": "0,1"
},
{
"id": "28",
"address": "Via della Libertà, 64, 66026 Ortona CH, Italy",
"shop_type": "Caffetteria/Torrefazione",
"city": "Ortona",
"lat": "42.3500313",
"lon": "14.4023038",
"name": "Rossopepe Caffetteria Artigianale",
"type": "0,1"
},
{
"id": "29",
"address": "Via Armando Diaz, 16, 22100 Como CO, Italy",
"shop_type": "Caffetteria",
"city": "Como",
"lat": "45.8104294",
"lon": "9.0803244",
"name": "Cucinantica",
"type": "0"
},
{
"id": "30",
"address": "Piazza Garibaldi, 34, 26013 Crema CR, Italy",
"shop_type": "Caffetteria",
"city": "Crema",
"lat": "45.36350849999999",
"lon": "9.6927872",
"name": "16.99",
"type": "0"
},
{
"id": "31",
"address": "Viale Po, 15, 26100 Cremona CR, Italy",
"shop_type": "Caffetteria",
"city": "Cremona",
"lat": "45.1322741",
"lon": "10.0150422",
"name": "LOOM",
"type": "0"
},
{
"id": "32",
"address": "Via Pollenzo, 6, 12042 Bra CN, Italy",
"shop_type": "Caffetteria",
"city": "Bra",
"lat": "44.695",
"lon": "7.854722199999999",
"name": "Bottega Delle Delizie",
"type": "0"
},
{
"id": "33",
"address": "Piazza Trieste, 1, 50062 Dicomano FI, Italy",
"shop_type": "Caffetteria",
"city": "Dicomano",
"lat": "43.890934",
"lon": "11.5230627",
"name": "caffè Grandangolo",
"type": "0"
},
{
"id": "34",
"address": "Piazza del Mercato, 29, 28845 Domodossola VB, Italy",
"shop_type": "Gelateria e Specialty",
"city": "Domodossola",
"lat": "46.116254",
"lon": "8.2916918",
"name": "Sensolato",
"type": "0"
},
{
"id": "35",
"address": "Via Faleria, 34/B, 63821 Porto Sant'Elpidio FM, Italy",
"shop_type": "Chalet mare/Caffetteria",
"city": "Porto Sant'Elpidio",
"lat": "43.2534588",
"lon": "13.7649643",
"name": "Controvento",
"type": "0"
},
{
"id": "36",
"address": "Via Don Leonardo Piciotti 24, SP239 Fermana-Falerienze, 63831 Rapagnano FM, Italy",
"shop_type": "Caffetteria",
"city": "Rapagnano",
"lat": "43.1581882",
"lon": "13.6330907",
"name": "Nero Espresso Caffè Laboratory Shop",
"type": "0"
},
{
"id": "37",
"address": "Via Piave, 5, 63824 Marina di Altidona FM, Italy",
"shop_type": "Caffetteria",
"city": "Marina di Altidona",
"lat": "43.0992927",
"lon": "13.814084",
"name": "Perfero Caffè",
"type": "1"
},
{
"id": "38",
"address": "Via dell'Oche, 7, 50122 Firenze FI, Italy",
"shop_type": "Caffetteria",
"city": "Firenze",
"lat": "43.77217100000001",
"lon": "11.2563543",
"name": "BEN Caffè",
"type": "0"
},
{
"id": "39",
"address": "Via dei Neri, 30/32 R, 50122 Firenze FI, Italy",
"shop_type": "Caffetteria/Torrefazione",
"city": "Firenze",
"lat": "43.7681001",
"lon": "11.2586342",
"name": "Ditta Artigianale Neri",
"type": "0,1"
},
{
"id": "40",
"address": "Via dello Sprone, 5/R, 50121 Firenze FI, Italy",
"shop_type": "Caffetteria/Torrefazione",
"city": "Firenze",
"lat": "43.7669563",
"lon": "11.2508928",
"name": "Ditta Artigianale Sprone",
"type": "0"
},
{
"id": "41",
"address": "Via Giosuè Carducci, 2/4r, 50121 Firenze FI, Italy",
"shop_type": "Caffetteria/Torrefazione",
"city": "Firenze",
"lat": "43.77165569999999",
"lon": "11.2664731",
"name": "Ditta Artigianale & Hario Cafe Piazza Sant'Ambrogio",
"type": "0"
},
{
"id": "42",
"address": "19/red, Via Mannelli, 50136 Firenze FI, Italy",
"shop_type": "Caffetteria",
"city": "Firenze",
"lat": "43.7731585",
"lon": "11.2796412",
"name": "Caffetteria Emmeti",
"type": "0"
},
{
"id": "43",
"address": "Borgo La Croce 71r, Via della Mattonaia, 24r, 50121 Firenze FI, Italy",
"shop_type": "Caffetteria",
"city": "Firenze",
"lat": "43.77122660000001",
"lon": "11.2679448",
"name": "Coffee Mantra",
"type": "0"
},
{
"id": "44",
"address": "Lungarno delle Grazie, 18, 50122 Firenze FI, Italy",
"shop_type": "Caffetteria",
"city": "Firenze",
"lat": "43.7668496",
"lon": "11.2600481",
"name": "Melaleuca bakery + bistrot",
"type": "0"
},
{
"id": "45",
"address": "Via Vincenzo Gioberti, 51/red, 50121 Firenze FI, Italy",
"shop_type": "Caffetteria",
"city": "Firenze",
"lat": "43.7701556",
"lon": "11.2754294",
"name": "Caffetteria Piansa",
"type": "0,1"
},
{
"id": "46",
"address": "Via de' Ginori, 64r, 50123 Firenze FI, Italy",
"shop_type": "Caffetteria",
"city": "Firenze",
"lat": "43.7770518",
"lon": "11.2562294",
"name": "SimBIOsi Organic Cafe &Lovely Bistro",
"type": "0"
},
{
"id": "47",
"address": "Via Camillo Versari, 2, 47121 Forlì FC, Italy",
"shop_type": "Caffetteria",
"city": "Forlì",
"lat": "44.2182594",
"lon": "12.040809",
"name": "Gardelli Specialty Coffees",
"type": "0,1"
},
{
"id": "48",
"address": "Via Faliero Vezzani, 60r, 16159 Genova GE, Italy",
"shop_type": "Caffetteria/Torrefazione",
"city": "Genova",
"lat": "44.43769",
"lon": "8.8956631",
"name": "Tazze Pazze",
"type": "0,1"
},
{
"id": "49",
"address": "Piazza Cinque Lampadi, 71R, 16123 Genova GE, Italy",
"shop_type": "Caffetteria/Torrefazione",
"city": "Genova",
"lat": "44.4086532",
"lon": "8.929903000000001",
"name": "TAZZE PAZZE Specialty Coffee",
"type": "0"
},
{
"id": "50",
"address": "Piazza Giovanni Fabbrini, 58100 Grosseto GR, Italy",
"shop_type": "Caffetteria",
"city": "Grosseto",
"lat": "42.7643547",
"lon": "11.1201906",
"name": "Bristol cafe",
"type": "0"
},
{
"id": "51",
"address": "Via Italo Balbo, 147, 04020 Itri LT, Italy",
"shop_type": "Caffetteria",
"city": "Itri",
"lat": "41.2899082",
"lon": "13.5232793",
"name": "Bix Cafè",
"type": "0"
},
{
"id": "52",
"address": "Viale della Vittoria, 93c, 60035 Jesi AN, Italy",
"shop_type": "Caffetteria",
"city": "Jesi",
"lat": "43.5217061",
"lon": "13.2395124",
"name": "Gara Caffetteria e Specialità",
"type": "0"
},
{
"id": "53",
"address": "Pza. L. Ariosto, 35 (LE)",
"shop_type": "Caffetteria",
"city": "Lecce (LE)",
"name": "Chantilly",
"type": "0"
},
{
"id": "54",
"address": "Piazza Attias, 29/33, 57125 Livorno LI, Italy",
"shop_type": "Caffetteria",
"city": "Livorno",
"lat": "43.54405649999999",
"lon": "10.314142",
"name": "Coffee Square 33",
"type": "0"
},
{
"id": "55",
"address": "Via Giovanni Marradi, 147, 57125 Livorno LI, Italy",
"shop_type": "Caffetteria",
"city": "Livorno",
"lat": "43.5426749",
"lon": "10.3148291",
"name": "DrupaCaffè Bar & Caffetteria",
"type": "0"
},
{
"id": "56",
"address": "Via XX Settembre, 39, 46100 Mantova MN, Italy",
"shop_type": "Caffetteria",
"city": "Mantova",
"lat": "45.1544289",
"lon": "10.7936889",
"name": "Sketch",
"type": "0"
},
{
"id": "57",
"address": "Viale Marina, 127, 54038 Montignoso MS, Italy",
"shop_type": "Caffetteria",
"city": "Capanne-Prato-Cinquale",
"lat": "43.987026",
"lon": "10.1482521",
"name": "IQOS RESELLER - Caffetteria Tabacchi Sabrina",
"type": "0"
},
{
"id": "58",
"address": "Via Alessandro Astesani, 15, 20161 Milano MI, Italy",
"shop_type": "Caffetteria",
"city": "Milano",
"lat": "45.5173158",
"lon": "9.171217799999999",
"name": "Via Alessandro Astesani, 15",
"type": "0"
},
{
"id": "59",
"address": "Via Rembrandt, 12, 20148 Milano MI, Italy",
"shop_type": "Caffetteria",
"city": "Milano",
"lat": "45.4675795",
"lon": "9.1386789",
"name": "Il Cafetero Specialty Coffee Milan",
"type": "0"
},
{
"id": "60",
"address": "Via Solferino, 27, 20121 Milano MI, Italy",
"shop_type": "Caffetteria/Torrefazione",
"city": "Milano",
"lat": "45.4786284",
"lon": "9.188206",
"name": "Cafezal Torrefazione Specialty Coffee",
"type": "0,1"
},
{
"id": "61",
"address": "Piazza S. Fedele, 2, 20121 Milano MI, Italy",
"shop_type": "Caffetteria",
"city": "Milano",
"lat": "45.4660922",
"lon": "9.190979999999998",
"name": "Flagship Store Lavazza",
"type": "0,1"
},
{
"id": "62",
"address": "Via Giovanni Cena, 21, 20135 Milano MI, Italy",
"shop_type": "Caffetteria/Gelateria/Dolci",
"city": "Milano",
"lat": "45.4607851",
"lon": "9.2192081",
"name": "Cortinovis Dolci e Gelati",
"type": "0"
},
{
"id": "63",
"address": "Piazzale Medaglie D'Oro (mezzanino M3), 20135, 20135, 20135 Milano MI, Italy",
"shop_type": "Caffetteria",
"city": "Milano",
"lat": "45.4520068",
"lon": "9.2027651",
"name": "Kōhī Tokyo 1982",
"type": "0"
},
{
"id": "64",
"address": "Via Francesco Guicciardini, 3, 20129 Milano MI, Italy",
"shop_type": "Caffetteria",
"city": "Milano",
"lat": "45.4670758",
"lon": "9.2087922",
"name": "Loste Café",
"type": "0"
},
{
"id": "65",
"address": "Via Edmondo de Amicis, 7, 20123 Milano MI, Italy",
"shop_type": "Dolci e Caffetteria",
"city": "Milano",
"lat": "45.457329",
"lon": "9.1804828",
"name": "Mascherpa tiramisù + coffee",
"type": "0"
},
{
"id": "66",
"address": "Piazzale Medaglie D'Oro, 3, 20135 Milano MI, Italy",
"shop_type": "Caffetteria/Torrefazione",
"city": "Milano",
"lat": "45.452197",
"lon": "9.203125",
"name": "Milano Roastery",
"type": "0,1"
},
{
"id": "67",
"address": "Piazza Luigi Vittorio Bertarelli, 4, 20122 Milano MI, Italy",
"shop_type": "Caffetteria",
"city": "Milano",
"lat": "45.45814349999999",
"lon": "9.187515399999999",
"name": "Bar Nicol",
"type": "0"
},
{
"id": "68",
"address": "Via Caminadella, 15, 20123 Milano MI, Italy",
"shop_type": "Caffetteria",
"city": "Milano",
"lat": "45.459893",
"lon": "9.176893200000002",
"name": "NOWHERE - Coffee & Community",
"type": "0"
},
{
"id": "69",
"address": "Via Gerolamo Turroni, 2, 20129 Milano MI, Italy",
"shop_type": "Caffetteria",
"city": "Milano",
"lat": "45.4669517",
"lon": "9.222672099999999",
"name": "O|NEST",
"type": "0"
},
{
"id": "70",
"address": "Via Giuseppe Broggi, 15, 20129 Milano MI, Italy",
"shop_type": "Caffetteria",
"city": "Milano",
"lat": "45.4777424",
"lon": "9.2112972",
"name": "Orsonero Coffee",
"type": "0"
},
{
"id": "71",
"address": "Via Melzo, 22, 20129 Milano MI, Italy",
"shop_type": "Dolci e Caffetteria",
"city": "Milano",
"lat": "45.47402",
"lon": "9.209380999999999",
"name": "Via Melzo, 22",
"type": "0"
},
{
"id": "72",
"address": "Piazza Cordusio, 3, 20123 Milano MI, Italy",
"shop_type": "Caffetteria",
"city": "Milano",
"lat": "45.4649459",
"lon": "9.1861863",
"name": "Starbucks Reserve Roastery",
"type": "0,1"
},
{
"id": "73",
"address": "Via Teodosio, 44, 20131 Milano MI, Italy",
"shop_type": "Caffetteria/Gelateria",
"city": "Milano",
"lat": "45.4855832",
"lon": "9.230106500000002",
"name": "Between the lines - Gelato & Friends",
"type": "0"
},
{
"id": "74",
"address": "Via Fontana, 1, 41058 Vignola MO, Italy",
"shop_type": "Caffetteria",
"city": "Vignola",
"lat": "44.47774129999999",
"lon": "11.0098553",
"name": "Caffè Terzi Vignola",
"type": "0"
},
{
"id": "75",
"address": "Corso Canalchiaro, 136/a, 41121 Modena MO, Italy",
"shop_type": "Caffetteria",
"city": "Modena",
"lat": "44.6439524",
"lon": "10.9221092",
"name": "Menomoka Coffee & More",
"type": "0"
},
{
"id": "76",
"address": "Via Traversa Maglione 78/80, Via Fratelli Rosselli, 78/80, 80144 Napoli NA, Italy",
"shop_type": "Caffetteria",
"city": "Napoli",
"lat": "40.88709900000001",
"lon": "14.2690908",
"name": "Gran Caffè Secondigliano",
"type": "0"
},
{
"id": "77",
"address": "Via Gian Lorenzo Bernini, 64a, 80129 Napoli NA, Italy",
"shop_type": "Caffetteria",
"city": "Napoli",
"lat": "40.8454342",
"lon": "14.2316548",
"name": "Ventimetriquadri - Specialty Coffee",
"type": "0"
},
{
"id": "78",
"address": "Prato della Valle, 2, 35123 Padova PD, Italy",
"shop_type": "Caffetteria/Torrefazione",
"city": "Padova",
"lat": "45.4001488",
"lon": "11.8760842",
"name": "Caffè Diemme Italian Attitude",
"type": "0,1"
},
{
"id": "79",
"address": "Via Michele Cipolla, 83/85, 90123 Palermo PA, Italy",
"shop_type": "Caffetteria",
"city": "Palermo",
"lat": "38.1100609",
"lon": "13.3714439",
"name": "Bar Vabres",
"type": "0"
},
{
"id": "80",
"address": "Piazzale del Fante, 54/55, 90146 Palermo PA, Italy",
"shop_type": "Caffetteria/Torrefazione",
"city": "Palermo",
"lat": "38.1481472",
"lon": "13.341549",
"name": "Histo Caffè",
"type": "0,1"
},
{
"id": "81",
"address": "Via Villaermosa, 9, 90133 Palermo PA, Italy",
"shop_type": "Caffetteria",
"city": "Palermo",
"lat": "38.1220185",
"lon": "13.3597693",
"name": "Caffetteria Rizzuto Specialty coffee",
"type": "0"
},
{
"id": "82",
"address": "Via Alessandro Manzoni, 174, 06135 Perugia PG, Italy",
"shop_type": "Caffetteria",
"city": "Perugia",
"lat": "43.09115429999999",
"lon": "12.4383017",
"name": "Pasticceria Luca",
"type": "0"
},
{
"id": "83",
"address": "SS16 Adriatica, Italy",
"shop_type": "Caffetteria",
"city": "Pesaro (PU)",
"lat": "42.3704901",
"lon": "14.3817395",
"name": "Strada Statale 16 Adriatica",
"type": "0"
},
{
"id": "84",
"address": "Corso Italia, 99, 57025 Piombino LI, Italy",
"shop_type": "Caffetteria",
"city": "Piombino",
"lat": "42.9256003",
"lon": "10.5288486",
"name": "Caffetteria del Corso",
"type": "0"
},
{
"id": "85",
"address": "Via Corsica 14, Via Corsica, 8a, 56126 Pisa PI, Italy",
"shop_type": "Caffetteria",
"city": "Pisa",
"lat": "43.719753",
"lon": "10.399274",
"name": "Cavalieri - Specialty Coffee",
"type": "0"
},
{
"id": "86",
"address": "Via Santa Maria, 30, 56126 Pisa PI, Italy",
"shop_type": "Caffetteria",
"city": "Pisa",
"lat": "43.7185439",
"lon": "10.3972567",
"name": "Filter Coffee Lab",
"type": "0"
},
{
"id": "87",
"address": "Via Vicinale Fonda di Vicofaro, 6/8, 51100 Pistoia PT, Italy",
"shop_type": "Caffetteria ed Eventi",
"city": "Pistoia",
"lat": "43.92642839999999",
"lon": "10.8969471",
"name": "Loft68",
"type": "0"
},
{
"id": "88",
"address": "Via Sacra, 44, 80045 Pompei NA, Italy",
"shop_type": "Caffetteria/Torrefazione",
"city": "Pompei",
"lat": "40.7468225",
"lon": "14.5008291",
"name": "Campana Roastery",
"type": "0,1"
},
{
"id": "89",
"address": "Via Giosuè Carducci, 125, 97100 Ragusa RG, Italy",
"shop_type": "Caffetteria",
"city": "Ragusa",
"lat": "36.9202037",
"lon": "14.7228355",
"name": "Lorefice Fiori Cafè",
"type": "0"
},
{
"id": "90",
"address": "Via Don Giovanni Minzoni, 54, 47822 Santarcangelo di Romagna RN, Italy",
"shop_type": "Caffetteria",
"city": "Santarcangelo di Romagna",
"lat": "44.062703",
"lon": "12.4455276",
"name": "Donminzoni54 Wine & Spirits Coffee",
"type": "0"
},
{
"id": "91",
"address": "Piazza Perin del Vaga, 13, 00196 Roma RM, Italy",
"shop_type": "Caffetteria",
"city": "Roma",
"lat": "41.92517849999999",
"lon": "12.4648079",
"name": "Etablino - Caffè Due Fontane",
"type": "0"
},
{
"id": "92",
"address": "Via del Pellegrino, 87 (Roma)",
"shop_type": "Caffetteria",
"city": "Roma (Roma)",
"name": "Barnum",
"type": "0"
},
{
"id": "93",
"address": "Corso Giacomo Matteotti, 184, 00041 Albano laziale RM, Italy",
"shop_type": "Caffetteria",
"city": "Albano Laziale",
"lat": "41.72727769999999",
"lon": "12.6599525",
"name": "BAR BISTR",
"type": "0"
},
{
"id": "94",
"address": "Viale Aventino, 91/93, 00153 Roma RM, Italy",
"shop_type": "Pasticceria",
"city": "Roma",
"lat": "41.8809421",
"lon": "12.4851289",
"name": "Casa Manfredi",
"type": "0"
},
{
"id": "95",
"address": "Via Tuscolana, 1677, 00133 Roma RM, Italy",
"shop_type": "Caffetteria/Torrefazione",
"city": "Roma",
"lat": "41.8193112",
"lon": "12.6479095",
"name": "Caffè Conti",
"type": "0,1"
},
{
"id": "96",
"address": "Via Prato della Madonna, 00038 Valmontone RM, Italy",
"shop_type": "Caffetteria",
"city": "Valmontone",
"lat": "41.7783173",
"lon": "12.9178833",
"name": "DeGustibus Club",
"type": "0"
},
{
"id": "97",
"address": "Via Mura dei Francesi, 197/C, 00043 Ciampino RM, Italy",
"shop_type": "Caffetteria",
"city": "Ciampino",
"lat": "41.7972551",
"lon": "12.6073225",
"name": "E'stratto",
"type": "0"
},
{
"id": "98",
"address": "Via Piave, 55, 00187 Roma RM, Italy",
"shop_type": "Caffetteria",
"city": "Roma",
"lat": "41.9101357",
"lon": "12.4984435",
"name": "Faro - Luminaries of Coffee",
"type": "0"
},
{
"id": "99",
"address": "Via Antonio Raimondi, 87, 00176 Roma RM, Italy",
"shop_type": "Caffetteria/Galleria d'Arte",
"city": "Roma",
"lat": "41.8911845",
"lon": "12.5327544",
"name": "Fax Factory",
"type": "0"
},
{
"id": "100",
"address": "Piazza del Risorgimento, 7, 00192 Roma RM, Italy",
"shop_type": "Caffetteria",
"city": "Roma",
"lat": "41.90660090000001",