-
Notifications
You must be signed in to change notification settings - Fork 0
/
Payloads.js
8401 lines (8396 loc) · 307 KB
/
Payloads.js
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
var config = require('./config');
var payloads = {};
//Create index schema for Azure search.
payloads.indexPayload =
{
"name": config.indexName,
"fields": [
{
"name": "loc_id",
"type": "Edm.String",
"searchable": false,
"filterable": false,
"retrievable": true,
"sortable": false,
"facetable": false,
"key": true,
"analyzer": null
},
{
"name": "name",
"type": "Edm.String",
"searchable": true,
"filterable": true,
"retrievable": true,
"sortable": true,
"facetable": false,
"key": false,
"analyzer": null
},
{
"name": "address",
"type": "Edm.String",
"searchable": true,
"filterable": true,
"retrievable": true,
"sortable": true,
"facetable": false,
"key": false,
"analyzer": null
},
{
"name": "city",
"type": "Edm.String",
"searchable": true,
"filterable": true,
"retrievable": true,
"sortable": true,
"facetable": false,
"key": false,
"analyzer": null
},
{
"name": "country",
"type": "Edm.String",
"searchable": true,
"filterable": true,
"retrievable": true,
"sortable": true,
"facetable": false,
"key": false,
"analyzer": null
},
{
"name": "location",
"type": "Edm.GeographyPoint",
"searchable": false,
"filterable": true,
"retrievable": true,
"sortable": true,
"facetable": false,
"key": false,
"analyzer": null
}
],
"scoringProfiles": [],
"defaultScoringProfile": null,
"corsOptions":
{
"allowedOrigins": ["*"],
"maxAgeInSeconds": 300
},
"suggesters": []
};
//Data to be inserted into Azure search index.
payloads.indexData =
{
"value": [
{
"@search.action": "upload",
"loc_id": "1",
"name": "Fred Meyer - Redondo #215",
"address": "25250 Pacific Highway South",
"city": "Kent,",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.2988358, 47.37425613]
}
}, {
"@search.action": "upload",
"loc_id": "2",
"name": "QFC-W Lynwood #835",
"address": "7500-B 196th SW",
"city": "Lynnwood",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.3348999, 47.82049942]
}
}, {
"@search.action": "upload",
"loc_id": "3",
"name": "Westlake & Thomas - Seattle",
"address": "330 Westlake Ave N",
"city": "Seattle",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.3381577, 47.62149429]
}
}, {
"@search.action": "upload",
"loc_id": "4",
"name": "Safeway - Leavenworth #1589",
"address": "116 RIVERBEND DR.",
"city": "Leavenworth",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-120.6472702, 47.59695435]
}
}, {
"@search.action": "upload",
"loc_id": "5",
"name": "Target Richland T-2314",
"address": "2941 Queensgate Dr",
"city": "Richland",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-119.313118, 46.25903702]
}
}, {
"@search.action": "upload",
"loc_id": "6",
"name": "180th & W Valley Hwy - Kent",
"address": "18016 71st Ave. S., 101",
"city": "Kent",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.2441711, 47.44096375]
}
}, {
"@search.action": "upload",
"loc_id": "7",
"name": "Target Renton T-2290",
"address": "1215 Landing Way",
"city": "Renton",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.2003555, 47.49648285]
}
}, {
"@search.action": "upload",
"loc_id": "8",
"name": "6607 W. Canal Drive",
"address": "6607 West Canal Drive, A",
"city": "Kennewick",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-119.2101669, 46.22631073]
}
}, {
"@search.action": "upload",
"loc_id": "9",
"name": "Fred Meyer - Snohomish #681",
"address": "56th & Bickford Road",
"city": "Snohomish",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.1094666, 47.94454956]
}
}, {
"@search.action": "upload",
"loc_id": "10",
"name": "820 Ocean Beach Hwy-Longview, WA",
"address": "808 Ocean Beach Hwy",
"city": "Longview",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.9261475, 46.1467514]
}
}, {
"@search.action": "upload",
"loc_id": "11",
"name": "Safeway-Sunnyside #563",
"address": "613 6th St",
"city": "Sunnyside",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-120.0137558, 46.32176971]
}
}, {
"@search.action": "upload",
"loc_id": "12",
"name": "37th & Grand",
"address": "3719 S Grand Blvd",
"city": "Spokane",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-117.4017944, 47.62055206]
}
}, {
"@search.action": "upload",
"loc_id": "13",
"name": "Harbor Station",
"address": "32650 SR 20, A-107",
"city": "Oak Harbor",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.6472015, 48.30305481]
}
}, {
"@search.action": "upload",
"loc_id": "14",
"name": "Cedar Plaza- Mountlake Terrace",
"address": "22805 44th Ave W.",
"city": "Mountlake Terrace",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.291748, 47.79122162]
}
}, {
"@search.action": "upload",
"loc_id": "15",
"name": "QFC - Mt. Lake Terrace #857",
"address": "22803 44th Avenue W",
"city": "Mountlake Terrace",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.2906952, 47.79086304]
}
}, {
"@search.action": "upload",
"loc_id": "16",
"name": "Snoqualmie Ridge- Snoqualmie",
"address": "7730 Center Blvd. SE, A, Snoqualmie Ridge Retail Center",
"city": "Snoqualmie",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-121.8716812, 47.53025818]
}
}, {
"@search.action": "upload",
"loc_id": "17",
"name": "QFC - Maple Valley/Wilderness Vlg #",
"address": "22131 SE 237th",
"city": "Maple Valley",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.0450592, 47.38812256]
}
}, {
"@search.action": "upload",
"loc_id": "18",
"name": "Safeway - Port Townsend #538",
"address": "442 W Sims Way",
"city": "Port Townsend",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.7826233, 48.10807037]
}
}, {
"@search.action": "upload",
"loc_id": "19",
"name": "Safeway #307 - Walla Walla",
"address": "215 E ROSE ST",
"city": "WALLA WALLA",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-118.3375397, 46.0701828]
}
}, {
"@search.action": "upload",
"loc_id": "20",
"name": "Safeway-Silver Firs #2645",
"address": "5802 134th Pl SE",
"city": "Everett",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.1539612, 47.87563705]
}
}, {
"@search.action": "upload",
"loc_id": "21",
"name": "Eastgate-Bellevue",
"address": "3181 156th Ave SE",
"city": "Bellevue",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.134819, 47.58213043]
}
}, {
"@search.action": "upload",
"loc_id": "22",
"name": "QFC - Issaquah #821",
"address": "1540 NW Gilman Blvd",
"city": "Issaquah",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.0603256, 47.54638672]
}
}, {
"@search.action": "upload",
"loc_id": "23",
"name": "Vancouver Park Place- Vancouver",
"address": "8101 NE Parkway Drive, F",
"city": "Vancouver",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.5886307, 45.65472031]
}
}, {
"@search.action": "upload",
"loc_id": "24",
"name": "Bridle Trails Center- Kirkland",
"address": "6617 132nd Ave NE, Bridle Trails Shopping Center",
"city": "Kirkland",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.1658783, 47.66524887]
}
}, {
"@search.action": "upload",
"loc_id": "25",
"name": "QFC - West Wood Village #825",
"address": "2500 SW Barton",
"city": "Seattle",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.3656616, 47.52223206]
}
}, {
"@search.action": "upload",
"loc_id": "26",
"name": "QFC - South Mercer Island #806",
"address": "8421 S.E. 68th St",
"city": "Mercer Island",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.225853, 47.5410347]
}
}, {
"@search.action": "upload",
"loc_id": "27",
"name": "Safeway - Shelton #585",
"address": "600 Franklin Street",
"city": "Shelton",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-123.1060028, 47.21419907]
}
}, {
"@search.action": "upload",
"loc_id": "28",
"name": "QFC - North Shore #831",
"address": "4101 49th Ave N.E.",
"city": "Tacoma",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.3803558, 47.29382706]
}
}, {
"@search.action": "upload",
"loc_id": "29",
"name": "Safeway - Centralia #1495",
"address": "1129 Harrison Ave",
"city": "Centralia",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.9807205, 46.72794724]
}
}, {
"@search.action": "upload",
"loc_id": "30",
"name": "SEA SeaTac Concourse C, C12",
"address": "2580 S 156th St, Seattle-Tacoma International Airport",
"city": "Seattle",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.3036957, 47.44551468]
}
}, {
"@search.action": "upload",
"loc_id": "31",
"name": "W. Sunset Hwy & S Hayford Rd",
"address": "10510 W. SR2, STE 8",
"city": "Spokane",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-117.5562286, 47.64384079]
}
}, {
"@search.action": "upload",
"loc_id": "32",
"name": "W. Francis & N. Ash",
"address": "1704 W Francis",
"city": "Spokane",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-117.4366074, 47.71572113]
}
}, {
"@search.action": "upload",
"loc_id": "33",
"name": "Fred Meyer-Puyallup #424",
"address": "17404 Meridian E",
"city": "Puyallup",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.296875, 47.09869385]
}
}, {
"@search.action": "upload",
"loc_id": "34",
"name": "Federal Way Crossing",
"address": "1401 South 348th Street, M101",
"city": "Federal Way",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.3162918, 47.28939438]
}
}, {
"@search.action": "upload",
"loc_id": "35",
"name": "Target Redmond T-995",
"address": "17700 NE 76th St",
"city": "Redmond",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.1035538, 47.67250061]
}
}, {
"@search.action": "upload",
"loc_id": "36",
"name": "Fred Meyer-Burlington #24",
"address": "920 S Burlington Blvd",
"city": "Burlington",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.3342819, 48.46670914]
}
}, {
"@search.action": "upload",
"loc_id": "37",
"name": "QFC - Totem Lake #828",
"address": "11224 N.E. 124th St.",
"city": "Kirkland",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.1911774, 47.7122879]
}
}, {
"@search.action": "upload",
"loc_id": "38",
"name": "James Tower",
"address": "550 17th Ave",
"city": "Seattle",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.3092499, 47.60705948]
}
}, {
"@search.action": "upload",
"loc_id": "39",
"name": "Two Union Square",
"address": "601 Union Street, 224B",
"city": "Seattle",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.3330765, 47.6101532]
}
}, {
"@search.action": "upload",
"loc_id": "40",
"name": "SE 272nd St & 172nd Ave SE",
"address": "17313 SE 270th Pl, 102",
"city": "Covington",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.1108017, 47.35849762]
}
}, {
"@search.action": "upload",
"loc_id": "41",
"name": "Hwy 99 & 185th- Shoreline",
"address": "18336 Midvale Ave. N., 114",
"city": "Shoreline",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.3444748, 47.76249313]
}
}, {
"@search.action": "upload",
"loc_id": "42",
"name": "Safeway - Seattle #1062",
"address": "4754 42nd Ave SW",
"city": "Seattle",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.3848953, 47.55982971]
}
}, {
"@search.action": "upload",
"loc_id": "43",
"name": "Bellevue Courtyard",
"address": "11010 NE 8th St",
"city": "Bellevue",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.1931458, 47.61758804]
}
}, {
"@search.action": "upload",
"loc_id": "44",
"name": "Fred Meyer - Tacoma Pacific #385",
"address": "7250 Pacific Avenue",
"city": "Tacoma",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.4351807, 47.19060898]
}
}, {
"@search.action": "upload",
"loc_id": "45",
"name": "Safeway - E Wenatchee #3521",
"address": "510 Grant Road",
"city": "E Wenatchee",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-120.2808609, 47.40489197]
}
}, {
"@search.action": "upload",
"loc_id": "46",
"name": "Galbreath Way & Weber",
"address": "103 W Galbreath Way, 103A",
"city": "Ritzville",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-118.3675537, 47.11745071]
}
}, {
"@search.action": "upload",
"loc_id": "47",
"name": "Downtown Edmonds",
"address": "502 Main Street",
"city": "Edmonds",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.377388, 47.8103981]
}
}, {
"@search.action": "upload",
"loc_id": "48",
"name": "6th & Sprague - Tacoma",
"address": "2008 6th Avenue",
"city": "Tacoma",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.4637299, 47.25545502]
}
}, {
"@search.action": "upload",
"loc_id": "49",
"name": "QFC-Stanwood #879",
"address": "27008 92nd Ave NW",
"city": "Stanwood",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.3583527, 48.2402916]
}
}, {
"@search.action": "upload",
"loc_id": "50",
"name": "Safeway - Cheney #1740",
"address": "2710 First St",
"city": "Cheney",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-117.5668259, 47.50596237]
}
}, {
"@search.action": "upload",
"loc_id": "51",
"name": "132nd & Meridian- Puyallup",
"address": "10219 132nd Street East, Suite #404",
"city": "Puyallup",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.2923813, 47.13669205]
}
}, {
"@search.action": "upload",
"loc_id": "52",
"name": "2nd Street & C Street- Washougal",
"address": "291 C St, 102",
"city": "Washougal",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.3761063, 45.5814476]
}
}, {
"@search.action": "upload",
"loc_id": "53",
"name": "Auburn Way S & M Street",
"address": "1436 Auburn Way South",
"city": "Auburn",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.2136536, 47.29468918]
}
}, {
"@search.action": "upload",
"loc_id": "54",
"name": "Lynden Retail - Lynden",
"address": "8082 Guide Meridian Ave, 101",
"city": "Lynden",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.4846115, 48.93427277]
}
}, {
"@search.action": "upload",
"loc_id": "55",
"name": "Great Wolf Lodge Grand Mound, WA",
"address": "20500 Old Hwy 99 SW",
"city": "Centralia",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-123.0105667, 46.79029465]
}
}, {
"@search.action": "upload",
"loc_id": "56",
"name": "College St & Yelm Hwy - Lacey",
"address": "4700 AVERY LANE SE, Lacey Crossroads",
"city": "LACEY",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.8243561, 46.9990654]
}
}, {
"@search.action": "upload",
"loc_id": "57",
"name": "SouthCenter Mall East",
"address": "1047 Southcenter Mall, Southcenter Mall",
"city": "Tukwila",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.2569275, 47.45822906]
}
}, {
"@search.action": "upload",
"loc_id": "58",
"name": "83rd Ave & Steilacoom Blvd",
"address": "8223 Steilacoom Blvd, Lakewood",
"city": "Lakewood",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.5472946, 47.18011093]
}
}, {
"@search.action": "upload",
"loc_id": "59",
"name": "Safeway - Chehalis #3525",
"address": "1100 S Market Blvd",
"city": "Chehalis",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.9537506, 46.65486145]
}
}, {
"@search.action": "upload",
"loc_id": "60",
"name": "Safeway-Grandview #1593",
"address": "610 E Wine Country Rd",
"city": "Grandview",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-119.8925552, 46.25550461]
}
}, {
"@search.action": "upload",
"loc_id": "61",
"name": "QFC - University Village #807",
"address": "2746 NE 45th Street",
"city": "Seattle",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.2967606, 47.66247559]
}
}, {
"@search.action": "upload",
"loc_id": "62",
"name": "QFC - Seattle/Rainier #849",
"address": "2707 Rainier Avenue South",
"city": "Seattle",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.2994919, 47.57902145]
}
}, {
"@search.action": "upload",
"loc_id": "63",
"name": "Safeway-Kent #792",
"address": "17051 SE 272nd St",
"city": "Covingtion",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.1144485, 47.35677338]
}
}, {
"@search.action": "upload",
"loc_id": "64",
"name": "QFC - Redmond #820",
"address": "15800 Redmond Way NE",
"city": "Redmond",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.128891, 47.67562103]
}
}, {
"@search.action": "upload",
"loc_id": "65",
"name": "N. Wenatchee Ave & Maiden Lane",
"address": "1925 N. Wenatchee Avenue",
"city": "Wenatchee",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-120.333931, 47.45303345]
}
}, {
"@search.action": "upload",
"loc_id": "66",
"name": "McChord AFB BX",
"address": "Bldg 504",
"city": "McChord AFB",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.4869995, 47.13259888]
}
}, {
"@search.action": "upload",
"loc_id": "67",
"name": "Safeway - Vancouver #1103",
"address": "6701 East Mill Plain",
"city": "Vancouver",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.6031036, 45.62623215]
}
}, {
"@search.action": "upload",
"loc_id": "68",
"name": "Hwy 507 & Creek St SE- Yelm",
"address": "1406 Yelm Ave E, Suite 1",
"city": "Yelm",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.5903397, 46.93351364]
}
}, {
"@search.action": "upload",
"loc_id": "69",
"name": "1202 Wishkah St- Aberdeen",
"address": "1202 E. Wishkah St.",
"city": "Aberdeen",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-123.8028793, 46.97758484]
}
}, {
"@search.action": "upload",
"loc_id": "70",
"name": "Safeway - Yakima #1235",
"address": "2204-A W Nob Hill Blvd",
"city": "Yakima",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-120.5393906, 46.58407593]
}
}, {
"@search.action": "upload",
"loc_id": "71",
"name": "Safeway - Olympia #1173",
"address": "1243 Marvin Rd NE",
"city": "Olympia",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.7664108, 47.05944061]
}
}, {
"@search.action": "upload",
"loc_id": "72",
"name": "QFC - Issaquah/Pine Lake #824",
"address": "2902 228th Ave SE",
"city": "Issaquah",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.0331879, 47.58311081]
}
}, {
"@search.action": "upload",
"loc_id": "73",
"name": "QFC Bellevue #808",
"address": "10116 NE 8th St",
"city": "Bellevue",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.2049713, 47.61830521]
}
}, {
"@search.action": "upload",
"loc_id": "74",
"name": "Safeway - Tacoma #1436",
"address": "1624 72nd St E",
"city": "Tacoma",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.4072647, 47.19032288]
}
}, {
"@search.action": "upload",
"loc_id": "75",
"name": "Fred Meyer-Marysville #209",
"address": "9925 State Ave",
"city": "Marysville",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.1699524, 48.08510208]
}
}, {
"@search.action": "upload",
"loc_id": "76",
"name": "Safeway-Ellensburg #1630",
"address": "400 N Ruby St",
"city": "Ellensburg",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-120.5434952, 46.99609375]
}
}, {
"@search.action": "upload",
"loc_id": "77",
"name": "Safeway - Redmond #464",
"address": "17246 Redmond Way NE",
"city": "Redmond",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-122.1100082, 47.6713829]
}
}, {
"@search.action": "upload",
"loc_id": "78",
"name": "Market & Garland",
"address": "3907 North Market Street, B",
"city": "Spokane",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-117.365303, 47.69384384]
}
}, {
"@search.action": "upload",
"loc_id": "79",
"name": "Safeway - Spokane #342",
"address": "W 1616 NW Blvd",
"city": "Spokane",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-117.4356995, 47.68050385]
}
}, {
"@search.action": "upload",
"loc_id": "80",
"name": "Safeway - Aberdeen #1546",
"address": "221 W Heron St",
"city": "Aberdeen",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-123.8185196, 46.97253418]
}
}, {
"@search.action": "upload",
"loc_id": "81",
"name": "Gage & Keene Rd",
"address": "698 Gage Blvd",
"city": "Richland",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-119.2678223, 46.22739029]
}
}, {
"@search.action": "upload",
"loc_id": "82",
"name": "Safeway-Yakima #1660",
"address": "905 E Mead Ave",
"city": "Yakima",
"country": "US",
"location": {
"type": "Point",
"coordinates": [-120.4890366, 46.57831192]
}
}, {
"@search.action": "upload",
"loc_id": "83",
"name": "Penn Plaza- Moses Lake",
"address": "1025 N Stratford Rd, 1, Penn Plaza",
"city": "Moses Lake",
"country": "US",
"location": {