forked from EloquentStudio/filter.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplaces.json
More file actions
1127 lines (1127 loc) · 36.6 KB
/
Copy pathplaces.json
File metadata and controls
1127 lines (1127 loc) · 36.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"id": 1,
"name": "The Flying Falafel",
"rating": 4.3,
"review_count": 341,
"url": "http://www.yelp.com/biz/the-flying-falafel-san-francisco-3",
"categories": [
"Falafel",
"Vegan",
"Gluten-Free"
],
"address": "1051 Market St, SoMa, San Francisco, CA 94103",
"coordinate": {
"latitude": 37.78125,
"longitude": -122.4113007
},
"description": "Yep, this place is a winner! \n\nFalafel pocket sandwich overflowing with goodness- falafel balls (sesame or spicy), veggies (~6 options), and sauces (~4...",
"is_closed": true,
"phone": "+1-415-964-1003"
},
{
"id": 2,
"name": "Philz Coffee",
"rating": 4.3,
"review_count": 1328,
"url": "http://www.yelp.com/biz/philz-coffee-san-francisco-4",
"categories": [
"Coffee & Tea"
],
"address": "748 Van Ness Ave, San Francisco, CA 94102",
"coordinate": {
"latitude": 37.782383,
"longitude": -122.420526
},
"description": "I think the idea of ordering with your barista is pretty cool. You line up until a barista calls \"next\". Order. and pay at the counter behind you. \n\nI had...",
"is_closed": true,
"phone": "+1-415-292-7660"
},
{
"id": 3,
"name": "City Hall",
"rating": 4.0,
"review_count": 290,
"url": "http://www.yelp.com/biz/city-hall-san-francisco",
"categories": [
"Landmarks & Historical Buildings",
"Venues & Event Spaces"
],
"address": "1 Dr Carlton B Goodlett Pl, Civic Center, San Francisco, CA 94102",
"coordinate": {
"latitude": 37.7793900915108,
"longitude": -122.41861581802401
},
"description": "Gorgeous place! We had such an amazing wedding here. We had the whole 9-yards.... the prettiest venue, a private wedding, strings players, etc... I would...",
"is_closed": true,
"phone": "+1-415-701-2311"
},
{
"id": 4,
"name": "Papa November",
"rating": 4.6,
"review_count": 68,
"url": "http://www.yelp.com/biz/papa-november-san-francisco",
"categories": [
"Coffee & Tea"
],
"address": "15th & Kansas SE Corner, SoMa, San Francisco, CA 94103",
"coordinate": {
"latitude": 37.7672036024795,
"longitude": -122.403616905212
},
"description": "It truly is all that they say it is and more. \n\nDelicious, quality stuff, it's really all we ask for. Thank you to the people who work there as well. Staff...",
"is_closed": false,
"phone": null
},
{
"id": 5,
"name": "Hooker's Sweet Treats",
"rating": 4.8,
"review_count": 232,
"url": "http://www.yelp.com/biz/hookers-sweet-treats-san-francisco",
"categories": [
"Desserts",
"Chocolatiers & Shops",
"Coffee & Tea"
],
"address": "442 Hyde St, Tenderloin, San Francisco, CA 94109",
"coordinate": {
"latitude": 37.7852287,
"longitude": -122.4160538
},
"description": "I noticed all the amazing reviews for this place on yelp and decided to stop by after a late lunch at nearby Lahore Karahi. Unfortunately, they were already...",
"is_closed": true,
"phone": "+1-415-441-4628"
},
{
"id": 6,
"name": "Tadu Ethiopian Kitchen",
"rating": 4.2,
"review_count": 183,
"url": "http://www.yelp.com/biz/tadu-ethiopian-kitchen-san-francisco-3",
"categories": [
"Ethiopian"
],
"address": "484 Ellis St, Tenderloin, San Francisco, CA 94102",
"coordinate": {
"latitude": 37.7847191,
"longitude": -122.414172
},
"description": "Wow this food is good!\n\nMy partner and I went there for a Sunday lunch. The restaurant wasn't busy at all, which was probably for the best since they only...",
"is_closed": false,
"phone": "+1-415-409-6649"
},
{
"id": 7,
"name": "b. Patisserie",
"rating": 4.8,
"review_count": 926,
"url": "http://www.yelp.com/biz/b-patisserie-san-francisco-2",
"categories": [
"Bakeries",
"Coffee & Tea"
],
"address": "2821 California St, Pacific Heights, San Francisco, CA 94115",
"coordinate": {
"latitude": 37.7879217,
"longitude": -122.4409499
},
"description": "I made a point of walking to this place from Union Square as I knew I would be indulging in some delicious pastries. \n\nBased on my first experience, b....",
"is_closed": true,
"phone": "+1-415-440-1700"
},
{
"id": 8,
"name": "Little Heaven Deli",
"rating": 5.0,
"review_count": 92,
"url": "http://www.yelp.com/biz/little-heaven-deli-san-francisco",
"categories": [
"Creperies",
"American (New)",
"Delis"
],
"address": "2348 Mission St, Mission, San Francisco, CA 94110",
"coordinate": {
"latitude": 37.7594795,
"longitude": -122.4194336
},
"description": "Great little spot for crepes and sandwiches. Now, they have bubble tea, too, and it's quite tasty.\n\nThe owners of this place clearly care about their...",
"is_closed": false,
"phone": "+1-415-824-1293"
},
{
"id": 9,
"name": "Shizen Vegan Sushi Bar & Izakaya",
"rating": 4.8,
"review_count": 256,
"url": "http://www.yelp.com/biz/shizen-vegan-sushi-bar-and-izakaya-san-francisco",
"categories": [
"Sushi Bars",
"Japanese",
"Vegan"
],
"address": "370 14th St, Mission, San Francisco, CA 94103",
"coordinate": {
"latitude": 37.7682280540466,
"longitude": -122.421650066972
},
"description": "This place is a great example of how delicious vegan food can taste!!!! The chef is crazy good at matching textures and flavors and...",
"is_closed": true,
"phone": "+1-415-678-5767"
},
{
"id": 10,
"name": "Ike's Place",
"rating": 4.1,
"review_count": 6768,
"url": "http://www.yelp.com/biz/ikes-place-san-francisco",
"categories": [
"Sandwiches"
],
"address": "3489 16th St, Castro, San Francisco, CA 94114",
"coordinate": {
"latitude": 37.7642944915352,
"longitude": -122.430696487427
},
"description": "I HAVE A REALLY COOL STORY BOUT THIS PLACE.\n\nI was visiting from out of town with some good friends and we had spent our sunny afternoon in Dolores Park. On...",
"is_closed": false,
"phone": "+1-415-553-6888"
},
{
"id": 11,
"name": "Blue Bottle Coffee",
"rating": 5.0,
"review_count": 1624,
"url": "http://www.yelp.com/biz/blue-bottle-coffee-san-francisco-8",
"categories": [
"Coffee & Tea"
],
"address": "315 Linden St, Hayes Valley, San Francisco, CA 94102",
"coordinate": {
"latitude": 37.77638,
"longitude": -122.423211
},
"description": "The coffee was actually pleasantly good here. Went here a couple months ago and forgot to leave a review. I remember the flavor distinctly though.\n\nThe...",
"is_closed": false,
"phone": "+1-510-653-3394"
},
{
"id": 12,
"name": "Liholiho Yacht Club",
"rating": 4.3,
"review_count": 419,
"url": "http://www.yelp.com/biz/liholiho-yacht-club-san-francisco-2",
"categories": [
"Hawaiian",
"Asian Fusion",
"Chinese"
],
"address": "871 Sutter St, Lower Nob Hill, San Francisco, CA 94109",
"coordinate": {
"latitude": 37.7883678084094,
"longitude": -122.414625026286
},
"description": "Had a very great meal here the other night with my gal. Everything we had was incredible, the service was fantastic, and overall we had a great time! The...",
"is_closed": false,
"phone": "+1-415-440-5446"
},
{
"id": 13,
"name": "Philz Coffee",
"rating": 4.8,
"review_count": 888,
"url": "http://www.yelp.com/biz/philz-coffee-san-francisco-2",
"categories": [
"Coffee & Tea"
],
"address": "4023 18th St, Castro, San Francisco, CA 94114",
"coordinate": {
"latitude": 37.760765,
"longitude": -122.433296
},
"description": "Oh Philz, why are you not in NYC?\nDuring my visit to San Francisco, I was strongly recommended to try Philz; I was skeptical, I didn't believe in the magic...",
"is_closed": false,
"phone": "+1-415-875-9656"
},
{
"id": 14,
"name": "T-We Tea",
"rating": 4.8,
"review_count": 67,
"url": "http://www.yelp.com/biz/t-we-tea-san-francisco",
"categories": [
"Tea Rooms",
"Coffee & Tea"
],
"address": "Crocker Galleria, 50 Post St Level 1, Financial District, San Francisco, CA 94104",
"coordinate": {
"latitude": 37.789574,
"longitude": -122.402784
},
"description": "They have a tea called 'Boobage.'\nIt's purpose is to help naturally increase your breast milk supply. I tried it based on name and didn't read the full...",
"is_closed": true,
"phone": "+1-415-500-2097"
},
{
"id": 15,
"name": "Deli Board",
"rating": 4.6,
"review_count": 869,
"url": "http://www.yelp.com/biz/deli-board-san-francisco",
"categories": [
"Delis",
"Sandwiches"
],
"address": "1058 Folsom St, SoMa, San Francisco, CA 94103",
"coordinate": {
"latitude": 37.7776794,
"longitude": -122.4070892
},
"description": "Look if you want delicious & fresh sandwich, you gotta come here! A lot to choose from, I decided on the \"Mina\" sandwich with pickles of course! \n\nThe...",
"is_closed": true,
"phone": "+1-415-552-7687"
},
{
"id": 16,
"name": "Philz Coffee",
"rating": 4.3,
"review_count": 1478,
"url": "http://www.yelp.com/biz/philz-coffee-san-francisco",
"categories": [
"Coffee & Tea"
],
"address": "3101 24th St, Mission, San Francisco, CA 94110",
"coordinate": {
"latitude": 37.752397102831,
"longitude": -122.41426366546
},
"description": "I'm from the east coast, and we don't have Philz here. That being said, I had to fulfill my mouth watering desires for that mint mojito iced coffee after...",
"is_closed": true,
"phone": "+1-415-875-9370"
},
{
"id": 17,
"name": "Lyon Street Steps",
"rating": 4.3,
"review_count": 262,
"url": "http://www.yelp.com/biz/lyon-street-steps-san-francisco",
"categories": [
"Local Flavor",
"Hiking"
],
"address": "Lyon Street & Green St, Pacific Heights, San Francisco, CA 94123",
"coordinate": {
"latitude": 37.7946892,
"longitude": -122.4467468
},
"description": "\" I LEFT MY HEART IN SAN FRANCISCO\" \n\nAfter reading the little placard that was by the heart, I understand why I hear that phrase a lot. It stated that the...",
"is_closed": true,
"phone": null
},
{
"id": 18,
"name": "KUSAKABE",
"rating": 4.1,
"review_count": 266,
"url": "http://www.yelp.com/biz/kusakabe-san-francisco",
"categories": [
"Sushi Bars",
"Japanese"
],
"address": "584 Washington St, Financial District, San Francisco, CA 94111",
"coordinate": {
"latitude": 37.7956615,
"longitude": -122.4028902
},
"description": "Really really good sushi. My SO and I were joking about how this may have ruined sushi from other places for us. Each dish and each piece of nigiri was...",
"is_closed": true,
"phone": "+1-415-757-0155"
},
{
"id": 19,
"name": "Saigon Sandwich",
"rating": 4.5,
"review_count": 2566,
"url": "http://www.yelp.com/biz/saigon-sandwich-san-francisco",
"categories": [
"Vietnamese",
"Sandwiches"
],
"address": "560 Larkin St, Tenderloin, San Francisco, CA 94102",
"coordinate": {
"latitude": 37.783059744376,
"longitude": -122.41733679750001
},
"description": "+ THE FOOD\nMy fav!! I grew up eating this and to this day, I still think it's great. My favorite is getting the combo sandwich. I love the cha lua, pate,...",
"is_closed": true,
"phone": "+1-415-474-5698"
},
{
"id": 20,
"name": "Dolores Park",
"rating": 4.3,
"review_count": 1203,
"url": "http://www.yelp.com/biz/dolores-park-san-francisco",
"categories": [
"Parks",
"Local Flavor"
],
"address": "Dolores St, Castro, San Francisco, CA 94114",
"coordinate": {
"latitude": 37.7598415490857,
"longitude": -122.426941394806
},
"description": "Dolores Park from afar may not look like a big deal. I walked towards the area thinking, \"how great could this park be? It just looks like a crowded grassy...",
"is_closed": false,
"phone": null
},
{
"id": 21,
"name": "Grand View Park",
"rating": 4.6,
"review_count": 254,
"url": "http://www.yelp.com/biz/grand-view-park-san-francisco",
"categories": [
"Parks",
"Hiking"
],
"address": "14th Ave, Inner Sunset, San Francisco, CA 94122",
"coordinate": {
"latitude": 37.756377,
"longitude": -122.470933
},
"description": "If you want a view of the city from every angle, scratch out places like Billy Goat Hill and Twin Peaks because this is your spot! \n\nFirst things first:...",
"is_closed": true,
"phone": null
},
{
"id": 22,
"name": "Crissy Field",
"rating": 5.0,
"review_count": 685,
"url": "http://www.yelp.com/biz/crissy-field-san-francisco-2",
"categories": [
"Parks",
"Beaches"
],
"address": "603 Mason St, Presidio, San Francisco, CA 94129",
"coordinate": {
"latitude": 37.8040129425127,
"longitude": -122.46404606849
},
"description": "If you're for a location with everything to enjoy the outdoors in SF, this place is it! Great place for bbq, jogging, beach, biking, and great views. \n\nYou...",
"is_closed": true,
"phone": "+1-415-561-7690"
},
{
"id": 23,
"name": "Mozzeria",
"rating": 4.0,
"review_count": 408,
"url": "http://www.yelp.com/biz/mozzeria-san-francisco",
"categories": [
"Pizza",
"Italian"
],
"address": "3228 16th St, Mission, San Francisco, CA 94103",
"coordinate": {
"latitude": 37.76489,
"longitude": -122.42488
},
"description": "I had no idea there was a society that sets the standards for Neapolitan pizza, but apparently there is, its called the AVPN and there are only 3 pizzerias...",
"is_closed": false,
"phone": "+1-415-489-0963"
},
{
"id": 24,
"name": "The Occidental Cigar Club",
"rating": 4.6,
"review_count": 190,
"url": "http://www.yelp.com/biz/the-occidental-cigar-club-san-francisco",
"categories": [
"Bars",
"Tobacco Shops"
],
"address": "471 Pine St, Financial District, San Francisco, CA 94104",
"coordinate": {
"latitude": 37.79163,
"longitude": -122.40365
},
"description": "The Occidental Cigar Club forced me to leave this review! They're outstanding selection and knowledge made my vacation to SF worth the whole trip. \n\nI'm...",
"is_closed": false,
"phone": "+1-415-834-0485"
},
{
"id": 25,
"name": "Cholo Soy",
"rating": 4.8,
"review_count": 73,
"url": "http://www.yelp.com/biz/cholo-soy-san-francisco",
"categories": [
"Peruvian"
],
"address": "Plaza Adelante, 2301 Mission St, Mission, San Francisco, CA 94110",
"coordinate": {
"latitude": 37.7600998876601,
"longitude": -122.41905570124
},
"description": "A great spot with fast service and great food. I got the ceviche and my friend the duck with rice. \n\nThe ceviche was fresh and simple, with a good kick....",
"is_closed": true,
"phone": "+1-415-312-7232"
},
{
"id": 26,
"name": "Tycoon Thai Restaurant",
"rating": 4.2,
"review_count": 146,
"url": "http://www.yelp.com/biz/tycoon-thai-restaurant-san-francisco",
"categories": [
"Laotian",
"Thai"
],
"address": "620 O'Farrell St, Tenderloin, San Francisco, CA 94109",
"coordinate": {
"latitude": 37.78563851356,
"longitude": -122.415149049807
},
"description": "Laotion Food! Order all the Lao food (not the Thai, that's just the draw to get people to try the Lao specials). Lao food is very similar (bordering...",
"is_closed": false,
"phone": "+1-415-796-3391"
},
{
"id": 27,
"name": "Myriad Gastro Pub",
"rating": 4.3,
"review_count": 91,
"url": "http://www.yelp.com/biz/myriad-gastro-pub-san-francisco",
"categories": [
"Gastropubs"
],
"address": "2491 Mission St, Mission, San Francisco, CA 94110",
"coordinate": {
"latitude": 37.7572277060474,
"longitude": -122.418840453029
},
"description": "Some of the 3-star yelp reviews of this place are hilarious. Especially some of the criticism of the service--e.g., the service seemed \"rehearsed.\" What...",
"is_closed": false,
"phone": "+1-415-525-4335"
},
{
"id": 28,
"name": "Don Pisto's",
"rating": 4.0,
"review_count": 1260,
"url": "http://www.yelp.com/biz/don-pistos-san-francisco-2",
"categories": [
"Mexican"
],
"address": "510 Union St, North Beach/Telegraph Hill, San Francisco, CA 94133",
"coordinate": {
"latitude": 37.8007813,
"longitude": -122.4078369
},
"description": "So my first time at Don Pisto's was with a group a friends for a birthday dinner. We all had a great time- the service was great (especially since we were...",
"is_closed": false,
"phone": "+1-415-395-0939"
},
{
"id": 29,
"name": "Bouche",
"rating": 4.4,
"review_count": 480,
"url": "http://www.yelp.com/biz/bouche-san-francisco",
"categories": [
"French"
],
"address": "603 Bush St, Union Square, San Francisco, CA 94108",
"coordinate": {
"latitude": 37.7902010565423,
"longitude": -122.407361268997
},
"description": "We just finished eating here and it was fantastic! We sat at the \"chef's table\" (pretty much a bar looking into the tiny kitchen) which gives you a perfect...",
"is_closed": false,
"phone": "+1-415-956-0396"
},
{
"id": 30,
"name": "Sightglass Coffee",
"rating": 4.8,
"review_count": 1128,
"url": "http://www.yelp.com/biz/sightglass-coffee-san-francisco",
"categories": [
"Coffee & Tea"
],
"address": "270 7th St, SoMa, San Francisco, CA 94103",
"coordinate": {
"latitude": 37.7769585,
"longitude": -122.4085083
},
"description": "Hands down, one of my favorite third wave coffee venues as of late. Two stories of coffee making madness... giant roaster running in the middle of the...",
"is_closed": true,
"phone": "+1-415-861-1313"
},
{
"id": 31,
"name": "Elite Audio Coffee Bar",
"rating": 5.0,
"review_count": 101,
"url": "http://www.yelp.com/biz/elite-audio-coffee-bar-san-francisco",
"categories": [
"Coffee & Tea"
],
"address": "893A Folsom St, SoMa, San Francisco, CA 94107",
"coordinate": {
"latitude": 37.780269,
"longitude": -122.402893
},
"description": "Having lived literally a minutes walk away from this coffeeshop for the past couple months, I'm liking myself for not coming here sooner. \n\nThe space is...",
"is_closed": false,
"phone": "+1-415-795-1149"
},
{
"id": 32,
"name": "Elmira Rosticceria",
"rating": 4.1,
"review_count": 164,
"url": "http://www.yelp.com/biz/elmira-rosticceria-san-francisco",
"categories": [
"Italian",
"American (Traditional)",
"Breakfast & Brunch"
],
"address": "154 McAllister St, Civic Center, San Francisco, CA 94102",
"coordinate": {
"latitude": 37.7809486,
"longitude": -122.4146576
},
"description": "Incredible value. I come here probably once a week. The owners are very determined to make every plate count and the Chef obviously has some sort of...",
"is_closed": true,
"phone": "+1-415-551-7332"
},
{
"id": 33,
"name": "Alexander's Steakhouse",
"rating": 4.7,
"review_count": 1150,
"url": "http://www.yelp.com/biz/alexanders-steakhouse-san-francisco",
"categories": [
"Steakhouses"
],
"address": "448 Brannan St, SoMa, San Francisco, CA 94107",
"coordinate": {
"latitude": 37.7793,
"longitude": -122.39568
},
"description": "JUST TAKE MY MONEY! \n\nIs Alexander's probably one of the best steakhouse I have ever had the privilege to eat at. Before I hype this up TOO much, here are...",
"is_closed": true,
"phone": "+1-415-495-1111"
},
{
"id": 34,
"name": "Palmyra",
"rating": 4.7,
"review_count": 479,
"url": "http://www.yelp.com/biz/palmyra-san-francisco",
"categories": [
"Mediterranean"
],
"address": "700 Haight St, Lower Haight, San Francisco, CA 94117",
"coordinate": {
"latitude": 37.771851,
"longitude": -122.433937
},
"description": "What bad thing could possibly be said about Palmyra? I live just up the street, and we feel thankful and blessed to be in such close vicinity. The food is...",
"is_closed": false,
"phone": "+1-415-896-4172"
},
{
"id": 35,
"name": "Java Supreme",
"rating": 4.3,
"review_count": 156,
"url": "http://www.yelp.com/biz/java-supreme-san-francisco",
"categories": [
"Coffee & Tea",
"Desserts"
],
"address": "703 Guerrero St, Mission, San Francisco, CA 94110",
"coordinate": {
"latitude": 37.7598267048597,
"longitude": -122.423555105925
},
"description": "A classic friendly, cheap, healthy, flexible store to enjoy some good food while crushing work with their free wi-fi.\n\nLatte is super solid, and the veggie...",
"is_closed": false,
"phone": "+1-415-206-1832"
},
{
"id": 36,
"name": "Mission Groceteria",
"rating": 4.6,
"review_count": 23,
"url": "http://www.yelp.com/biz/mission-groceteria-san-francisco",
"categories": [
"Grocery",
"Delis",
"Convenience Stores"
],
"address": "2950 23rd St, Mission, San Francisco, CA 94110",
"coordinate": {
"latitude": 37.7544746398926,
"longitude": -122.411285400391
},
"description": "If you are in the area and need some picnic food, or ran out of some staple ingredients while making dinner, check this place out! It's my favorite.\n\nThey...",
"is_closed": false,
"phone": "+1-415-648-0275"
},
{
"id": 37,
"name": "The Beer Hall",
"rating": 4.6,
"review_count": 86,
"url": "http://www.yelp.com/biz/the-beer-hall-san-francisco",
"categories": [
"Wine Bars",
"Pubs"
],
"address": "1 Polk St, Civic Center, San Francisco, CA 94102",
"coordinate": {
"latitude": 37.7767002424281,
"longitude": -122.417983369546
},
"description": "Currently enjoying beer #13 - Fuchschen l Alt and it is fantastic.\n\nI love the easy going vibe. Service is great, some visits are better than others, but...",
"is_closed": false,
"phone": "+1-415-800-7416"
},
{
"id": 38,
"name": "Estela's Fresh Sandwiches",
"rating": 4.4,
"review_count": 171,
"url": "http://www.yelp.com/biz/estelas-fresh-sandwiches-san-francisco",
"categories": [
"Delis",
"Juice Bars & Smoothies",
"Sandwiches"
],
"address": "250 Fillmore St, Lower Haight, San Francisco, CA 94117",
"coordinate": {
"latitude": 37.7718624472618,
"longitude": -122.430337071419
},
"description": "I love Estela's. Their sandwiches are great, fresh, and they have a huge variety to choose from. Plus their staff is very friendly.",
"is_closed": false,
"phone": "+1-415-553-6068"
},
{
"id": 39,
"name": "Third Rail",
"rating": 4.4,
"review_count": 99,
"url": "http://www.yelp.com/biz/third-rail-san-francisco",
"categories": [
"Cocktail Bars"
],
"address": "628 20th St, Dogpatch, San Francisco, CA 94107",
"coordinate": {
"latitude": 37.7606207,
"longitude": -122.3881324
},
"description": "Beer, Shot, Jerky combo for a steal of $10. Does it really get any better than that?! \nI was extremely excited to check this place out. Arrived around...",
"is_closed": false,
"phone": "+1-415-252-7966"
},
{
"id": 40,
"name": "Tender",
"rating": 5.0,
"review_count": 39,
"url": "http://www.yelp.com/biz/tender-san-francisco-2",
"categories": [
"Wine Bars"
],
"address": "854 Geary St, Lower Nob Hill, San Francisco, CA 94109",
"coordinate": {
"latitude": 37.7862348,
"longitude": -122.4173342
},
"description": "Such a unique spot and very well appointed as well. The wine on tab was unusual so I had to try it. Fantastic and they already have a following, so I had a...",
"is_closed": false,
"phone": "+1-415-589-7879"
},
{
"id": 41,
"name": "Montesacro Pinseria Romana Enoteca",
"rating": 4.7,
"review_count": 105,
"url": "http://www.yelp.com/biz/montesacro-pinseria-romana-enoteca-san-francisco-4",
"categories": [
"Pizza"
],
"address": "510 Stevenson St, SoMa, San Francisco, CA 94103",
"coordinate": {
"latitude": 37.7815971,
"longitude": -122.4101181
},
"description": "Finally somewhere near the Orpheum for dinner! and so good, that despite the sketchy neighborhood, even sans a show to see, I will go back again and again...",
"is_closed": false,
"phone": "+1-415-795-3040"
},
{
"id": 42,
"name": "Bereka Coffee",
"rating": 4.5,
"review_count": 119,
"url": "http://www.yelp.com/biz/bereka-coffee-san-francisco",
"categories": [
"Coffee & Tea",
"Sandwiches"
],
"address": "2320 Lombard St, Marina/Cow Hollow, San Francisco, CA 94123",
"coordinate": {
"latitude": 37.79966,
"longitude": -122.439835
},
"description": "For coffee and homemade walnut bread this is a 6 out of 5.\n\nNo espresso however they can make your coffee very strong if you ask. They have a number of...",
"is_closed": true,
"phone": "+1-415-440-4438"
},
{
"id": 43,
"name": "The Chairman",
"rating": 4.2,
"review_count": 104,
"url": "http://www.yelp.com/biz/the-chairman-san-francisco-2",
"categories": [
"Asian Fusion",
"Chinese"
],
"address": "670 Larkin St, Tenderloin, San Francisco, CA 94109",
"coordinate": {
"latitude": 37.7840223067038,
"longitude": -122.41758517921
},
"description": "I love it and im a girl ;)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nJust kidding im a guy and i think it was alright",
"is_closed": false,
"phone": "+1-415-813-8800"
},
{
"id": 44,
"name": "El Gallo Giro Taco Truck",
"rating": 4.7,
"review_count": 112,
"url": "http://www.yelp.com/biz/el-gallo-giro-taco-truck-san-francisco-2",
"categories": [
"Mexican",
"Food Stands"
],
"address": "23rd St & Treat Ave, Mission, San Francisco, CA 94110",
"coordinate": {
"latitude": 37.7541734300482,
"longitude": -122.413121431534
},
"description": "Read some reviews of what some people found to be the best tacos in the city. On one review this place was hands down the winner. So I decided to check them...",
"is_closed": true,
"phone": null
},
{
"id": 45,
"name": "Elephant Sushi Golden Gate",
"rating": 4.0,
"review_count": 62,
"url": "http://www.yelp.com/biz/elephant-sushi-golden-gate-san-francisco-6",
"categories": [
"Sushi Bars",
"Japanese"
],
"address": "380 Golden Gate Ave, Civic Center, San Francisco, CA 94102",
"coordinate": {
"latitude": 37.7815064,
"longitude": -122.4169539
},
"description": "Amazing, fresh, healthy, affordable & quick service, what else can you ask for?\n\nWe had the Sashimi bowl you can customize with 4 items, for only 14...",
"is_closed": false,
"phone": "+1-415-359-9001"
},
{
"id": 46,
"name": "The Boy's Deli",
"rating": 4.4,
"review_count": 173,
"url": "http://www.yelp.com/biz/the-boys-deli-san-francisco",
"categories": [
"Delis",
"Meat Shops",
"Sandwiches"
],
"address": "Polk & Green Produce Market, 2222 Polk St, Russian Hill, San Francisco, CA 94109",
"coordinate": {
"latitude": 37.7971784770489,
"longitude": -122.421957179904
},
"description": "We perused the sandwich menu. \nLove the titles...\nSkinny Jeans.\nBad Date.\nHot Mess.\nItalian Wedding.\nPG-13.\nSexy Time.\n\nWe decided on Spartacus. On Dutch...",
"is_closed": true,
"phone": "+1-415-776-3099"
},
{
"id": 47,
"name": "Rosamunde Sausage Grill",
"rating": 4.0,
"review_count": 1496,
"url": "http://www.yelp.com/biz/rosamunde-sausage-grill-san-francisco",
"categories": [
"German"
],
"address": "545 Haight St, Lower Haight, San Francisco, CA 94117",
"coordinate": {
"latitude": 37.7718315,
"longitude": -122.4311371
},
"description": "What a great establishment! Came here on labor day, only one other person inside. There's about 10 different sausages to choose from plus a selection of...",
"is_closed": false,
"phone": "+1-415-437-6851"
},
{
"id": 48,
"name": "Crepes A Go Go",
"rating": 4.9,
"review_count": 492,
"url": "http://www.yelp.com/biz/crepes-a-go-go-san-francisco-2",
"categories": [
"Creperies",
"Food Stands"
],
"address": "350 11th St, SoMa, San Francisco, CA 94103",
"coordinate": {
"latitude": 37.7710686,
"longitude": -122.4134064
},
"description": "Don't let the food truck fool you. These crepes are amazing.\n\nPerfect for the after club scene, Crepes A Go Go is a staple for either going between clubs,...",
"is_closed": false,
"phone": "+1-415-503-1294"
},
{
"id": 49,
"name": "Balmy Street Murals",
"rating": 4.7,
"review_count": 81,
"url": "http://www.yelp.com/biz/balmy-street-murals-san-francisco",
"categories": [
"Local Flavor"
],
"address": "1-100 Balmy St, Mission, San Francisco, CA 94110",
"coordinate": {
"latitude": 37.7526092529297,
"longitude": -122.412460327148
},
"description": "Some of the immigration/civil rights murals were too deep for me, but my fave was definitely Where the Wild Things Are. My friend loved the one with the...",
"is_closed": false,
"phone": null
},
{
"id": 50,
"name": "Philz Coffee",
"rating": 4.0,
"review_count": 291,
"url": "http://www.yelp.com/biz/philz-coffee-san-francisco-8",
"categories": [
"Coffee & Tea"
],
"address": "399 Golden Gate Ave, Civic Center, San Francisco, CA 94102",
"coordinate": {
"latitude": 37.7813806997337,
"longitude": -122.417041361332
},
"description": "This is Philz, therefore it is excellent, however this is an exceptionally good location for a few reasons:\n\n- Plenty of seating\n- Lots of outlets\n- Fast...",
"is_closed": false,
"phone": "+1-415-621-7000"
},
{
"id": 51,
"name": "Nani",
"rating": 4.3,
"review_count": 24,
"url": "http://www.yelp.com/biz/nani-san-francisco",
"categories": [
"Indian",
"Food Delivery Services"
],
"address": "SoMa, San Francisco, CA",
"coordinate": {
"latitude": 37.7823806997337,
"longitude": -122.417041361332
},
"description": "yes, I'm indian, so maybe I'm biased, but whenever I want some good home-cooked indian food and I'm not at home, nanifood is clutch - because they offer the...",
"is_closed": true,
"phone": "+1-415-968-7262"
},
{
"id": 52,
"name": "Ted's Market & Delicatessen",
"rating": 4.6,
"review_count": 352,
"url": "http://www.yelp.com/biz/teds-market-and-delicatessen-san-francisco",
"categories": [
"Delis",
"Sandwiches",
"Caterers"
],
"address": "1530 Howard St, SoMa, San Francisco, CA 94103",
"coordinate": {
"latitude": 37.772869,
"longitude": -122.416229
},
"description": "They have a lovely sandwich and burger menu (including veggie burgers; I like the black bean one), and the most impressive collection of packaged drinks I...",
"is_closed": false,
"phone": "+1-415-552-0309"
},
{
"id": 53,
"name": "Song Tea & Ceramics",
"rating": 4.7,
"review_count": 26,
"url": "http://www.yelp.com/biz/song-tea-and-ceramics-san-francisco-2",
"categories": [
"Coffee & Tea"
],
"address": "2120 Sutter St, Lower Pacific Heights, San Francisco, CA 94115",
"coordinate": {
"latitude": 37.7859464,
"longitude": -122.4353888
},
"description": "Song Tea and Ceramics is a great find. A very nice relaxed vibe, with friendly staff that don't make you feel pressured and are happy to just talk (and...",
"is_closed": false,
"phone": "+1-415-885-2118"
},
{
"id": 54,
"name": "Thorough Bread & Pastry",
"rating": 4.0,