-
Notifications
You must be signed in to change notification settings - Fork 34
/
db.json
10014 lines (10014 loc) · 249 KB
/
db.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
{
"attraction": [
{
"id": 100001,
"name": "7D Experience",
"type": "Amusement Park",
"address": "Pier 39",
"postcode": "94133",
"area": "Fisherman's Wharf",
"city": "San Francisco",
"phone": "(415) 445-0120"
},
{
"id": 100003,
"name": "Alamo Square",
"type": "Park",
"address": "Steiner St Hayes St",
"postcode": "94115",
"area": "Alamo Square",
"city": "San Francisco",
"phone": "(415) 831-2700"
},
{
"id": 100005,
"name": "Alcatraz Island",
"type": "Landmark",
"address": "B201 Fort Mason",
"postcode": "94122",
"area": "",
"city": "San Francisco",
"phone": "(415) 561-4900"
},
{
"id": 100009,
"name": "Angel Island State Park",
"type": "Park",
"address": "Angel Island State Park",
"postcode": "94920",
"area": "",
"city": "San Francisco",
"phone": "(415) 435-5390"
},
{
"id": 100011,
"name": "Aquarium Of The Bay",
"type": "Aquarium",
"address": "PIER 39 Embarcadero & Beach St",
"postcode": "94133",
"area": "North Beach/Telegraph Hill",
"city": "San Francisco",
"phone": "(415) 623-5300"
},
{
"id": 100012,
"name": "Baker Beach",
"type": "Beach",
"address": "1770 Gibson Rd",
"postcode": "94129",
"area": "Presidio",
"city": "San Francisco",
"phone": "(415) 561-4323"
},
{
"id": 100013,
"name": "Balmy Street Murals",
"type": "Art",
"address": "1-100 Balmy St",
"postcode": "94110",
"area": "Mission",
"city": "San Francisco",
"phone": ""
},
{
"id": 100015,
"name": "Batteries to Bluffs Trail",
"type": "Hiking",
"address": "The Presidio",
"postcode": "94123",
"area": "Presidio",
"city": "San Francisco",
"phone": ""
},
{
"id": 100016,
"name": "Battery Spencer",
"type": "Landmark",
"address": "Conzelman Rd",
"postcode": "94965",
"area": "",
"city": "San Francisco",
"phone": ""
},
{
"id": 100017,
"name": "Bay City Bike Rentals and Tours - The Haight",
"type": "Bike Rental",
"address": "622 Shrader St",
"postcode": "94117",
"area": "The Haight",
"city": "San Francisco",
"phone": "(415) 346-2453"
},
{
"id": 100019,
"name": "Bay City Bike Rentals and Tours - Fisherman's Wharf",
"type": "Bike Rental",
"address": "2661 Taylor St",
"postcode": "94133",
"area": "Fisherman's Wharf",
"city": "San Francisco",
"phone": "(415) 346-2453"
},
{
"id": 100020,
"name": "Bay Model Visitor Center",
"type": "Visitor Center",
"address": "2100 Bridgeway Blvd",
"postcode": "94965",
"area": "",
"city": "San Francisco",
"phone": "(415) 332-3871"
},
{
"id": 100022,
"name": "Belden Place",
"type": "Local Flavor",
"address": "Belden Pl",
"postcode": "94109",
"area": "Financial District",
"city": "San Francisco",
"phone": ""
},
{
"id": 100023,
"name": "Bernal Heights Park",
"type": "Park",
"address": "10 Bernal Heights Blvd",
"postcode": "94110",
"area": "Bernal Heights",
"city": "San Francisco",
"phone": ""
},
{
"id": 100026,
"name": "Cable Car - California Street Line",
"type": "Cable Car",
"address": "",
"postcode": "",
"area": "Nob Hill",
"city": "San Francisco",
"phone": ""
},
{
"id": 100027,
"name": "Cable Car - Powell/Hyde Line",
"type": "Cable Car",
"address": "Powell Market St",
"postcode": "94103",
"area": "Union Square",
"city": "San Francisco",
"phone": ""
},
{
"id": 100028,
"name": "Cable Car - Powell/Mason Line",
"type": "Cable Car",
"address": "Powell & Market St",
"postcode": "94109",
"area": "Union Square",
"city": "San Francisco",
"phone": ""
},
{
"id": 100029,
"name": "Cable Car Museum",
"type": "Museum",
"address": "1201 Mason St",
"postcode": "94108",
"area": "Nob Hill",
"city": "San Francisco",
"phone": "(415) 474-1887"
},
{
"id": 100030,
"name": "California Academy of Sciences",
"type": "Museum",
"address": "55 Music Concourse Dr",
"postcode": "94118",
"area": "",
"city": "San Francisco",
"phone": "(415) 379-8000"
},
{
"id": 100031,
"name": "Camera Obscura",
"type": "Landmark",
"address": "1096 Point Lobos Ave",
"postcode": "94121",
"area": "Sea Cliff",
"city": "San Francisco",
"phone": "(415) 750-0415"
},
{
"id": 100033,
"name": "Cartoon Art Museum",
"type": "Museum",
"address": "781 Beach St",
"postcode": "94109",
"area": "Russian Hill",
"city": "San Francisco",
"phone": "(415) 227-8666"
},
{
"id": 100034,
"name": "Chain of Lakes",
"type": "Park",
"address": "John F Kennedy Dr & Chain of Lakes Dr E",
"postcode": "94199",
"area": "",
"city": "San Francisco",
"phone": ""
},
{
"id": 100035,
"name": "China Beach",
"type": "Beach",
"address": "490 Sea Cliff Ave",
"postcode": "94121",
"area": "Sea Cliff",
"city": "San Francisco",
"phone": "(415) 561-4323"
},
{
"id": 100037,
"name": "City Lights Bookstore",
"type": "Bookstore",
"address": "261 Columbus Ave",
"postcode": "94133",
"area": "Chinatown",
"city": "San Francisco",
"phone": "(415) 362-8193"
},
{
"id": 100038,
"name": "City of Sausalito",
"type": "Landmark",
"address": "420 Litho St",
"postcode": "94965",
"area": "",
"city": "San Francisco",
"phone": "(415) 289-4100"
},
{
"id": 100040,
"name": "Clarion Alley",
"type": "Local Flavor",
"address": "",
"postcode": "94110",
"area": "Mission",
"city": "San Francisco",
"phone": ""
},
{
"id": 100041,
"name": "Coit Tower",
"type": "Landmark",
"address": "1 Telegraph Hill Blvd",
"postcode": "94133",
"area": "North Beach/Telegraph Hill",
"city": "San Francisco",
"phone": "(415) 412-0382"
},
{
"id": 100042,
"name": "Conservatory of Flowers",
"type": "Garden",
"address": "100 John F Kennedy Dr",
"postcode": "94118",
"area": "",
"city": "San Francisco",
"phone": "(415) 831-2090"
},
{
"id": 100043,
"name": "Contemporary Jewish Museum",
"type": "Museum",
"address": "736 Mission St",
"postcode": "94103",
"area": "Union Square",
"city": "San Francisco",
"phone": "(415) 655-7800"
},
{
"id": 100044,
"name": "Crissy Field",
"type": "Beach",
"address": "603 Mason St",
"postcode": "94129",
"area": "Presidio",
"city": "San Francisco",
"phone": "(415) 561-4323"
},
{
"id": 100045,
"name": "Cupid's Span",
"type": "Landmark",
"address": "The Embarcadero At Folsom St",
"postcode": "94107",
"area": "Embarcadero",
"city": "San Francisco",
"phone": ""
},
{
"id": 100046,
"name": "de Young",
"type": "Art Museum",
"address": "50 Hagiwara Tea Garden Dr",
"postcode": "94118",
"area": "",
"city": "San Francisco",
"phone": "(415) 750-3600"
},
{
"id": 100047,
"name": "Dolores Park",
"type": "Park",
"address": "19th & Dolores St",
"postcode": "94114",
"area": "Castro",
"city": "San Francisco",
"phone": "(415) 831-2700"
},
{
"id": 100049,
"name": "Dragon Gate",
"type": "Landmark",
"address": "Grant Ave & Bush St",
"postcode": "94108",
"area": "Chinatown",
"city": "San Francisco",
"phone": ""
},
{
"id": 100052,
"name": "Embarcadero Public Promenade",
"type": "Local Flavor",
"address": "Pier 1 The Embarcadero",
"postcode": "94111",
"area": "Embarcadero",
"city": "San Francisco",
"phone": "(415) 274-0400"
},
{
"id": 100054,
"name": "Exploratorium",
"type": "Museum",
"address": "Pier 15",
"postcode": "94111",
"area": "Embarcadero",
"city": "San Francisco",
"phone": "(415) 528-4444"
},
{
"id": 100055,
"name": "Exploratorium After Dark",
"type": "Museum",
"address": "Pier 15",
"postcode": "94111",
"area": "Embarcadero",
"city": "San Francisco",
"phone": "(415) 528-4444"
},
{
"id": 100056,
"name": "Ferry Building Bike Rentals",
"type": "Bike Rental",
"address": "The Ferry Building",
"postcode": "94111",
"area": "Embarcadero",
"city": "San Francisco",
"phone": "(415) 922-4537"
},
{
"id": 100057,
"name": "Ferry Building Marketplace",
"type": "Public Market",
"address": "1 Ferry Bldg",
"postcode": "94111",
"area": "Embarcadero",
"city": "San Francisco",
"phone": "(415) 983-8030"
},
{
"id": 100058,
"name": "Filbert Steps",
"type": "Local Flavor",
"address": "Filbert St & Sansome St",
"postcode": "94111",
"area": "North Beach/Telegraph Hill",
"city": "San Francisco",
"phone": ""
},
{
"id": 100059,
"name": "Fisherman's Wharf",
"type": "Local Flavor",
"address": "",
"postcode": "94133",
"area": "North Beach/Telegraph Hill",
"city": "San Francisco",
"phone": "(415) 673-3530"
},
{
"id": 100062,
"name": "Fort Point",
"type": "Landmark",
"address": "",
"postcode": "94129",
"area": "Presidio",
"city": "San Francisco",
"phone": "(415) 561-4959"
},
{
"id": 100064,
"name": "Golden Gate Bridge",
"type": "Landmark",
"address": "",
"postcode": "94129",
"area": "",
"city": "San Francisco",
"phone": "(415) 921-5858"
},
{
"id": 100065,
"name": "Golden Gate Bridge Welcome Center",
"type": "Visitor Center",
"address": "Golden Gate Bridge",
"postcode": "94129",
"area": "Presidio",
"city": "San Francisco",
"phone": "(415) 426-5220"
},
{
"id": 100066,
"name": "Golden Gate Ferry",
"type": "Public Transportation",
"address": "Golden Gate Ferry Terminal",
"postcode": "94105",
"area": "Embarcadero",
"city": "San Francisco",
"phone": "(415) 455-2000"
},
{
"id": 100067,
"name": "Golden Gate Park",
"type": "Park",
"address": "501 Stanyan St",
"postcode": "94117",
"area": "",
"city": "San Francisco",
"phone": "(415) 831-2700"
},
{
"id": 100070,
"name": "Grace Cathedral",
"type": "Church",
"address": "1100 California St",
"postcode": "94108",
"area": "Nob Hill",
"city": "San Francisco",
"phone": "(415) 749-6300"
},
{
"id": 100072,
"name": "Gregangelo's Velocity Arts & Entertainment",
"type": "Art",
"address": "225 San Leandro Way",
"postcode": "94127",
"area": "Balboa Terrace",
"city": "San Francisco",
"phone": "(415) 664-0095"
},
{
"id": 100074,
"name": "Haas-Lilienthal House",
"type": "Landmark",
"address": "2007 Franklin St",
"postcode": "94109",
"area": "Pacific Heights",
"city": "San Francisco",
"phone": "(415) 441-3000"
},
{
"id": 100077,
"name": "Hidden Garden Steps",
"type": "Art",
"address": "16TH Ave",
"postcode": "94122",
"area": "Inner Sunset",
"city": "San Francisco",
"phone": "(415) 621-3260"
},
{
"id": 100080,
"name": "Hyde Street Beach",
"type": "Beach",
"address": "599 Jefferson St",
"postcode": "94109",
"area": "Fisherman's Wharf",
"city": "San Francisco",
"phone": ""
},
{
"id": 100081,
"name": "Hyde Street Pier",
"type": "Park",
"address": "",
"postcode": "94109",
"area": "Fisherman's Wharf",
"city": "San Francisco",
"phone": "(415) 447-5000"
},
{
"id": 100082,
"name": "Ina Coolbrith Park",
"type": "Park",
"address": "Taylor & Vallejo Streets",
"postcode": "94101",
"area": "Russian Hill",
"city": "San Francisco",
"phone": ""
},
{
"id": 100084,
"name": "Japantown",
"type": "Landmark",
"address": "Post And Buchanan",
"postcode": "94115",
"area": "Lower Pacific Heights",
"city": "San Francisco",
"phone": ""
},
{
"id": 100086,
"name": "Kadampa Meditation Center San Francisco",
"type": "Temple",
"address": "3324 17th St",
"postcode": "94110",
"area": "Mission",
"city": "San Francisco",
"phone": "(415) 503-1187"
},
{
"id": 100087,
"name": "Lake Merced",
"type": "Park",
"address": "1 Harding Rd",
"postcode": "94132",
"area": "Lakeshore",
"city": "San Francisco",
"phone": "(415) 831-2700"
},
{
"id": 100089,
"name": "Lands End Lookout",
"type": "Hiking",
"address": "680 Point Lobos",
"postcode": "94121",
"area": "Sea Cliff",
"city": "San Francisco",
"phone": "(415) 426-5240"
},
{
"id": 100092,
"name": "Legion of Honor",
"type": "Museum",
"address": "100 34th Avenue",
"postcode": "94121",
"area": "Sea Cliff",
"city": "San Francisco",
"phone": "(415) 750-3600"
},
{
"id": 100093,
"name": "Lombard Street",
"type": "Local Flavor",
"address": "1000-1099 Lombard St",
"postcode": "94133",
"area": "Russian Hill",
"city": "San Francisco",
"phone": ""
},
{
"id": 100094,
"name": "Lower Haight",
"type": "Local Flavor",
"address": "",
"postcode": "94117",
"area": "Lower Haight",
"city": "San Francisco",
"phone": ""
},
{
"id": 100095,
"name": "Lyon Street Steps",
"type": "Landmark",
"address": "Lyon Street & Green St",
"postcode": "94123",
"area": "Pacific Heights",
"city": "San Francisco",
"phone": ""
},
{
"id": 100096,
"name": "Madame Tussauds San Francisco",
"type": "Museum",
"address": "145 Jefferson St",
"postcode": "94133",
"area": "Fisherman's Wharf",
"city": "San Francisco",
"phone": ""
},
{
"id": 100097,
"name": "Magowan's Infinite Mirror Maze",
"type": "Art",
"address": "Pier 39",
"postcode": "94133",
"area": "Fisherman's Wharf",
"city": "San Francisco",
"phone": "(415) 835-0019"
},
{
"id": 100098,
"name": "Marin Headlands",
"type": "Park",
"address": "948 Fort Barry",
"postcode": "94965",
"area": "",
"city": "San Francisco",
"phone": "(415) 331-1540"
},
{
"id": 100099,
"name": "Martin Luther King Jr Memorial",
"type": "Landmark",
"address": "745 Mission St",
"postcode": "94103",
"area": "SoMa",
"city": "San Francisco",
"phone": ""
},
{
"id": 100100,
"name": "Mazza Castle",
"type": "Museum",
"address": "900 Mirador Ter",
"postcode": "94044",
"area": "",
"city": "San Francisco",
"phone": "(650) 355-0272"
},
{
"id": 100101,
"name": "McKinley Square Park Foundation",
"type": "Park",
"address": "2301 20th St",
"postcode": "94107",
"area": "Potrero Hill",
"city": "San Francisco",
"phone": "(415) 206-9537"
},
{
"id": 100102,
"name": "Mission Dolores Basilica/San Francisco de Asis",
"type": "Church",
"address": "3321 16th St",
"postcode": "94114",
"area": "Castro",
"city": "San Francisco",
"phone": "(415) 621-8203"
},
{
"id": 100103,
"name": "Mount Davidson Park",
"type": "Park",
"address": "Dalewood Way & Myra Way",
"postcode": "94127",
"area": "Sherwood Forest",
"city": "San Francisco",
"phone": "(415) 831-2700"
},
{
"id": 100104,
"name": "Muir Woods National Monument",
"type": "Park",
"address": "1 Muir Woods Rd",
"postcode": "94941",
"area": "",
"city": "San Francisco",
"phone": "(415) 561-2850"
},
{
"id": 100105,
"name": "Municipal Pier",
"type": "Landmark",
"address": "Aquatic Park Pier",
"postcode": "94109",
"area": "Marina/Cow Hollow",
"city": "San Francisco",
"phone": ""
},
{
"id": 100106,
"name": "Musee Mecanique",
"type": "Arcade",
"address": "Pier 45",
"postcode": "94133",
"area": "Fisherman's Wharf",
"city": "San Francisco",
"phone": "(415) 346-2000"
},
{
"id": 100107,
"name": "Museum Of 3D Illusions",
"type": "Museum",
"address": "55 Jefferson St",
"postcode": "94133",
"area": "Fisherman's Wharf",
"city": "San Francisco",
"phone": "(833) 564-8556"
},
{
"id": 100112,
"name": "NightLife",
"type": "Museum",
"address": "55 Music Concourse Dr",
"postcode": "94118",
"area": "",
"city": "San Francisco",
"phone": "(415) 379-8000"
},
{
"id": 100113,
"name": "North Beach",
"type": "Local Flavor",
"address": "Columbus St & Stockton St",
"postcode": "94133",
"area": "North Beach/Telegraph Hill",
"city": "San Francisco",
"phone": ""
},
{
"id": 100114,
"name": "Oakland Museum of California",
"type": "Museum",
"address": "1000 Oak St",
"postcode": "94607",
"area": "Lake Merritt",
"city": "San Francisco",
"phone": "(510) 318-8400"
},
{
"id": 100115,
"name": "Ocean Beach",
"type": "Beach",
"address": "Point Lobos Ave, Great Hwy",
"postcode": "94121",
"area": "",
"city": "San Francisco",
"phone": "(415) 426-5240"
},
{
"id": 100117,
"name": "Pacific Pinball Museum",
"type": "Museum",
"address": "1510 Webster St",
"postcode": "94501",
"area": "",
"city": "San Francisco",
"phone": "(510) 769-1349"
},
{
"id": 100118,
"name": "Painted Ladies",
"type": "Landmark",
"address": "700 Steiner St",
"postcode": "94117",
"area": "Alamo Square",
"city": "San Francisco",
"phone": ""
},
{
"id": 100120,
"name": "Palace Of Fine Arts",
"type": "Landmark",
"address": "3601 Lyon St",
"postcode": "94123",
"area": "Marina/Cow Hollow",
"city": "San Francisco",
"phone": "(415) 886-1929"
},
{
"id": 100121,
"name": "Parkwide Bike Rentals & Tours",
"type": "Bike Rental",
"address": "5 Citywide Locations",
"postcode": "94118",
"area": "",
"city": "San Francisco",
"phone": "(415) 671-8989"
},
{
"id": 100122,
"name": "Pier 33",
"type": "Landmark",
"address": "31 San Francisco Pier 33 - Alcatraz Island",
"postcode": "94124",
"area": "North Beach/Telegraph Hill",
"city": "San Francisco",
"phone": ""
},
{
"id": 100123,
"name": "Pier 39",
"type": "Landmark",
"address": "The Embarcadero And Beach St",
"postcode": "94133",
"area": "Fisherman's Wharf",
"city": "San Francisco",
"phone": "(415) 705-5500"
},
{
"id": 100124,
"name": "Pier 7",
"type": "Landmark",
"address": "The Embarcadero",
"postcode": "94199",
"area": "Embarcadero",
"city": "San Francisco",
"phone": ""
},
{
"id": 100125,
"name": "Point Bonita Lighthouse",
"type": "Landmark",
"address": "Point Bonita Trailhead",
"postcode": "94965",
"area": "",
"city": "San Francisco",
"phone": "(415) 331-1540"
},
{
"id": 100126,
"name": "Presidio Pet Cemetery",
"type": "Landmark",
"address": "",
"postcode": "94129",
"area": "Presidio",
"city": "San Francisco",
"phone": "(415) 561-5300"
},
{
"id": 100127,
"name": "Queen Wilhelmina Tulip Garden",
"type": "Landmark",
"address": "John F Kennedy Drive And 47th Ave",
"postcode": "94121",
"area": "",
"city": "San Francisco",
"phone": ""
},
{
"id": 100129,
"name": "Randall Museum",
"type": "Museum",
"address": "199 Museum Way",
"postcode": "94114",
"area": "Corona Heights",
"city": "San Francisco",
"phone": "(415) 554-9600"
},
{
"id": 100131,
"name": "Ripley's Believe It or Not!",
"type": "Museum",
"address": "175 Jefferson St",
"postcode": "94133",
"area": "Fisherman's Wharf",
"city": "San Francisco",
"phone": "(415) 202-9850"
},
{
"id": 100135,
"name": "Salesforce Transit Center",
"type": "Public Transportation",
"address": "425 Mission St",
"postcode": "94105",
"area": "Financial District",
"city": "San Francisco",
"phone": "(415) 984-8626"
},
{
"id": 100138,
"name": "San Francisco Botanical Garden",
"type": "Garden",
"address": "1199 9th Ave",
"postcode": "94122",
"area": "",
"city": "San Francisco",
"phone": "(415) 661-1316"
},
{
"id": 100139,
"name": "San Francisco Carousel",
"type": "Art",
"address": "Pier 39",
"postcode": "94120",
"area": "Fisherman's Wharf",
"city": "San Francisco",
"phone": ""
},
{
"id": 100140,
"name": "Chinatown",
"type": "Local Flavor",
"address": "Grant Ave And Bush St",
"postcode": "94108",
"area": "Chinatown",
"city": "San Francisco",
"phone": ""
},
{
"id": 100143,
"name": "San Francisco City Hall",
"type": "Landmark",
"address": "1 Dr Carlton B Goodlett Pl",
"postcode": "94102",
"area": "Civic Center",
"city": "San Francisco",
"phone": "(415) 701-2311"
},
{
"id": 100147,
"name": "San Francisco Museum of Modern Art",
"type": "Art Museum",
"address": "151 3rd St",
"postcode": "94103",
"area": "SoMa",
"city": "San Francisco",
"phone": "(415) 357-4000"
},
{
"id": 100150,
"name": "San Francisco Zoo",
"type": "Zoo",
"address": "1 Zoo Rd",
"postcode": "94132",
"area": "Lakeshore",
"city": "San Francisco",
"phone": "(415) 753-7080"
},
{
"id": 100157,
"name": "Seward Street Slides",
"type": "Park",
"address": "30 Seward St",
"postcode": "94114",
"area": "Castro",
"city": "San Francisco",
"phone": "(415) 254-4299"
},
{
"id": 100158,
"name": "SF Citadel",
"type": "Social Club",
"address": "181 Eddy St",
"postcode": "94102",
"area": "Union Square",
"city": "San Francisco",
"phone": "(415) 757-0090"
},
{
"id": 100161,
"name": "SS Jeremiah O'Brien",
"type": "Museum",
"address": "",
"postcode": "94133",
"area": "",
"city": "San Francisco",
"phone": "(415) 544-0100"
},
{
"id": 100162,
"name": "SS Red Oak Victory",
"type": "Museum",
"address": "1337 Canal Blvd",
"postcode": "94804",
"area": "",
"city": "San Francisco",