forked from CodeForPittsburgh/food-access-map-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
merge.log
1120 lines (1120 loc) · 466 KB
/
merge.log
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 [2022-05-19 01:46:46] Merging the following rows:
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:46] -------- --------------------------------------------------- ---- ----------------- ------------------------------------------ ------------- ----------------- ------------------------- ---------------------------------- ------------ ------- ---------- -------- ----------------------- ---------------- ------------------------------ ---------- ----------- ----------------- ----------- --------- -------------------- ----------------------------- ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:46] **18** food-data/Cleaned_data_files//cleaned_growpgh.csv 18 Grow Pittsburgh GP_garden_directory_listing-20210322.csv Grow PGH Garden GARFIELD COMMUNITY FARM 527 Edlam Way Pittsburgh PA 15224 community-farm 4129797764 http://garfieldfarm.com 40.47 -79.94 Grow Pittsburgh open to all no date/time;no county info 0 0 0 0 1 0 1 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] **56** food-data/Cleaned_data_files//cleaned_growpgh.csv 57 Grow Pittsburgh GP_garden_directory_listing-20210322.csv Grow PGH Garden GARFIELD COMMUNITY FARM Cornwall Street & Wicklow Street Pittsburgh PA 15224 commercial-urban-farm (412) 215 6398 http://www.garfieldfarm.com/ 40.47 -79.93 Grow Pittsburgh open to all no date/time;no county info 0 0 0 0 1 0 1 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] Merging the following rows:
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:46] ---------- ----------------------------------------------------------------- ------ ------------------ -------------------------------------------------------------------------------------------------- ------------- ------------------ ----------------------------------------- ---------------------- ------------ ------- ---------- ----------- ----------------------------------------------------------------------------------------------------------- ------- ----- ---------- ----------- ------------------ ----------- --------- -------------------- ----------------------------------------------------------------------- ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:46] **41** food-data/Cleaned_data_files//cleaned_growpgh.csv 42 Grow Pittsburgh GP_garden_directory_listing-20210322.csv Grow PGH Garden PITTSBURGH SCIENCE AND TECHNOLOGY 107 Thackeray Avenue Pittsburgh PA 15260 school-garden 40.44 -79.96 Grow Pittsburgh open to all no date/time;no county info 0 0 0 0 1 0 2 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] **1170** food-data/Cleaned_data_files//cleaned_summer_meal_sites_api.csv 1172 Allegheny County https://services1.arcgis.com/vdNDkVykv9vEWFX4/arcgis/rest/services/Child_Nutrition/FeatureServer 0 summer meal site PITTSBURGH SCIENCE & TECHNOLOGY ACADEMY 107 Thackeray Avenue Pittsburgh PA 15260 Allegheny Service Type: Grab and Go; Site Hours: Call the school at (412) 529-7620 for updated meal service times.; 40.44 -79.96 Allegheny County youth populations latitude missing;longitude missing;date_from missing;date_to missing; 0 0 0 0 NA 1 2 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] **1183** food-data/Cleaned_data_files//cleaned_summer_meal_sites_api.csv 1185 Allegheny County https://services1.arcgis.com/vdNDkVykv9vEWFX4/arcgis/rest/services/Child_Nutrition/FeatureServer 0 summer meal site PITTSBURGH SCIENCE & TECHNOLOGY ACADEMY 107 Thackeray Avenue Pittsburgh PA 15260 Allegheny Site Hours: Monday through Friday this site serves breakfast and lunch from 9:30-10:30 am.; 40.44 -79.96 Allegheny County youth populations latitude missing;longitude missing;date_from missing;date_to missing; 0 0 0 0 NA 1 2 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] Merging the following rows:
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:46] ---------- --------------------------------------------------- ------ ----------------- ---------------------------------------------------------------------------------------------- ------------- ----------------- ------------------------------------ --------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----------------------------------- ---------- ----------- ----------------- ----------- --------- -------------------- --------------------------------------------------------------------------- ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:46] **88** food-data/Cleaned_data_files//cleaned_growpgh.csv 89 Grow Pittsburgh GP_garden_directory_listing-20210322.csv Grow PGH Garden PITTSBURGH URBAN GARDENING PROJECT 1612 Steuben Street Pittsburgh PA 15205 community-farm http://pittsburghurbangardens.com 40.44 -80.06 Grow Pittsburgh open to all no date/time;no county info 0 0 0 0 1 0 3 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] **1213** food-data/Cleaned_data_files//FMNPMarkets.csv 1215 FMNP Markets https://services5.arcgis.com/n3KaqXoFYDuIhfyz/ArcGIS/rest/services/FMNPMarkets/FeatureServer 3479 farmer's market PITTSBUGH URBAN GRADEN PROJECT 1612 Steuben Street Crafton PA 15205 Allegheny 40.44 -80.06 FMNP Markets open to all location_description missing;SNAP missing;WIC missing;food_bucks missing; NA NA NA 1 1 0 3 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] Merging the following rows:
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:46] --------- --------------------------------------------------- ----- --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------------- --------------------------- ------------------------ ---------- ------- ---------- ----------- ---------------------- -------------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:46] **90** food-data/Cleaned_data_files//cleaned_growpgh.csv 91 Grow Pittsburgh GP_garden_directory_listing-20210322.csv Grow PGH Garden CLAIRTON COMMUNITY GARDEN 300 Saint Clair Avenue Clairton PA 15025 community-garden 412-414-1512 40.29 -79.88 Grow Pittsburgh open to all no date/time;no county info 0 0 0 0 1 0 4 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] **619** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 620 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 122210 convenience store CLAIRTON MINI MART INC 540 Saint Clair Avenue Clairton PA 15025 ALLEGHENY 40.29 -79.89 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 4 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] Merging the following rows:
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:46] ---------- -------------------------------------------------------------------------- ------ ---------------------------------------- --------------------------------------------------------------------------------------------------------------- -------------------------------------- ----------------- ------------------------------------------------ -------------------- ------------ ------- ---------- -------- --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- ---------------- ------------------------ ---------- ----------- ---------------------------------------- ----------- --------- -------------------- ----------------------------- ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:46] **111** food-data/Cleaned_data_files//cleaned_growpgh.csv 112 Grow Pittsburgh GP_garden_directory_listing-20210322.csv Grow PGH Garden NORTHSIDE GOOD FOOD TO THE NEIGHBORHOOD GARDEN 1601 Brighton Road Pittsburgh PA 15212 community-garden 412-323-1163 40.46 -80.02 Grow Pittsburgh open to all no date/time;no county info 0 0 0 0 1 0 6 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] **1361** food-data/Cleaned_data_files//greater_pittsburgh_community_food_bank.csv 1363 Greater Pittsburgh Community Food Bank https://services1.arcgis.com/vdNDkVykv9vEWFX4/arcgis/rest/services/COVID19_Food_Access_(PUBLIC)/FeatureServer b92c8117-7b85-4b92-8833-79757e3a18fb food bank site NORTHSIDE COMMON MINISTRIES 1601 Brighton Road Pittsburgh PA 15212 Population Served: Focused on families with infants and toddlers Site Info: Location is closed to the public. Call ahead for availability Time: Supplies are limited. Call ahead for availability Additional Info: This location has access to diapers, wipes and formula (412) 323-1163 https://www.ncmin.org/ 40.46 -80.02 Greater Pittsburgh Community Food Bank family support 0 0 0 0 0 1 6 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] Merging the following rows:
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:46] ---------- ----------------------------------------------------------------- ------ ------------------ -------------------------------------------------------------------------------------------------- ------------- ------------------ ------------------------------ ---------------------------- ------------ ------- ---------- ----------- ----------------------------------------------------------------------------------------------------------- -------------- ----- ---------- ----------- ------------------ ----------- --------- -------------------- ----------------------------------------------------------------------- ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:46] **129** food-data/Cleaned_data_files//cleaned_growpgh.csv 130 Grow Pittsburgh GP_garden_directory_listing-20210322.csv Grow PGH Garden WESTINGHOUSE LEARNING GARDEN 1101 North Murtland Street Pittsburgh PA 15208 school-garden 412-529-3940 40.46 -79.9 Grow Pittsburgh open to all no date/time;no county info 0 0 0 0 1 0 7 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] **1163** food-data/Cleaned_data_files//cleaned_summer_meal_sites_api.csv 1164 Allegheny County https://services1.arcgis.com/vdNDkVykv9vEWFX4/arcgis/rest/services/Child_Nutrition/FeatureServer 0 summer meal site WESTINGHOUSE ACADEMY 1101 North Murtland Street Pittsburgh PA 15208 Allegheny Service Type: Grab and Go; Site Hours: Call the school at (412) 529-3940 for updated meal service times.; 40.46 -79.9 Allegheny County youth populations latitude missing;longitude missing;date_from missing;date_to missing; 0 0 0 0 NA 1 7 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] **1175** food-data/Cleaned_data_files//cleaned_summer_meal_sites_api.csv 1177 Allegheny County https://services1.arcgis.com/vdNDkVykv9vEWFX4/arcgis/rest/services/Child_Nutrition/FeatureServer 0 summer meal site WESTINGHOUSE ACADEMY 1101 North Murtland Street Pittsburgh PA 15208 Allegheny Site Hours: Monday through Friday this site serves breakfast and lunch from 9:30-10:30 am.; 40.46 -79.9 Allegheny County youth populations latitude missing;longitude missing;date_from missing;date_to missing; 0 0 0 0 NA 1 7 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] Merging the following rows:
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:46] ---------- -------------------------------------------------------------------------- ------ ---------------------------------------- --------------------------------------------------------------------------------------------------------------- -------------------------------------- ----------------- ---------------------------- ---------------------- ------------ ------- ---------- -------- ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -------------- ------------------------------------------------------------- ---------- ----------- ---------------------------------------- ----------- --------- -------------------- ----------------------------- ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:46] **135** food-data/Cleaned_data_files//cleaned_growpgh.csv 136 Grow Pittsburgh GP_garden_directory_listing-20210322.csv Grow PGH Garden PHILLIPS RECREATION CENTER 201 Parkfield Street Pittsburgh PA 15210 412-885-7445 https://pittsburghpa.gov/citiparks/index.html 40.39 -79.99 Grow Pittsburgh open to all no date/time;no county info 0 0 0 0 1 0 8 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] **1396** food-data/Cleaned_data_files//greater_pittsburgh_community_food_bank.csv 1398 Greater Pittsburgh Community Food Bank https://services1.arcgis.com/vdNDkVykv9vEWFX4/arcgis/rest/services/COVID19_Food_Access_(PUBLIC)/FeatureServer 155e5452-6a1a-4eb6-88de-0bef24155b8d food bank site PHILLIPS RECREATION CENTER 201 Parkfield Street Pittsburgh PA 15210 Population Served: Available to all children up to 18 years old, as well as intellectually disabled individuals up to 21 years old Time: Mondays, Wednesdays, and Fridays from 9:30 am - 1:30 pm Additional Info: Grab 'n Go meal and snack distribution for children https://pittsburghpa.gov/press-releases/press-releases/4266 40.39 -79.99 Greater Pittsburgh Community Food Bank youth populations phone missing; 0 0 0 0 0 1 8 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] Merging the following rows:
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:46] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ------------------------------- ------------------------- ------------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:46] **152** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 153 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 6500 HAYMAKER VILLAGE SUPERMARKETS 4548 Broadway Boulevard Monroeville PA 15146 ALLEGHENY 40.39 -79.77 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 9 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] **1116** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1117 PA WIC wicresults.json supermarket HAYMAKER VILLAGE SHOP N SAVE 4548 Broadway Boulevard MONROEVILLE PA 15146 40.39 -79.77 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 9 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] Merging the following rows:
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:46] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ------------------------- ----------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:46] **167** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 168 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 10839 supermarket JUBA GROCERY STORE, LLC 2721 Brownsville Road Pittsburgh PA 15227 ALLEGHENY 40.38 -79.98 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 10 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] **1416** food-data/Cleaned_data_files//just_harvest.csv 1418 Just Harvest Just Harvest Google Sheets supermarket JUBA GROCERY 2721 Brownsville Road Pittsburgh PA 15227 Allegheny 40.38 -79.98 Mapbox Geocode open to all 0 NA NA NA 1 NA 10 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] Merging the following rows:
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:46] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------ -------------- --------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:46] **170** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 171 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 11564 ANN'S MARKET 2316 Webster Avenue Pittsburgh PA 15219 ALLEGHENY 40.45 -79.98 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 11 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] **1426** food-data/Cleaned_data_files//just_harvest.csv 1428 Just Harvest Just Harvest Google Sheets ANN'S MARKET 2316 Webster Avenue Pittsburgh PA 15219 Allegheny 40.45 -79.98 Mapbox Geocode open to all 0 NA NA NA 1 NA 11 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] Merging the following rows:
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:46] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ---------------------------- --------------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:46] **177** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 178 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 14359 supermarket GIANT EAGLE 52 132 Ben Avon Heights Road Pittsburgh PA 15237 ALLEGHENY 40.52 -80.07 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 12 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] **1088** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1089 PA WIC wicresults.json supermarket GIANT EAGLE CAMP HORNE #52 132 Ben Avon Heights Road PITTSBURGH PA 15237 40.52 -80.07 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 12 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46] -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] Merging the following rows:
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:46] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ----------------- ---------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:46] **185** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 186 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 16973 supermarket GIANT EAGLE 91 318 Cedar Avenue Pittsburgh PA 15212 ALLEGHENY 40.45 -80 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 13 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] **1084** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1085 PA WIC wicresults.json supermarket GIANT EAGLE #91 318-320 Cedar Avenue PITTSBURGH PA 15212 40.45 -80 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 13 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] Merging the following rows:
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:46] --------- --------------------------------------------------- ----- --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------ -------------- ------------------------ ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:46] **191** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 192 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 18582 CIO STORE 14 1909 Painters Run Road Pittsburgh PA 15241 ALLEGHENY 40.36 -80.08 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 14 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] **904** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 905 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 203453 CIO STORE 13 1980 Painters Run Road Pittsburgh PA 15241 ALLEGHENY 40.36 -80.08 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 14 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] Merging the following rows:
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:46] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ----------------- --------------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:46] **199** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 200 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 20233 supermarket GIANT EAGLE 68 5990 University Boulevard Coraopolis PA 15108 ALLEGHENY 40.52 -80.22 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 15 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] **1081** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1082 PA WIC wicresults.json supermarket GIANT EAGLE #68 5990 University Boulevard Coraopolis PA 15108 40.52 -80.22 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 15 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] Merging the following rows:
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:46] ---------- -------------------------------------------------------------------------- ------ ---------------------------------------- --------------------------------------------------------------------------------------------------------------- -------------------------------------- ---------------- ------------------------------------------ ------------------------- ------------ ------- ---------- ----------- ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -------------- ------------------------------------------ ---------- ----------- ---------------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:46] **202** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 203 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 20789 FISHES AND LOAVES COOPERATIVE MINISTRIES 131 E Elizabeth Street Pittsburgh PA 15207 ALLEGHENY 40.41 -79.94 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 16 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] **1306** food-data/Cleaned_data_files//greater_pittsburgh_community_food_bank.csv 1308 Greater Pittsburgh Community Food Bank https://services1.arcgis.com/vdNDkVykv9vEWFX4/arcgis/rest/services/COVID19_Food_Access_(PUBLIC)/FeatureServer 26e0ad5a-606a-4f1c-8d33-463729799228 food bank site FISHES AND LOAVES COOPRATIVE MINISTRIES 131 E. Elizabeth Street Pittsburgh PA 15207 Population Served: We provide emergency food to people who are not able to get to the store. Priority is given to people who live in the greater Hazelwood area, but we do respond to other requests in case of dire emergency. We also refer people to: https://www.pittsburghfoodbank.org/get-help/ Time: Monday and Thursday 1:30 PM to 4:30 PM Additional Info: Priority given to people living within 5 miles of the site who need access to food. On occasion we can deliver food to home-bound persons 412-414-3125 https://fishes-and-loaves-hazelwood.org/ 40.41 -79.94 Greater Pittsburgh Community Food Bank open to all 0 0 0 0 0 1 16 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] Merging the following rows:
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:46] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ----------------- ---------------------------------------- -------------------- ------------ ------- ---------- ----------- ------------------------------------------- ------------ ----- ---------- ----------- --------------------------------- ----------- ------------ -------------------- ---------------------------------------------- ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:46] **205** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 206 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 22174 GREEN TREE FARMER'S MARKET IN THE PARK 905 Greentree Road Pittsburgh PA 15220 ALLEGHENY 40.42 -80.04 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 17 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:46] **1255** food-data/Cleaned_data_files//FMNPMarkets.csv 1257 FMNP Markets https://services5.arcgis.com/n3KaqXoFYDuIhfyz/ArcGIS/rest/services/FMNPMarkets/FeatureServer 1538 farmer's market GREEN TREE FARMER'S MARKET IN THE PARK 895 Greentree Road Pittsburgh PA 15220 Allegheny June - October Thursday 4:00 PM - 7:00 PM 4129211110 40.42 -80.04 FMNP Markets June 1 October 31 open to all SNAP missing;WIC missing;food_bucks missing; NA NA NA 1 1 0 17 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:46] -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:46]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] --------- --------------------------------------------------- ----- --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------------- ---------------- ---------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **216** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 217 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 27006 convenience store RITE AID 10921 1915 E Carson Street Pittsburgh PA 15203 ALLEGHENY 40.43 -79.98 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 18 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **512** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 513 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 90422 convenience store RITE AID 273 2655 E Carson Street Pittsburgh PA 15203 ALLEGHENY 40.43 -79.97 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 18 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ----------------------------- ------------------------ ----------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **242** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 243 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 35734 supermarket GIANT EAGLE 6379 420 Waterfront Drive E Homestead PA 15120 ALLEGHENY 40.41 -79.91 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 19 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **1099** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1100 PA WIC wicresults.json supermarket GIANT EAGLE HOMESTEAD #6379 420 Waterfront Drive E HOMESTEAD PA 15120 40.41 -79.91 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 19 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ------------------------------ ----------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **285** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 286 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 47171 supermarket WALMART SUPERCENTER 2300 250 Summit Park Drive Pittsburgh PA 15275 ALLEGHENY 40.45 -80.18 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 20 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **1143** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1144 PA WIC wicresults.json WAL-MART #2300 NORTH FAYETTE 250 Summit Park Drive PITTSBURGH PA 15275 40.45 -80.18 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 20 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- -------------------------- --------------------------- --------------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **287** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 288 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 47361 supermarket WALMART SUPERCENTER 4644 7500 University Boulevard Moon Township PA 15108 ALLEGHENY 40.51 -80.22 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 21 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **1147** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1148 PA WIC wicresults.json WAL-MART STORE #4644 7500 University Boulevard Moon Township PA 15108 40.52 -80.22 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 21 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ---------------------------- ------------------------- ------------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **316** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 317 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 55212 supermarket GIANT EAGLE 4 5055 Library Road Ste 5 Bethel Park PA 15102 ALLEGHENY 40.34 -80.03 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 22 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **1086** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1087 PA WIC wicresults.json supermarket GIANT EAGLE BETHEL PARK #4 5055 Library Road BETHEL PARK PA 15102 40.34 -80.02 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 22 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ---------------------------- --------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **318** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 319 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 55323 supermarket GIANT EAGLE 61 2021 Wharton Street Pittsburgh PA 15203 ALLEGHENY 40.43 -79.98 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 23 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **1109** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1110 PA WIC wicresults.json supermarket GIANT EAGLE SOUTH SIDE #61 2021 Wharton Street PITTSBURGH PA 15203 40.43 -79.98 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 23 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] --------- --------------------------------------------------- ----- --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------ ------------------- ---------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **319** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 320 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 55479 COEN MARKETS 1236 925 E Carson Street Pittsburgh PA 15203 ALLEGHENY 40.43 -79.99 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 24 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **385** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 386 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 65936 COEN MARKETS 1229 2401 E Carson Street Pittsburgh PA 15203 ALLEGHENY 40.43 -79.97 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 24 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ------------------ ---------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **321** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 322 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 55603 supermarket LAS PALMAS IGA 2 1616 Broadway Avenue Pittsburgh PA 15216 ALLEGHENY 40.41 -80.02 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 25 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **1122** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1123 PA WIC wicresults.json supermarket LAS PALMAS, LLC 1616 Broadway Avenue PITTSBURGH PA 15216 40.41 -80.02 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 25 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ---------------------------- ---------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **326** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 327 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 56973 supermarket KUHN'S MARKET 3125 Banksville Road Pittsburgh PA 15216 ALLEGHENY 40.4 -80.04 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 26 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **1119** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1120 PA WIC wicresults.json supermarket KUHN'S MARKETS SOUTH HILLS 3125 Banksville Road PITTSBURGH PA 15216 40.4 -80.04 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 26 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] --------- --------------------------------------------------- ----- --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------------- ---------------------------- ---------------------------- -------------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **327** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 328 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 57341 convenience store 7-ELEVEN STORE 36187 4630 William Flynn Highway Allison Park PA 15101 ALLEGHENY 40.59 -79.95 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 27 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **986** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 987 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 227310 convenience store 7-ELEVEN STORE 2701 36186A 3915 William Flynn Highway Allison Park PA 15101 ALLEGHENY 40.56 -79.96 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 27 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- --------------------------- ------------------------------ ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **331** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 332 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 60223 supermarket GIANT EAGLE 25 1029 W View Park Drive Ste 2 Pittsburgh PA 15229 ALLEGHENY 40.52 -80.04 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 28 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **1113** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1114 PA WIC wicresults.json supermarket GIANT EAGLE WEST VIEW #25 1029 W View Park Drive PITTSBURGH PA 15229 40.52 -80.04 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 28 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ------------------------------- -------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **332** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 333 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 60225 supermarket GIANT EAGLE 38 1901 Murray Avenue Pittsburgh PA 15217 ALLEGHENY 40.44 -79.92 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 29 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **1110** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1111 PA WIC wicresults.json supermarket GIANT EAGLE SQUIRREL HILL #38 1901 Murray Avenue PITTSBURGH PA 15217 40.44 -79.92 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 29 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ---------------------------- -------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **333** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 334 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 60226 supermarket GIANT EAGLE 63 4250 Murray Avenue Pittsburgh PA 15217 ALLEGHENY 40.42 -79.93 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 30 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **1098** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1099 PA WIC wicresults.json supermarket GIANT EAGLE GREENFIELD #63 4250 Murray Avenue PITTSBURGH PA 15217 40.42 -79.93 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 30 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ---------------------------- ---------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **334** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 335 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 60227 supermarket GIANT EAGLE 64 3812 Oneil Boulevard McKeesport PA 15132 ALLEGHENY 40.35 -79.83 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 31 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **1102** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1103 PA WIC wicresults.json supermarket GIANT EAGLE MCKEESPORT #64 3812 Oneil Boulevard MCKEESPORT PA 15132 40.35 -79.83 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 31 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- --------------------------- -------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **335** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 336 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 60228 supermarket GIANT EAGLE 65 4110 Brighton Road Pittsburgh PA 15212 ALLEGHENY 40.49 -80.04 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 32 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **1105** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1106 PA WIC wicresults.json supermarket GIANT EAGLE NORTHSIDE #65 4110 Brighton Road PITTSBURGH PA 15212 40.49 -80.04 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 32 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ---------------------------- ------------------ ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **336** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 337 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 60666 supermarket PITTSBURGH COMMISSARY 2309 79 Soldiers Lane Coraopolis PA 15108 ALLEGHENY 40.5 -80.22 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 33 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **1124** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1125 PA WIC wicresults.json supermarket PITTSBURGH COMMISSARY 79 Soldiers Lane CORAOPOLIS PA 15108 40.5 -80.22 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 33 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ------------------------------ -------------------- -------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **337** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 338 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 60667 supermarket COMMUNITY SUPER MKT INC 1117 Milltown Road Verona PA 15147 ALLEGHENY 40.5 -79.79 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 34 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **1073** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1074 PA WIC wicresults.json supermarket COMMUNITY SUPERMARKET VERONA 1117 Milltown Road VERONA PA 15147 40.5 -79.79 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 34 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- -------------------------------- -------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **340** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 341 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 60686 supermarket GIANT EAGLE 77 254 Yost Boulevard Pittsburgh PA 15221 ALLEGHENY 40.41 -79.85 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 35 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **1087** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1088 PA WIC wicresults.json supermarket GIANT EAGLE BRADDOCK HILLS #77 254 Yost Boulevard PITTSBURGH PA 15221 40.41 -79.86 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 35 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ----------------------------- ---------------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **344** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 345 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 61053 supermarket GIANT EAGLE 67 8080 Mcintyre Square Drive PITTSBURGH PA 15237 ALLEGHENY 40.56 -80.02 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 36 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **1104** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1105 PA WIC wicresults.json supermarket GIANT EAGLE NORTH HILLS #67 8080 Mcintyre Square Drive PITTSBURGH PA 15237 40.56 -80.02 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 36 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ---------------------------- -------------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **349** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 350 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 61079 supermarket GIANT EAGLE 45 9805 Mcknight Road Ste 6 Pittsburgh PA 15237 ALLEGHENY 40.59 -80.04 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 37 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **1106** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1107 PA WIC wicresults.json supermarket GIANT EAGLE PINE CREEK #45 9805 Mcknight Road Pittsburgh PA 15237 40.59 -80.04 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 37 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ------------------------------ ------------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **350** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 351 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 61085 supermarket GIANT EAGLE 17 6320 Shakespeare Street Pittsburgh PA 15206 ALLEGHENY 40.46 -79.92 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 38 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **1092** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1093 PA WIC wicresults.json supermarket GIANT EAGLE EAST LIBERTY #17 6320 Shakespeare Street Pittsburgh PA 15206 40.46 -79.92 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 38 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] --------- --------------------------------------------------- ----- --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- --------------- ---------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **354** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 355 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 61336 supermarket KUHN'S MARKET 1130 Highwood Street Pittsburgh PA 15212 ALLEGHENY 40.47 -80.03 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 39 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **449** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 450 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 78197 supermarket KUHNS MARKET 4801 Mcknight Road Pittsburgh PA 15237 ALLEGHENY 40.53 -80.01 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 39 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ----------------- ---------------------- --------------------- ----------- ------- ---------- ----------- ----------------------------------------------------- ------- ----- ---------- ----------- --------------------------------- ----------- ------------- -------------------- ---------------------------------------------- ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **356** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 357 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 61465 DECARLO FRUIT MARKET 560 Mckeesport Road Elizabeth PA 15037 ALLEGHENY 40.28 -79.88 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 40 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **1205** food-data/Cleaned_data_files//FMNPMarkets.csv 1207 FMNP Markets https://services5.arcgis.com/n3KaqXoFYDuIhfyz/ArcGIS/rest/services/FMNPMarkets/FeatureServer 3514 farmer's market DECARLO'S MARKET 560 Mckeesport Road Elizabeth PA 15037 Allegheny June - November Monday - Saturday 8:00 AM - 6:00 AM 40.28 -79.88 FMNP Markets June 1 November 30 open to all SNAP missing;WIC missing;food_bucks missing; NA NA NA 1 1 0 40 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ------------------------ -------------------- ---------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **367** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 368 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 62596 supermarket KUHNS MARKET 661 Lincoln Avenue Bellevue PA 15202 ALLEGHENY 40.5 -80.06 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 41 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **1117** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1118 PA WIC wicresults.json supermarket KUHN'S MARKET BELLEVUE 661 Lincoln Avenue BELLEVUE PA 15202 40.5 -80.06 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 41 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ---------------------------- ------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **370** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 371 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 63303 supermarket GIANT EAGLE 72 910 Freeport Road Pittsburgh PA 15238 ALLEGHENY 40.49 -79.89 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 42 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **1096** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1097 PA WIC wicresults.json supermarket GIANT EAGLE FOX CHAPEL #72 910 Freeport Road Pittsburgh PA 15238 40.49 -79.89 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 42 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- -------------------------------- ---------------------------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **371** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 372 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 63307 supermarket GIANT EAGLE 74 1165 Mckinney Lane Parkway Center Mall Pittsburgh PA 15220 ALLEGHENY 40.42 -80.03 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 43 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **1082** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1083 PA WIC wicresults.json supermarket GIANT EAGLE #74 PARKWAY CENTER 1165 Mckinney Lane Pittsburgh PA 15220 40.42 -80.04 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 43 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- -------------------------------- ------------------- ------------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **375** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 376 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 63898 supermarket GIANT EAGLE 14 7000 Oxford Drive Bethel Park PA 15102 ALLEGHENY 40.35 -80.05 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 44 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **1074** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1075 PA WIC wicresults.json supermarket GIANT EAGLE #14 VILLAGE SQUARE 7000 Oxford Drive BETHEL PARK PA 15102 40.35 -80.05 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 44 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ------------------------------- ----------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **377** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 378 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 64667 supermarket GIANT EAGLE 31 5260 Grove Road Pittsburgh PA 15236 ALLEGHENY 40.36 -80 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 45 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **1089** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1090 PA WIC wicresults.json supermarket GIANT EAGLE CASTE VILLAGE #31 5260 Grove Road PITTSBURGH PA 15236 40.36 -80 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 45 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- -------------------------- ------------------------ --------------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **379** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 380 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 64679 supermarket GIANT EAGLE 2 1800 Mckees Rocks Road MC Kees Rocks PA 15136 ALLEGHENY 40.47 -80.1 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 46 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **1100** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1101 PA WIC wicresults.json supermarket GIANT EAGLE KENNEDY TWP. 1800 Mckees Rocks Road MC KEES ROCKS PA 15136 40.47 -80.1 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 46 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:47] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- -------------------- ------------------------ ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:47] **382** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 383 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 65555 supermarket SHALER SHOP N SAVE 1620 Babcock Boulevard Pittsburgh PA 15209 ALLEGHENY 40.5 -79.98 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 47 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] **1127** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1128 PA WIC wicresults.json supermarket SHALER SHOP N SAVE 1620 Babcock Boulevard Pittsburgh PA 15209 40.5 -79.98 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 47 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:47] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:47]
INFO [2022-05-19 01:46:47] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ------------------ --------------------------------------------------- ------------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **383** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 384 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 65709 supermarket GIANT EAGLE 641 1025 Washington Pike Bridgeville PA 15017 ALLEGHENY 40.37 -80.11 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 48 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1080** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1081 PA WIC wicresults.json supermarket GIANT EAGLE #641 1025 Washington Pike Char. Valley Shopping Center Bridgeville PA 15017 40.37 -80.1 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 48 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------ ------------------------------------- ---------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **386** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 387 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 66127 FARM FRESH MARKET OF PITTSBURGH INC 226 N Negley Avenue Pittsburgh PA 15206 ALLEGHENY 40.47 -79.93 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 49 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1418** food-data/Cleaned_data_files//just_harvest.csv 1420 Just Harvest Just Harvest Google Sheets FARM FRESH FOODS 226 N. Negley Avenue Pittsburgh PA 15206 Allegheny 40.47 -79.93 Mapbox Geocode open to all 0 NA NA NA 1 NA 49 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- -------------------------------- ------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **388** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 389 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 66255 supermarket GIANT EAGLE 35 1717 Cochran Road Pittsburgh PA 15220 ALLEGHENY 40.39 -80.06 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 50 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1112** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1113 PA WIC wicresults.json supermarket GIANT EAGLE VIRGINIA MANOR #35 1717 Cochran Road Pittsburgh PA 15220 40.39 -80.07 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 50 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ----------------- ------------------------- ----------------------- ---------- ------- ---------- ----------- ------------------------------------------ ------- ----- ---------- ----------- --------------------------------- ----------- ------------ -------------------- ---------------------------------------------- ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **428** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 429 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 74034 CARNEGIE FARMERS MARKET 111 E Main Street Carnegie PA 15106 ALLEGHENY 40.41 -80.09 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 51 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1200** food-data/Cleaned_data_files//FMNPMarkets.csv 1202 FMNP Markets https://services5.arcgis.com/n3KaqXoFYDuIhfyz/ArcGIS/rest/services/FMNPMarkets/FeatureServer 3677 farmer's market CARNEGIE FARMERS MARKET Mary & E Main Streets Carnegie PA 15106 Allegheny July - October Sunday 12:00 PM - 3:00 PM 40.43 -80.14 FMNP Markets July 1 October 31 open to all SNAP missing;WIC missing;food_bucks missing; NA NA NA 1 1 0 51 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------ ------------------------------ -------------------- ----------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **430** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 431 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 74201 ROCHESTER ROAD SHOP AND SAVE 184 Rochester Road West View PA 15229 ALLEGHENY 40.52 -80.02 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 52 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1125** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1126 PA WIC wicresults.json ROCHESTER ROAD SHOP-N-SAVE 184 Rochester Road West View PA 15229 40.52 -80.02 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 52 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ------------------------- --------------------------- ---------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **447** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 448 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 77938 supermarket WALMART 3838 2010 Village Center Drive Tarentum PA 15084 ALLEGHENY 40.56 -79.8 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 53 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1148** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1149 PA WIC wicresults.json WAL-MART TARENTUM #3838 2010 Village Center Drive Tarentum PA 15084 40.56 -79.8 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 53 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ---------------------------- -------------------------- -------------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **455** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 456 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 79292 supermarket CENTURY SQUARE SHOP N SAVE 2381 Mountain View Drive West Mifflin PA 15122 ALLEGHENY 40.35 -79.94 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 54 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1070** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1071 PA WIC wicresults.json supermarket CENTURY SQUARE SHOP N SAVE 2381 Mountain View Drive WEST MIFFLIN PA 15122 40.34 -79.95 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 54 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------------- ------------------------ ------------------ -------------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **492** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 493 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 85984 convenience store IN & OUT CORNER MARKET 300 Helen Street McKees Rocks PA 15136 ALLEGHENY 40.47 -80.06 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 55 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1421** food-data/Cleaned_data_files//just_harvest.csv 1423 Just Harvest Just Harvest Google Sheets convenience store IN & OUT CORNER MARKET 300 Helen Street McKees Rocks PA 15136 Allegheny 40.47 -80.06 Mapbox Geocode open to all 1 NA NA NA 1 NA 55 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ---------------------- ------------------------ --------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **501** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 502 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 88226 supermarket IMPERIAL SHOP N SAVE 600 Market Place Drive Oakdale PA 15071 ALLEGHENY 40.44 -80.24 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 56 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1067** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 1068 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 248304 IMPERIAL 1243 500 Market Place Drive Oakdale PA 15071 ALLEGHENY 40.44 -80.24 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 56 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ----------------- ---------------------------- --------------------- ------------ ------- ---------- ----------- --------------------------------------------- ------- ----- ---------- ----------- --------------------------------- ----------- -------------- -------------------- ---------------------------------------------- ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **507** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 508 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 89154 BLOOMFIELD SATURDAY MARKET 5050 Liberty Avenue Pittsburgh PA 15224 ALLEGHENY 40.46 -79.94 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 57 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1254** food-data/Cleaned_data_files//FMNPMarkets.csv 1256 FMNP Markets https://services5.arcgis.com/n3KaqXoFYDuIhfyz/ArcGIS/rest/services/FMNPMarkets/FeatureServer 1485 farmer's market BLOOMFIELD FARMERS MARKET 5050 Liberty Avenue Pittsburgh PA 15224 Allegheny June - November Saturday 10:00 AM - 1:00 PM 40.46 -79.94 FMNP Markets June 1 November 30 open to all SNAP missing;WIC missing;food_bucks missing; NA NA NA 1 1 0 57 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1428** food-data/Cleaned_data_files//just_harvest.csv 1431 Just Harvest Just Harvest Google Sheets BLOOMFIELD SATURDAY MARKET 5050 Liberty Avenue Pittsburgh PA 15224 Allegheny 40.46 -79.94 Mapbox Geocode May 18th November 2nd open to all 1 NA NA NA 1 NA 57 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ------------------------------ -------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **521** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 522 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 92809 supermarket GIANT EAGLE 5103 2611 Freeport Road Pittsburgh PA 15238 ALLEGHENY 40.54 -79.84 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 58 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1095** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1096 PA WIC wicresults.json supermarket GIANT EAGLE EXP HARMAR #5103 2611 Freeport Road PITTSBURGH PA 15238 40.54 -79.84 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 58 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- --------------------------------- -------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **550** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 551 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 102010 supermarket LA GROCERY WEST INDIAN AMERICAN 511 Larimer Avenue Pittsburgh PA 15206 ALLEGHENY 40.47 -79.91 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 59 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1419** food-data/Cleaned_data_files//just_harvest.csv 1421 Just Harvest Just Harvest Google Sheets supermarket L.A. GROCERY 511 Larimer Avenue Pittsburgh PA 15206 Allegheny 40.47 -79.91 Mapbox Geocode open to all 0 NA NA NA 1 NA 59 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------------- ----------------------------- ----------------- -------------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **551** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 552 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 102188 convenience store 7 ELEVEN 36127H 137 Clever Road McKees Rocks PA 15136 ALLEGHENY 40.47 -80.1 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 60 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1017** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 1018 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 234477 convenience store 7-ELEVEN STORE #36127 36127 137 Clever Road McKees Rocks PA 15136 ALLEGHENY 40.47 -80.1 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 60 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- -------------------------------- -------------------- ----------------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **552** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 553 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 102425 supermarket WALMART 3738 100 Highlands Mall Natrona Heights PA 15065 ALLEGHENY 40.65 -79.71 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 61 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1145** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1146 PA WIC wicresults.json WAL-MART NATRONA HEIGHTS #3738 100 Highlands Mall Natrona Heights PA 15065 40.65 -79.71 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 61 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- -------------------------------- ---------------------- ------------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **560** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 561 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 104606 supermarket GIANT EAGLE 24 3239 Washington Pike Bridgeville PA 15017 ALLEGHENY 40.34 -80.12 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 62 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1051** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 1052 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 245241 supermarket GIANT EAGLE MOBILE MARKET 1270 3239 Washington Pike Bridgeville PA 15017 ALLEGHENY 40.34 -80.12 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 62 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1077** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1078 PA WIC wicresults.json supermarket GIANT EAGLE #24 SOUTH FAYETTE 3239 Washington Pike BRIDGEVILLE PA 15017 40.34 -80.12 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 62 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ------------------------------- ---------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **562** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 563 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 105053 supermarket GIANT EAGLE 69 9001 Frankstown Road Pittsburgh PA 15235 ALLEGHENY 40.46 -79.87 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 63 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1097** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1098 PA WIC wicresults.json supermarket GIANT EAGLE FRANKSTOWN RD #69 9001 Frankstown Road PITTSBURGH PA 15235 40.46 -79.87 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 63 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------ ------------------------- -------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **563** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 564 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 105064 MURRAY AVE KOSHER, INC. 1916 Murray Avenue Pittsburgh PA 15217 ALLEGHENY 40.44 -79.92 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 64 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1123** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1124 PA WIC wicresults.json MURRAY AVENUE KOSHER 1916 Murray Avenue PITTSBURGH PA 15217 40.44 -79.92 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 64 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] --------- --------------------------------------------------- ----- --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------------- ------------------ ------------------------------- ------------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **572** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 573 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 107571 convenience store DOLLAR TREE 6413 4680 Old William Penn Highway Monroeville PA 15146 ALLEGHENY 40.44 -79.74 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 65 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **771** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 772 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 159709 convenience store DOLLAR TREE 5587 3428 William Penn Highway Pittsburgh PA 15235 ALLEGHENY 40.43 -79.81 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 65 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ----------------- ---------------------- ------------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **577** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 578 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 110530 supermarket GIANT EAGLE 15 1701 Lincoln Highway North Versailles PA 15137 ALLEGHENY 40.37 -79.79 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 66 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1075** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1076 PA WIC wicresults.json supermarket GIANT EAGLE #15 1701 Lincoln Highway North Versailles PA 15137 40.37 -79.79 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 66 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] --------- --------------------------------------------------- ----- --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------------- --------------- ------------------------------- ------------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **581** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 582 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 112740 convenience store SPEEDWAY 2901 4380 Old William Penn Highway Monroeville PA 15146 ALLEGHENY 40.44 -79.77 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 67 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **830** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 831 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 178669 convenience store SPEEDWAY 2900 4830 William Penn Highway Monroeville PA 15146 ALLEGHENY 40.43 -79.72 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 67 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ---------------------------- ----------------- -------------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **590** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 591 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 115646 supermarket KUHN S MARKET 700 Beulah Road Turtle Creek PA 15145 ALLEGHENY 40.43 -79.84 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 68 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1118** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1119 PA WIC wicresults.json supermarket KUHN'S MARKET TURTLE CREEK 700 Beulah Road Turtle Creek PA 15145 40.43 -79.83 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 68 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ----------------------------- -------------------------- -------------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **608** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 609 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 118746 supermarket GIANT EAGLE 73 9901 Mountain View Drive West Mifflin PA 15122 ALLEGHENY 40.34 -79.95 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 69 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1090** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1091 PA WIC wicresults.json supermarket GIANT EAGLE CENTURY III #73 9901 Mountain View Drive WEST MIFFLIN PA 15122 40.34 -79.95 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 69 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ----------------- ----------------------------------------- -------------------- ------------ ------- ---------- ----------- ---------------------------------------------- ------- ----- ---------- ----------- --------------------------------- ----------- -------------- -------------------- ---------------------------------------------- ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **614** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 615 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 120782 GARFIELD COMMUNITY FARM FARMER'S MARKET 509 Wicklow Street Pittsburgh PA 15224 ALLEGHENY 40.47 -79.94 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 70 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1208** food-data/Cleaned_data_files//FMNPMarkets.csv 1210 FMNP Markets https://services5.arcgis.com/n3KaqXoFYDuIhfyz/ArcGIS/rest/services/FMNPMarkets/FeatureServer 3636 farmer's market GARFIELD FARM STAND 509 Wicklow Street Pittsburgh PA 15224 Allegheny June - September Wednesday 6:00 PM - 8:00 PM 40.47 -79.94 FMNP Markets June 1 September 30 open to all SNAP missing;WIC missing;food_bucks missing; NA NA NA 1 1 0 70 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ----------------- ------------------------ --------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **618** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 619 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 122192 supermarket GIANT EAGLE 43 155 Towne Centre Drive Wexford PA 15090 ALLEGHENY 40.63 -80.05 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 71 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1079** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1080 PA WIC wicresults.json supermarket GIANT EAGLE #43 155 Towne Centre Drive WEXFORD PA 15090 40.63 -80.05 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 71 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------ ------------- ------------------ ---------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **668** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 669 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 135635 CARL'S CAFE 337 Fifth Avenue Braddock PA 15104 ALLEGHENY 40.41 -79.88 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 72 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1417** food-data/Cleaned_data_files//just_harvest.csv 1419 Just Harvest Just Harvest Google Sheets CARL'S CAFÉ 337 Fifth Avenue Rankin PA 15104 Allegheny 40.41 -79.88 Mapbox Geocode open to all 1 NA NA NA 1 NA 72 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ------------------------------- --------------------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **708** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 709 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 141806 supermarket GIANT EAGLE 47 100 Settlers Ridge Center Drive Pittsburgh PA 15205 ALLEGHENY 40.44 -80.15 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 73 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1115** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1116 PA WIC wicresults.json supermarket GIANT EAGLE#47 SETTLERS RIDGE 100 Settlers Ridge Center Drive PITTSBURGH PA 15205 40.44 -80.15 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 73 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] --------- --------------------------------------------------- ----- --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------------- ---------------- --------------------------- ------------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **732** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 733 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 147205 convenience store RITE AID 10917 4111 William Penn Highway Monroeville PA 15146 ALLEGHENY 40.44 -79.77 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 74 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **734** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 735 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 147207 convenience store RITE AID 10945 3434 William Penn Highway Pittsburgh PA 15235 ALLEGHENY 40.43 -79.81 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 74 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- --------------------------- -------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **751** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 752 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 150922 supermarket GIANT EAGLE 40 5550 Centre Avenue Pittsburgh PA 15232 ALLEGHENY 40.46 -79.94 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 75 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1107** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1108 PA WIC wicresults.json supermarket GIANT EAGLE SHADYSIDE #40 5550 Centre Avenue PITTSBURGH PA 15232 40.46 -79.93 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 75 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:48] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ------------------------------ ------------------------ -------------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:48] **781** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 782 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 161628 supermarket GIANT EAGLE 29 1356 Hoffman Boulevard West Mifflin PA 15122 ALLEGHENY 40.38 -79.87 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 76 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] **1078** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1079 PA WIC wicresults.json supermarket GIANT EAGLE #29 WEST MIFFLIN 1356 Hoffman Boulevard West Mifflin PA 15122 40.38 -79.87 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 76 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:48] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:48]
INFO [2022-05-19 01:46:48] Merging the following rows:
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:49] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ------------------------ ------------------------ ---------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:49] **806** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 807 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 169979 supermarket GIANT EAGLE 18 1671 Butler Plank Road Glenshaw PA 15116 ALLEGHENY 40.54 -79.96 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 77 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] **1108** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1109 PA WIC wicresults.json supermarket GIANT EAGLE SHALER #18 1671 Butler Plank Road GLENSHAW PA 15116 40.54 -79.96 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 77 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] Merging the following rows:
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:49] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ----------------------------- -------------------- -------------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:49] **833** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 834 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 178879 supermarket WALMART SUPERCENTER 2281 2351 Century Drive West Mifflin PA 15122 ALLEGHENY 40.34 -79.94 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 78 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] **1142** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1143 PA WIC wicresults.json WAL-MART #2281 WEST MIFFLIN 2351 Century Drive West Mifflin PA 15122 40.34 -79.95 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 78 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] Merging the following rows:
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:49] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- -------------------------------- --------------------- ----------------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:49] **838** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 839 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 181627 supermarket COMMUNITY SUPERMARKET 1710 Pacific Avenue Natrona Heights PA 15065 ALLEGHENY 40.62 -79.72 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 79 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] **1072** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1073 PA WIC wicresults.json COMMUNITY MRKT NATRONA HEIGHTS 1710 Pacific Avenue NATRONA HEIGHTS PA 15065 40.62 -79.72 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 79 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] Merging the following rows:
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:49] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- --------------------- ---------------------------- ---------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:49] **839** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 840 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 181795 supermarket ROUTE 8 SHOP N SAVE 5375 William Flynn Highway Gibsonia PA 15044 ALLEGHENY 40.62 -79.94 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 80 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] **1126** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1127 PA WIC wicresults.json ROUTE 8 SHOP-N-SAVE 5375 William Flynn Highway GIBSONIA PA 15044 40.62 -79.95 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 80 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] Merging the following rows:
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:49] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ----------------------- ---------------------- ---------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:49] **885** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 886 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 195100 supermarket WALMART 5040 2200 Washington Pike Carnegie PA 15106 ALLEGHENY 40.38 -80.09 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 81 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] **1146** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1147 PA WIC wicresults.json WAL-MART STORE # 5040 2200 Washington Pike CARNEGIE PA 15106 40.39 -80.1 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 81 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49] -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] Merging the following rows:
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:49] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ---------------------------- --------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:49] **890** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 891 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 198907 supermarket GIANT EAGLE 78 230 Rodi Road Pittsburgh PA 15235 ALLEGHENY 40.46 -79.82 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 82 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] **1083** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1084 PA WIC wicresults.json supermarket GIANT EAGLE #78 PENN HILLS 230 Rodi Road PITTSBURGH PA 15235 40.46 -79.83 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 82 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49] -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] Merging the following rows:
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:49] --------- --------------------------------------------------- ----- --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------------- ---------------------------- --------------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:49] **902** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 903 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 202918 convenience store 7-ELEVEN STORE 2701 36191A 8136 Ohio River Boulevard Pittsburgh PA 15202 ALLEGHENY 40.51 -80.09 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 83 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] **970** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 971 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 223147 convenience store 7-ELEVEN STORE 2701 36183A 209 Ohio River Boulevard Sewickley PA 15143 ALLEGHENY 40.54 -80.19 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 83 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] Merging the following rows:
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:49] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- -------------------------- --------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:49] **908** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 909 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 205097 supermarket GIANT EAGLE 646 51 Walsh Road CRAFTON PA 15205 ALLEGHENY 40.44 -80.07 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 84 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] **1091** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1092 PA WIC wicresults.json supermarket GIANT EAGLE CRAFTON #646 51 Walsh Road PITTSBURGH PA 15205 40.44 -80.07 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 84 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] Merging the following rows:
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:49] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ----------------------------- ---------------------------- ------------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:49] **914** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 915 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 206218 supermarket GIANT EAGLE 60 4010 Monroeville Boulevard Monroeville PA 15146 ALLEGHENY 40.44 -79.77 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 85 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] **1103** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1104 PA WIC wicresults.json supermarket GIANT EAGLE MONROEVILLE #60 4010 Monroeville Boulevard MONROEVILLE PA 15146 40.43 -79.77 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 85 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] Merging the following rows:
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:49] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- ---------------------- ------------------------ ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:49] **918** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 919 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 207905 supermarket GIANT EAGLE #619 1705 S Braddock Avenue Pittsburgh PA 15218 ALLEGHENY 40.43 -79.89 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 86 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] **1093** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1094 PA WIC wicresults.json supermarket GIANT EAGLE EDGEWOOD 1705 S Braddock Avenue PITTSBURGH PA 15218 40.42 -79.89 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 86 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] Merging the following rows:
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:49] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- --------------------- --------------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:49] **937** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 938 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 213891 supermarket WILKINS SHOP N SAVE 3335 William Penn Highway Pittsburgh PA 15235 ALLEGHENY 40.43 -79.82 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 87 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] **1149** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1150 PA WIC wicresults.json supermarket WILKINS SHOP N SAVE 3335 William Penn Highway Pittsburgh PA 15235 40.43 -79.82 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 87 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] Merging the following rows:
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:49] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- --------------------------- ---------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:49] **966** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 967 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 221077 supermarket GIANT EAGLE 93 600 Towne Square Way Pittsburgh PA 15227 ALLEGHENY 40.37 -79.98 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 88 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] **1085** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1086 PA WIC wicresults.json supermarket GIANT EAGLE #93 BRENTWOOD 600 Towne Square Way PITTSBURGH PA 15227 40.37 -79.98 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 88 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49] -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] Merging the following rows:
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:49] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------------- --------------------------------- --------------------- ------------ ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:49] **1004** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 1005 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 231697 supermarket COMMUNITY MARKET BLOOMFIELD 96 4401 Liberty Avenue Pittsburgh PA 15224 ALLEGHENY 40.46 -79.95 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 89 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] **1071** food-data/Cleaned_data_files//cleaned_PA_WIC.csv 1072 PA WIC wicresults.json supermarket COMMUNITY MARKET #96 BLOOMFIELD 4401 Liberty Avenue PITTSBURGH PA 15224 40.46 -79.95 na open to all no type;no phone;no date/time info NA NA 1 NA NA 0 89 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] Merging the following rows:
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:49] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ----------------- ------------------------------ ------------------- --------------- ------- ---------- ----------- ------------------------------------------- ------------ ----- ---------- ----------- --------------------------------- ----------- ------------- -------------------- ---------------------------------------------- ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:49] **1029** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 1030 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 236656 LAWRENCEVILLE FARMERS MARKET 115 First Street Pittsburgh PA 15201 ALLEGHENY 40.47 -79.96 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 90 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] **1210** food-data/Cleaned_data_files//FMNPMarkets.csv 1212 FMNP Markets https://services5.arcgis.com/n3KaqXoFYDuIhfyz/ArcGIS/rest/services/FMNPMarkets/FeatureServer 3666 farmer's market LAWRENCEVILLE FARMERS MARKET 250 Zeroth Street Lawrenceville PA 15201 Allegheny June - November Tuesday 4:00 PM - 7:00 PM 4128027220 40.47 -79.96 FMNP Markets June 1 November 30 open to all SNAP missing;WIC missing;food_bucks missing; NA NA NA 1 1 0 90 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] Merging the following rows:
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:49] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------ --------------------- ------------------------- ---------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:49] **1050** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 1051 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 245087 PRODUCE MARKETPLACE 519 Saint Clair Avenue Clairton PA 15025 ALLEGHENY 40.29 -79.89 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 91 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] **1425** food-data/Cleaned_data_files//just_harvest.csv 1427 Just Harvest Just Harvest Google Sheets PRODUCE MARKETPLACE 519 Street Clair Avenue Clairton PA 15025 Allegheny 40.29 -79.89 Mapbox Geocode open to all 1 NA NA NA 1 NA 91 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49] -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] Merging the following rows:
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:49] ---------- --------------------------------------------------- ------ --------------------------------- -------------------------------------------------------------------------------------------------- ------------- ------ --------------- ---------------------- -------------- ------- ---------- ----------- ---------------------- ------- ----- ---------- ----------- --------------------------------- ----------- --------- -------------------- ------------------------------------ ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:49] **1055** food-data/Cleaned_data_files//cleaned_PA_SNAP.csv 1056 USDA Food and Nutrition Service https://services1.arcgis.com/RLQu0rK7h4kbsBq5/arcgis/rest/services/Store_Locations/FeatureServer 246708 ROCKS EXPRESS 700 Frederick Street McKees Rocks PA 15136 ALLEGHENY 40.47 -80.06 USDA Food and Nutrition Service open to all no type;no phone;no date/time info NA 1 NA NA NA 0 92 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] **1422** food-data/Cleaned_data_files//just_harvest.csv 1424 Just Harvest Just Harvest Google Sheets ROCKS EXPRESS 700 Frederick Street McKees Rocks PA 15136 Allegheny 40.47 -80.06 Mapbox Geocode open to all 1 NA NA NA 1 NA 92 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] Merging the following rows:
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:49] ---------- -------------------------------------------------------------------------- ------ ---------------------------------------- --------------------------------------------------------------------------------------------------------------- -------------------------------------- ------------------ --------------------------------------------------------------------- ----------------------- ---------- ------- ---------- ----------- ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- ------- ----- ---------- ----------- ---------------------------------------- -------------- ---------------- -------------------- ---------------------------- ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:49] **1156** food-data/Cleaned_data_files//cleaned_summer_meal_sites_api.csv 1157 Allegheny County https://services1.arcgis.com/vdNDkVykv9vEWFX4/arcgis/rest/services/Child_Nutrition/FeatureServer 135392 summer meal site SAINT JOHN'S EVANGELICAL LUTHERAN CHURCH 601 Washington Avenue Carnegie PA 15106 Allegheny Service Type: Grab and Go; Site Hours: Contact site for details; Comments: Please contact the site to confirm the information; 40.41 -80.08 Allegheny County June 14 2021 August 31 2021 youth populations 0 0 0 0 NA 1 93 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] **1287** food-data/Cleaned_data_files//greater_pittsburgh_community_food_bank.csv 1289 Greater Pittsburgh Community Food Bank https://services1.arcgis.com/vdNDkVykv9vEWFX4/arcgis/rest/services/COVID19_Food_Access_(PUBLIC)/FeatureServer 760a8bf6-ad08-4179-8725-d998792cc986 food bank site SAINT JOHN LUTHERAN CHURCH - ACROSS FROM CARNEGIE BOYS & GIRLS CLUB 601 Washington Avenue Carnegie PA 15106 Population Served: Children 18 and under Time: 12 noon - 1 PM Additional Info: Families can stop in for free groceries. Please call 412-279-2952 Ext: 7 to arrange a time 40.41 -80.08 Greater Pittsburgh Community Food Bank open to all phone missing;url missing; 0 0 0 0 1 1 93 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] Merging the following rows:
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:49] ---------- ----------------------------------------------------------------- ------ ------------------ -------------------------------------------------------------------------------------------------- ------------- ------------------ ---------------------- ------------------ ------------ ------- ---------- ----------- ----------------------------------------------------------------------------------------------------------- ------- ----- ---------- ----------- ------------------ ----------- --------- -------------------- ----------------------------------------------------------------------- ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:49] **1157** food-data/Cleaned_data_files//cleaned_summer_meal_sites_api.csv 1158 Allegheny County https://services1.arcgis.com/vdNDkVykv9vEWFX4/arcgis/rest/services/Child_Nutrition/FeatureServer 0 summer meal site BRASHEAR HIGH SCHOOL 590 Crane Avenue Pittsburgh PA 15216 Allegheny Service Type: Grab and Go; Site Hours: Call the school at (412) 529-4160 for updated meal service times.; 40.42 -80.02 Allegheny County youth populations latitude missing;longitude missing;date_from missing;date_to missing; 0 0 0 0 NA 1 94 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] **1179** food-data/Cleaned_data_files//cleaned_summer_meal_sites_api.csv 1181 Allegheny County https://services1.arcgis.com/vdNDkVykv9vEWFX4/arcgis/rest/services/Child_Nutrition/FeatureServer 0 summer meal site BRASHEAR HIGH SCHOOL 590 Crane Avenue Pittsburgh PA 15216 Allegheny Site Hours: Monday through Friday this site serves breakfast and lunch from 9:30-10:30 am.; 40.42 -80.02 Allegheny County youth populations latitude missing;longitude missing;date_from missing;date_to missing; 0 0 0 0 NA 1 94 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] Merging the following rows:
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:49] ---------- ----------------------------------------------------------------- ------ ------------------ -------------------------------------------------------------------------------------------------- ------------- ------------------ --------------------------- ------------------ ------------ ------- ---------- ----------- ----------------------------------------------------------------------------------------------------------- ------- ----- ---------- ----------- ------------------ ----------- --------- -------------------- ----------------------------------------------------------------------- ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:49] **1158** food-data/Cleaned_data_files//cleaned_summer_meal_sites_api.csv 1159 Allegheny County https://services1.arcgis.com/vdNDkVykv9vEWFX4/arcgis/rest/services/Child_Nutrition/FeatureServer 0 summer meal site SOUTH HILLS MIDDLE SCHOOL 595 Crane Avenue Pittsburgh PA 15216 Allegheny Service Type: Grab and Go; Site Hours: Call the school at (412) 529-8130 for updated meal service times.; 40.42 -80.02 Allegheny County youth populations latitude missing;longitude missing;date_from missing;date_to missing; 0 0 0 0 NA 1 95 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] **1180** food-data/Cleaned_data_files//cleaned_summer_meal_sites_api.csv 1182 Allegheny County https://services1.arcgis.com/vdNDkVykv9vEWFX4/arcgis/rest/services/Child_Nutrition/FeatureServer 0 summer meal site SOUTH HILLS MIDDLE SCHOOL 595 Crane Avenue Pittsburgh PA 15216 Allegheny Site Hours: Monday through Friday this site serves breakfast and lunch from 9:30-10:30 am.; 40.42 -80.02 Allegheny County youth populations latitude missing;longitude missing;date_from missing;date_to missing; 0 0 0 0 NA 1 95 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] Merging the following rows:
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:49] ---------- ----------------------------------------------------------------- ------ ------------------ -------------------------------------------------------------------------------------------------- ------------- ------------------ -------------------------------------- --------------------------- ------------ ------- ---------- ----------- ----------------------------------------------------------------------------------------------------------- ------- ----- ---------- ----------- ------------------ ----------- --------- -------------------- ----------------------------------------------------------------------- ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:49] **1159** food-data/Cleaned_data_files//cleaned_summer_meal_sites_api.csv 1160 Allegheny County https://services1.arcgis.com/vdNDkVykv9vEWFX4/arcgis/rest/services/Child_Nutrition/FeatureServer 0 summer meal site SPRING GARDEN EARLY CHILDHOOD CENTER 1501 Spring Garden Avenue Pittsburgh PA 15212 Allegheny Service Type: Grab and Go; Site Hours: Call the school at (412) 529-4591 for updated meal service times.; 40.46 -79.99 Allegheny County youth populations latitude missing;longitude missing;date_from missing;date_to missing; 0 0 0 0 NA 1 96 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] **1181** food-data/Cleaned_data_files//cleaned_summer_meal_sites_api.csv 1183 Allegheny County https://services1.arcgis.com/vdNDkVykv9vEWFX4/arcgis/rest/services/Child_Nutrition/FeatureServer 0 summer meal site SPRING GARDEN EARLY CHILDHOOD CENTER 1501 Spring Garden Avenue Pittsburgh PA 15212 Allegheny Site Hours: Monday through Friday this site serves breakfast and lunch from 10:30-11:30 am.; 40.46 -79.99 Allegheny County youth populations latitude missing;longitude missing;date_from missing;date_to missing; 0 0 0 0 NA 1 96 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] Merging the following rows:
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:49] ---------- ----------------------------------------------------------------- ------ ------------------ -------------------------------------------------------------------------------------------------- ------------- ------------------ -------------------- -------------------- ------------ ------- ---------- ----------- ----------------------------------------------------------------------------------------------------------- ------- ----- ---------- ----------- ------------------ ----------- --------- -------------------- ----------------------------------------------------------------------- ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:49] **1160** food-data/Cleaned_data_files//cleaned_summer_meal_sites_api.csv 1161 Allegheny County https://services1.arcgis.com/vdNDkVykv9vEWFX4/arcgis/rest/services/Child_Nutrition/FeatureServer 0 summer meal site OLIVER HIGH SCHOOL 2323 Brighton Road Pittsburgh PA 15212 Allegheny Service Type: Grab and Go; Site Hours: Call the school at (412) 529-3125 for updated meal service times.; 40.46 -80.03 Allegheny County youth populations latitude missing;longitude missing;date_from missing;date_to missing; 0 0 0 0 NA 1 97 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] **1172** food-data/Cleaned_data_files//cleaned_summer_meal_sites_api.csv 1174 Allegheny County https://services1.arcgis.com/vdNDkVykv9vEWFX4/arcgis/rest/services/Child_Nutrition/FeatureServer 0 summer meal site OLIVER HIGH SCHOOL 2323 Brighton Road Pittsburgh PA 15212 Allegheny Site Hours: Monday through Friday this site serves breakfast and lunch from 9:45-10:45 am.; 40.46 -80.03 Allegheny County youth populations latitude missing;longitude missing;date_from missing;date_to missing; 0 0 0 0 NA 1 97 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49] ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] Merging the following rows:
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:49] ---------- ----------------------------------------------------------------- ------ ------------------ -------------------------------------------------------------------------------------------------- ------------- ------------------ ------------------------- ------------------ ------------ ------- ---------- ----------- ----------------------------------------------------------------------------------------------------------- ------- ----- ---------- ----------- ------------------ ----------- --------- -------------------- ----------------------------------------------------------------------- ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:49] **1161** food-data/Cleaned_data_files//cleaned_summer_meal_sites_api.csv 1162 Allegheny County https://services1.arcgis.com/vdNDkVykv9vEWFX4/arcgis/rest/services/Child_Nutrition/FeatureServer 0 summer meal site CONROY EDUCATION CENTER 1398 Page Street Pittsburgh PA 15233 Allegheny Service Type: Grab and Go; Site Hours: Call the school at (412) 529-3105 for updated meal service times.; 40.45 -80.02 Allegheny County youth populations latitude missing;longitude missing;date_from missing;date_to missing; 0 0 0 0 NA 1 98 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] **1173** food-data/Cleaned_data_files//cleaned_summer_meal_sites_api.csv 1175 Allegheny County https://services1.arcgis.com/vdNDkVykv9vEWFX4/arcgis/rest/services/Child_Nutrition/FeatureServer 0 summer meal site CONROY EDUCATION CENTER 1398 Page Street Pittsburgh PA 15233 Allegheny Site Hours: Monday through Friday this site serves breakfast and lunch from 9:45-10:45 am.; 40.45 -80.02 Allegheny County youth populations latitude missing;longitude missing;date_from missing;date_to missing; 0 0 0 0 NA 1 98 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49] ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] Merging the following rows:
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:49] ---------- ----------------------------------------------------------------- ------ ------------------ -------------------------------------------------------------------------------------------------- ------------- ------------------ ------------- ------------------------- ------------ ------- ---------- ----------- ----------------------------------------------------------------------------------------------------------- ------- ----- ---------- ----------- ------------------ ----------- --------- -------------------- ----------------------------------------------------------------------- ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:49] **1162** food-data/Cleaned_data_files//cleaned_summer_meal_sites_api.csv 1163 Allegheny County https://services1.arcgis.com/vdNDkVykv9vEWFX4/arcgis/rest/services/Child_Nutrition/FeatureServer 0 summer meal site LANGLEY K-8 2940 Sheraden Boulevard Pittsburgh PA 15204 Allegheny Service Type: Grab and Go; Site Hours: Call the school at (412) 529-2100 for updated meal service times.; 40.45 -80.06 Allegheny County youth populations latitude missing;longitude missing;date_from missing;date_to missing; 0 0 0 0 NA 1 99 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] **1184** food-data/Cleaned_data_files//cleaned_summer_meal_sites_api.csv 1186 Allegheny County https://services1.arcgis.com/vdNDkVykv9vEWFX4/arcgis/rest/services/Child_Nutrition/FeatureServer 0 summer meal site LANGLEY K-8 2940 Sheraden Boulevard Pittsburgh PA 15204 Allegheny Site Hours: Monday through Friday this site serves breakfast and lunch from 9:30-10:30 am.; 40.45 -80.06 Allegheny County youth populations latitude missing;longitude missing;date_from missing;date_to missing; 0 0 0 0 NA 1 99 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] Merging the following rows:
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49] file_name id source_org source_file original_id type name address city state zip_code county location_description phone url latitude longitude latlng_source date_from date_to open_to_spec_group data_issues food_bucks SNAP WIC FMNP fresh_produce free_distribution group_id merged_record timestamp
INFO [2022-05-19 01:46:49] ---------- ----------------------------------------------------------------- ------ ------------------ -------------------------------------------------------------------------------------------------- ------------- ------------------ --------------- --------------------------- ------------ ------- ---------- ----------- ----------------------------------------------------------------------------------------------------------- ------- ----- ---------- ----------- ------------------ ----------- --------- -------------------- ----------------------------------------------------------------------- ------------ ------ ----- ------ --------------- ------------------- ---------- --------------- ---------------------
INFO [2022-05-19 01:46:49] **1164** food-data/Cleaned_data_files//cleaned_summer_meal_sites_api.csv 1165 Allegheny County https://services1.arcgis.com/vdNDkVykv9vEWFX4/arcgis/rest/services/Child_Nutrition/FeatureServer 0 summer meal site OBAMA ACADEMY 515 North Highland Avenue Pittsburgh PA 15206 Allegheny Service Type: Grab and Go; Site Hours: Call the school at (412) 529-5980 for updated meal service times.; 40.47 -79.92 Allegheny County youth populations latitude missing;longitude missing;date_from missing;date_to missing; 0 0 0 0 NA 1 100 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] **1176** food-data/Cleaned_data_files//cleaned_summer_meal_sites_api.csv 1178 Allegheny County https://services1.arcgis.com/vdNDkVykv9vEWFX4/arcgis/rest/services/Child_Nutrition/FeatureServer 0 summer meal site OBAMA ACADEMY 515 North Highland Avenue Pittsburgh PA 15206 Allegheny Site Hours: Monday through Friday this site serves breakfast and lunch from 10-11am.; 40.47 -79.92 Allegheny County youth populations latitude missing;longitude missing;date_from missing;date_to missing; 0 0 0 0 NA 1 100 0 2022-05-19 01:46:46
INFO [2022-05-19 01:46:49] -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INFO [2022-05-19 01:46:49]
INFO [2022-05-19 01:46:49] Merging the following rows:
INFO [2022-05-19 01:46:49]